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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #ECD404;
  --primary-dim:   #c9b503;
  --accent:        #3C5424;
  --canvas:        #0E0E0E;
  --surface:       #1A1A1A;
  --surface-2:     #222222;
  --ink:           #FFFFFF;
  --muted:         rgba(255,255,255,0.65);
  --muted-low:     rgba(255,255,255,0.35);
  --border:        rgba(255,255,255,0.1);
  --border-brand:  rgba(236,212,4,0.35);
  --overlay:       rgba(14,14,14,0.72);

  --font-display:  'Archivo Black', sans-serif;
  --font-label:    'Archivo', sans-serif;
  --font-body:     'Inter Tight', sans-serif;

  --radius:        0px;
  --header-height: 72px;

  --pad-section:   clamp(96px, 12vh, 180px);
  --max-w:         1440px;
  --max-w-wide:    1400px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body { background: var(--canvas); overflow-x: hidden; }

/* UNIVERSAL IMAGE CAP — no <img> may overflow its container, ever */
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; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  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; object-position: center 45%; 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; }

/* Heading anchor reset */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  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, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p { line-height: 1.7; color: var(--muted); }
a { color: var(--ink); 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; }

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

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

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  padding: 0; margin: 0;
}

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover,
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  text-decoration: none;
}
.nav-pages a[aria-current="page"] {
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 899;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover {
  filter: brightness(0.9);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 17px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms, color 200ms, transform 200ms;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 17px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 200ms;
}
.btn-phone:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: filter 200ms;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(0.9); }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }

.fade-up.visible { opacity: 1; transform: none; }
.fade-left.visible { opacity: 1; transform: none; }
.fade-right.visible { opacity: 1; transform: none; }
.scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   SECTION EYEBROW / LABEL
   ============================================================ */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.service-eyebrow,
.cta-banner-eyebrow,
.cta-eyebrow,
.info-card-eyebrow {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: clamp(40px, 5vh, 72px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(14,14,14,0.96) 0%,
    rgba(14,14,14,0.55) 45%,
    rgba(14,14,14,0.2) 100%
  );
  pointer-events: none;
}

/* Ribbon */
.hero-ribbon {
  position: absolute;
  top: clamp(80px, 10vh, 120px);
  right: clamp(20px, 5vw, 64px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,14,14,0.75);
  border: 1px solid var(--border-brand);
  padding: 10px 18px;
  backdrop-filter: blur(8px);
}

.ribbon-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-inner {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: clamp(48px, 8vh, 120px) clamp(20px, 5vw, 64px) clamp(56px, 8vh, 96px);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

/* Trust chips */
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.trust-chip {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--primary);
  background: rgba(236,212,4,0.06);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 5vh, 64px) 0;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border-brand);
  background: rgba(236,212,4,0.04);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-badge svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.trust-badge-star { color: var(--primary); font-size: 14px; }

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

.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-label);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-item::before {
  content: '\2022';
  color: var(--primary);
  margin-right: 48px;
  font-size: 10px;
  vertical-align: middle;
}

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

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--pad-section);
}

.services > .section-eyebrow,
.services > .section-title {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.services > .section-eyebrow { display: block; padding-block: 0; margin-bottom: 16px; padding-top: 0; }
.services > h2.section-title { padding-block: 0; }

/* Eyebrow/title inside .services that are direct children */
.services .section-eyebrow.fade-up,
.services .section-title.fade-up {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: block;
}

.services-bento {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 480px 360px;
  gap: 3px;
  margin-top: clamp(40px, 5vh, 64px);
}

/* Flagship card spans 2×2 */
.service-card-flagship {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

/* Remaining 5 small cards auto-place in the 3rd and 4th column */
.service-card-sm:nth-child(2) { grid-column: 3; grid-row: 1; }
.service-card-sm:nth-child(3) { grid-column: 4; grid-row: 1; }
.service-card-sm:nth-child(4) { grid-column: 3; grid-row: 2; }
.service-card-sm:nth-child(5) { grid-column: 4; grid-row: 2; }
.service-card-sm:nth-child(6) { grid-column: 3 / span 2; grid-row: 3; height: 300px; }

/* Service card base */
.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--surface);
  text-decoration: none;
  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.55);
  text-decoration: none;
  color: inherit;
}

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
  z-index: 0;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.3) 55%, transparent 100%);
}

.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-card-flagship .service-card-body h3 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  display: none;
}
.service-card-flagship .service-card-desc { display: block; max-width: 42ch; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 4px;
}
.service-card-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .service-card-flagship { grid-column: 1 / span 2; grid-row: auto; height: 420px; }
  .service-card-sm { grid-column: auto; grid-row: auto; height: 260px; }
  .service-card-sm:nth-child(6) { grid-column: 1 / span 2; height: 260px; }
  .service-card-desc { display: block; }
}

@media (max-width: 640px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-card-flagship { grid-column: 1; height: 380px; }
  .service-card-sm { grid-column: 1; height: 240px; }
  .service-card-sm:nth-child(6) { grid-column: 1; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: var(--canvas);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.4) 100%);
  pointer-events: none;
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 64px) clamp(40px, 5vh, 64px);
  width: 100%;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted);
  margin-top: 16px;
  max-width: 52ch;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-low);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted-low); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--muted); }

/* ============================================================
   SERVICE INDEX STRIP (services.html)
   ============================================================ */
.service-index-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.service-index-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
}

.service-index-link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: color 150ms, border-color 150ms;
}
.service-index-link:hover { color: var(--primary); border-color: var(--border-brand); text-decoration: none; }

/* ============================================================
   SERVICE FEATURE (services.html alternating)
   ============================================================ */
.services-list { background: var(--canvas); }

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}

.service-feature-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-feature-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--canvas);
}

.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 16px;
  max-width: 16ch;
}

.service-feature-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 12px;
}

.service-bullets {
  list-style: none;
  margin-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-feature-body .btn { margin-top: 12px; align-self: flex-start; }

/* Alternating: odd features have photo-left (default), even have body-left photo-right */
.service-feature:nth-child(even) .service-feature-body { order: -1; }

@media (max-width: 900px) {
  .service-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-feature-photo { min-height: 52vw; order: -1 !important; }
  .service-feature-body { order: 1 !important; }
}

/* ============================================================
   GALLERY SECTION (index.html)
   ============================================================ */
.gallery-section {
  background: var(--surface);
  padding-block: var(--pad-section);
}

.gallery-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 280px;
  gap: 3px;
  margin-bottom: 32px;
}

.gallery-tile {
  aspect-ratio: auto;
  overflow: hidden;
  display: block;
  background: var(--canvas);
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.gallery-tile:hover > img { transform: scale(1.04); }

.gallery-tile-tall {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.gallery-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-tile-tall { grid-row: auto; grid-column: 1 / span 2; height: 280px; }
  .gallery-tile { height: 220px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile { height: 180px; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-top-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
}
.gallery-heading-accent { color: var(--primary); }
.gallery-total-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-pill {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(236,212,4,0.06);
}

/* Gallery cards (gallery.html) */
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.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.05); }

.gallery-card-featured {
  grid-column: 1 / span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, transparent 55%);
}

.gallery-card-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.gallery-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 24px;
}
.gallery-card-body h3 {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink);
  margin-bottom: 6px;
}

.gallery-card-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.gallery-card-location {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-card-stat {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-low);
}

/* gallery grid in gallery.html */
section#gallery.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 0;
}
section#gallery.gallery-section .gallery-grid .gallery-card {
  grid-column: auto;
}
section#gallery.gallery-section .gallery-grid .gallery-card-featured {
  grid-column: 1 / span 2;
}

@media (max-width: 900px) {
  section#gallery.gallery-section .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card-featured { grid-column: 1 / span 2; }
}
@media (max-width: 640px) {
  section#gallery.gallery-section .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card-featured { grid-column: 1; }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
#reviews {
  background: var(--canvas);
  padding-block: var(--pad-section);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
#reviews > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#reviews > div > div {
  display: flex;
  align-items: center;
  gap: 4px;
}
#reviews svg { width: 22px; height: 22px; color: var(--primary); fill: var(--primary); }

.review-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.review-stars svg { color: var(--primary); fill: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; color: var(--ink); }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding-block: var(--pad-section);
}

.faq-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.faq-list { border-top: 1px solid var(--border); margin-top: 0; }

details.faq-list > details,
.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
}
.faq-list details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-list details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA BANNER (index.html)
   ============================================================ */
.team-cta {
  background: var(--accent);
  padding-block: clamp(64px, 8vh, 96px);
}

.team-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.team-cta-text span { color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding-block: clamp(72px, 9vh, 120px);
  position: relative;
  overflow: hidden;
}
.cta-banner-bar {
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 100%;
  background: rgba(0,0,0,0.18);
}

.cta-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cta-banner-eyebrow,
.cta-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canvas);
  opacity: 0.7;
}

.cta-banner h2,
.cta-banner-headline,
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
}

.cta-sub,
.cta-banner > div p:not([class]) {
  color: rgba(14,14,14,0.7);
  font-size: 17px;
  max-width: 52ch;
}

.cta-banner-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta-banner-actions .btn,
.cta-actions .btn {
  background: var(--canvas);
  color: var(--ink);
}
.cta-banner-actions .btn:hover,
.cta-actions .btn:hover { background: var(--surface); }

.cta-banner-actions .btn-outline,
.cta-actions .btn-outline {
  border-color: rgba(14,14,14,0.35);
  color: var(--canvas);
}
.cta-banner-actions .btn-outline:hover,
.cta-actions .btn-outline:hover { border-color: var(--canvas); background: rgba(14,14,14,0.08); }

.cta-banner-phone { color: var(--canvas); font-weight: 700; }

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding-block: var(--pad-section);
}

.contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: clamp(40px, 5vh, 64px);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-block { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-info-value { color: var(--muted); font-size: 16px; }
.contact-info-block a { color: var(--ink); font-size: 18px; font-weight: 600; }
.contact-info-block a:hover { color: var(--primary); }

.contact-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 200ms;
}
.contact-social-link:hover { border-color: var(--primary); color: var(--primary); }
.contact-social-link svg { width: 18px; height: 18px; }

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

/* ============================================================
   CONTACT SPLIT PAGE (contact.html)
   ============================================================ */
.contact-split {
  background: var(--canvas);
  padding-block: var(--pad-section);
}

.contact-split-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-form-col { display: flex; flex-direction: column; gap: 8px; }
.contact-form-col h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
}
.contact-form-label-row {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--primary); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select option { background: var(--surface); color: var(--ink); }

.contact-info-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
}

.info-card-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.info-items { display: flex; flex-direction: column; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 16px;
}

.info-item-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(236,212,4,0.08);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item-icon svg { width: 18px; height: 18px; color: var(--primary); }

.info-item-body { display: flex; flex-direction: column; gap: 2px; }
.info-item-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-low);
}
.info-item-value { color: var(--ink); font-size: 15px; font-weight: 600; }

.info-divider { height: 1px; background: var(--border); }

.bbb-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.bbb-badge {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.bbb-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .contact-split-inner { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
  .contact-split-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT — FOUNDER STORY
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding-block: var(--pad-section);
}

.founder-story-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.founder-portrait-col { display: flex; flex-direction: column; gap: 0; }
.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.founder-portrait-wrap > img {
  width: 100%; height: auto;
  max-height: 520px;
  object-fit: cover;
}
.founder-portrait-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: rgba(14,14,14,0.8);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.founder-story-col { display: flex; flex-direction: column; }
.founder-headline {
  font-size: clamp(32px, 4vw, 60px);
  margin-bottom: 24px;
  max-width: 18ch;
}
.founder-body { display: flex; flex-direction: column; gap: 20px; }
.founder-body p { color: var(--muted); font-size: 17px; line-height: 1.75; }

.pull-quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin-block: 8px;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; }
  .founder-portrait-col { margin-bottom: 32px; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding-block: var(--pad-section);
}

.values-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.values-header {
  margin-bottom: clamp(40px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  max-width: 18ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.value-card {
  background: var(--canvas);
  padding: clamp(28px, 3vw, 48px) clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 250ms;
}
.value-card:hover { border-color: var(--border-brand); }

.value-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.value-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}
.value-desc { color: var(--muted); font-size: 15px; line-height: 1.65; }

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

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  background: var(--canvas);
  padding-block: var(--pad-section);
}

.timeline-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.timeline-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  max-width: 18ch;
  margin-bottom: clamp(40px, 5vh, 64px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
}

.timeline-dot {
  width: 12px; height: 12px;
  background: var(--primary);
  margin-bottom: 20px;
}

.timeline-date {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding-block: var(--pad-section);
}

.crew-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.crew-header {
  margin-bottom: clamp(40px, 5vh, 64px);
}
.crew-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  max-width: 18ch;
  margin-bottom: 16px;
}
.crew-sub { color: var(--muted); font-size: 17px; max-width: 52ch; }

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

.crew-photo {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  min-height: 320px;
}
.crew-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 420px;
}
.crew-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: rgba(14,14,14,0.82);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.crew-photo > div {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crew-photo > div p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.crew-photo > div p:first-child { color: var(--ink); font-weight: 600; font-size: 17px; }

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

/* ============================================================
   ABOUT EDITORIAL SECTION
   ============================================================ */
.about-editorial {
  background: var(--surface);
  padding-block: var(--pad-section);
}

.about-editorial-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.about-editorial-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  max-width: 18ch;
  margin-bottom: 32px;
}

.about-editorial-body { display: flex; flex-direction: column; gap: 20px; }
.about-editorial-body p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-editorial-body a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  padding-top: clamp(64px, 8vh, 96px);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vh, 80px);
}

.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vh, 80px);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 28ch; }
.footer-rating-line { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.footer-rating-line svg { width: 14px; height: 14px; color: var(--primary); }

.footer-col { display: flex; flex-direction: column; gap: 16px; }

.footer-col-title,
.footer-col-heading {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

.footer-col ul,
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col ul li a,
.footer-links li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover,
.footer-links li a:hover { color: var(--primary); text-decoration: none; }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

address { font-style: normal; display: flex; flex-direction: column; gap: 8px; }
address a { font-size: 14px; color: var(--muted); text-decoration: none; }
address a:hover { color: var(--primary); }

.footer-phone,
.footer-email { font-size: 15px; color: var(--ink); font-weight: 600; }
.footer-contact-item { font-size: 14px; color: var(--muted); }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-note { font-size: 12px; color: var(--muted-low); }
.footer-contact-line { font-size: 15px; color: var(--ink); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 24px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--muted-low); }
.footer-legal-note { font-size: 13px; color: var(--muted-low); }
.footer-bbb { font-size: 13px; color: var(--muted-low); }
.footer-bbb span { color: var(--primary); font-weight: 700; }

.footer-logo { display: block; }

@media (max-width: 1100px) {
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand,
  .footer-brand-col { grid-column: 1 / span 2; }
}
@media (max-width: 640px) {
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-brand-col { grid-column: 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-sticky-cta,
.mobile-cta,
.mobile-call-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover,
.mobile-call-btn:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--canvas);
}
.mobile-call-pill svg,
.mobile-sticky-cta svg,
.mobile-cta svg,
.mobile-call-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-call-pill a,
.mobile-sticky-cta a,
.mobile-cta a,
.mobile-call-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  text-decoration: none;
}
.mobile-call-pill a svg,
.mobile-sticky-cta a svg,
.mobile-cta a svg,
.mobile-call-btn a svg { width: 20px; height: 20px; }

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

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

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: var(--font-label);
  text-transform: uppercase;
}

/* ============================================================
   TABLE
   ============================================================ */
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--surface); color: var(--muted); padding: 14px 18px; text-align: left; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
tbody td { padding: 14px 18px; color: var(--ink); border-bottom: 1px solid var(--border); font-size: 15px; background: var(--canvas); }

/* ============================================================
   SERVICE AREA PILLS
   ============================================================ */
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-pill {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ============================================================
   MISC / SVG CAPS
   ============================================================ */
svg { max-width: 100%; }

.faq-list details summary svg,
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }

.trust-badge svg,
.info-item-icon svg { width: 18px; height: 18px; }

.gallery-card-location svg { width: 12px; height: 12px; }

.service-card-link svg { width: 14px; height: 14px; }

.footer-rating-line svg { width: 14px; height: 14px; }

/* Star icon fill */
.trust-badge-star,
#reviews svg { fill: var(--primary); color: var(--primary); }

/* Monochrome crew / team photos */
.crew-photo img { filter: grayscale(60%); transition: filter 500ms; }
.crew-photo:hover img { filter: grayscale(0%); }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card-flagship { grid-column: 1 / span 2; }
  .service-card-sm:nth-child(2) { grid-column: 3; }
  .service-card-sm:nth-child(3) { grid-column: 1; }
  .service-card-sm:nth-child(4) { grid-column: 2; }
  .service-card-sm:nth-child(5) { grid-column: 3; }
  .service-card-sm:nth-child(6) { grid-column: 1 / span 3; height: 260px; }
}

@media (max-width: 640px) {
  .hero-title { max-width: 12ch; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .trust-strip-inner { gap: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-banner-actions,
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.founder-story-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.form-field { 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; }
