/* ==========================================================================
   LOCKSMITH PRIME — Luxury Hero Section
   Design tokens, header, hero, responsive + reduced-motion rules.
   ========================================================================== */

/* ---- Design tokens -------------------------------------------------- */
:root {
  /* Color */
  --c-black: #0a0a0a;        /* base background, slightly warm near-black */
  --c-black-soft: #121212;
  --c-white: #f5f4f0;        /* off-white, not paper-pure */
  --c-white-dim: rgba(245, 244, 240, 0.68);
  --c-gold: #d4af37;
  --c-gold-soft: rgba(212, 175, 55, 0.35);
  --c-blue: #4ea8ff;
  --c-blue-soft: rgba(78, 168, 255, 0.30);

  /* Overlay over hero video */
  --overlay-base: rgba(8, 8, 8, 0.56);
  --overlay-scrolled: rgba(6, 6, 6, 0.80);

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "DM Sans", -apple-system, "Inter", Helvetica, Arial, sans-serif;

  /* Layout */
  --header-h: 92px;
  --container-w: 1280px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ------------------------------------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

::selection { background: var(--c-gold); color: var(--c-black); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s var(--ease-luxury),
              backdrop-filter 0.5s var(--ease-luxury),
              border-color 0.5s var(--ease-luxury),
              height 0.4s var(--ease-luxury);
}

/* Glass-blur state once the user scrolls past the threshold */
.site-header.is-scrolled {
  height: 76px;
  background: rgba(8, 8, 8, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.header-inner {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo --------------------------------------------------------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--c-white);
  white-space: nowrap;
}
.brand-word span { color: var(--c-gold); }

/* Center nav ----------------------------------------------------------- */
.main-nav {
  justify-self: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
}
.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white-dim);
  padding: 6px 2px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--c-gold);
  transition: width 0.35s var(--ease-luxury);
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--c-white);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 100%; }

/* Call button ------------------------------------------------------------ */
.header-cta {
  justify-self: end;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-black);
  background: linear-gradient(135deg, var(--c-gold), #f0d27a);
  padding: 0.7rem 1.3rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
}
.btn-call:hover,
.btn-call:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(212, 175, 55, 0.55);
}

/* Mobile nav toggle (hidden on desktop) --------------------------------- */
.nav-toggle {
  display: none;
  width: 26px; height: 20px;
  position: relative;
  justify-self: end;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-white);
  transition: transform 0.35s var(--ease-luxury), opacity 0.35s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav lives off-screen/hidden by default; only enabled at the
   mobile breakpoint below. Without this, it would sit in the header's
   flex flow on desktop and push other elements around. */
.mobile-nav { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--c-black); /* shows while video decodes */
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* transform-origin centered so the scale-on-scroll feels like a slow push-in */
  transform-origin: center center;
  will-change: transform;
}
.hero-media video,
.hero-media img.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Dark cinematic overlay + soft vignette for legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--overlay-base);
  transition: background-color 0.6s ease;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 78%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.75) 100%);
}

/* Ambient signature glow — sits behind the headline like light off a cut key */
.hero-glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle, var(--c-gold-soft) 0%, rgba(212,175,55,0.08) 38%, transparent 70%);
  filter: blur(10px);
  mix-blend-mode: screen;
}

/* Floating particles layer */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0.35;
  will-change: transform, opacity;
}
.particle.is-blue { background: var(--c-blue); }

/* Content ------------------------------------------------------------ */
.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-h) clamp(20px, 6vw, 48px) 64px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.6rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  max-width: 18ch;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span { display: block; }
.hero-headline .line-2 {
  background: linear-gradient(100deg, var(--c-gold) 10%, #f3da9a 45%, var(--c-gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-white-dim);
}
.hero-sub .dot { color: var(--c-gold); margin: 0 0.6em; }

.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s var(--ease-luxury), border-color 0.35s ease;
}
.btn-primary {
  color: var(--c-black);
  background: linear-gradient(135deg, var(--c-gold), #f0d27a);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(212, 175, 55, 0.5);
}
.btn-secondary {
  color: var(--c-white);
  background: transparent;
  border: 1px solid rgba(245, 244, 240, 0.35);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-3px);
}

.hero-phone-wrap {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-phone-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-white-dim);
}
.hero-phone {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-white);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.hero-phone:hover, .hero-phone:focus-visible {
  color: var(--c-blue);
  text-shadow: 0 0 24px var(--c-blue-soft);
}

/* Scroll cue ----------------------------------------------------------- */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-white-dim);
}
.scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--c-gold), transparent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-cta .btn-call span.btn-call-text { display: none; }
  .header-cta .btn-call { padding: 0.7rem; border-radius: 50%; }

  /* Slide-down mobile menu */
  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8, 8, 8, 0.94);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    z-index: 99;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-luxury), opacity 0.35s ease;
  }
  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 1.4rem clamp(20px, 6vw, 48px) 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  .mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--c-white-dim);
  }
  .mobile-nav a:hover { color: var(--c-gold); }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); max-width: 14ch; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .hero-phone { font-size: clamp(1.3rem, 7vw, 1.7rem); }
  .scroll-cue { display: none; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero-content { padding-top: 80px; padding-bottom: 24px; justify-content: flex-start; }
  .scroll-cue { display: none; }
}

/* ==========================================================================
   CONTAINER / SECTION RHYTHM
   ========================================================================== */
.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.section-alt { background: var(--c-black-soft); }
.section-divider { width: 64px; height: 2px; background: linear-gradient(90deg, var(--c-gold), transparent); margin: 1.4rem 0 0; }
.section-divider.centered { margin: 1.4rem auto 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.9rem;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
  max-width: 24ch;
}
.h2 .accent {
  background: linear-gradient(100deg, var(--c-gold) 10%, #f3da9a 45%, var(--c-gold) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--c-white-dim);
  max-width: 62ch;
  line-height: 1.7;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.2rem; }
.section-head.left { text-align: left; margin: 0 0 3rem; }
.section-head .lede { margin-left: auto; margin-right: auto; }
.section-head.left .lede { margin-left: 0; }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-bar { padding: calc(var(--header-h) + 28px) 0 0; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; letter-spacing: 0.03em; color: var(--c-white-dim);
}
.breadcrumb a { color: var(--c-white-dim); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--c-gold); }

/* ==========================================================================
   INNER-PAGE HERO (static image — lighter than the homepage video hero)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-black);
}
.page-hero.is-tall { min-height: 58vh; }
.page-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transform-origin: center; will-change: transform;
}
.page-hero .hero-overlay { background: rgba(8,8,8,0.66); }
.page-hero-content { position: relative; z-index: 4; padding: calc(var(--header-h) + 24px) 0 56px; width: 100%; }
.page-hero .breadcrumb { margin-bottom: 1.6rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  max-width: 26ch;
}
.page-hero h1 .accent {
  background: linear-gradient(100deg, var(--c-gold) 10%, #f3da9a 45%, var(--c-gold) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.page-hero .lede { color: var(--c-white-dim); margin-top: 1.1rem; max-width: 56ch; }
.page-hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Small stat plate row under inner hero */
.stat-strip {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(212,175,55,0.16);
  border-top: 1px solid rgba(212,175,55,0.16);
}
.stat-cell {
  background: var(--c-black);
  padding: 1.4rem clamp(16px, 3vw, 28px);
  text-align: center;
}
.stat-cell .num { font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.9rem); color: var(--c-gold); }
.stat-cell .label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-white-dim); margin-top: 0.3rem; }

/* ==========================================================================
   CARDS — services / features / hardware gallery
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem 1.7rem;
  transition: transform 0.4s var(--ease-luxury), border-color 0.4s ease, background 0.4s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(155deg, rgba(212,175,55,0.07), rgba(255,255,255,0.015));
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--c-white-dim); line-height: 1.65; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--c-gold);
  transition: gap 0.3s ease;
}
.card:hover .card-link { gap: 0.7rem; }
.card a.card-cover { position: absolute; inset: 0; border-radius: inherit; }

/* Card with product photo */
.card-photo { padding: 0; overflow: hidden; }
.card-photo .photo-wrap { aspect-ratio: 4/3; overflow: hidden; background: #fff; }
.card-photo .photo-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease-luxury); }
.card-photo:hover .photo-wrap img { transform: scale(1.06); }
.card-photo .card-photo-body { padding: 1.5rem 1.6rem 1.8rem; }

/* ==========================================================================
   PROCESS / TIMELINE
   ========================================================================== */
.timeline { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.timeline-step:first-child { border-top: none; }
.timeline-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-gold);
  opacity: 0.85;
}
.timeline-num::before { content: counter(step, decimal-leading-zero); }
.timeline-body h4 { font-size: 1.04rem; font-weight: 600; margin-bottom: 0.35rem; }
.timeline-body p { font-size: 0.92rem; color: var(--c-white-dim); line-height: 1.65; }

/* ==========================================================================
   SIGNS / SYMPTOMS LIST
   ========================================================================== */
.check-list { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.check-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.93rem; color: var(--c-white-dim); line-height: 1.55; }
.check-item .mark { color: var(--c-gold); flex-shrink: 0; margin-top: 0.15rem; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid rgba(255,255,255,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600; color: var(--c-white);
}
.faq-q .icon { color: var(--c-gold); font-size: 1.1rem; transition: transform 0.35s var(--ease-luxury); flex-shrink: 0; }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}
.faq-a-inner { padding: 0 0.2rem 1.4rem; font-size: 0.92rem; color: var(--c-white-dim); line-height: 1.7; max-width: 70ch; }

/* ==========================================================================
   PRICING FACTORS
   ========================================================================== */
.pricing-box {
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 4px;
  padding: 1.8rem 1.8rem 1.6rem;
  background: rgba(212,175,55,0.04);
}
.pricing-box h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.8rem; }
.pricing-box ul { list-style: none; display: grid; gap: 0.55rem; }
.pricing-box li { font-size: 0.9rem; color: var(--c-white-dim); display: flex; gap: 0.6rem; }
.pricing-box li::before { content: "—"; color: var(--c-gold); flex-shrink: 0; }
.pricing-note { font-size: 0.8rem; color: var(--c-white-dim); opacity: 0.7; margin-top: 0.9rem; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  border-radius: 6px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(78,168,255,0.06));
  border: 1px solid rgba(212,175,55,0.25);
  text-align: center;
}
.cta-banner h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; }
.cta-banner h3 .accent { color: var(--c-gold); }
.cta-banner p { color: var(--c-white-dim); margin-top: 0.7rem; max-width: 56ch; margin-inline: auto; }
.cta-banner .hero-actions { margin-top: 1.6rem; }
.cta-banner.is-urgent { background: linear-gradient(135deg, rgba(198,40,40,0.16), rgba(212,175,55,0.05)); border-color: rgba(198,40,40,0.32); }

/* ==========================================================================
   AREA / LANDMARK CHIPS
   ========================================================================== */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.8rem; color: var(--c-white-dim);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
}
.chip.is-gold { border-color: rgba(212,175,55,0.4); color: var(--c-gold); }

/* Service / area link pill grid (used heavily on the homepage + hub pages) */
.pill-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.pill {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--c-white-dim);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.pill:hover {
  border-color: rgba(212,175,55,0.45);
  color: var(--c-white);
  background: rgba(212,175,55,0.06);
  transform: translateX(3px);
}
.pill .arrow { color: var(--c-gold); opacity: 0; transition: opacity 0.3s ease; }
.pill:hover .arrow { opacity: 1; }

.county-group { margin-bottom: 2.6rem; }
.county-group h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

/* ==========================================================================
   RELATED LINKS ROW
   ========================================================================== */
.related-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.related-row a {
  font-size: 0.85rem; color: var(--c-white);
  padding: 0.6rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.related-row a:hover { border-color: var(--c-blue); color: var(--c-blue); }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.form-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 6px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.form-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-card .form-sub { font-size: 0.86rem; color: var(--c-white-dim); margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-white-dim); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,244,240,0.32); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-gold); background: rgba(212,175,55,0.05);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-card .btn-submit {
  width: 100%; justify-content: center;
  margin-top: 0.4rem;
}
.form-note { font-size: 0.74rem; color: var(--c-white-dim); opacity: 0.65; margin-top: 1rem; text-align: center; }
.form-success {
  display: none;
  text-align: center; padding: 2rem 1rem;
}
.form-success.is-shown { display: block; }
.form-success .icon { font-size: 2.2rem; color: var(--c-gold); margin-bottom: 0.8rem; }
.form-success h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--c-white-dim); font-size: 0.9rem; }

/* ==========================================================================
   GALLERY (used on automotive / hardware pages)
   ========================================================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.gallery-tile {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.08);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

/* Full-bleed editorial image (infographic etc.) */
.figure-block { margin: 2.4rem 0; }
.figure-block img { width: 100%; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.figure-block figcaption { margin-top: 0.7rem; font-size: 0.8rem; color: var(--c-white-dim); text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-black-soft); border-top: 1px solid rgba(212,175,55,0.12); padding: 4rem 0 1.6rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--c-white-dim); line-height: 1.65; max-width: 36ch; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.95rem; color: var(--c-gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }
.footer-col a, .footer-col span { font-size: 0.86rem; color: var(--c-white-dim); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.76rem; color: var(--c-white-dim); opacity: 0.75;
}

/* ==========================================================================
   SIMPLE PAGES (sitemap / 404)
   ========================================================================== */
.simple-list { list-style: none; display: grid; gap: 0.5rem; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); }
.simple-list a { font-size: 0.88rem; color: var(--c-white-dim); }
.simple-list a:hover { color: var(--c-gold); }

/* ==========================================================================
   RESPONSIVE — site-wide components
   ========================================================================== */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
  .timeline-step { grid-template-columns: 44px 1fr; }
  .page-hero { min-height: 52vh; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media, .hero-headline .line span, .hero-sub, .hero-actions, .hero-phone-wrap,
  .btn, .btn-call, .brand, .main-nav a, .page-hero-bg, .card, .pill, .faq-a {
    transition: none !important;
    animation: none !important;
  }
  .hero-particles { display: none; }
}
