/* ==========================================================================
   Drop & Detail — Stance & Shine Co.
   Automotive workshop | Satellite Town, Rawalpindi
   Design system: charcoal + performance red + chrome
   ========================================================================== */

/* -------- Design tokens -------- */
:root {
  /* Brand */
  --red:        #e01414;
  --red-dark:   #b30d0d;
  --red-glow:   rgba(224, 20, 20, 0.38);

  /* Surfaces (light theme) */
  --ink:        #ffffff;   /* page bg */
  --ink-2:      #f3f5f8;   /* raised / alternating sections */
  --ink-3:      #ffffff;   /* cards */
  --line:       rgba(17, 20, 28, 0.10);
  --line-strong:rgba(17, 20, 28, 0.18);

  /* Text (dark on light — names kept for compatibility) */
  --white:      #171a21;   /* primary text */
  --mist:       #545b6a;   /* secondary text */
  --muted:      #8a90a0;   /* muted text */

  /* Chrome accent */
  --chrome-1:   #6b7180;
  --chrome-2:   #8a90a0;

  /* Layout */
  --max:        1200px;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 22px 50px -24px rgba(17, 20, 28, 0.28);
  --shadow-red: 0 18px 40px -18px var(--red-glow);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Anton", "Oswald", Impact, sans-serif;
  --font-head:    "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

/* -------- Layout helpers -------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--red); }

h1, h2, h3 { line-height: 1.05; font-weight: 400; }
.h-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.5px;
  line-height: 1.02;
}
.section-title .accent { color: var(--red); }
.lead { color: var(--mist); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 60ch; }
.center .lead { margin-inline: auto; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 26px 55px -16px var(--red-glow); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.btn--light { background: #ffffff; color: #171a21; }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--block { width: 100%; }

/* -------- Top bar -------- */
.topbar {
  background: #12141a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.topbar a { color: rgba(255,255,255,0.72); }
.topbar a:hover { color: #fff; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 42px; }
.topbar a { color: rgba(255,255,255,0.72); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--red); }
.topbar__socials { display: flex; gap: 14px; }
.topbar__socials svg { width: 16px; height: 16px; }
@media (max-width: 780px) { .topbar__hide { display: none; } .topbar .wrap { justify-content: center; } }

/* -------- Header / nav -------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(255, 255, 255, 0.97); border-color: var(--line-strong); box-shadow: 0 8px 30px -18px rgba(17,20,28,0.25); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__emblem { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand__name .amp { color: var(--red); }
.brand__sub {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--chrome-2);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); background: rgba(17,20,28,0.05); }
.nav__links a.active { color: var(--red); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; letter-spacing: .5px; }
.nav__phone svg { width: 18px; height: 18px; color: var(--red); }

.nav__toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 14px clamp(18px, 5vw, 40px) 26px;
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 12px; font-size: 1rem; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,11,14,0.97) 0%, rgba(10,11,14,0.86) 38%, rgba(10,11,14,0.55) 70%, rgba(10,11,14,0.7) 100%),
    radial-gradient(1000px 600px at 78% -10%, rgba(224,20,20,0.28), transparent 60%),
    url("../img/hero.jpg") center right / cover no-repeat,
    linear-gradient(180deg, #0c0d10 0%, #0a0b0e 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
/* hero copy sits over the dark car photo — keep its text light */
.hero__copy {
  --white: #ffffff;
  --mist: rgba(255,255,255,0.86);
  --muted: rgba(255,255,255,0.62);
  --line-strong: rgba(255,255,255,0.26);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--mist);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #24d17e; box-shadow: 0 0 0 4px rgba(36,209,126,.18); }
.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  letter-spacing: 0.5px;
  line-height: 0.94;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--chrome-2);
}
.hero__sub { color: var(--mist); font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 52ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 30px; }
.hero__stat .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.hero__stat .num .accent { color: var(--red); }
.hero__stat .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-top: 6px; }

/* Hero side card */
.hero__card {
  position: relative;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero__card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(224,20,20,.6), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.hero__card h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.1rem; margin-bottom: 4px; }
.hero__card p.muted { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.hero__servicelist li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.hero__servicelist li:first-child { border-top: none; }
.hero__servicelist .ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(224,20,20,.12); color: var(--red); display: grid; place-items: center; flex: none; }
.hero__servicelist .ic svg { width: 18px; height: 18px; }
.hero__servicelist .arrow { margin-left: auto; color: var(--muted); }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { order: 2; }
}

/* -------- Marquee strip -------- */
.strip {
  background: var(--red);
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,.15);
}
.strip__track { display: flex; gap: 40px; white-space: nowrap; padding: 16px 0; animation: marquee 26s linear infinite; }
.strip__track span { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; font-size: 0.95rem; color: #fff; display: inline-flex; align-items: center; gap: 40px; }
.strip__track span::after { content: "◆"; color: rgba(255,255,255,.55); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------- Services -------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 48px; }
.svc {
  position: relative;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--red); transition: width .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.svc:hover::before { width: 100%; }
.svc__num { position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-size: 2.4rem; color: rgba(17,20,28,.06); }
.svc__ic {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(224,20,20,.12); color: var(--red);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .35s, color .35s;
}
.svc__ic svg { width: 28px; height: 28px; }
.svc:hover .svc__ic { background: var(--red); color: #fff; }
.svc h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 1.25rem; margin-bottom: 10px; }
.svc p { color: var(--mist); font-size: 0.94rem; margin-bottom: 18px; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc__tags span { font-size: 0.74rem; letter-spacing: .5px; padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }

/* -------- Feature / split -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--flip .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } }

.split__media {
  position: relative;
  border-radius: var(--radius);
  min-height: 380px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(500px 300px at 70% 20%, rgba(224,20,20,.28), transparent 60%),
    linear-gradient(160deg, var(--ink-3), #0a0b0e);
  display: grid; place-items: center;
}
.split__media .media-mark { color: rgba(255,255,255,.08); width: 55%; max-width: 260px; }
.media-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(8,9,11,.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 16px 18px; display: flex; align-items: center; gap: 14px;
}
.media-badge .m-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--red); color:#fff; display: grid; place-items: center; flex: none; }
.media-badge .m-ic svg { width: 20px; height: 20px; }
.media-badge strong { display: block; font-family: var(--font-head); letter-spacing: .5px; text-transform: uppercase; }
.media-badge span { font-size: .82rem; color: var(--muted); }

.feature-list { margin-top: 26px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .chk { width: 26px; height: 26px; border-radius: 8px; background: rgba(224,20,20,.14); color: var(--red); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list strong { display: block; font-family: var(--font-head); letter-spacing: .3px; font-size: 1.02rem; }
.feature-list p { color: var(--mist); font-size: .9rem; }

/* Dealer badges */
.dealer-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.dealer {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2);
}
.dealer .d-mark { font-family: var(--font-display); font-size: 1.3rem; color: var(--red); }
.dealer small { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; }
.dealer strong { font-family: var(--font-head); letter-spacing: .5px; }

/* -------- Stats band -------- */
.statband { background: var(--ink-2); border-block: 1px solid var(--line); }
.statband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.statband__grid .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--white); }
.statband__grid .num .accent { color: var(--red); }
.statband__grid .label { color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; margin-top: 6px; }
@media (max-width: 640px) { .statband__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }

/* -------- Process -------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 48px; counter-reset: step; }
.step {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px 28px;
}
.step__n {
  font-family: var(--font-display); font-size: 1.1rem; color: #fff;
  width: 46px; height: 46px; border-radius: 12px; background: var(--red);
  display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-red);
}
.step h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--mist); font-size: .9rem; }

/* -------- Gallery -------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 44px; }
.gtile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 240px; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--ink-3), #0a0b0e);
  display: grid; place-items: center; transition: transform .35s var(--ease);
}
.gtile:hover { transform: scale(1.02); }
.gtile.tall { min-height: 340px; }
.gtile .g-mark { color: rgba(255,255,255,.09); width: 42%; }
.gtile .g-cap {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: .82rem; color: var(--mist);
}
.gtile .g-cap::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--red); margin-right: 8px; vertical-align: middle; }

/* -------- Team -------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 44px; }
.member {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center; transition: transform .35s var(--ease), border-color .35s;
}
.member:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.member__avatar {
  width: 82px; height: 82px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 2rem; color: #fff;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 3px solid rgba(255,255,255,.08);
}
.member h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.2rem; }
.member .role { color: var(--red); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin: 4px 0 16px; }
.member__call { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); letter-spacing: .5px; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 999px; transition: background .25s, color .25s, border-color .25s; }
.member__call svg { width: 16px; height: 16px; color: var(--red); transition: color .25s; }
.member__call:hover { background: var(--red); border-color: var(--red); color: #fff; }
.member__call:hover svg { color: #fff; }

/* -------- CTA band -------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .5;
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 54ch; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* -------- Contact -------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); margin-bottom: 16px; }
.info-card .i-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(224,20,20,.12); color: var(--red); display: grid; place-items: center; flex: none; }
.info-card .i-ic svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--mist); font-size: .95rem; }
.info-card a:hover { color: var(--white); }

.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); }
.form-card h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.4rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 24px; font-size: .92rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--mist); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: var(--ink); color: var(--white);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,20,20,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 16px; }
.map-embed iframe { display: block; width: 100%; height: 280px; border: 0; filter: grayscale(.15); }

/* -------- Page hero (subpages) -------- */
.page-hero {
  position: relative; padding: clamp(90px, 14vw, 150px) 0 clamp(50px, 7vw, 80px);
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(224,20,20,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--ink-2));
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: .5px; }
.page-hero h1 .accent { color: var(--red); }
.crumb { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 16px; }
.crumb a:hover { color: var(--red); }
.crumb span { color: var(--red); }

/* -------- FAQ -------- */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--ink-2); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; color: var(--white); padding: 20px 22px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: background .25s, border-color .25s; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--red); }
.faq__q .plus::before { width: 12px; height: 2px; }
.faq__q .plus::after { width: 2px; height: 12px; transition: transform .3s; }
.faq__item.open .plus { background: var(--red); border-color: var(--red); }
.faq__item.open .plus::before, .faq__item.open .plus::after { background: #fff; }
.faq__item.open .plus::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 22px 22px; color: var(--mist); font-size: .95rem; }

/* -------- Footer -------- */
.footer {
  /* dark-island: re-scope tokens so children render light-on-dark */
  --white: #ffffff;
  --mist: rgba(255,255,255,0.70);
  --muted: rgba(255,255,255,0.48);
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.16);
  --ink-2: #0e1015;
  background: #0b0d11; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 64px; color: var(--mist);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin: 18px 0; max-width: 34ch; }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: .95rem; margin-bottom: 20px; color: var(--white); }
.footer ul li { margin-bottom: 11px; }
.footer ul a, .footer__contact li { color: var(--muted); font-size: .92rem; transition: color .2s; display: inline-flex; align-items: center; gap: 9px; }
.footer ul a:hover { color: var(--red); }
.footer__contact li { margin-bottom: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 3px; }
.footer__socials { display: flex; gap: 12px; margin-top: 6px; }
.footer__socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--mist); transition: all .25s; }
.footer__socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--muted); font-size: .85rem; }
.footer__bottom a:hover { color: var(--red); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* -------- Floating call button (mobile) -------- */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 96; display: grid; width: 60px; height: 60px; border-radius: 50%; background: var(--red); color: #fff; place-items: center; box-shadow: 0 14px 30px -8px var(--red-glow); animation: pulse 2.4s infinite; }
.fab:hover { background: var(--red-dark); transform: translateY(-2px); }
.fab svg { width: 24px; height: 24px; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(224,20,20,.5); } 50% { box-shadow: 0 0 0 14px rgba(224,20,20,0); } }

/* -------- Services promo popup (bottom-right) -------- */
.promo {
  position: fixed; right: 24px; bottom: 98px; z-index: 95;
  width: min(330px, calc(100vw - 40px));
  background: #ffffff; color: #171a21;
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px -16px rgba(17,20,28,.4);
  padding: 20px 20px 22px;
  transform: translateY(24px) scale(.96); opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.promo.show { opacity: 1; transform: none; pointer-events: auto; }
.promo__close {
  position: absolute; top: 12px; right: 12px; width: 28px; height: 28px;
  border: none; background: rgba(17,20,28,.06); border-radius: 50%;
  display: grid; place-items: center; color: #545b6a; font-size: 16px; line-height: 1;
  transition: background .2s, color .2s;
}
.promo__close:hover { background: var(--red); color: #fff; }
.promo__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .68rem; font-weight: 600; color: var(--red);
  background: rgba(224,20,20,.10); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px;
}
.promo__badge .pd { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2.4s infinite; }
.promo h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; font-size: 1.18rem; line-height: 1.15; margin-bottom: 6px; color: #171a21; }
.promo p { font-size: .88rem; color: #545b6a; margin-bottom: 14px; }
.promo__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.promo__chips span { font-size: .72rem; letter-spacing: .3px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: #545b6a; }
.promo__actions { display: grid; gap: 8px; }
.promo__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-size: .9rem;
  background: var(--red); color: #fff; padding: 13px 18px; border-radius: 999px;
  transition: background .25s, transform .25s;
}
.promo__cta svg { width: 17px; height: 17px; }
.promo__cta:hover { background: var(--red-dark); transform: translateY(-2px); }
.promo__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); letter-spacing: .5px; font-weight: 500; font-size: .86rem;
  color: #171a21; padding: 11px 18px; border: 1px solid var(--line-strong); border-radius: 999px;
  transition: border-color .25s, color .25s;
}
.promo__call svg { width: 16px; height: 16px; color: var(--red); }
.promo__call:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 480px) { .promo { bottom: 94px; } }

/* -------- Reveal on scroll -------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .strip__track { animation: none; } * { scroll-behavior: auto; } }

/* -------- Photo treatments (generated imagery) -------- */
.split__media {
  background-size: cover;
  background-position: center;
}
.split__media.has-photo .media-mark { display: none; }

.gtile { isolation: isolate; }
.gtile .g-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gtile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,9,11,.9) 0%, rgba(8,9,11,.25) 55%, rgba(8,9,11,.05) 100%);
}
.gtile:hover .g-img { transform: scale(1.06); }
.gtile .g-cap { z-index: 2; }
