@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --primary:        #DCCC29;
  --primary-dark:   #b8aa1f;
  --primary-pale:   #f7f4c8;
  --accent:         #54B474;
  --accent-dark:    #3d9059;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --surface-2:      #ECEAE5;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2e;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-mid:     rgba(12,12,15,0.18);
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.07);
  --shadow-md:      0 8px 28px rgba(12,12,15,0.10);
  --shadow-lg:      0 18px 48px rgba(12,12,15,0.14);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(88px, 11vh, 144px);
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─────────────────────────────────────────────
   RESET + GLOBAL
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Headings inside anchors render as heading, not link */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Base anchor */
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }
svg { display: inline-block; }

/* Cap unsized SVGs */
svg:not([width]):not([height]),
.faq-chevron,
.nav-cta-icon,
.emergency-icon { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container, .section-inner, .contact-grid,
.crew-inner, .founder-inner, .about-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.section-pad { padding: var(--section-py) 0; }

/* ─────────────────────────────────────────────
   SCROLL PROGRESS
───────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 9999;
  background: var(--primary); transition: width 80ms linear;
}

/* ─────────────────────────────────────────────
   EMERGENCY BAR
───────────────────────────────────────────── */
.emergency-bar {
  background: var(--ink); color: var(--primary);
  text-align: center; padding: 9px 20px;
  font-family: var(--font-mono); font-size: 12px;
  font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
}
.emergency-bar a { color: var(--primary); }
.emergency-bar a:hover { color: #fff; text-decoration: underline; }

/* ─────────────────────────────────────────────
   SITE HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas); border-bottom: 1px solid rgba(12,12,15,0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; width: auto !important; }

.nav-pages {
  flex: 1; display: flex; justify-content: center;
  gap: 28px; align-items: center;
}
.nav-pages ul, .nav-pages { padding: 0; margin: 0; }
.nav-pages a {
  display: inline-block; padding: 6px 0; font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; font-family: var(--font-body);
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta-text { display: none; }
@media (min-width: 900px) { .nav-cta-text { display: inline; } }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--ink); font-size: 24px; padding: 8px; line-height: 1;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-pages {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px 28px;
    gap: 4px; border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 10px 0; font-size: 16px; width: 100%; }
}

/* ─────────────────────────────────────────────
   NUMERALS — THE VISUAL IDENTITY
───────────────────────────────────────────── */
.hero-numeral,
.section-numeral,
.about-numeral,
.founder-numeral,
.crew-numeral,
.cta-banner-numeral,
.cta-banner-bg-numeral,
.info-card-numeral,
.page-header-num,
.page-header-numeral,
.service-panel-num,
.service-index-num,
.value-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}

.hero-numeral { font-size: clamp(80px, 10vw, 140px); }
.section-numeral { font-size: clamp(72px, 9vw, 120px); margin-bottom: 8px; }
.about-numeral { font-size: clamp(72px, 9vw, 120px); margin-bottom: 8px; }
.founder-numeral { font-size: clamp(72px, 9vw, 120px); margin-bottom: 8px; }
.crew-numeral { font-size: clamp(72px, 9vw, 120px); margin-bottom: 8px; }
.cta-banner-numeral { font-size: clamp(80px, 10vw, 140px); opacity: 0.15; }
.cta-banner-bg-numeral { font-size: clamp(120px, 18vw, 220px); opacity: 0.07; position: absolute; top: -20px; right: 40px; line-height: 1; font-family: var(--font-display); font-weight: 700; color: var(--canvas); pointer-events: none; }
.info-card-numeral { font-size: clamp(48px, 6vw, 80px); margin-bottom: 16px; }
.page-header-num, .page-header-numeral { font-size: clamp(64px, 8vw, 120px); opacity: 0.25; }
.service-panel-num { font-size: clamp(48px, 6vw, 80px); margin-bottom: 8px; }
.service-index-num { font-size: clamp(48px, 6vw, 80px); margin-bottom: 16px; }
.value-card-num { font-size: clamp(32px, 4vw, 52px); margin-bottom: 8px; }

/* ─────────────────────────────────────────────
   EYEBROWS / LABELS
───────────────────────────────────────────── */
.section-eyebrow,
.about-eyebrow,
.service-eyebrow,
.cta-banner-eyebrow,
.cta-eyebrow,
.hero-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.timeline-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 12px;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(16px, 2vw, 22px); }

p { line-height: 1.68; }
address { font-style: normal; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-service,
.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 16px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid var(--primary);
  text-decoration: none; white-space: nowrap;
  transition: filter 200ms, transform 150ms;
}
.btn:hover, .btn-primary:hover, .btn-service:hover, .btn-submit:hover {
  filter: brightness(0.92); transform: translateY(-1px); color: var(--ink); text-decoration: none;
}
.btn-submit { width: 100%; justify-content: center; margin-top: 8px; }

.btn-outline,
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 16px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid var(--ink);
  text-decoration: none; white-space: nowrap;
  transition: background 200ms, color 200ms, transform 150ms;
}
.btn-outline:hover, .btn-dark:hover {
  background: var(--ink); color: var(--canvas); transform: translateY(-1px); text-decoration: none;
}

.btn-ghost-white,
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 16px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid rgba(255,255,255,0.55);
  text-decoration: none; white-space: nowrap;
  transition: background 200ms, border-color 200ms, transform 150ms;
}
.btn-ghost-white:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; transform: translateY(-1px); text-decoration: none;
}

.btn-banner-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; border: 2px solid var(--primary);
  text-decoration: none; transition: filter 200ms;
}
.btn-banner-primary:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }

.btn-banner-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; border: 2px solid var(--ink);
  text-decoration: none; transition: background 200ms, color 200ms;
}
.btn-banner-outline:hover { background: var(--ink); color: #fff; text-decoration: none; }

.btn-service svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   CHIPS
───────────────────────────────────────────── */
.trust-chip,
.trust-badge,
.area-pill {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--ink); background: var(--canvas);
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.trust-chip-accent,
.trust-badge.highlighted { border-color: var(--primary); color: var(--ink); background: var(--primary-pale); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh; display: flex; align-items: flex-start;
  padding-top: clamp(64px, 10vh, 120px); padding-bottom: clamp(64px, 8vh, 100px);
}

.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: grayscale(18%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(12,12,15,0.50) 0%, rgba(12,12,15,0.72) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}

.hero-numeral { margin-bottom: 12px; }
.hero-eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.96; letter-spacing: -0.04em;
  color: #fff; max-width: 18ch; margin-bottom: 20px;
}

.hero-sub { font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,0.75); max-width: 52ch; margin-bottom: 36px; line-height: 1.55; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(4px);
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}

/* ─────────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  max-height: 64px; position: relative; z-index: 1;
  background: var(--surface);
}

.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-mono); font-weight: 600; font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.2; color: var(--ink);
}

.marquee-sep {
  color: var(--primary); font-weight: 700; font-size: clamp(14px, 1.6vw, 18px); line-height: 1;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services { background: var(--surface); }

.services-header {
  display: flex; align-items: flex-start; gap: 40px;
  margin-bottom: 40px;
}

.services-header-text h2 {
  font-size: clamp(36px, 5vw, 64px); margin-top: 8px;
}

.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius);
  border: 1px solid var(--border-mid); background: var(--canvas);
  color: var(--muted); cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.service-tab:hover { border-color: var(--ink); color: var(--ink); }
.service-tab.active { background: var(--primary); border-color: var(--primary); color: var(--ink); }

.services-panels { }

.service-panel { display: none; }
.service-panel.active {
  display: grid; grid-template-columns: 45% 1fr; min-height: 480px; gap: 0;
  border-radius: var(--radius); overflow: hidden; background: var(--canvas);
  box-shadow: var(--shadow-md);
}

.service-panel-img { position: relative; overflow: hidden; min-height: 480px; }
.service-panel-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none !important;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center;
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 40px); margin-bottom: 16px; color: var(--ink);
}
.service-panel-desc { color: var(--ink-mid); line-height: 1.68; margin-bottom: 14px; }
.service-panel-body a { margin-top: auto; align-self: flex-start; }

@media (max-width: 760px) {
  .service-panel.active { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 240px; position: relative; }
}

/* Services feature blocks (services.html) */
.page-header {
  min-height: 420px; display: flex; align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(12,12,15,0.45) 0%, rgba(12,12,15,0.70) 100%);
}
.page-header-inner {
  position: relative; z-index: 2; padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 56px);
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.page-header-inner h1 { color: #fff; font-size: clamp(48px, 7vw, 100px); }

.services-quicknav {
  background: var(--ink); position: sticky; top: var(--header-height); z-index: 800;
}
.services-quicknav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: flex; flex-wrap: wrap; gap: 0; overflow-x: auto;
}
.services-quicknav-inner a {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.65);
  padding: 14px 20px; white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms; text-decoration: none;
}
.services-quicknav-inner a:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }

.services-feature { padding: clamp(64px, 8vh, 120px) 0; }

.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 1280px; margin: 0 auto clamp(48px, 7vh, 100px);
  padding: 0 clamp(20px, 5vw, 56px);
  align-items: center;
}

.service-block.photo-right .service-photo-col { order: 2; }
.service-block.photo-right .service-text-col { order: 1; }

.service-photo-col {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 420px;
}
.service-photo-col img {
  width: 100%; height: 100%; object-fit: cover; max-height: none !important;
  position: absolute; inset: 0;
}

.service-text-col { padding: clamp(32px, 4vw, 56px); }
.service-text-col h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
.service-desc { color: var(--ink-mid); line-height: 1.68; margin-bottom: 14px; }

.service-bullets {
  list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  padding-left: 18px; position: relative; color: var(--ink-mid); font-size: 15px;
}
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

@media (max-width: 760px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.photo-right .service-photo-col,
  .service-block.photo-right .service-text-col { order: unset; }
  .service-photo-col { min-height: 260px; position: relative; }
  .service-text-col { padding: 28px 0; }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section { background: var(--canvas); padding: var(--section-py) 0; }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start; max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
}

.about-content { }
.about-content h2 { font-size: clamp(32px, 4.5vw, 60px); margin-bottom: 20px; margin-top: 8px; }
.about-body p { color: var(--ink-mid); line-height: 1.72; margin-bottom: 16px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-chips .trust-chip { }

.about-photo {
  border-radius: var(--radius); overflow: hidden; position: relative; min-height: 460px;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; max-height: none !important;
  position: absolute; inset: 0;
}

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { min-height: 320px; }
}

/* ─────────────────────────────────────────────
   FOUNDER SECTION
───────────────────────────────────────────── */
.founder-section { background: var(--surface); padding: var(--section-py) 0; }

.founder-inner { }

.founder-header { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 56px; }
.founder-header-text h2 { font-size: clamp(32px, 4.5vw, 60px); margin-top: 8px; }
.founder-header-text p { color: var(--muted); font-size: 16px; margin-top: 8px; }

.founder-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.founder-portrait-col { position: relative; }
.founder-portrait-col > img {
  width: 100%; height: auto; border-radius: var(--radius); max-height: 540px; object-fit: cover;
}
.founder-portrait-caption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px; text-align: center;
}

.founder-story-col > p { color: var(--ink-mid); line-height: 1.72; margin-bottom: 20px; }

.founder-pull-quote {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700; line-height: 1.2; color: var(--ink);
  border-left: 4px solid var(--primary); padding-left: 24px;
  margin: 32px 0;
}

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px;
}

.value-card {
  background: var(--canvas); border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--border);
}
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.timeline { margin-top: 40px; }
.timeline-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.timeline-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; border-top: 2px solid var(--border); }
.timeline-step {
  padding: 16px 0 0; border-top: 2px solid transparent; margin-top: -2px;
}
.timeline-step:first-child { border-top-color: var(--primary); }
.timeline-step-year { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--primary); }

@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait-col > img { max-height: 380px; }
}

/* ─────────────────────────────────────────────
   CREW SECTION
───────────────────────────────────────────── */
.crew-section { background: var(--canvas); padding: var(--section-py) 0; }

.crew-header { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 48px; }
.crew-header-text h2 { font-size: clamp(32px, 4.5vw, 60px); margin-top: 8px; }

.crew-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.crew-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}
.crew-tile > img {
  width: 100%; height: 100%; object-fit: cover; max-height: none !important;
  position: absolute; inset: 0; filter: grayscale(30%); transition: filter 350ms, transform 350ms;
}
.crew-tile:hover > img { filter: grayscale(0%); transform: scale(1.03); }

.crew-tile-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(12,12,15,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 20px;
}
.crew-tile-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase; color: #fff;
}

@media (max-width: 640px) {
  .crew-strip { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
   GALLERY (index.html)
───────────────────────────────────────────── */
.gallery { background: var(--canvas); }
.gallery .section-inner > div:first-child { margin-bottom: 36px; }
.gallery .section-inner > div:first-child h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 8px; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 40px;
}
.gallery-tile {
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius);
  transition: transform 250ms ease-out;
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; max-height: none !important; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ─────────────────────────────────────────────
   GALLERY PAGE (gallery.html)
───────────────────────────────────────────── */
.gallery-section { padding: var(--section-py) 0; background: var(--canvas); max-width: 1280px; margin: 0 auto; padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px); }

.gallery-intro-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }

.gallery-heading-block { display: flex; align-items: flex-start; gap: 16px; }
.gallery-heading-text h2 { font-size: clamp(32px, 4.5vw, 56px); }
.gallery-heading-text p { color: var(--muted); margin-top: 6px; }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.filter-pill {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-pill); border: 1px solid var(--border-mid);
  background: var(--canvas); color: var(--muted); cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill:hover, .filter-pill.active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.project-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 40px;
}

.project-card {
  background: var(--canvas); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.project-card.is-featured { grid-column: span 2; }

.card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
}
.project-card.is-featured .card-photo { aspect-ratio: 16 / 7; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none !important; transition: transform 350ms; }
.project-card:hover .card-photo img { transform: scale(1.03); }

.card-num-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  background: var(--primary); color: var(--ink); padding: 4px 10px; border-radius: var(--radius);
  letter-spacing: -0.02em;
}
.card-cat-pill {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  background: rgba(12,12,15,0.75); color: #fff; padding: 4px 10px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; }
.card-location-row { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.card-location-row svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

.card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
.card-stat { text-align: center; }
.card-stat-val { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }
.card-stat-label { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.no-results { display: none; text-align: center; padding: 60px 20px; color: var(--muted); font-size: 16px; }

@media (max-width: 760px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card.is-featured { grid-column: span 1; }
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq { background: var(--surface); }
.faq .section-inner > div:first-child { margin-bottom: 40px; }
.faq .section-inner > div:first-child h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 8px; }

.faq-list { max-width: 760px; }

details.faq,
.faq-list details {
  border-bottom: 1px solid var(--border-mid); padding: 20px 0;
}
details.faq > summary,
.faq-list details > summary {
  cursor: pointer; font-weight: 600; font-size: 17px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
details.faq > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }

.faq-chevron { width: 20px !important; height: 20px !important; flex-shrink: 0; transition: transform 220ms; color: var(--muted); }
details[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }

.faq-answer { margin-top: 14px; color: var(--ink-mid); line-height: 1.68; font-size: 16px; }

/* ─────────────────────────────────────────────
   TEAM CTA
───────────────────────────────────────────── */
.team-cta { background: var(--ink); }
.team-cta-inner {
  max-width: 1280px; margin: 0 auto; padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 56px);
  display: flex; justify-content: center;
}
.team-cta-text {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 44px);
  font-weight: 700; color: #fff; text-align: center; max-width: 52ch;
  line-height: 1.15; letter-spacing: -0.02em;
}
.team-cta a { color: var(--primary); text-decoration: none; }
.team-cta a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   HIRING BANNER
───────────────────────────────────────────── */
.hiring-banner { background: var(--primary); padding: clamp(28px, 4vh, 48px) 0; }
.hiring-banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hiring-banner-content h3 { font-size: clamp(20px, 2.5vw, 32px); color: var(--ink); }
.hiring-banner-content p { color: var(--ink-mid); margin-top: 4px; }
.hiring-banner-inner > a { margin-left: auto; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact { background: var(--canvas); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column-reverse; gap: 6px; }

.form-group label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--border-mid);
  border-radius: var(--radius); padding: 13px 16px;
  transition: border-color 180ms, box-shadow 180ms;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,204,41,0.18);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info { }

.contact-info-block {
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 6px;
}
.contact-info-block a { font-size: 18px; font-weight: 600; color: var(--ink); }
.contact-info-block a:hover { color: var(--primary); }
.contact-info-body { font-size: 15px; color: var(--ink-mid); line-height: 1.6; }

.contact-info-card {
  background: var(--surface); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px);
}
.contact-info-card h3 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 4px; margin-top: 8px; }

.info-item { padding: 16px 0; }
.info-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.info-value a { font-size: 17px; font-weight: 600; color: var(--ink); }
.info-value a:hover { color: var(--primary); }
.info-divider { height: 1px; background: var(--border); }

.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.area-pill { font-size: 10px; padding: 4px 10px; }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a { color: var(--muted); transition: color 150ms; text-decoration: none; }
.social-links a:hover { color: var(--primary); text-decoration: none; }
.social-links svg, .social-link svg { width: 20px; height: 20px; }

.emergency-strip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(220,204,41,0.10); border: 1px solid rgba(220,204,41,0.35);
  border-radius: var(--radius); padding: 14px 16px; margin-top: 24px;
}
.emergency-icon { width: 22px !important; height: 22px !important; color: var(--primary); flex-shrink: 0; }
.emergency-strip p { font-size: 14px; color: var(--ink-mid); line-height: 1.45; }
.emergency-strip span { font-weight: 700; color: var(--ink); }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Contact page specifics */
.contact-form-col { }
.contact-form-col h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 4px; margin-top: 8px; }

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  background: var(--surface); position: relative; overflow: hidden;
  padding: clamp(80px, 10vh, 140px) 0;
}
.cta-banner-supergraphic {
  position: absolute; top: -20px; right: -20px; z-index: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(120px, 18vw, 240px); line-height: 0.85;
  color: var(--border); letter-spacing: -0.06em; pointer-events: none; user-select: none;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
}
.cta-banner-inner h2 { font-size: clamp(36px, 5.5vw, 80px); margin-bottom: 16px; max-width: 18ch; }
.cta-banner-inner > p { color: var(--muted); margin-bottom: 36px; max-width: 52ch; }
.cta-banner-actions, .cta-banner-btns, .cta-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.cta-banner-phone { font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.cta-banner-sub { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.cta-phone-big { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: var(--primary); }

/* Services page CTA banner — dark variant */
section.cta-banner:has(.btn-banner-outline) { background: var(--ink); }
section.cta-banner:has(.btn-banner-outline) h2,
section.cta-banner:has(.btn-banner-outline) .cta-banner-eyebrow,
section.cta-banner:has(.btn-banner-outline) p { color: #fff; }
section.cta-banner:has(.btn-banner-outline) .btn-banner-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
section.cta-banner:has(.btn-banner-outline) .btn-banner-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
section.cta-banner:has(.btn-banner-outline) .cta-banner-bg-numeral { color: rgba(255,255,255,0.06); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: clamp(60px, 8vh, 100px) 0 0; }

.footer-inner, .footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: clamp(48px, 6vh, 72px);
}

.footer-brand, .footer-brand-col { }
.footer-brand img, .footer-brand-col img { max-height: 44px !important; margin-bottom: 16px; filter: brightness(10); }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.55; max-width: 28ch; margin-bottom: 20px; }
.footer-cert { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--primary); }

.footer-col-title, .footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 150ms; }
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-info-item { margin-bottom: 12px; }
.footer-info-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.40); display: block; margin-bottom: 4px; }
.footer-info-val { font-size: 14px; color: rgba(255,255,255,0.70); }
.footer-info-val a { color: rgba(255,255,255,0.70); }
.footer-info-val a:hover { color: var(--primary); text-decoration: none; }

.footer-area-list { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-area-chip { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); padding: 4px 10px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.15); }

.footer-social-row, .footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-btn, .footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60); transition: color 150ms, border-color 150ms;
  text-decoration: none;
}
.footer-social-btn svg, .footer-social-link svg { width: 16px !important; height: 16px !important; }
.footer-social-btn:hover, .footer-social-link:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }

.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 14px; }
.footer-contact-row svg { width: 16px !important; height: 16px !important; flex-shrink: 0; color: var(--primary); }
.footer-contact-row a { color: rgba(255,255,255,0.75); }
.footer-contact-row a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-hours { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 20px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-bottom-copy, .footer-bottom p {
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-copy a, .footer-bottom-copy a { color: rgba(255,255,255,0.50); }
.footer-copy a:hover, .footer-bottom-copy a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom-links, .footer-legal-links { display: flex; gap: 20px; }
.footer-bottom-links a, .footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover, .footer-legal-links a:hover { color: var(--primary); text-decoration: none; }

address { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.8; }

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────────
   MOBILE CALL PILL
───────────────────────────────────────────── */
.mobile-cta-pill,
.mobile-cta,
.mobile-call-pill {
  display: flex; align-items: center; justify-content: center;
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: var(--ink);
  padding: 14px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  gap: 8px; text-decoration: none; white-space: nowrap;
  transition: filter 200ms, transform 150ms;
}
.mobile-cta-pill:hover,
.mobile-cta:hover,
.mobile-call-pill:hover { filter: brightness(0.92); transform: translateY(-2px); text-decoration: none; color: var(--ink); }

.mobile-cta-pill svg, .mobile-cta svg, .mobile-call-pill svg { width: 20px !important; height: 20px !important; }

@media (min-width: 900px) {
  .mobile-cta-pill, .mobile-cta, .mobile-call-pill { display: none; }
}

/* ─────────────────────────────────────────────
   ANIMATION UTILITIES
───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ─────────────────────────────────────────────
   SERVICE CARD HOVER
───────────────────────────────────────────── */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ─────────────────────────────────────────────
   MISC UTILITY
───────────────────────────────────────────── */
.highlighted { background: var(--primary-pale) !important; border-color: var(--primary) !important; }

.info-phone-display {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 40px);
  color: var(--primary); letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 7px 12px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas .btn-ghost-white, .hero-ctas .btn-outline-white { width: 100%; justify-content: center; }
  .cta-banner-actions, .cta-banner-btns, .cta-btn-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none !important; }
  .nav-pages { position: static !important; flex-direction: row !important; background: none !important; padding: 0 !important; border: none !important; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-brand { grid-column: 1 / -1; }
.service-photo-col { grid-column: 1 / -1; }
.service-text-col { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.no-results { grid-column: 1 / -1; }
.card-stat { grid-column: 1 / -1; }
.founder-story-col { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.timeline-step { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
