@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;600;700&family=Fraunces:ital,wght@1,400;1,600&family=Inter+Tight:wght@400;500;600&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #FCC81C;
  --primary-dark:   #d9a800;
  --primary-dim:    rgba(252,200,28,0.15);
  --accent:         #049A63;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --ink:            #141414;
  --muted:          #6B665C;
  --ink-mid:        #3a3630;
  --border:         rgba(20,20,20,0.10);
  --border-brand:   rgba(252,200,28,0.55);
  --invert-bg:      #141414;
  --invert-text:    #F7F4ED;
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.18);
  --radius:         0px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 180px);
  --container-max:  1440px;
  --container-wide: 1400px;
}

@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);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.68;
  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: 64px !important;
  max-width: 220px !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; }

/* ============================================================
   HEADING ANCHOR FIX
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  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, 2.5vw, 36px); line-height: 1.05; }
h4 { font-size: clamp(16px, 1.5vw, 22px); line-height: 1.2; letter-spacing: -0.01em; }

p { line-height: 1.68; }

strong { font-weight: 700; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.wide-container {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* ============================================================
   SECTION EYEBROW / LABEL SYSTEM
   ============================================================ */
.section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.service-eyebrow, .cta-banner-eyebrow,
.gallery-section-eyebrow, .founder-story .section-eyebrow,
.values-header .section-eyebrow, .journey-header .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before,
.page-eyebrow::before,
.service-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-outline, .btn-outline-light,
.btn-banner-primary, .btn-banner-secondary, .btn-service, .btn-submit,
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms, color 180ms, transform 180ms, box-shadow 180ms;
  line-height: 1;
}
.btn-primary, .btn-banner-primary, .btn-submit, .btn-cta-main {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-banner-primary:hover, .btn-submit:hover, .btn-cta-main:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover, .btn-outline:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
}
.btn-outline-light {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
.btn-banner-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-banner-secondary:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
}
.btn-service {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
  padding: 14px 24px;
  font-size: 13px;
  margin-top: 24px;
}
.btn-service:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}
.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 180px !important;
}
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  text-decoration: none;
}
.nav-pages a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: 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: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 150ms, filter 150ms;
}
.nav-cta:hover {
  filter: brightness(0.92);
  text-decoration: none;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: none;
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .nav-pages li:first-child a { border-top: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero, section#hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--invert-bg);
}
#hero > img, #hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  background: linear-gradient(
    175deg,
    rgba(20,20,20,0.18) 0%,
    rgba(20,20,20,0.35) 45%,
    rgba(20,20,20,0.82) 80%,
    rgba(20,20,20,0.94) 100%
  );
}
.hero-ribbon {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  background: rgba(20,20,20,0.75);
  border: 1px solid var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}
.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,200,28,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(252,200,28,0); }
}
.hero-inner {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-ctas a:first-child {
  background: var(--primary);
  color: var(--ink);
  border: 2px solid var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 150ms, transform 150ms, box-shadow 150ms;
}
.hero-ctas a:first-child:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(252,200,28,0.35);
  text-decoration: none;
  color: var(--ink);
}
.hero-ctas a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 150ms, border-color 150ms;
}
.hero-ctas a:last-child:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.90);
  border: 1px solid var(--primary);
  padding: 7px 14px;
  background: rgba(20,20,20,0.45);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-ribbon { top: 16px; right: 16px; }
  .hero-inner { padding: 40px 20px 56px; }
  .hero-title { font-size: clamp(44px, 11vw, 80px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  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-scroll 35s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-sep {
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  align-self: center;
  line-height: 1;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 10px 18px;
  background: transparent;
  transition: background 180ms;
}
.trust-badge:hover { background: var(--primary-dim); }
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.services-inner > h2 {
  margin-bottom: 12px;
  max-width: 18ch;
}
.services-inner > .section-eyebrow { margin-bottom: 10px; }
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  margin-top: 32px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  margin-bottom: -2px;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--ink);
  border-bottom-color: var(--primary);
}
.services-panels { min-height: 480px; }
.service-panel { display: none; }
.service-panel.active {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
}
.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-panel-no-img {
  background: var(--invert-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-panel-no-img svg {
  width: 80px; height: 80px;
  color: var(--primary);
  opacity: 0.8;
}
.service-panel-body {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 8px;
}
.panel-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0.25;
}
.panel-title { /* h3 already styled */ }
.panel-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}
.panel-desc + .panel-desc { margin-top: 10px; }

@media (max-width: 900px) {
  .service-panel.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img {
    min-height: 260px;
    position: relative;
  }
  .service-panel-img img {
    position: absolute;
    max-height: none;
  }
  .services-tabs {
    gap: 4px;
  }
  .service-tab {
    font-size: 11px;
    padding: 10px 12px;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.reviews-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.reviews-inner > h2 { margin-bottom: 40px; }
.reviews-aggregate {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 40px;
  background: var(--canvas);
  border-left: 5px solid var(--primary);
  max-width: 560px;
  text-decoration: none;
  transition: box-shadow 200ms, transform 200ms;
}
.reviews-aggregate:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--ink);
}
.aggregate-score {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.aggregate-right { display: flex; flex-direction: column; gap: 8px; }
.star-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.star-row svg {
  width: 22px; height: 22px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
}
.aggregate-meta {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  line-height: 1.4;
}
.review-card {
  padding: 28px;
  background: var(--canvas);
  border-radius: 0;
  border-top: 3px solid var(--primary);
}
.review-stars svg { color: var(--primary); fill: var(--primary); width: 18px; height: 18px; }
.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink-mid);
}
.review-attribution {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.gallery-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.gallery-inner > h2 { margin-bottom: 40px; }
.gallery-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--surface);
}
.gallery-frame > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.gallery-frame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0) 55%);
  z-index: 1;
}
.gallery-caption {
  position: absolute;
  bottom: 28px; left: 32px;
  z-index: 2;
  color: #fff;
}
.gallery-caption-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gallery-caption-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--border);
}
.gallery-stat {
  background: var(--surface);
  padding: 32px 28px;
  text-align: center;
}
.gallery-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.gallery-stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 10px;
}

/* gallery.html full grid */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-title-block h2 { margin-bottom: 0; }
.gallery-section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--primary);
}
.gallery-section-h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  cursor: pointer;
}
.gallery-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.80) 0%, rgba(20,20,20,0) 50%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 1;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--primary);
  color: var(--ink);
  padding: 4px 10px;
}
.gallery-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.gallery-card:hover .gallery-card-body {
  transform: translateY(0);
  opacity: 1;
}
.gallery-card-body h3 {
  font-size: clamp(14px, 1.4vw, 18px);
  color: #fff;
  line-height: 1.1;
}
.gallery-card-num {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-card-cat {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  margin-top: 4px;
}
.gc-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.gc-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.gc-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.gc-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.gc-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.gc-6 { grid-column: 3 / 4; grid-row: 2 / 3; }
.gc-7 { grid-column: 1 / 2; grid-row: 3 / 4; }
.gc-8 { grid-column: 2 / 3; grid-row: 3 / 4; }
.gc-9 { grid-column: 3 / 4; grid-row: 3 / 4; }
.gc-10 { grid-column: 1 / 2; grid-row: 4 / 5; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-1 { grid-column: 1/2; grid-row: auto; }
  .gc-2 { grid-column: 2/3; grid-row: auto; }
  .gc-3 { grid-column: 1/2; grid-row: auto; }
  .gc-4 { grid-column: 2/3; grid-row: auto; }
  .gc-5 { grid-column: 1/2; grid-row: auto; }
  .gc-6 { grid-column: 2/3; grid-row: auto; }
  .gc-7 { grid-column: 1/2; grid-row: auto; }
  .gc-8 { grid-column: 2/3; grid-row: auto; }
  .gc-9 { grid-column: 1/2; grid-row: auto; }
  .gc-10 { grid-column: 2/3; grid-row: auto; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-stats { grid-template-columns: 1fr; }
  .gallery-header-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.service-areas-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.service-areas-inner > div:first-child h2 { margin-bottom: 16px; }
.areas-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 8px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 8px 14px;
  background: var(--canvas);
  transition: background 150ms;
}
.area-chip:hover { background: var(--primary-dim); }
.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

@media (max-width: 900px) {
  .service-areas-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.faq-inner > h2 { margin-bottom: 48px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-list details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink);
  list-style: none;
  min-height: 64px;
  transition: color 150ms;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary:hover { color: var(--ink-mid); }
.faq-chev {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 250ms, color 250ms;
  margin-left: 16px;
}
.faq-list details[open] summary .faq-chev {
  transform: rotate(180deg);
  color: var(--primary-dark);
}
.faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer a { color: var(--primary-dark); font-weight: 600; }

/* ============================================================
   TEAM CTA BANNER
   ============================================================ */
.team-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--invert-bg);
}
.team-cta > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none;
  filter: grayscale(40%) brightness(0.35);
}
.team-cta-bg {
  position: absolute; inset: 0;
  background: rgba(20,20,20,0.72);
  z-index: 1;
}
.team-cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.team-cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}
.team-cta-headline em {
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--primary);
}

/* ============================================================
   CTA BANNER (services/gallery/about pages)
   ============================================================ */
.cta-banner {
  background: var(--invert-bg);
  padding: clamp(80px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
  filter: grayscale(50%) brightness(0.28);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-banner-text, .cta-banner-inner > div:first-child { /* text side */ }
.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--primary);
}
.cta-banner-inner h2,
.cta-banner-inner > div > h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta-banner-actions > * { flex-shrink: 0; }
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact, .contact-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.contact-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-inner > div:first-child h2,
.contact-form-wrap h2 {
  margin-bottom: 32px;
}
.form-lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-form, form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label, label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.form-input, input[type="text"], input[type="email"],
input[type="tel"], input[type="number"], select,
.form-textarea, textarea {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252,200,28,0.18);
}
.form-textarea, textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-submit {
  align-self: flex-start;
  background: var(--primary);
  color: var(--ink);
  padding: 18px 40px;
}
.contact-info, .contact-info-card {
  background: var(--canvas);
  padding: 40px;
  border-top: 4px solid var(--primary);
}
.contact-info-card h3 { margin-bottom: 28px; font-size: clamp(20px, 2vw, 28px); }
.contact-info-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-dark);
  margin-bottom: 20px;
  display: block;
}
.contact-info-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-info-group:last-child { border-bottom: none; }
.info-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.info-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.info-value a { color: var(--ink); font-weight: 600; }
.info-value a:hover { color: var(--primary-dark); }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon, svg.info-icon {
  width: 20px; height: 20px;
  color: var(--primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item-content { display: flex; flex-direction: column; gap: 2px; }
.info-item-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.info-item-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.info-item-value a { color: var(--ink); font-weight: 600; }
.emergency-block {
  margin-top: 20px;
  padding: 20px;
  background: var(--invert-bg);
  border-left: 4px solid var(--primary);
}
.emergency-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 6px;
}
.emergency-phone a {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.emergency-phone a:hover { color: var(--primary); }
.contact-emergency {
  margin-top: 20px;
  padding: 16px;
  background: var(--invert-bg);
  border-left: 4px solid var(--primary);
}
.contact-emergency a {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-info, .contact-info-card { max-width: 560px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: var(--invert-bg);
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
  filter: brightness(0.45);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(20,20,20,0.3) 0%, rgba(20,20,20,0.85) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
}
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 0.96;
  max-width: 16ch;
}
.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.page-header-breadcrumb a { color: rgba(255,255,255,0.65); }
.page-header-breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.page-header-breadcrumb svg { width: 14px; height: 14px; }
.page-header-eyebrow, .page-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 14px;
}

/* ============================================================
   SERVICE NAV STRIP (services.html)
   ============================================================ */
.service-nav-strip {
  background: var(--invert-bg);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.service-nav-strip::-webkit-scrollbar { display: none; }
.service-nav-inner {
  display: flex;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  gap: 0;
  white-space: nowrap;
}
.service-nav-link {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  padding: 18px 20px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 150ms, border-color 150ms;
  flex-shrink: 0;
}
.service-nav-link:hover {
  color: #fff;
  border-bottom-color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   SERVICE FEATURE SECTIONS (services.html)
   ============================================================ */
.service-feature {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.service-feature.alt-surface { background: var(--surface); }
.service-feature-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.service-feature.photo-right .service-feature-inner {
  direction: rtl;
}
.service-feature.photo-right .service-feature-inner > * {
  direction: ltr;
}
.service-feature-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.service-feature-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.service-feature:hover .service-feature-photo img { transform: scale(1.03); }
.service-photo-index {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: var(--ink);
  padding: 4px 10px;
}
.service-feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature-content h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 8px;
}
.service-feature-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.service-bullets {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.service-feature-no-photo { background: var(--canvas); }
.service-feature-no-photo .service-feature-inner {
  grid-template-columns: 1fr 1fr;
}
.service-phc-visual {
  background: var(--invert-bg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.phc-bg-num {
  position: absolute;
  top: -10px; right: -10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 900;
  line-height: 0.8;
  color: rgba(252,200,28,0.08);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.phc-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
  }
  .service-feature.photo-right .service-feature-inner {
    direction: ltr;
  }
  .service-feature-photo { aspect-ratio: 16/9; }
  .service-phc-visual { min-height: 240px; }
}

/* ============================================================
   CERTS STRIP (about.html)
   ============================================================ */
.certs-strip {
  background: var(--invert-bg);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.certs-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(252,200,28,0.4);
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
}
.cert-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   FOUNDER / ABOUT STORY
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.founder-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.founder-portrait-col { display: flex; flex-direction: column; gap: 20px; }
.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.founder-portrait-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}
.founder-portrait-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--primary);
  z-index: 2;
}
.founder-portrait-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--surface);
  border-left: 4px solid var(--primary);
}
.founder-portrait-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.founder-portrait-role {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}
.founder-text-col { padding-top: 8px; }
.founder-headline { margin-bottom: 32px; }
.founder-headline h2 { margin-top: 12px; }
.founder-body { display: flex; flex-direction: column; gap: 18px; }
.founder-body p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.72;
}
.pull-quote {
  border-left: 4px solid var(--primary);
  padding: 20px 28px;
  margin: 8px 0;
  background: var(--surface);
}
.pull-quote p, .pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
}

@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .founder-portrait-wrap { aspect-ratio: 4/3; }
}

/* ============================================================
   VALUES SECTION (about.html)
   ============================================================ */
.values-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.values-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.values-header {
  margin-bottom: 48px;
}
.values-header h2 { margin-top: 12px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.value-card {
  background: var(--canvas);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.3;
}
.value-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  color: var(--ink);
}
.value-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   JOURNEY / TIMELINE (about.html)
   ============================================================ */
.journey-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.journey-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.journey-header {
  margin-bottom: 64px;
}
.journey-header h2 { margin-top: 12px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  position: relative;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.9;
  margin-bottom: 8px;
}
.timeline-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline::before { display: none; }
}
@media (max-width: 640px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--invert-bg);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(64px, 8vh, 120px);
  padding-bottom: 40px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-logo img { max-height: 44px !important; }
.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 28ch;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4, .footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.footer-col-title-gap { margin-top: 24px; }
.footer-links {
  list-style: none;
  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-links li > span {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.footer-phone, .footer-email {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}
.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--primary); text-decoration: none; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
}
.footer-bottom-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-pill, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}
.mobile-cta-pill > a,
.mobile-sticky-cta > a,
a.mobile-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 150ms, transform 150ms, box-shadow 150ms;
  white-space: nowrap;
}
.mobile-cta-pill > a:hover,
.mobile-sticky-cta > a:hover,
a.mobile-cta-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(0,0,0,0.55);
  text-decoration: none;
  color: var(--ink);
}
.mobile-cta-pill svg, .mobile-sticky-cta svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 600ms ease, transform 600ms ease;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.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: 60ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 300ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 360ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 420ms; }
.stagger.visible > *:nth-child(9)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 540ms; }
.stagger.visible > *:nth-child(n+11) { transition-delay: 600ms; }

/* Already-visible items (server-rendered .visible class) */
.fade-up.visible, .fade-left.visible, .fade-right.visible,
.scale-in.visible, .stagger.visible > * {
  opacity: 1;
  transform: none;
}

/* ============================================================
   STAT COUNTER (shared utility)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700;
}

/* ============================================================
   TABLE SAFETY
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--invert-bg);
  color: var(--invert-text);
}
.services-table tbody td {
  background: var(--canvas);
  color: var(--ink);
}

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.alt-surface { background: var(--surface); }

/* section service-card hover utility */
.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);
}

/* process strip (if used) */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 0;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}

/* FAQ accordion (native details, additional alias) */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary-dark); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* Aggregate CTA row */
.aggregate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.aggregate-score { grid-column: 1 / -1; }
.aggregate-right { grid-column: 1 / -1; }
.aggregate-cta { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.founder-text-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-pair { 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; }
