/* ==========================================================================
   Super Keys Auto Locksmith — design system
   Tokens → primitives → layout → components → motion → responsive
   ========================================================================== */

:root {
  /* Brand */
  --red:        #e11922;
  --red-dark:   #a90f16;
  --red-glow:   rgba(225, 25, 34, .45);
  --magenta:    #ff2e93;
  --magenta-dark:#c2186c;
  --magenta-glow:rgba(255, 46, 147, .45);
  --cyan:       #22d3ee;
  --cyan-dark:  #0e93aa;
  --cyan-glow:  rgba(34, 211, 238, .4);
  --green:      #15803d;  /* AA-safe with white text (5.02:1) */
  --green-dark: #16833f;

  /* Per-section accent — overridden by [data-accent] */
  --accent:      var(--red);
  --accent-dark: var(--red-dark);
  --accent-glow: var(--red-glow);
  /* Brand red is only 3.87:1 on our surfaces. Small text uses a lightened
     variant so accent copy clears WCAG AA; --accent stays for display type,
     icons, borders and fills, which need 3:1 at most. */
  --accent-text: #f4444c;

  /* Surfaces */
  --bg:        #050505;
  --bg-2:      #0a0c0f;
  --surface:   #101318;
  --surface-2: #171b22;
  --line:      rgba(255, 255, 255, .10);
  --line-2:    rgba(255, 255, 255, .16);

  /* Text */
  --text:  #ffffff;
  --text-2:#c7cdd6;
  --muted: #8d95a1;

  /* Type */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Space (4/8 rhythm) */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;   --s7: 3rem;   --s8: 4rem;  --s9: 6rem;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 24px 70px rgba(0, 0, 0, .55);
  --shadow-sm: 0 8px 26px rgba(0, 0, 0, .4);

  --hdr-h: 74px;
  --holiday-h: 0px;

  /* Motion — one rhythm for the whole site */
  --dur-fast: 140ms;
  --dur:      220ms;
  --dur-slow: 380ms;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-in:  cubic-bezier(.55, .06, .68, .19);

  --z-hdr: 100; --z-drawer: 200; --z-callbar: 90;
}

[data-accent="magenta"] { --accent: var(--magenta); --accent-dark: var(--magenta-dark); --accent-glow: var(--magenta-glow); --accent-text: var(--magenta); }
[data-accent="cyan"]    { --accent: var(--cyan);    --accent-dark: var(--cyan-dark);    --accent-glow: var(--cyan-glow); --accent-text: var(--cyan); }
[data-accent="red"]     { --accent: var(--red);     --accent-dark: var(--red-dark);     --accent-glow: var(--red-glow); --accent-text: #f4444c; }

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}
body.locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { color: var(--text); margin: 0; font-weight: 800; letter-spacing: -.022em; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: var(--s4); z-index: 999;
  background: var(--accent); color: #fff; padding: var(--s3) var(--s5);
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 0; }

.i { width: 24px; height: 24px; flex: none; }
.i-sm { width: 18px; height: 18px; }
.star { color: #f5b301; fill: currentColor; }
.tick { color: var(--accent); }

/* --- Layout ------------------------------------------------------------ */
.wrap { width: min(1240px, 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section + .section { padding-top: 0; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text);
  margin-bottom: var(--s3);
}
.sec-head { max-width: 58ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.note {
  margin-top: var(--s6); color: var(--muted); font-size: .92rem;
  max-width: 62ch;
}

/* --- Holiday banner ----------------------------------------------------- */
.holiday {
  position: relative; z-index: calc(var(--z-hdr) + 1);
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  flex-wrap: wrap;
  background: var(--red); color: #fff;
  padding: var(--s2) var(--s4); text-align: center;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
}
.holiday strong { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.holiday-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* --- Header ------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: var(--z-hdr);
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.hdr.scrolled { background: rgba(5, 5, 5, .92); border-bottom-color: var(--line); }
.hdr-in {
  width: min(1400px, 100% - 2rem); margin-inline: auto;
  min-height: var(--hdr-h);
  display: flex; align-items: center; gap: var(--s5);
}
.brand { flex: none; display: block; }
.brand img { height: clamp(46px, 5.4vw, 62px); width: auto; }

.nav-desk { display: none; align-items: center; gap: var(--s2); margin-left: auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: var(--s1);
  padding: var(--s3) var(--s4); border-radius: 10px;
  font-size: .94rem; font-weight: 600; color: var(--text-2);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: #fff; background: rgba(255, 255, 255, .07); }
.nav-link[aria-current="page"] { color: #fff; }
.nav-link[aria-current="page"]::after {
  content: ""; position: absolute; inset: auto 12px 6px 12px; height: 2px; background: var(--accent-text);
}
.nav-link { position: relative; }
.has-menu { position: relative; }
.has-menu .i-sm { transition: transform var(--dur) var(--ease-out); }
.nav-link[aria-expanded="true"] .i-sm { transform: rotate(180deg); }

.menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  width: 380px; padding: var(--s3);
  background: rgba(16, 19, 24, .94);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform-origin: top left;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur);
}
.menu.open { opacity: 1; visibility: visible; transform: none; }
.menu-item {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3); border-radius: 12px;
  transition: background var(--dur-fast) var(--ease-out);
}
.menu-item:hover { background: rgba(255, 255, 255, .07); }
.menu-item .i { color: var(--accent); margin-top: 2px; }
.menu-item strong { display: block; color: #fff; font-size: .94rem; font-weight: 700; }
.menu-item small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.menu-all {
  display: flex; align-items: center; gap: var(--s2); justify-content: center;
  margin-top: var(--s2); padding: var(--s3); border-radius: 12px;
  border-top: 1px solid var(--line); color: var(--accent-text);
  font-size: .88rem; font-weight: 700;
}
.menu-all:hover { background: rgba(255, 255, 255, .05); }

.hdr-actions { display: flex; align-items: center; gap: var(--s2); margin-left: auto; }
.nav-desk ~ .hdr-actions { margin-left: 0; }
.pill {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-width: 60px; min-height: 52px; padding: var(--s2) var(--s3);
  border-radius: 12px; font-size: .64rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}
.pill .i { width: 20px; height: 20px; }
.pill:active { transform: scale(.95); }
.pill:hover { filter: brightness(1.12); }
.pill-call { background: var(--red); }
.pill-wa   { background: var(--green); }
.pill-menu { background: var(--surface-2); border: 1px solid var(--line-2); }
.burger { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.burger i { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* --- Drawer ------------------------------------------------------------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: rgba(0, 0, 0, .6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--dur) var(--ease-out);
}
.drawer-scrim.open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: calc(var(--z-drawer) + 1);
  width: min(400px, 88vw); display: flex; flex-direction: column;
  background: var(--bg-2); border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto; overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s4) var(--s5); border-bottom: 1px solid var(--line);
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  font-size: .78rem; color: var(--muted);
  position: sticky; top: 0; background: var(--bg-2); z-index: 1;
}
.drawer-x { font-size: 2rem; line-height: 1; color: var(--text-2); width: 44px; height: 44px; }
.drawer-nav { padding: var(--s4) var(--s5); flex: 1; }
.drawer-nav a {
  display: block; padding: var(--s3) 0; font-size: 1.02rem; font-weight: 600;
  color: var(--text-2); border-bottom: 1px solid rgba(255, 255, 255, .05);
  min-height: 46px;
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.drawer-nav a:hover, .drawer-nav a[aria-current="page"] { color: #fff; padding-left: var(--s2); }
.drawer-nav a[aria-current="page"] { color: var(--accent-text); }
.drawer-label {
  margin-top: var(--s5); margin-bottom: var(--s2);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-text);
}
.drawer-cta { display: grid; gap: var(--s2); padding: var(--s5); border-top: 1px solid var(--line); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s3);
  min-height: 52px; padding: var(--s3) var(--s5);
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  color: #fff; text-align: left;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn:active { transform: scale(.975); }
.btn:hover { filter: brightness(1.1); }
.btn span { display: flex; flex-direction: column; line-height: 1.2; }
.btn strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.btn small { font-size: .8rem; font-weight: 500; opacity: 1; }
.btn-call { background: var(--red); box-shadow: 0 10px 30px rgba(225, 25, 34, .28); }
.btn-wa   { background: var(--green); box-shadow: 0 10px 30px rgba(21, 128, 61, .3); }
.btn-ghost {
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line-2);
  color: #fff; min-height: 48px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-block { width: 100%; }

/* --- Hero carousel ------------------------------------------------------ */
.hero { position: relative; background: var(--bg); }
.hero-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.hero-viewport.dragging { cursor: grabbing; }
.hero-track {
  display: flex; will-change: transform;
  backface-visibility: hidden;
}
.slide {
  position: relative; flex: 0 0 100%; min-width: 100%;
  min-height: clamp(560px, 82svh, 820px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.slide-media { position: absolute; inset: 0; }
.slide-media img, .slide-media picture { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-media img,
.phero-media img { filter: brightness(1.65) saturate(1.24) contrast(1.04); }
.slide-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 34%, rgba(0,0,0,.16) 62%, rgba(0,0,0,.28) 100%),
    linear-gradient(to right, rgba(0,0,0,.88) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.04) 100%);
}
.slide-copy {
  position: relative; z-index: 1;
  width: min(1240px, 100% - 2.5rem); margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 4rem);
  max-width: 100%;
}
.slide-h {
  font-size: clamp(2.6rem, 11vw, 5.6rem);
  font-weight: 900; line-height: .93; letter-spacing: -.035em;
  text-transform: uppercase; margin-bottom: var(--s4);
}
.slide-h .hl { display: block; color: #fff; }
.slide-h .hl-accent { color: var(--accent); }
.slide-kicker {
  position: relative; padding-top: var(--s4);
  font-size: clamp(1rem, 2.4vw, 1.35rem); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: #fff;
  margin-bottom: var(--s3);
}
.slide-kicker::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 56px; height: 4px; border-radius: 2px; background: var(--accent);
}
.slide-lede {
  max-width: 46ch; font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-2); margin-bottom: var(--s5);
}
.slide-feats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s4); max-width: 560px; margin-bottom: var(--s5);
}
.slide-feats li {
  display: flex; flex-direction: column; gap: var(--s2);
  padding-left: var(--s4); border-left: 1px solid var(--line-2);
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #fff; line-height: 1.3;
}
.slide-feats li:first-child { padding-left: 0; border-left: 0; }
.slide-feats .i { color: var(--accent); width: 30px; height: 30px; stroke-width: 1.4; }

.coverage {
  display: flex; gap: var(--s3); align-items: center;
  padding: var(--s3) var(--s4); margin-bottom: var(--s5);
  max-width: 560px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line-2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.coverage .i { color: var(--accent); }
.coverage strong { display: block; color: #fff; font-size: .95rem; font-weight: 800; letter-spacing: .04em; }
.coverage small { display: block; color: var(--muted); font-size: .82rem; }

.slide-cta { display: grid; gap: var(--s3); max-width: 620px; margin-bottom: var(--s4); }
.slide-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .9rem; font-weight: 700; color: var(--accent-text);
  transition: gap var(--dur-fast) var(--ease-out);
}
.slide-link:hover { gap: var(--s3); }

.hero-controls {
  display: flex; align-items: center; justify-content: center; gap: var(--s4);
  padding: var(--s4) var(--s5);
  background: var(--bg);
}
.ctrl {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04);
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.ctrl:hover { background: rgba(255, 255, 255, .12); border-color: var(--line-2); }
.ctrl:active { transform: scale(.92); }
.counter { font-size: .9rem; letter-spacing: .1em; color: var(--muted); font-variant-numeric: tabular-nums; }
.counter strong { color: #fff; font-size: 1.05rem; font-weight: 800; }
.dots { display: flex; align-items: center; gap: var(--s2); }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), width var(--dur) var(--ease-out);
}
.dot::before { content: ""; position: absolute; inset: -17px; } /* 44px hit area */
.dot { position: relative; }
.dot[aria-current="true"] { background: var(--accent); width: 26px; border-radius: 5px; }

.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s3) var(--s6);
  padding: var(--s4) var(--s5) var(--s6);
  border-top: 1px solid var(--line);
  width: min(1240px, 100% - 2.5rem); margin-inline: auto;
}
.hero-trust li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-2);
}
.hero-trust .i { color: var(--muted); }

/* --- Proof bar ---------------------------------------------------------- */
.proof { background: var(--bg-2); border-block: 1px solid var(--line); }
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s5) var(--s4); padding-block: var(--s6);
}
.proof article { display: flex; flex-direction: column; gap: var(--s1); }
.proof strong { color: #fff; font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 800; letter-spacing: -.02em; }
.proof span { color: var(--muted); font-size: .86rem; line-height: 1.45; }

/* --- Intro band --------------------------------------------------------- */
.intro-in {
  display: grid; gap: var(--s5); align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.intro-in p { font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: var(--text-2); max-width: 62ch; }
.intro-in strong { color: #fff; }

/* --- Key scroll sequence ------------------------------------------------
   The source frames are shot on a light studio backdrop (#d6d6d6 -> #bfc0c2).
   Rather than punch a white rectangle into a black page, the whole section is
   a full-bleed light panel in that same colour, so the photo has no visible
   edges at all. The copy sits beside the key, never on top of it. */
.sequence { height: 320svh; position: relative; }
.sequence-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  background: linear-gradient(135deg, #dcdcdc 0%, #d3d4d5 45%, #bfc0c2 100%);
  display: grid; align-items: center;
}
/* Soften the hand-off from the dark page above and below */
.sequence-sticky::before,
.sequence-sticky::after {
  content: ""; position: absolute; left: 0; right: 0; height: 90px; pointer-events: none;
}
.sequence-sticky::before { top: 0; background: linear-gradient(to bottom, rgba(5,5,5,.30), transparent); }
.sequence-sticky::after  { bottom: 0; background: linear-gradient(to top, rgba(5,5,5,.30), transparent); }

.sequence-grid {
  display: grid; gap: var(--s5); align-items: center;
  position: relative; z-index: 1;
}
.sequence-copy { max-width: 44ch; }
.sequence-copy .eyebrow { color: #9c0d14; }  /* 4.65:1 even on the panel's darkest point */
.sequence-copy h2 {
  color: #111827; font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin-bottom: var(--s4); letter-spacing: -.03em;
}
.sequence-copy p { color: #3d4553; font-size: clamp(1rem, 1.5vw, 1.1rem); }

.sequence-stage { display: grid; place-items: center; }
.sequence-frame {
  width: 100%; max-width: 760px; height: auto;
  /* Feathered edge: with the panel matching the photo backdrop, the frame
     boundary disappears completely. */
  -webkit-mask-image: radial-gradient(ellipse 70% 68% at 50% 50%, #000 58%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 68% at 50% 50%, #000 58%, transparent 100%);
}
.sequence-bar {
  margin-top: var(--s6); width: min(280px, 100%); height: 3px;
  background: rgba(17, 24, 39, .16); border-radius: 2px; overflow: hidden;
}
.sequence-bar span { display: block; height: 100%; width: 0; background: #9c0d14; border-radius: 2px; }

/* --- Cards -------------------------------------------------------------- */
.card-grid {
  display: grid; gap: var(--s5);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.card:active { transform: translateY(-2px) scale(.995); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.card-icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}
.card h3 { font-size: 1.18rem; }
.card p { color: var(--muted); font-size: .93rem; flex: 1; }
.card-more {
  display: inline-flex; align-items: center; gap: var(--s2);
  color: var(--accent-text); font-size: .86rem; font-weight: 700;
  letter-spacing: .03em; margin-top: var(--s1);
}
.card-more i { opacity: .5; font-style: normal; }

/* --- CTA band ----------------------------------------------------------- */
.band {
  background: linear-gradient(140deg, #16090b 0%, var(--bg-2) 55%);
  border-block: 1px solid var(--line);
}
.band-in {
  display: grid; gap: var(--s5); align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.band h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin-bottom: var(--s2); }
.band p { color: var(--text-2); max-width: 52ch; }
.band-actions { display: grid; gap: var(--s3); }

/* --- Why ---------------------------------------------------------------- */
.why-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.why-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: var(--s3); }
.why-copy p { color: var(--muted); }
.why-list { display: grid; gap: var(--s4); }
.why-list article {
  display: flex; gap: var(--s4); align-items: flex-start;
  padding: var(--s5); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.why-list article:hover { border-color: var(--accent); transform: translateX(4px); }
.why-list .i { color: var(--accent); }
.why-list strong { display: block; color: #fff; font-size: 1.02rem; margin-bottom: var(--s1); }
.why-list p { color: var(--muted); font-size: .92rem; }

/* --- Brands ------------------------------------------------------------- */
/* 10 marks — 2 columns on phones, 5 from tablet up, so no orphan row.
   The PNGs are pre-processed to transparent white marks, so no filter is needed. */
.brand-row {
  display: grid; gap: var(--s3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.brand-row li {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s3); min-height: 132px;
  padding: var(--s4) var(--s2); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.brand-row li:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
/* Fixed box + contain normalises very different logo aspect ratios optically */
.brand-row img {
  height: 44px; width: auto; max-width: 104px; object-fit: contain;
  opacity: .72; transition: opacity var(--dur) var(--ease-out);
}
.brand-row li:hover img { opacity: 1; }
.brand-row span { font-size: .78rem; font-weight: 600; color: var(--muted); text-align: center; }

/* --- Chips / areas ------------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: var(--s2); }
.chips li {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s4); border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--text-2);
}
.chips-lg li { padding: var(--s3) var(--s5); font-size: .95rem; }
.chips .i { color: var(--accent); }

.area-grid {
  display: grid; gap: var(--s4);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.area-card {
  display: flex; flex-direction: column; gap: var(--s3);
  padding: var(--s5); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.area-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.area-card h2 { font-size: 1.2rem; }
.area-card p { color: var(--muted); font-size: .9rem; flex: 1; }

/* --- Page hero (inner pages) -------------------------------------------- */
.phero { position: relative; display: flex; align-items: flex-end; min-height: clamp(480px, 70svh, 700px); overflow: hidden; }
.phero-media { position: absolute; inset: 0; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; }
.phero-in { position: relative; z-index: 1; padding-block: clamp(2rem, 5vw, 3.5rem); }
.phero .slide-h { font-size: clamp(2.3rem, 8vw, 4.4rem); }

.crumbs { margin-bottom: var(--s4); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: var(--s2); font-size: .82rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: var(--s2); opacity: .5; }
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: var(--accent-text); }
.crumbs [aria-current] { color: var(--accent-text); }

.page-head {
  padding-block: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-head-tall { padding-block: clamp(4rem, 12vw, 8rem); }
.page-head h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); margin-bottom: var(--s4); max-width: 20ch; }
.page-head p { color: var(--text-2); max-width: 60ch; font-size: 1.05rem; }
.page-head .btn-ghost { margin-top: var(--s5); }
.stars { display: flex; gap: 2px; margin-bottom: var(--s4); }
.stars .i { width: 22px; height: 22px; }
.notfound-links { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }

/* --- Fact bar ----------------------------------------------------------- */
.factbar { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.factbar-in {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s5) var(--s4); padding-block: var(--s5);
}
.factbar span { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s1); }
.factbar strong { color: #fff; font-size: 1.05rem; font-weight: 800; }

/* --- Detail layout ------------------------------------------------------ */
.detail-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.detail-main h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: var(--s6); }
.points { display: grid; gap: var(--s5); }
.points article { display: flex; gap: var(--s4); align-items: flex-start; }
.points strong { display: block; color: #fff; font-size: 1.05rem; margin-bottom: var(--s1); }
.points p { color: var(--muted); }
.points .i { margin-top: 4px; }

.aside-card {
  padding: var(--s5); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid; gap: var(--s3);
}
.aside-card h3 { font-size: 1.2rem; }
.aside-card > p { color: var(--muted); font-size: .92rem; margin-bottom: var(--s2); }
.aside-list { display: grid; gap: var(--s2); margin-top: var(--s3); padding-top: var(--s4); border-top: 1px solid var(--line); }
.aside-list li { display: flex; align-items: center; gap: var(--s2); font-size: .88rem; color: var(--text-2); }

/* --- FAQ ---------------------------------------------------------------- */
.faq-list { display: grid; gap: var(--s3); }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--dur) var(--ease-out);
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s4) var(--s5); cursor: pointer; list-style: none;
  font-weight: 700; color: #fff; font-size: 1rem; min-height: 60px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { color: var(--accent); flex: none; transition: transform var(--dur) var(--ease-out); }
.faq details[open] summary .i { transform: rotate(180deg); }
.faq-a { padding: 0 var(--s5) var(--s5); }
.faq-a p { color: var(--muted); max-width: 68ch; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-methods { display: grid; gap: var(--s3); }
.method {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s4); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.method:hover { border-color: var(--accent); transform: translateX(4px); }
.method > span:nth-child(2) { flex: 1; display: flex; flex-direction: column; }
.method strong { color: #fff; font-size: 1rem; }
.method small { color: var(--muted); font-size: .87rem; }
.method-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: #fff; }
.method-call { background: var(--red); }
.method-wa { background: var(--green); }
.method-mail { background: var(--surface-2); border: 1px solid var(--line-2); }
.hours {
  padding: var(--s5); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); margin-top: var(--s3);
}
.hours h2 { display: flex; align-items: center; gap: var(--s2); font-size: 1rem; margin-bottom: var(--s3); }
.hours p { color: var(--muted); font-size: .92rem; }
.hours strong { color: #fff; }
.hours-note { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); color: var(--accent-text) !important; font-weight: 600; }

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 1.4rem; margin-bottom: var(--s2); }
.form-sub { color: var(--muted); font-size: .9rem; margin-bottom: var(--s5); }
.qform { display: grid; gap: var(--s4); }
.qrow { display: flex; flex-direction: column; gap: var(--s2); }
.qrow label { font-size: .86rem; font-weight: 700; color: var(--text-2); }
.req { color: var(--red); }
.qform input, .qform select, .qform textarea {
  width: 100%; min-height: 50px; padding: var(--s3) var(--s4);
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 10px; color: #fff; font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.qform textarea { min-height: 110px; resize: vertical; }
.qform input:focus, .qform select:focus, .qform textarea:focus { border-color: var(--accent); background: var(--surface-2); }
.qform input[aria-invalid="true"], .qform select[aria-invalid="true"] { border-color: var(--red); }
.reg-input { text-transform: uppercase; font-weight: 700; letter-spacing: .1em; }
.hint { font-size: .8rem; color: var(--muted); }
.err { font-size: .82rem; color: #ff6b70; font-weight: 600; }
.qnote { font-size: .84rem; color: var(--muted); text-align: center; }
.qnote a { color: var(--accent-text); font-weight: 600; }

/* --- Reviews ------------------------------------------------------------ */
.review-grid { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.review-card {
  display: flex; flex-direction: column; gap: var(--s3);
  padding: var(--s5); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.review-card strong { color: #fff; font-size: 1.05rem; }
.review-card p { color: var(--muted); font-size: .92rem; }

/* --- Footer ------------------------------------------------------------- */
.ftr { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 7vw, 5rem); }
.ftr-grid { display: grid; gap: var(--s6); padding-bottom: var(--s7); }
.ftr-brand img { height: 66px; width: auto; margin-bottom: var(--s4); }
.ftr-brand p { color: var(--muted); font-size: .92rem; max-width: 40ch; }
.rating { display: flex; align-items: center; gap: var(--s2); margin-top: var(--s4) !important; color: var(--text-2) !important; }
.rating strong { color: #fff; }
.ftr h2 { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s4); }
.ftr-grid > div > a {
  display: block; padding: var(--s2) 0; color: var(--text-2); font-size: .93rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.ftr-grid > div > a:hover { color: var(--accent-text); }
.ftr-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-block: var(--s5);
  border-top: 1px solid var(--line);
}
.ftr-base p { color: var(--muted); font-size: .84rem; }
.ftr-base .ftr-credit { color: rgba(255, 255, 255, .34); font-size: .72rem; white-space: nowrap; }
.ftr-credit a { color: inherit; transition: color var(--dur-fast) var(--ease-out); }
.ftr-credit a:hover,
.ftr-credit a:focus-visible { color: rgba(255, 255, 255, .78); }

/* --- Sticky mobile call bar --------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2);
  padding: var(--s3) var(--s4) calc(var(--s3) + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.callbar.show { transform: none; }
.callbar .btn { min-height: 50px; font-size: .95rem; box-shadow: none; }
body { padding-bottom: 0; }

/* --- Reveal on scroll --------------------------------------------------- */
/* Gated behind .js so content is never hidden when the script doesn't run */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

/* --- Responsive --------------------------------------------------------- */
@media (min-width: 600px) {
  .brand-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .slide-cta { grid-template-columns: 1fr 1fr; }
  .band-actions { grid-template-columns: 1fr 1fr; }
  .factbar-in { grid-template-columns: repeat(4, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .slide-feats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); }
  .callbar { display: none; }
}

@media (min-width: 900px) {
  .ftr-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .band-in { grid-template-columns: 1.2fr 1fr; }
  .intro-in { grid-template-columns: 1fr auto; }
  .why-grid { grid-template-columns: 1fr 1.3fr; }
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
  .detail-grid { grid-template-columns: 1.55fr .95fr; }
  .detail-aside { position: sticky; top: calc(var(--hdr-h) + var(--s5)); }
  .sequence-grid { grid-template-columns: 1fr 1.15fr; gap: var(--s7); }
}

@media (min-width: 1080px) {
  .nav-desk { display: flex; }
  .pill-menu { display: none; }
  .pill { flex-direction: row; gap: var(--s2); font-size: .78rem; min-height: 46px; padding: var(--s2) var(--s4); }
  .slide-copy { padding-block: clamp(3rem, 6vw, 5rem); }
  .slide-h { font-size: clamp(3.4rem, 6vw, 5.6rem); }
  .slide-lede { font-size: 1.12rem; }
  .hero-controls { justify-content: flex-start; width: min(1240px, 100% - 2.5rem); margin-inline: auto; padding-inline: 0; }
}

/* --- Motion & transparency preferences ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-track { transition: none; }
  .sequence { height: auto; }
  .sequence-sticky { position: static; height: auto; padding-block: var(--s8); }
}

@media (prefers-reduced-transparency: reduce) {
  .hdr, .callbar { background: #050505; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu { background: var(--surface); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .coverage { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--surface); }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255,255,255,.3); --line-2: rgba(255,255,255,.45); --muted: #b9c0ca; }
  .slide-scrim { background: linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.85) 50%, rgba(0,0,0,.7) 100%); }
}

@media print {
  .hdr, .drawer, .callbar, .hero-controls, .sequence { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --- Mobile refinements -------------------------------------------------- */
@media (max-width: 700px) {
  .ftr-base {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
    padding-bottom: calc(var(--s5) + 74px + env(safe-area-inset-bottom));
  }
  .ftr-base .ftr-credit { white-space: normal; }

  /* Vertical-only scrim so the vehicle still reads behind the copy */
  .slide-scrim {
    background: linear-gradient(to top,
      rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 30%,
      rgba(0,0,0,.62) 58%, rgba(0,0,0,.42) 78%, rgba(0,0,0,.72) 100%);
  }
  .slide-lede,
  .coverage small {
    color: #fff;
    opacity: 1;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
  }
  .hdr-in {
    display: grid;
    width: 100%;
    padding-inline: 8px;
    gap: 8px;
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .brand { width: 72px; }
  .brand img { width: 72px; height: auto; max-height: 52px; }
  .hdr-actions {
    width: 214px;
    margin-left: 0;
    justify-self: end;
    display: grid;
    grid-template-columns: 58px 82px 58px;
    gap: 8px;
  }
  .pill { width: 100%; min-width: 0; min-height: 52px; padding: 6px 4px; }
  .pill .i { width: 20px; height: 20px; }
  .pill-wa { font-size: .58rem; }

  .slide { display: flex; flex-direction: column; min-height: 0; background: #050505; }
  .slide-media,
  .phero-media { background: #050505; }
  .slide-media {
    position: relative;
    inset: auto;
    height: clamp(320px, 90vw, 360px);
  }
  .slide-media img,
  .slide-media picture {
    height: 100%;
    object-position: center;
    transform: none;
  }
  .slide-media .slide-scrim {
    background: linear-gradient(to top, #050505 0%, rgba(5,5,5,.72) 20%, rgba(5,5,5,.18) 58%, rgba(5,5,5,.08) 100%);
  }
  [data-slide-id="locksmith"] .slide-media img { object-position: 44% 56%; transform: none; }
  .slide-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: -72px 0 0;
    padding: 0 20px 32px;
  }
  .slide-copy > * { max-width: 100%; min-width: 0; }
  .slide-h {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    line-height: .94;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .slide-kicker { padding-top: 12px; margin-bottom: 12px; font-size: .92rem; }
  .slide-lede { margin-bottom: 20px; font-size: .95rem; line-height: 1.5; }
  .slide-feats { width: 100%; gap: 14px 10px; margin-bottom: 20px; }
  .slide-feats li { min-width: 0; overflow-wrap: anywhere; }
  .slide-feats li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .coverage { width: 100%; padding: 12px; margin-bottom: 20px; }
  .coverage span { min-width: 0; }
  .coverage small { line-height: 1.45; overflow-wrap: anywhere; }
  .slide-cta { width: 100%; gap: 8px; margin-bottom: 14px; }
  .slide-link { margin-top: auto; }

  .phero { display: block; min-height: 0; background: #050505; }
  .phero-media { position: relative; inset: auto; height: clamp(280px, 82vw, 330px); }
  .phero-media img { transform: none; object-position: center; }
  .phero-in { margin-top: -56px; padding-block: 0 32px; }

  .holiday { gap: var(--s2); font-size: .74rem; padding-inline: var(--s3); }
  .holiday strong { letter-spacing: .05em; }

  /* Keep the three proof marks on one line */
  .hero-trust { gap: var(--s2); justify-content: space-between; padding-inline: 0; }
  .hero-trust li { flex: 1; flex-direction: column; text-align: center; gap: var(--s1); font-size: .62rem; letter-spacing: .04em; }
  .hero-trust li + li { border-left: 1px solid var(--line); }

  .hero-controls {
    position: absolute;
    top: clamp(138px, 39vw, 158px);
    left: 0;
    right: 0;
    z-index: 3;
    width: auto;
    margin: 0;
    justify-content: space-between;
    padding: 0 10px;
    background: transparent;
    pointer-events: none;
  }
  .hero-controls .counter,
  .hero-controls .dots { display: none; }
  .hero-controls .ctrl {
    width: 44px;
    height: 44px;
    background: rgba(5, 5, 5, .72);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    pointer-events: auto;
  }

  /* Room for the fixed call bar */
  main { padding-bottom: 78px; }

  .sequence { height: 260svh; }
  .sequence-copy h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .sequence-frame { max-width: 100%; }
}

@media (max-width: 420px) {
  .slide-feats { gap: var(--s3) var(--s2); }
  .slide-feats li { font-size: .68rem; padding-left: var(--s3); }
  .slide-feats .i { width: 26px; height: 26px; }
}
