/* ============================================================
   DC Remapping UK — premium site styles
   Brand tokens live in :root. Change them here, the whole
   site updates. Display font: Bebas Neue. Body: Inter.
   ============================================================ */
:root {
  --red:        #e8000f;   /* race red — primary accent */
  --red-deep:   #b00500;   /* darker red for gradients/hovers */
  --red-glow:   rgba(232,0,15,.35);

  --ink:        #08080a;   /* page background, near-black */
  --ink-2:      #101013;   /* raised panels */
  --ink-3:      #17171c;   /* cards */
  --ink-4:      #1f1f26;   /* hovered cards / inputs */
  --line:       #26262e;   /* hairline borders */
  --line-2:     #34343f;

  --text:       #f4f4f5;   /* primary text */
  --muted:      #9a9aa6;   /* secondary text */
  --faint:      #62626c;   /* tertiary / labels */
  --white:      #ffffff;
  --gold:       #f5c518;
  --green:      #36d07a;

  --display: "Bebas Neue", "Inter", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw:   1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow:  0 24px 60px rgba(0,0,0,.5);
  --shadow-red: 0 18px 50px rgba(232,0,15,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #ff3b46; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.05; font-weight: 700; }
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .5px;
  line-height: .92;
}

/* section headings use the condensed display face */
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: 1px; }
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-size: 1.25rem; letter-spacing: .2px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body);
  font-size: .72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px var(--red-glow);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.35)} }

/* accent text */
.accent { color: var(--red); }
em.accent { font-style: normal; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-weight: 700; font-size: .98rem; letter-spacing: .3px;
  border: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(232,0,15,.3);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
}
.btn:hover { color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-red); background: #ff1623; }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.04); border-color: var(--red); transform: translateY(-3px); box-shadow: none; }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(8,8,10,.92); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--display); font-size: 1.7rem; letter-spacing: 1.5px;
  color: var(--white);
}
.brand { line-height: 0; }
.brand .logo { height: 44px; width: auto; display: block; }
.site-footer .brand .logo { height: 40px; }
.brand .accent { color: var(--red); }
.brand .mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-size: 1.15rem; box-shadow: 0 6px 18px rgba(232,0,15,.4);
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a {
  position: relative; color: var(--muted); font-weight: 600; font-size: .95rem;
  padding: 6px 0;
}
.nav-links > li > a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .25s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--text); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 11px 22px; }
/* vehicles dropdown */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle { cursor: pointer; color: var(--muted); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 5px; padding: 6px 0; transition: color .2s var(--ease); }
.nav-dd-toggle::after { content: '▾'; color: var(--red); font-size: .85em; }
.nav-dd:hover .nav-dd-toggle { color: var(--text); }
.nav-dd-menu { list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; right: 0; left: auto; min-width: 210px; background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); display: none; flex-direction: column; gap: 1px; z-index: 120; }
@media (min-width: 1025px) { .nav-dd:hover .nav-dd-menu { display: flex; } }
.nav-dd-menu li { width: 100%; text-align: left; padding: 0; }
.nav-dd-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.nav-dd-menu a:hover { background: var(--ink-4); color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.7rem; cursor: pointer; line-height: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 13vw, 160px) 0 clamp(70px, 10vw, 130px);
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(232,0,15,.32), transparent 62%),
    radial-gradient(700px 500px at 10% 110%, rgba(232,0,15,.10), transparent 60%),
    linear-gradient(180deg, #0b0b0e, #08080a 70%);
}
/* faint carbon / grid texture */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 600px at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(900px 600px at 50% 0%, #000 30%, transparent 75%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.rating { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--muted); }
.rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 1rem; }
.rating strong { color: var(--text); }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 100px;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { display: block; }
.hero .lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: .9rem; color: var(--faint); }
.hero-note .tick { color: var(--green); font-weight: 700; }

/* dyno graphic card */
.dyno {
  position: relative;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow);
}
.dyno-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dyno-head .t { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); }
.dyno-head .live { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--green); font-weight: 600; }
.dyno-head .live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(54,208,122,.2); animation: pulse 1.8s infinite; }
.dyno svg { width: 100%; height: auto; display: block; }
.dyno-legend { display: flex; gap: 22px; margin-top: 16px; }
.dyno-legend span { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.dyno-legend i { width: 22px; height: 3px; border-radius: 2px; display: inline-block; }
.dyno-gains {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px;
}
.dyno-gains .g {
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.dyno-gains .g .n { font-family: var(--display); font-size: 2rem; color: var(--red); line-height: 1; }
.dyno-gains .g .l { font-size: .76rem; color: var(--faint); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- rotating hero banner ---------- */
.banner { position: relative; background: var(--ink); }
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.bslide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 0; }
.bslide.active { opacity: 1; z-index: 1; position: relative; }
.bslide img { width: 100%; height: auto; display: block; }
.barrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 46px; height: 46px; border-radius: 10px; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; cursor: pointer; color: #fff; transition: background .2s var(--ease), border-color .2s var(--ease); }
.barrow:hover { background: var(--red); border-color: var(--red); }
.barrow.prev { left: 18px; } .barrow.next { right: 18px; }
.barrow svg { width: 18px; height: 18px; }
.bdots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 8px; }
.bdot { width: 26px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s var(--ease); }
.bdot.active { background: var(--red); width: 42px; }
.bdot:hover:not(.active) { background: rgba(255,255,255,.65); }
.bbar { position: absolute; bottom: 0; left: 0; height: 4px; width: 0; background: var(--red); z-index: 20; }
.bbar.run { animation: bprogress 5s linear infinite; }
@keyframes bprogress { from { width: 0; } to { width: 100%; } }
.banner-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding: 28px 24px; background: var(--ink); }
@media (max-width: 600px) {
  .barrow { display: none; }
  .bdots { bottom: 10px; }
  .banner-cta { padding: 22px 16px; flex-direction: column; }
  .banner-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- self-contained embeds (reviews / map) ---------- */
.site-embed { width: 100%; border: 0; display: block; background: var(--ink); }

/* ---------- legal / article / blog pages ---------- */
.legal-wrap { max-width: 820px; }
.legal-wrap h2 { font-family: var(--display); font-weight: 400; font-size: 1.55rem; letter-spacing: .5px; margin: 34px 0 12px; color: var(--text); }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap .lt-n { color: var(--red); margin-right: 10px; }
.legal-wrap p { color: var(--muted); margin: 0 0 14px; line-height: 1.75; }
.legal-wrap ul { color: var(--muted); margin: 0 0 16px; padding-left: 20px; line-height: 1.8; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: var(--text); }
.legal-wrap a { color: var(--red); }
.article { max-width: 760px; }
.article p { color: var(--muted); line-height: 1.8; margin: 0 0 18px; font-size: 1.05rem; }
.article h2 { font-family: var(--display); font-weight: 400; font-size: 1.7rem; letter-spacing: .5px; margin: 36px 0 14px; color: var(--text); }
.article ul { color: var(--muted); line-height: 1.8; margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease); text-decoration: none; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.blog-card .bc-top { height: 6px; background: linear-gradient(90deg, var(--red), transparent); }
.blog-card .bc-body { padding: 26px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin: 0 0 16px; flex: 1; }
.blog-card .bc-more { color: var(--red); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card .bc-more svg { width: 15px; height: 15px; }
.blog-meta { font-size: .85rem; color: var(--faint); margin-bottom: 14px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- logo / trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--ink-2); padding: 26px 0; }
.trust .container { display: flex; align-items: center; justify-content: center; gap: clamp(24px,5vw,64px); flex-wrap: wrap; }
.trust .t-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .92rem; font-weight: 500; }
.trust .t-item .ico { color: var(--red); display: grid; place-items: center; }
.trust .t-item svg { width: 20px; height: 20px; }

/* ---------- stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--ink); text-align: center; padding: 44px 16px 40px; position: relative; transition: background .25s var(--ease); }
.stat::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease); }
.stat:hover { background: var(--ink-2); }
.stat:hover::before { transform: scaleX(1); }
.stat-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 50%; color: var(--red); background: rgba(232,0,15,.1); border: 1px solid rgba(232,0,15,.25); }
.stat-ico svg { width: 24px; height: 24px; }
.stat-kicker { display: block; color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.stat .num { font-family: var(--display); font-weight: 400; font-size: clamp(2.8rem,5.2vw,4rem); color: var(--red); line-height: 1; letter-spacing: 1px; }
.stat .num .accent { color: var(--red); }
.stat .label { color: var(--muted); font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; }

/* ---------- specialists band ---------- */
.spec-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.spec-copy h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: .95; letter-spacing: .5px; margin: 12px 0 22px; color: var(--white); }
.spec-copy .lead { color: var(--muted); font-size: 1.1rem; line-height: 1.7; max-width: 600px; margin: 0 0 28px; }
.spec-copy .lead strong { color: var(--white); }
.spec-points { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; }
.spec-points li { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; font-size: 1rem; }
.spec-points li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--red); background: rgba(232,0,15,.1); border-radius: 50%; padding: 4px; }
.spec-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.spec-marques { display: grid; gap: 18px; }
.marque { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px; position: relative; overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.marque::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.marque:hover { transform: translateY(-4px); border-color: var(--line-2); }
.marque-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.marque h3 { font-family: var(--display); font-weight: 400; font-size: 2rem; letter-spacing: .5px; color: var(--white); margin: 0 0 8px; }
.marque p { color: var(--muted); font-size: .94rem; line-height: 1.6; margin: 0; }
@media (max-width: 880px) {
  .spec-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Carecusoft vehicle-stats widget (dark theme override) ---------- */
#carecut-2 { color: var(--text); font-family: var(--body); max-width: 960px; margin: 0 auto; }
#carecut-2 .acr-div, #carecut-2 [class*="acr-bg"] { background: var(--ink-3) !important; color: var(--text) !important; }
#carecut-2 .acr-2 { background: var(--ink-4) !important; }
#carecut-2 .acr-2, #carecut-2 .acr-2 * { color: var(--text) !important; }
#carecut-2 .acr-shadow { box-shadow: var(--shadow) !important; }
#carecut-2 .acr-border, #carecut-2 [class*="acr-border"] { border-color: var(--line) !important; }
#carecut-2 .acr-radius { border-radius: var(--radius-sm) !important; }
#carecut-2 .acr-select, #carecut-2 select, #carecut-2 input {
  background: var(--ink-4) !important; color: var(--text) !important;
  border: 1px solid var(--line-2) !important; border-radius: 8px !important;
  padding: 10px 14px !important; font-size: .95rem !important;
  height: auto !important; min-height: 46px !important; line-height: 1.4 !important;
}
#carecut-2 .acr-select:focus, #carecut-2 select:focus, #carecut-2 input:focus { border-color: var(--red) !important; outline: none !important; }
#carecut-2 select option { background: var(--ink-3); color: var(--text); }
#carecut-2 label, #carecut-2 [class*="acr-label"], #carecut-2 [class*="acr-title"],
#carecut-2 h1, #carecut-2 h2, #carecut-2 h3, #carecut-2 h4 { color: var(--text) !important; }
#carecut-2 [class*="acr-card"], #carecut-2 [class*="acr-panel"], #carecut-2 [class*="acr-box"], #carecut-2 [class*="acr-result"] {
  background: var(--ink-4) !important; color: var(--text) !important; border-color: var(--line) !important;
}
#carecut-2 table, #carecut-2 th, #carecut-2 td { color: var(--text) !important; border-color: var(--line) !important; background: transparent !important; }
#carecut-2 thead, #carecut-2 [class*="acr-head"] { background: var(--ink-2) !important; }
#carecut-2 a, #carecut-2 [class*="acr-link"], #carecut-2 .material-icons { color: var(--red) !important; }
#carecut-2 button, #carecut-2 [class*="acr-btn"] { background: var(--red) !important; color: #fff !important; border: none !important; border-radius: 8px !important; cursor: pointer; }

/* ---------- location FAQs ---------- */
.loc-faqs { max-width: 840px; margin: 0 auto; }
.loc-faq { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.loc-faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--white); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.loc-faq summary::-webkit-details-marker { display: none; }
.loc-faq summary::after { content: '+'; color: var(--red); font-size: 1.5rem; font-weight: 400; line-height: 1; flex-shrink: 0; }
.loc-faq[open] summary::after { content: '\2212'; }
.loc-faq p { padding: 0 22px 20px; color: var(--muted); margin: 0; line-height: 1.7; }

/* ---------- location model showcase ---------- */
.loc-models { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 840px; margin: 0 auto; }
.loc-model { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: border-color .2s var(--ease); }
.loc-model:hover { border-color: var(--line-2); }
.loc-model h3 { font-size: 1.05rem; margin: 0; color: var(--white); }
.loc-model .lm-plat { display: block; color: var(--muted); font-size: .78rem; font-weight: 500; margin-top: 4px; letter-spacing: .3px; }
.loc-model .lm-gain { color: var(--red); font-weight: 700; white-space: nowrap; font-size: .98rem; }
@media (max-width: 600px) { .loc-models { grid-template-columns: 1fr; } }

/* ---------- dyno proof ---------- */
.dyno-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dyno-card { margin: 0; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.dyno-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.dyno-img { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }
.dyno-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.dyno-card:hover .dyno-img img { transform: scale(1.04); }
.dyno-card figcaption { padding: 20px 22px 22px; }
.dyno-card figcaption h3 { margin: 0 0 6px; font-size: 1.15rem; }
.dyno-meta { color: var(--muted); font-size: .9rem; margin: 0; }
.dyno-meta span { color: var(--red); font-weight: 700; }
.dyno-cta { text-align: center; margin-top: 48px; }

/* ---------- dyno videos ---------- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-card { margin: 0; }
.video-facade, .video-frame { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; }
.video-facade { position: relative; padding: 0; cursor: pointer; background: var(--ink-2); border: 1px solid var(--line); }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease), opacity .25s var(--ease); }
.video-facade:hover img { transform: scale(1.04); opacity: .82; }
.video-play { position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.45); transition: transform .2s var(--ease); }
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-facade:hover .video-play { transform: scale(1.08); }
.video-frame { border: 0; }
.video-card figcaption { padding: 16px 4px 0; }
.video-card figcaption h3 { margin: 0 0 4px; font-size: 1.15rem; }
@media (max-width: 680px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- follow us ---------- */
.follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.follow-card { display: flex; align-items: center; gap: 20px; padding: 24px 26px; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.follow-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.follow-ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.follow-card.fb .follow-ico { background: #1877F2; }
.follow-card.ig .follow-ico { background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7); }
.follow-ico svg { width: 30px; height: 30px; }
.follow-txt { flex: 1; }
.follow-txt h3 { margin: 0 0 2px; font-size: 1.15rem; color: var(--white); }
.follow-txt p { margin: 0; color: var(--muted); font-size: .92rem; }
.follow-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.follow-cta svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.follow-card:hover .follow-cta svg { transform: translateX(4px); }
@media (max-width: 680px) { .follow-grid { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section.alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- cards / services ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.card {
  position: relative; overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--ink-4); }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(232,0,15,.12); color: var(--red);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 20px;
  border: 1px solid rgba(232,0,15,.2);
}
.card-tag { position: absolute; top: 22px; right: 22px; font-size: .68rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); background: rgba(232,0,15,.1); border: 1px solid rgba(232,0,15,.25); border-radius: 999px; padding: 5px 11px; }
.card h3 { margin-bottom: 10px; color: var(--text); }
.card p { color: var(--muted); margin-bottom: 0; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: .9rem; color: var(--red); }
.card .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* feature list (why us) compact */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(232,0,15,.1); color: var(--red);
  display: grid; place-items: center; font-size: 1.3rem; border: 1px solid rgba(232,0,15,.18);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.step { position: relative; text-align: center; padding: 0 6px; }
.step-node {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 24px;
  font-family: var(--display); font-weight: 400; font-size: 1.9rem; line-height: 1; color: var(--red);
  background: var(--ink-3); border: 1px solid rgba(232,0,15,.35);
  position: relative; z-index: 2;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.step:hover .step-node { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(232,0,15,.3); }
.step:not(:last-child)::before {
  content: ''; position: absolute; top: 31px; left: calc(50% + 34px); width: calc(100% - 44px); height: 2px; z-index: 0;
  background: linear-gradient(90deg, rgba(232,0,15,.5), var(--line-2));
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- testimonial ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
}
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { color: var(--text); font-size: 1rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--red-deep)); display: grid; place-items: center; font-weight: 700; color: #fff; }
.quote .who .nm { font-weight: 700; font-size: .92rem; }
.quote .who .car { font-size: .82rem; color: var(--faint); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(64px,9vw,110px) 0;
  background:
    radial-gradient(700px 360px at 50% -20%, rgba(232,0,15,.5), transparent 65%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-block: 1px solid var(--line);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--muted); max-width: 580px; margin: 0 auto 30px; font-size: 1.1rem; }

/* ---------- form ---------- */
.form-wrap { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .9rem; color: var(--text); }
input, select, textarea {
  width: 100%; padding: 13px 15px; margin-bottom: 18px;
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
textarea { min-height: 130px; resize: vertical; }

/* ---------- contact info ---------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-list .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(232,0,15,.1); color: var(--red); display: grid; place-items: center; font-size: 1.2rem; border: 1px solid rgba(232,0,15,.18); }
.info-list strong { display: block; margin-bottom: 2px; }
.info-list span { color: var(--muted); }
/* inline SVG icon sizing */
.icon svg { width: 26px; height: 26px; }
.feature .fico svg { width: 22px; height: 22px; }
.info-list .ico svg { width: 20px; height: 20px; }
/* compact check bullets for feature lists */
.info-list.checks li { margin-bottom: 14px; }
.info-list.checks .ico { width: 28px; height: 28px; border-radius: 8px; }
.info-list.checks .ico svg { width: 16px; height: 16px; }
.info-list.checks strong { font-size: .98rem; }

/* ---------- opening hours card ---------- */
.hours-card { margin-top: 28px; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hours-card h4 { display: flex; align-items: center; gap: 10px; margin: 0; padding: 16px 22px; font-family: var(--body); font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.hours-card h4 svg { width: 17px; height: 17px; color: var(--red); }
.hours-list { padding: 6px 22px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); font-weight: 500; }
.hours-row .time { color: var(--text); font-weight: 600; }
.hours-row.closed .time { color: var(--faint); font-weight: 500; }
.hours-row.today { margin: 0 -22px; padding: 11px 22px; background: rgba(232,0,15,.07); }
.hours-row.today .day { color: var(--red); font-weight: 700; }
.hours-row.today .day::after { content: ' · Today'; font-weight: 600; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(70px,9vw,120px) 0 clamp(46px,6vw,70px);
  background:
    radial-gradient(700px 360px at 50% -20%, rgba(232,0,15,.28), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.crumb { font-size: .82rem; color: var(--faint); margin-bottom: 16px; letter-spacing: .5px; }
.crumb a { color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer-grid p { color: var(--muted); }
.site-footer h4 { color: var(--white); font-family: var(--body); font-weight: 700; font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--red); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: var(--ink-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); }
.socials a:hover { color: var(--white); border-color: var(--red); background: var(--ink-4); }
.socials svg { width: 18px; height: 18px; }
.footer-areas { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; padding: 20px 0; border-top: 1px solid var(--line); margin-bottom: 4px; }
.footer-areas .fa-label { font-size: .76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-right: 4px; }
.footer-areas a { color: var(--muted); font-size: .9rem; font-weight: 600; }
.footer-areas a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--faint); font-size: .85rem; }

/* ---------- scroll reveal ----------
   Only hidden when JS is active (html.js). No-JS = fully visible. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
/* collapse main nav to hamburger early — many items + 2 buttons */
@media (max-width: 1024px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--ink-2);
    border-bottom: 1px solid var(--line); padding: 8px 0; align-items: stretch;
    z-index: 200; max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-dd { flex-direction: column; width: 100%; }
  .nav-dd-menu { position: static; transform: none; display: none; min-width: 0; width: 100%; border: none; background: transparent; box-shadow: none; padding: 0 0 8px; }
  .nav-dd.open .nav-dd-menu { display: flex; }
  .nav-dd-toggle::after { display: inline-block; transition: transform .2s var(--ease); }
  .nav-dd.open .nav-dd-toggle::after { transform: rotate(180deg); }
  .nav-dd.open .nav-dd-toggle { color: var(--text); }
  .nav-dd-menu li { padding: 0; }
  .nav-dd-menu a { text-align: center; color: var(--faint); padding: 8px 0; }
  .nav-dd-toggle { justify-content: center; padding: 13px 0 4px; }
  .nav-links li { width: 100%; text-align: center; padding: 13px 0; }
  .nav-links .nav-cta { padding: 14px 24px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .dyno { max-width: 520px; }
  .grid-3, .quotes, .dyno-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .step:not(:last-child)::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-3, .grid-2, .quotes, .steps, .form-row, .footer-grid, .stats, .dyno-grid { grid-template-columns: 1fr; }
  .stats { gap: 1px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
