/* =============================================================
   Overtone AV — Audio / Sound Installation template
   Home theater · Whole-home audio · Car audio · Calibration
   ----
   Design DNA: Dark, premium, high-contrast — a mastering-room
   aesthetic. Near-black surfaces, a warm VU-meter GOLD as the
   hero accent, a cool EQ/waveform TEAL used with restraint for
   the "signal" moments. Geometric display sans (Sora) over a
   warm humanist body (Hanken Grotesk), an editorial serif italic
   (Instrument Serif) for emphasis, and a technical mono
   (JetBrains Mono) for specs. Signature: a live spectrum-EQ
   meter + a drawn waveform in the hero.

   Standalone stylesheet — loaded only by this template's pages.
   Built for the albertsondesigns.com industry-templates gallery.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Accents */
  --gold: #F2A63B;        /* VU-meter glow — primary accent, CTAs */
  --gold-deep: #D98A22;   /* hovers, gradients */
  --gold-soft: #F7C377;   /* lighter gold for text/emphasis on dark */
  --gold-tint: rgba(242, 166, 59, 0.14);
  --gold-line: rgba(242, 166, 59, 0.34);

  --teal: #35E0C4;        /* EQ / waveform / live "signal" accent */
  --teal-deep: #17B7A0;
  --teal-tint: rgba(53, 224, 196, 0.13);

  /* Surfaces (dark) */
  --ink: #0A0C10;         /* page base — near-black */
  --ink-2: #07090C;       /* deepest — footer wells */
  --surface: #11141B;     /* lifted section band */
  --surface-2: #161A22;   /* card surface */
  --surface-3: #1E232D;   /* raised / hover card */

  /* Text */
  --white: #FFFFFF;
  --fog: #C9D0DA;         /* primary body text on dark */
  --mist: #8B94A3;        /* muted / secondary */
  --steel: #5C6674;       /* faint labels */

  /* Lines */
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.055);
  --line-3: rgba(255, 255, 255, 0.15);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.38);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.48);
  --shadow-lift: 0 34px 80px rgba(0, 0, 0, 0.62);
  --shadow-gold: 0 16px 40px rgba(242, 166, 59, 0.26);

  --radius: 18px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fog);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
}
@media (max-width: 800px) { .container { padding: 0 22px; } }

/* =============================================================
   Type system
   ============================================================= */
.serif { font-family: 'Instrument Serif', Georgia, serif; }
.mono {
  font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 700;
}
.h-display {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
}
.h-display em, .h-section em, .hero-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0;
}
.h-section {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
}
.h-card {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--white);
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before, .eyebrow.gold.center::after { background: var(--gold); }
.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
  line-height: 1.62;
  color: var(--fog);
  max-width: 60ch;
  font-weight: 400;
}
.lede strong { color: var(--white); font-weight: 600; }
p { color: var(--mist); }
.muted { color: var(--steel); }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--gold);
  color: #1A1204;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line-3);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}
.btn-teal {
  background: transparent;
  color: var(--teal);
  border-color: rgba(53, 224, 196, 0.4);
}
.btn-teal:hover { background: var(--teal-tint); border-color: var(--teal); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 1.5px solid var(--gold-line);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-lg { padding: 17px 34px; font-size: 16px; }

/* =============================================================
   Top utility ribbon
   ============================================================= */
.ribbon {
  background: var(--ink-2);
  color: var(--mist);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 120;
  border-bottom: 1px solid var(--line-2);
}
.ribbon-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ribbon .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.ribbon .pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(53, 224, 196, 0.22);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53, 224, 196, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(53, 224, 196, 0); }
}
.ribbon .row { display: inline-flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.ribbon a { color: var(--mist); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, 0.2); }
.ribbon a:hover { color: var(--gold-soft); text-decoration-color: var(--gold); }
@media (max-width: 720px) {
  .ribbon-inner { justify-content: center; }
  .ribbon .row.ribbon-hours { display: none; }
}

/* =============================================================
   Nav (dark, glassy)
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(9, 11, 15, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  transition: padding 0.3s ease;
}
.nav.scrolled .nav-inner { padding: 11px 0; }

/* Wordmark logo */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-word b {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand-word span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
@media (max-width: 400px) { .brand-word b { font-size: 18px; } }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mist);
  letter-spacing: 0.005em;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 22px; }

.nav-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.01em;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--gold); }
.nav-book {
  background: var(--gold);
  color: #1A1204;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-book:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--white);
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(9, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 36px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s var(--ease), opacity 0.3s ease, padding 0.3s ease;
  }
  .nav-links.open { max-height: 420px; opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav-links a { display: block; width: 100%; padding: 14px 0; font-size: 16px; }
  .nav-phone { display: none; }
  .nav-toggle { display: grid; }
}

/* =============================================================
   HERO — layered, dark, with live EQ + waveform signature
   ============================================================= */
.hero {
  position: relative;
  background: var(--ink);
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
/* Photographic hero base — dark home-cinema, heavily overlaid for legibility */
.hero-media {
  position: absolute;
  inset: -14% 0;
  z-index: -3;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.08);
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 520px at 80% -6%, rgba(242, 166, 59, 0.14), transparent 56%),
    linear-gradient(90deg, rgba(10, 12, 16, 0.94) 0%, rgba(10, 12, 16, 0.58) 48%, rgba(10, 12, 16, 0.32) 100%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.30) 0%, rgba(10, 12, 16, 0.74) 76%, var(--ink) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.15) translate(-1.6%, -1.2%); }
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 520px at 70% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(900px 520px at 70% 20%, #000 0%, transparent 72%);
  opacity: 0.5;
  z-index: -2;
}
/* Ambient breathing haze — gold/teal glow that pulses behind the hero */
.hero-haze {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(46% 46% at 70% 42%, rgba(242, 166, 59, 0.20) 0%, rgba(53, 224, 196, 0.10) 44%, transparent 72%);
  filter: blur(52px);
  opacity: 0;
  transform: scale(0.95);
  animation: haze-entry 0.6s cubic-bezier(0.16,1,0.3,1) 1.1s forwards, haze-pulse 7s ease-in-out 1.9s infinite;
  will-change: opacity, transform;
}
@keyframes haze-entry { from { opacity: 0; transform: scale(0.95); } to { opacity: 0.7; transform: scale(1); } }
@keyframes haze-pulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 0.88; transform: scale(1.06); } }
/* Per-word impact pulse — flashes as each headline word lands (JS-driven) */
.beat-pulse {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(52% 44% at 24% 46%, rgba(242, 166, 59, 0.30) 0%, rgba(53, 224, 196, 0.12) 38%, transparent 68%);
  opacity: 0;
  will-change: opacity;
}
/* Drawn waveform sweeping the base of the hero */
.hero-wave {
  position: absolute;
  left: 0; right: 0;
  bottom: 6%;
  width: 100%;
  height: 160px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero-wave path { fill: none; stroke: var(--teal); stroke-width: 2; }
.hero-wave path.w2 { stroke: var(--gold); opacity: 0.55; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

/* Status chip — live booking availability */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 9px 9px 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}
.status-chip .live-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.status-chip .live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  opacity: 0;
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.status-chip .status-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
.status-chip .status-text small {
  display: inline;
  color: var(--mist);
  font-weight: 500;
}
.status-chip .status-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-tint);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5.6vw, 4.55rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title .slam-word { display: inline-block; }
.hero-title .slam-word__inner { display: inline-block; }

.hero-lede {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--fog);
  line-height: 1.62;
  max-width: 52ch;
  margin-bottom: 22px;
}
.hero-locale {
  font-size: 14.5px;
  color: var(--mist);
  margin-bottom: 30px;
  max-width: 54ch;
}
.hero-actions {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mist);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hero side — process card + live EQ meter inset */
.hero-side { position: relative; }
.process-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 2;
}
.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.process-card-head .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}
.process-card-head .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.steps { list-style: none; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--line);
}
.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  padding: 11px 0;
  position: relative;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--line);
  color: var(--mist);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.step.is-active .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1204;
  box-shadow: 0 0 0 4px var(--gold-tint);
}
.step.is-done .step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: #06110E;
}
.step.is-done .step-num::after {
  content: "✓";
  position: absolute;
  font-size: 16px;
}
.step.is-done .step-num .num-digit { display: none; }
.step-body .step-title {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.step-body .step-desc {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.5;
  margin-top: 2px;
}
.step-body .step-time {
  display: inline-block;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.step.is-active .step-body .step-time { color: var(--gold); }

/* Live EQ meter inset — the signature interaction */
.eq-meter {
  position: absolute;
  bottom: -34px;
  left: -30px;
  width: 244px;
  background: linear-gradient(180deg, var(--surface-3), var(--surface-2));
  border: 1px solid var(--line-3);
  border-radius: 18px;
  padding: 15px 16px 14px;
  box-shadow: var(--shadow-lift);
  z-index: 3;
}
.eq-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.eq-meter-head .eqm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.eq-meter-head .eqm-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.eq-meter-head .eqm-range {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 58px;
}
.eq-bar {
  flex: 1;
  height: 100%;
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--teal) 100%);
  transform: scaleY(0.2);
  transform-origin: bottom;
  animation: eq 1.3s ease-in-out infinite;
}
@keyframes eq {
  0%, 100% { transform: scaleY(0.18); }
  50%      { transform: scaleY(1); }
}
.eq-bar:nth-child(1)  { animation-duration: 1.10s; animation-delay: -0.20s; }
.eq-bar:nth-child(2)  { animation-duration: 0.86s; animation-delay: -0.60s; }
.eq-bar:nth-child(3)  { animation-duration: 1.32s; animation-delay: -0.10s; }
.eq-bar:nth-child(4)  { animation-duration: 0.72s; animation-delay: -0.45s; }
.eq-bar:nth-child(5)  { animation-duration: 1.05s; animation-delay: -0.90s; }
.eq-bar:nth-child(6)  { animation-duration: 0.94s; animation-delay: -0.30s; }
.eq-bar:nth-child(7)  { animation-duration: 1.44s; animation-delay: -0.70s; }
.eq-bar:nth-child(8)  { animation-duration: 0.80s; animation-delay: -0.15s; }
.eq-bar:nth-child(9)  { animation-duration: 1.18s; animation-delay: -0.55s; }
.eq-bar:nth-child(10) { animation-duration: 0.90s; animation-delay: -1.00s; }
.eq-bar:nth-child(11) { animation-duration: 1.26s; animation-delay: -0.35s; }
.eq-bar:nth-child(12) { animation-duration: 0.76s; animation-delay: -0.80s; }
.eq-bar:nth-child(13) { animation-duration: 1.12s; animation-delay: -0.25s; }
.eq-bar:nth-child(14) { animation-duration: 0.98s; animation-delay: -0.65s; }
.eq-bar:nth-child(15) { animation-duration: 1.36s; animation-delay: -0.05s; }
.eq-bar:nth-child(16) { animation-duration: 0.84s; animation-delay: -0.50s; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 54px; }
  .eq-meter { left: auto; right: 14px; bottom: -30px; width: 210px; }
}
@media (max-width: 560px) {
  .eq-meter { position: static; width: 100%; margin-top: 18px; box-shadow: var(--shadow-card); }
  .process-card { padding: 22px; }
}

/* =============================================================
   Trust strip — gear brands we install
   ============================================================= */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 34px 0;
}
.trust-strip-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-chip {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fog);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}
.trust-chip:hover {
  border-color: var(--gold-line);
  color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* =============================================================
   Section system
   ============================================================= */
section { padding: clamp(64px, 8vw, 106px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .h-section { margin-bottom: 16px; }

/* =============================================================
   Consult band (echoes "book a design consult")
   ============================================================= */
.avail { background: var(--surface); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.avail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.avail-text .h-section { margin-bottom: 20px; }
.avail-text p { font-size: 16.5px; line-height: 1.68; color: var(--fog); margin-bottom: 16px; }
.avail-list { list-style: none; margin: 24px 0 30px; }
.avail-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  font-size: 15.5px;
  color: var(--fog);
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.avail-list li:last-child { border-bottom: none; }
.avail-list li .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.avail-list li .ic svg { width: 14px; height: 14px; }
.avail-list li strong { color: var(--white); font-weight: 700; }

.avail-panel {
  background: linear-gradient(165deg, var(--surface-2), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.avail-panel::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 166, 59, 0.28), transparent 70%);
}
.avail-panel h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
  position: relative;
}
.avail-panel .sub { color: var(--mist); font-size: 14px; margin-bottom: 24px; position: relative; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
.avail-rows { position: relative; }
.avail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.avail-row:last-child { border-bottom: none; }
.avail-row .ar-label { display: flex; flex-direction: column; }
.avail-row .ar-title { font-weight: 600; font-size: 15px; color: var(--white); }
.avail-row .ar-meta { font-size: 12.5px; color: var(--mist); margin-top: 1px; }
.avail-row .ar-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ar-status.open { color: #8FF0DC; background: rgba(53, 224, 196, 0.16); }
.ar-status.always { color: var(--gold-soft); background: var(--gold-tint); }

@media (max-width: 900px) {
  .avail-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   Services grid
   ============================================================= */
.services { background: var(--ink); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-3);
  background: var(--surface-3);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--gold); color: #1A1204; border-color: var(--gold); transform: rotate(-6deg); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 9px; }
.svc-card p { font-size: 14.5px; color: var(--mist); line-height: 1.58; flex: 1; }
.svc-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-soft);
  transition: gap 0.25s ease;
}
.svc-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.svc-card:hover .svc-link { gap: 11px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Process band — "How an install works" (full section)
   ============================================================= */
.process-band {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(53, 224, 196, 0.06), transparent 60%),
    var(--surface);
  color: var(--white);
  border-top: 1px solid var(--line-2);
}
.process-band .h-section { color: var(--white); }
.process-band .lede { color: var(--fog); }
.pb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.pb-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-3) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.pb-step { position: relative; z-index: 1; }
.pb-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 20px;
  border: 2px solid var(--gold-line);
  box-shadow: 0 0 0 6px var(--surface), 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}
.pb-step h3 { color: var(--white); font-size: 20px; margin-bottom: 9px; }
.pb-step p { color: var(--mist); font-size: 14.5px; line-height: 1.58; }
.pb-step .time {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
@media (max-width: 900px) {
  .pb-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .pb-grid::before { display: none; }
}
@media (max-width: 540px) { .pb-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Systems / formats we build (programs-equivalent)
   ============================================================= */
.programs { background: var(--ink); }
.programs-inner {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 54px;
  align-items: center;
}
.programs-intro .eyebrow { margin-bottom: 16px; }
.programs-intro h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); margin-bottom: 12px; }
.programs-intro p { font-size: 14.5px; color: var(--mist); line-height: 1.6; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.prog-cell {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.prog-cell:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--surface-3);
}
.prog-cell .pc-title {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.prog-cell .pc-sub {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 5px;
}
@media (max-width: 900px) {
  .programs-inner { grid-template-columns: 1fr; gap: 30px; }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   Team / founder (lead installer)
   ============================================================= */
.team { background: var(--surface); border-top: 1px solid var(--line-2); }
.founder-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  margin-bottom: 60px;
}
.founder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
  background: var(--surface-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-badge {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(16, 19, 26, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-badge .fb-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: #1A1204;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.founder-badge .fb-ic svg { width: 22px; height: 22px; }
.founder-badge .fb-title { font-size: 13.5px; font-weight: 700; color: var(--white); line-height: 1.2; }
.founder-badge .fb-sub { font-size: 11.5px; color: var(--mist); }

.founder-body .eyebrow { margin-bottom: 16px; }
.founder-body .h-section { margin-bottom: 8px; }
.founder-body .founder-role {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.founder-body p { font-size: 16px; line-height: 1.68; color: var(--fog); margin-bottom: 16px; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.cred {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.cred .cred-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.cred .cred-ic svg { width: 16px; height: 16px; }
.cred .cred-text { font-size: 13.5px; color: var(--mist); line-height: 1.4; }
.cred .cred-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; }
@media (max-width: 900px) {
  .founder-row { grid-template-columns: 1fr; gap: 36px; }
  .creds-grid { grid-template-columns: 1fr; }
}

/* Team members grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tm-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-3); }
.tm-photo {
  aspect-ratio: 1 / 1;
  background: var(--surface-3);
  position: relative;
  overflow: hidden;
}
.tm-photo img { width: 100%; height: 100%; object-fit: cover; }
.tm-initial {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  font-family: 'Sora', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  background: linear-gradient(150deg, var(--surface-3), var(--ink));
}
.tm-body { padding: 18px 20px 22px; }
.tm-body h4 { font-size: 16px; margin-bottom: 3px; }
.tm-body .tm-role { font-size: 12.5px; color: var(--gold-soft); font-weight: 600; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Stats band
   ============================================================= */
.stats {
  background: var(--ink-2);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  text-align: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .plus, .stat-num .suffix { color: var(--gold); }
.stat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}
@media (max-width: 800px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); padding: 30px 22px; }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* =============================================================
   Testimonial
   ============================================================= */
.testi { background: var(--ink); }
.testi-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testi .mark {
  font-family: 'Instrument Serif', serif;
  font-size: 90px;
  line-height: 0.7;
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 14px;
}
.testi blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.36;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.testi blockquote em { color: var(--gold-soft); font-style: italic; }
.testi-attr { display: inline-flex; align-items: center; gap: 12px; }
.testi-attr .name { font-weight: 700; color: var(--white); font-size: 15.5px; font-family: 'Sora', sans-serif; }
.testi-attr .meta { color: var(--mist); font-size: 13.5px; }
.testi-attr .sep { color: var(--steel); }

/* testimonial trio (About) */
.testi-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.testi-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: left;
  transition: all 0.35s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-3); }
.testi-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testi-card p {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fog);
  margin-bottom: 18px;
}
.testi-card .tc-name { font-weight: 700; color: var(--white); font-size: 14.5px; font-family: 'Sora', sans-serif; }
.testi-card .tc-co { font-size: 12.5px; color: var(--gold-soft); font-weight: 600; font-family: 'JetBrains Mono', monospace; }
@media (max-width: 900px) { .testi-trio { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--surface); border-top: 1px solid var(--line-2); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px 24px;
  margin-bottom: 14px;
  background: var(--surface-2);
  transition: all 0.3s ease;
}
.faq-item.open { background: var(--surface-3); border-color: var(--gold-line); box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  cursor: pointer;
  padding: 18px 0;
}
.faq-q .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-q .plus {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1204;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 15.5px;
  color: var(--mist);
  line-height: 1.68;
  max-width: 72ch;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease, padding 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 460px; opacity: 1; padding: 0 0 20px; }

/* =============================================================
   Final CTA
   ============================================================= */
.cta-band {
  background:
    radial-gradient(600px 400px at 12% 20%, rgba(53, 224, 196, 0.08), transparent 60%),
    var(--ink-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -150px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 166, 59, 0.22), transparent 70%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .eyebrow { justify-content: center; color: var(--gold); margin-bottom: 18px; }
.cta-inner .eyebrow::before, .cta-inner .eyebrow::after { background: var(--gold); }
.cta-inner .h-section { color: var(--white); margin-bottom: 18px; }
.cta-inner .h-section em { color: var(--gold-soft); }
.cta-inner p {
  color: var(--fog);
  font-size: 17px;
  line-height: 1.62;
  margin-bottom: 32px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* =============================================================
   Footer
   ============================================================= */
footer {
  background: var(--ink-2);
  color: var(--mist);
  padding: 72px 0 34px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 46px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.foot-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
footer p { color: var(--mist); font-size: 14.5px; line-height: 1.62; max-width: 38ch; }
.foot-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 17px;
  margin-top: 14px;
}
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; font-size: 14px; color: var(--mist); }
.foot-col a { font-size: 14px; color: var(--mist); transition: color 0.25s ease; }
.foot-col a:hover { color: var(--gold-soft); }
.foot-contact li { display: flex; gap: 9px; align-items: flex-start; }
.foot-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--steel);
  flex-wrap: wrap;
  gap: 14px;
}
.foot-bottom .lic { color: var(--mist); font-weight: 500; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Inner page header
   ============================================================= */
.page-head {
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(242, 166, 59, 0.10), transparent 60%),
    radial-gradient(700px 400px at 10% 0%, rgba(53, 224, 196, 0.05), transparent 62%),
    linear-gradient(180deg, var(--ink), var(--surface));
  padding: clamp(52px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(700px 400px at 80% 10%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(700px 400px at 80% 10%, #000, transparent 72%);
  opacity: 0.5;
}
.page-head .container { position: relative; z-index: 1; }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head .h-display { margin-bottom: 22px; max-width: 20ch; }
.page-head .lede { max-width: 62ch; }
.page-head-meta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.phm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--fog);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.phm-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* =============================================================
   About — story / values / timeline
   ============================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 5vw, 66px);
  align-items: start;
}
.story-photo {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
  background: var(--surface-2);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-prose .eyebrow { margin-bottom: 16px; }
.story-prose .h-section { margin-bottom: 24px; }
.story-prose p { font-size: 16.5px; line-height: 1.74; color: var(--fog); margin-bottom: 18px; }
.story-prose p strong { color: var(--white); font-weight: 700; }
.story-pull {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--surface-2);
  border-radius: 0 16px 16px 0;
  font-family: 'Instrument Serif', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--white);
  line-height: 1.42;
}
.story-pull small {
  display: block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { position: static; }
}

/* Credential (EEAT) cards */
.eeat { background: var(--surface); border-top: 1px solid var(--line-2); }
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eeat-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s ease;
}
.eeat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-3); }
.eeat-card .ec-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.eeat-card .ec-ic svg { width: 24px; height: 24px; }
.eeat-card h4 { font-size: 16px; margin-bottom: 8px; }
.eeat-card p { font-size: 14px; color: var(--mist); line-height: 1.56; }
@media (max-width: 900px) { .eeat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .eeat-grid { grid-template-columns: 1fr; } }

/* Timeline */
.timeline { background: var(--ink); }
.timeline-list { max-width: 840px; margin: 0 auto; position: relative; }
.timeline-list::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 44px;
  padding: 18px 0;
  position: relative;
}
.tl-year {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  padding-top: 2px;
  letter-spacing: -0.02em;
}
.tl-year::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 12px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}
.tl-body h4 { font-size: 17px; margin-bottom: 6px; }
.tl-body p { font-size: 14.5px; color: var(--mist); line-height: 1.6; }
@media (max-width: 640px) {
  .timeline-list::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 30px; }
  .tl-year::after { left: -27px; right: auto; top: 9px; }
}

/* Photo gallery band */
.gallery { background: var(--surface); border-top: 1px solid var(--line-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 260px;
  gap: 18px;
}
.gallery-grid .g-cell {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
  position: relative;
}
.gallery-grid .g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid .g-cell:hover img { transform: scale(1.05); }
.gallery-grid .g-tall { grid-row: 1 / span 2; }
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-grid .g-tall { grid-row: 1 / span 2; }
}

/* =============================================================
   Services page bits (divisions, checklist, rooms, get started)
   ============================================================= */
.emp-problem { background: var(--ink); }
.emp-problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 66px);
  align-items: center;
}
.emp-problem-grid.flip { grid-template-columns: 1fr 1.1fr; }
.emp-problem-grid .h-section { margin-bottom: 22px; }
.emp-problem-grid p { font-size: 16.5px; line-height: 1.72; color: var(--fog); margin-bottom: 16px; }
.emp-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lift);
  background: var(--surface-2);
}
.emp-photo img { width: 100%; height: 100%; object-fit: cover; }
.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 22px;
}
.spec-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-tint);
  border: 1px solid rgba(53, 224, 196, 0.28);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.spec-tag.gold { color: var(--gold-soft); background: var(--gold-tint); border-color: var(--gold-line); }
@media (max-width: 900px) {
  .emp-problem-grid, .emp-problem-grid.flip { grid-template-columns: 1fr; gap: 36px; }
  .emp-problem-grid.flip .emp-photo { order: -1; }
}

/* Package / checklist rows */
.emp-checklist { background: var(--surface); border-top: 1px solid var(--line-2); }
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.check-row {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  transition: all 0.35s ease;
}
.check-row:hover { border-color: var(--gold-line); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.check-row .cr-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}
.check-row:hover .cr-ic { background: var(--gold); color: #1A1204; }
.check-row .cr-ic svg { width: 22px; height: 22px; }
.check-row h4 { font-size: 16.5px; margin-bottom: 6px; }
.check-row p { font-size: 14px; color: var(--mist); line-height: 1.58; }
@media (max-width: 760px) { .checklist { grid-template-columns: 1fr; } }

/* Package tiers (pricing-style cards) */
.tiers { background: var(--ink); }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tier {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--line-3); }
.tier.featured { border-color: var(--gold-line); background: linear-gradient(180deg, var(--surface-3), var(--surface-2)); box-shadow: var(--shadow-gold); }
.tier .tier-flag {
  position: absolute;
  top: -12px; left: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1204;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
}
.tier h3 { font-size: 20px; margin-bottom: 6px; }
.tier .tier-for { font-size: 13px; color: var(--mist); margin-bottom: 18px; }
.tier .tier-price {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.tier .tier-price small { font-size: 14px; color: var(--mist); font-weight: 500; }
.tier .tier-note { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--steel); margin-bottom: 22px; letter-spacing: 0.04em; }
.tier ul { list-style: none; margin-bottom: 24px; flex: 1; }
.tier ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fog);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.tier .btn { width: 100%; }
@media (max-width: 900px) { .tiers-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* Rooms / vehicles served */
.industries { background: var(--surface); border-top: 1px solid var(--line-2); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
}
.ind-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 0.6s var(--ease); }
.ind-card:hover img { transform: scale(1.06); }
.ind-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(7, 9, 12, 0.92));
}
.ind-card .ind-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  z-index: 2;
}
.ind-card .ind-body h4 { color: var(--white); font-size: 17px; margin-bottom: 5px; }
.ind-card .ind-body p { color: var(--fog); font-size: 13px; line-height: 1.5; }
@media (max-width: 900px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ind-grid { grid-template-columns: 1fr; } }

/* Getting started steps */
.getstarted { background: var(--ink); }
.gs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gs-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.gs-num {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  margin-bottom: 14px;
}
.gs-card h4 { font-size: 18px; margin-bottom: 10px; }
.gs-card p { font-size: 14.5px; color: var(--mist); line-height: 1.6; }
@media (max-width: 820px) { .gs-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Reveal (Motion One targets these; CSS fallback also present)
   ============================================================= */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; }
.no-js .reveal, .reveal.forced { opacity: 1 !important; transform: none !important; }

/* =============================================================
   Misc
   ============================================================= */
::selection { background: var(--gold); color: #1A1204; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .eq-bar { transform: scaleY(0.6); }
}

/* =============================================================
   ENRICHMENTS — house-level motion + imagery
   ============================================================= */

/* --- Gear-brand marquee (replaces static chips on Home) --- */
.brand-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: brand-marquee 40s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
}
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  letter-spacing: 0.01em;
  color: var(--fog);
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.brand-name:hover { color: var(--gold-soft); text-shadow: 0 0 20px var(--gold-tint); }
.brand-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(242, 166, 59, 0.6);
  flex-shrink: 0;
}
.brand-dot.teal { background: var(--teal); box-shadow: 0 0 10px rgba(53, 224, 196, 0.6); }
@keyframes brand-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Image reveal unmask (JS sets initial state; here for will-change) --- */
.img-reveal { will-change: transform, opacity, clip-path; }

/* --- Persistent slow drift for select photos (Ken Burns) --- */
.img-drift img { animation: kenburns 34s ease-in-out infinite alternate; will-change: transform; }

/* --- Pointer-tracked spotlight on cards --- */
.svc-card, .tier {
  --mx: 50%; --my: 0%;
}
.svc-card > *, .tier > * { position: relative; z-index: 1; }
.svc-card::after, .tier::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(260px 260px at var(--mx) var(--my), rgba(242, 166, 59, 0.12), transparent 68%);
}
.svc-card:hover::after, .tier:hover::after { opacity: 1; }

/* --- Magnetic CTA needs a transform origin that won't fight layout --- */
.btn.magnetic { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
  .hero-media img, .img-drift img { animation: none; transform: scale(1.04); }
  .hero-haze { animation: none; opacity: 0.5; transform: scale(1); }
  .beat-pulse { display: none; }
  .img-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

