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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:        #BCD39C;
  --primary-dark:   #9ab87e;
  --primary-deeper: #7a9960;
  --accent:         #2194D4;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9DF;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --border:         rgba(20,20,20,0.10);
  --border-brand:   rgba(188,211,156,0.55);
  --invert-bg:      #141414;
  --invert-text:    #F7F4ED;
  --header-height:  72px;
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
  --content-max:    1440px;
  --grid-max:       1320px;
}
@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; }
body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}
a { color: var(--ink); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary-deeper); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
ul { list-style: none; }
p { line-height: 1.68; }

/* ─── 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; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero { position: relative; overflow: hidden; max-height: 64vh; }
.page-header > img, [class*="page-header"] > img, .page-header-bg, .about-feature > img:first-of-type,
.about-hero-bg, .page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; 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; }

.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ─── LAYOUT CONTAINERS ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section-inner { max-width: var(--grid-max); margin: 0 auto; padding: var(--section-py) clamp(20px, 4vw, 56px); }
.bleed { width: 100%; }

/* ─── STICKY HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-pages {
  flex: 1;
  display: flex; justify-content: center; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid transparent; transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary-deeper); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--primary-deeper); border-bottom-color: var(--primary); }
.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms; border: none; cursor: pointer;
}
.nav-cta:hover { filter: brightness(0.88); color: var(--ink); text-decoration: none; }
.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;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px;
    gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800; justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-cta span { display: none; }
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */

/* ─── HERO ───────────────────────────────────────────────── */
#hero.hero {
  min-height: 96vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; z-index: 0;
  filter: brightness(0.72) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,18,6,0.88) 0%,
    rgba(10,18,6,0.50) 40%,
    rgba(188,211,156,0.08) 100%
  );
}
.hero-ribbon {
  position: absolute; top: 28px; right: 32px; z-index: 10;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(188,211,156,0.40);
  padding: 9px 16px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
}
.ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(188,211,156,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(188,211,156,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(188,211,156,0); }
  100% { box-shadow: 0 0 0 0 rgba(188,211,156,0); }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px) clamp(64px, 10vh, 120px);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; 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: block; width: 32px; height: 2px;
  background: var(--primary); flex-shrink: 0;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(52px, 8vw, 132px);
  line-height: 0.96; letter-spacing: -0.03em;
  color: #fff; max-width: 16ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.80);
  max-width: 520px; margin-bottom: 40px; line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
  align-items: center;
}
.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(188,211,156,0.50);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0; cursor: pointer;
  border: none; text-decoration: none; transition: filter 180ms, transform 180ms;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary, .btn-primary-lg {
  background: var(--primary); color: var(--ink);
}
.btn-primary:hover, .btn-primary-lg:hover { filter: brightness(0.88); color: var(--ink); }
.btn-ghost, .btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover, .btn-outline-white:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-lg {
  background: transparent; border: 2px solid var(--ink); color: var(--ink);
}
.btn-outline-lg:hover { background: var(--ink); color: var(--canvas); }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid rgba(255,255,255,0.55);
  color: #fff; padding: 16px 28px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: border-color 150ms, color 150ms;
}
.btn-phone:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; }
.btn-submit {
  background: var(--primary); color: var(--ink);
  padding: 18px 40px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; width: 100%;
  transition: filter 180ms;
}
.btn-submit:hover { filter: brightness(0.88); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.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(--canvas);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px); line-height: 1.2; color: var(--ink);
}
.marquee-item > span {
  display: inline-block;
}
.marquee-item::after {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--surface); padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  justify-content: center;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--primary);
  padding: 8px 16px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: transparent;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--primary-deeper); flex-shrink: 0; }

/* ─── SERVICES BENTO ─────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services .section-inner { padding-top: 0; padding-bottom: 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--primary); flex-shrink: 0;
}
.section-title, .services .section-inner > h2 {
  font-size: clamp(36px, 5vw, 72px); margin-bottom: clamp(40px, 6vh, 72px);
  max-width: 18ch;
}
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
/* Flagship card spans 2 cols × 2 rows */
.service-card.flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
/* Cards 2-4 occupy right column rows 1-2 + bottom-right */
.services-bento .service-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.services-bento .service-card:nth-child(3) { grid-column: 3; grid-row: 2; }
/* Last 3 cards span full-width bottom row */
.services-bento .service-card:nth-child(4) { grid-column: 1; grid-row: 3; }
.services-bento .service-card:nth-child(5) { grid-column: 2; grid-row: 3; }
.services-bento .service-card:nth-child(6) { grid-column: 3; grid-row: 3; }

.service-card {
  position: relative; overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card.flagship { min-height: 640px; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.30); }
.service-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; transition: transform 400ms ease-out;
  filter: saturate(0.7) brightness(0.85);
  max-height: none !important;
}
.service-card:hover > img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,18,6,0.92) 0%, rgba(10,18,6,0.30) 60%, transparent 100%);
}
.service-card-body {
  position: relative; z-index: 2;
  padding: clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 8px;
}
.service-card-num {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(32px, 5vw, 80px); line-height: 0.85;
  color: var(--primary); opacity: 0.70;
  letter-spacing: -0.04em;
}
.flagship .service-card-num { font-size: clamp(56px, 8vw, 120px); }
.service-card-body h3 {
  font-size: clamp(18px, 2.5vw, 32px); color: #fff;
  line-height: 1.05; margin-bottom: 6px;
}
.flagship .service-card-body h3 { font-size: clamp(28px, 3.5vw, 52px); }
.service-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.72);
  line-height: 1.55; max-width: 480px;
  display: none;
}
.flagship .service-card-desc { display: block; margin-bottom: 12px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); text-decoration: none;
  transition: gap 150ms;
}
.service-card-link:hover { gap: 10px; text-decoration: none; color: var(--primary); }
.service-card-link svg { width: 16px; height: 16px; }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.gallery .section-eyebrow { color: var(--primary-deeper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 40px;
}
/* First tile tall: spans 2 rows */
.gallery-tile.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-tile {
  display: block; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  position: relative;
}
.gallery-tile.tall { aspect-ratio: auto; min-height: 100%; }
.gallery-tile > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease-out;
  display: block; max-height: none !important;
}
.gallery-tile:hover > img { transform: scale(1.06); }
.gallery-cta-row {
  margin-top: 40px; display: flex; justify-content: center;
}

/* ─── GALLERY PAGE ───────────────────────────────────────── */
.gallery-section {
  background: var(--canvas); padding: var(--section-py) 0;
}
.gallery-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.gallery-header-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 16px;
}
.gallery-heading {
  font-size: clamp(36px, 5vw, 64px);
}
.gallery-heading em { font-style: italic; color: var(--primary-deeper); }
.gallery-count {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink); padding: 8px 16px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 150ms, border-color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); border-color: var(--primary); color: var(--ink);
}
.gallery-section .gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 0;
}
.gallery-card {
  background: var(--surface); overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }
.gallery-card-photo {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.gallery-card-photo > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease-out; max-height: none !important;
}
.gallery-card:hover .gallery-card-photo > img { transform: scale(1.06); }
.gallery-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--ink);
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px;
}
.gallery-card-tag {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(10,18,6,0.75); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px;
}
.gallery-card-body { padding: 20px 20px 24px; }
.gallery-card-body h3 {
  font-size: 16px; margin-bottom: 8px;
}
.gallery-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin-bottom: 8px;
}
.gallery-card-location svg { width: 14px; height: 14px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.gallery-card-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.gallery-meta-item {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  background: var(--surface); padding: var(--section-py) 0;
}
.faq .section-inner { padding-top: 0; padding-bottom: 0; }
.faq-list { margin-top: 40px; }
details.faq-list > details,
.faq-list > details {
  border-bottom: 1px solid var(--border); padding: 0;
}
.faq-list > details > summary,
details > summary {
  cursor: pointer; font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px; color: var(--ink);
}
details > summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--primary-deeper);
  transition: transform 220ms ease-out;
}
details[open] > summary .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 24px; font-size: 16px; color: var(--muted);
  max-width: 720px; line-height: 1.7;
}

/* ─── TEAM CTA BAND ──────────────────────────────────────── */
.team-cta {
  background: var(--invert-bg); padding: 56px 0;
  text-align: center;
}
.team-cta-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(22px, 3.5vw, 40px); color: var(--invert-text);
  line-height: 1.1; letter-spacing: -0.02em;
}
.team-cta-text em { font-style: italic; color: var(--primary); }
.team-cta-inner > a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 18px 40px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: filter 150ms;
}
.team-cta-inner > a:hover { filter: brightness(0.88); text-decoration: none; color: var(--ink); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--canvas); padding: var(--section-py) 0;
}
.contact .section-inner { padding-top: 0; padding-bottom: 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px); margin-top: 48px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.contact-form-group label {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); background: var(--surface);
  font-family: 'Inter Tight', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 150ms;
  border-radius: 0;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus { border-color: var(--primary); }
.contact-form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-block { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-label {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.contact-info-value { font-size: 16px; color: var(--ink); line-height: 1.5; }
.contact-info-value a { color: var(--ink); transition: color 150ms; }
.contact-info-value a:hover { color: var(--primary-deeper); text-decoration: underline; }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--border);
  color: var(--ink); text-decoration: none;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; gap: 0; }
.contact-form-title {
  font-size: clamp(32px, 4vw, 56px); margin-bottom: 12px;
}
.contact-form-desc { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); background: var(--surface);
  font-family: 'Inter Tight', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 150ms; border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-col { }
.contact-info-card {
  background: var(--surface); padding: 40px 36px;
}
.info-card-eyebrow {
  display: block;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 12px;
}
.info-card-title {
  font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 32px;
  line-height: 1.1;
}
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.info-icon { flex-shrink: 0; width: 20px; padding-top: 2px; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary-deeper); }
.info-label {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 3px;
}
.info-value { font-size: 15px; color: var(--ink); line-height: 1.5; }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary-deeper); }
.info-divider { height: 1px; background: var(--border); margin: 24px 0; }
.service-area-block { margin-bottom: 24px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-chip {
  border: 1px solid var(--primary);
  padding: 5px 12px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--invert-bg); position: relative; overflow: hidden;
  padding: var(--section-py) 0;
}
.cta-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.20;
  filter: grayscale(1); max-height: none !important;
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.cta-left { display: flex; flex-direction: column; gap: 20px; }
.cta-eyebrow, .cta-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
}
.cta-headline, .cta-banner-title {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff; line-height: 1.0; letter-spacing: -0.03em;
}
.cta-headline span, .cta-banner-title span { color: var(--primary); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo Black', sans-serif; font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary); text-decoration: none; letter-spacing: -0.02em;
  transition: opacity 150ms;
}
.cta-phone:hover { opacity: 0.80; text-decoration: none; color: var(--primary); }
.cta-phone svg { width: 24px; height: 24px; }
.cta-form { display: flex; flex-direction: column; gap: 0; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Inter Tight', sans-serif; font-size: 15px;
  outline: none; transition: border-color 150ms; border-radius: 0;
  appearance: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.40); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { border-color: var(--primary); }
.cta-form select { margin-bottom: 12px; }
.cta-form textarea { min-height: 100px; resize: vertical; margin-bottom: 16px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* ─── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  min-height: 42vh; max-height: 64vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.page-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.55;
  filter: saturate(0.6); max-height: none !important;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,18,6,0.88) 0%, rgba(10,18,6,0.35) 60%, transparent 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  max-width: var(--content-max);
}
.page-header-eyebrow, .page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.page-header-title {
  font-size: clamp(42px, 7vw, 96px); color: #fff;
  line-height: 0.97; letter-spacing: -0.03em; max-width: 14ch;
}
.page-header-sub, .page-sub {
  font-size: clamp(14px, 1.8vw, 18px); color: rgba(255,255,255,0.70);
  margin-top: 16px; max-width: 560px;
}

/* ─── SERVICES FEATURE BLOCKS (services.html) ────────────── */
.services-intro {
  background: var(--surface); padding: clamp(48px, 6vh, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.services-intro-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.services-intro-text {
  font-size: clamp(18px, 2.2vw, 24px); color: var(--ink);
  max-width: 760px; line-height: 1.55;
}
.services-intro-text span { color: var(--primary-deeper); font-weight: 700; }
.services-nav-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.services-nav-pills > a {
  border: 1px solid var(--border); color: var(--ink);
  padding: 8px 18px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 150ms, border-color 150ms;
}
.services-nav-pills > a:hover {
  background: var(--primary); border-color: var(--primary); color: var(--ink); text-decoration: none;
}
.service-block { padding: clamp(72px, 10vh, 140px) 0; }
.service-block-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px); align-items: center;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.service-photo-wrap > img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; max-height: none !important;
}
.service-index {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: 80px; line-height: 0.85; letter-spacing: -0.04em;
  color: var(--primary); opacity: 0.75;
}
.service-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.service-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--primary);
}
.service-heading {
  font-size: clamp(32px, 4vw, 54px); margin-bottom: 20px; color: var(--ink);
}
.service-desc { font-size: 16px; color: var(--muted); margin-bottom: 12px; line-height: 1.65; }
.service-features {
  display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0 28px; list-style: none;
}
.service-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink-mid); line-height: 1.5;
}
.service-feature-item::before {
  content: ''; display: block; flex-shrink: 0;
  width: 18px; height: 2px; background: var(--primary);
  margin-top: 10px;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 16px 32px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: filter 150ms;
}
.service-cta:hover { filter: brightness(0.88); text-decoration: none; color: var(--ink); }
.service-cta svg { width: 16px; height: 16px; }
.block-divider { height: 1px; background: var(--border); }
.block-surface { background: var(--surface); }

/* ─── ABOUT STORY ────────────────────────────────────────── */
.about-story {
  background: var(--canvas); padding: var(--section-py) 0;
}
.about-story-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-story-portrait-col { display: flex; flex-direction: column; gap: 12px; }
.about-story-portrait-col > img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  max-height: none !important;
  filter: saturate(0.8);
}
.about-story-portrait-caption {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.about-story-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.about-story-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--primary);
}
.about-story-headline {
  font-size: clamp(32px, 4vw, 54px); margin-bottom: 32px;
  color: var(--ink);
}
.about-story-body p { font-size: 16px; color: var(--muted); line-height: 1.70; margin-bottom: 20px; }
.about-pull-quote {
  border-left: 3px solid var(--primary);
  padding: 8px 24px; margin: 32px 0;
}
.about-pull-quote p {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 10px !important;
}
.about-pull-quote cite {
  font-family: 'Archivo', sans-serif; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  font-style: normal;
}

/* ─── VALUES SECTION ─────────────────────────────────────── */
.values-section { background: var(--surface); padding: var(--section-py) 0; }
.values-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.values-header { margin-bottom: 48px; }
.values-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 14px;
}
.values-header > div > h2 { font-size: clamp(32px, 4vw, 54px); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
}
.value-card {
  background: var(--canvas); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 200ms;
}
.value-card:hover { background: var(--primary); }
.value-card:hover h3,
.value-card:hover .value-num,
.value-card:hover .value-card-body { color: var(--ink); }
.value-num {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(40px, 5vw, 72px); line-height: 0.9;
  color: var(--primary); letter-spacing: -0.04em;
  transition: color 200ms;
}
.value-card h3 {
  font-size: 18px; color: var(--ink); margin-bottom: 8px; transition: color 200ms;
}
.value-card-body { font-size: 14px; color: var(--muted); line-height: 1.60; transition: color 200ms; }

/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline-section { background: var(--canvas); padding: var(--section-py) 0; }
.timeline-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.timeline-header { margin-bottom: 48px; }
.timeline-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 14px;
}
.timeline-header h2 { font-size: clamp(32px, 4vw, 54px); }
.timeline-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.timeline-track::before {
  content: ''; position: absolute; top: 24px; left: 0; right: 0;
  height: 2px; background: var(--border); z-index: 0;
}
.timeline-step {
  display: flex; flex-direction: column; gap: 16px;
  padding: 0 24px 0 0; position: relative; z-index: 1;
}
.timeline-dot {
  width: 48px; height: 48px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-dot svg { width: 22px; height: 22px; color: var(--ink); }
.timeline-phase {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.timeline-step h3 { font-size: 18px; margin-bottom: 4px; }
.timeline-step-title { font-size: 18px; }
.timeline-step-body { font-size: 14px; color: var(--muted); line-height: 1.60; }

/* ─── CREW SECTION ───────────────────────────────────────── */
.crew-section { background: var(--surface); padding: var(--section-py) 0; }
.crew-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.crew-header { margin-bottom: 48px; }
.crew-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 14px;
}
.crew-header > div > h2 { font-size: clamp(32px, 4vw, 54px); }
.crew-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.crew-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--ink);
}
.crew-card > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 400ms ease-out;
  filter: saturate(0.7); max-height: none !important;
}
.crew-card:hover > img { transform: scale(1.05); }
.crew-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(to top, rgba(10,18,6,0.90) 0%, transparent 100%);
}
.crew-card-role {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px;
}
.crew-card-name {
  font-family: 'Archivo Black', sans-serif; font-size: 18px;
  color: #fff; line-height: 1.1;
}
.crew-programs {
  background: var(--canvas); padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.crew-programs-label {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--primary-deeper);
}
.crew-programs-list { display: flex; flex-direction: column; gap: 8px; }
.crew-programs-list li {
  font-size: 14px; color: var(--ink-mid); padding-left: 14px; position: relative;
}
.crew-programs-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 2px; background: var(--primary);
}

/* ─── ABOUT VERBATIM ─────────────────────────────────────── */
.about-verbatim {
  background: var(--surface); padding: var(--section-py) 0;
}
.about-verbatim-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-verbatim-eyebrow {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deeper); margin-bottom: 14px;
}
.about-verbatim-left h2 { font-size: clamp(28px, 3.5vw, 48px); }
.about-verbatim-headline { font-size: clamp(28px, 3.5vw, 48px); }
.about-verbatim-body p { font-size: 16px; color: var(--muted); line-height: 1.70; margin-bottom: 18px; }
.about-verbatim-programs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.program-chip {
  border: 1px solid var(--primary);
  padding: 6px 14px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--invert-text); padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-grid {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { filter: brightness(2) saturate(0); opacity: 0.90; }
.footer-brand-logo { display: block; }
.footer-logo { display: block; }
.footer-tagline, .footer-brand-tagline {
  font-size: 14px; color: rgba(247,244,237,0.55); line-height: 1.60;
  max-width: 280px;
}
.footer-phone, .footer-phone-link { font-size: 14px; color: rgba(247,244,237,0.55); }
.footer-phone a, .footer-phone-link { color: var(--primary); text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(247,244,237,0.60);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-item a { color: rgba(247,244,237,0.60); transition: color 150ms; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-link { color: rgba(247,244,237,0.60) !important; }
.footer-contact-link:hover { color: var(--primary) !important; }
.footer-col-title, .footer-col-head {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,244,237,0.45); margin-bottom: 20px; display: block;
}
.footer-links, .footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a, .footer-col ul a {
  font-size: 14px; color: rgba(247,244,237,0.65); text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-col ul a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line { font-size: 14px; color: rgba(247,244,237,0.60); }
.footer-contact-line a { color: rgba(247,244,237,0.60); transition: color 150ms; }
.footer-contact-line a:hover { color: var(--primary); }
.footer-email-link { color: rgba(247,244,237,0.60); transition: color 150ms; }
.footer-email-link:hover { color: var(--primary); }
.footer-top {
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-bottom {
  max-width: 100%; margin-top: 64px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(247,244,237,0.35);
}
.footer-bottom a { color: rgba(247,244,237,0.35); }
.footer-bottom a:hover { color: var(--primary); text-decoration: none; }
.footer-copy { font-size: 12px; color: rgba(247,244,237,0.35); }
.footer-rating { display: flex; align-items: center; gap: 8px; }
.footer-stars { color: var(--primary); letter-spacing: 2px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(247,244,237,0.55); transition: background 150ms, border-color 150ms;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); }
.footer-social a svg { width: 16px; height: 16px; }

/* ─── ANIMATION UTILITIES ────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 640ms ease-out, transform 640ms ease-out; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 640ms ease-out, transform 640ms ease-out; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 640ms ease-out, transform 640ms ease-out; }
.scale-in   { opacity: 0; transform: scale(0.94); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

/* ─── MOBILE STICKY CTA ──────────────────────────────────── */
.mobile-sticky-cta, .mobile-cta, .mobile-cta-sticky, .mobile-call {
  display: none;
}
@media (max-width: 900px) {
  .mobile-sticky-cta, .mobile-cta, .mobile-cta-sticky, .mobile-call {
    display: inline-flex;
    position: fixed; bottom: 18px; right: 18px; z-index: 999;
    align-items: center; gap: 10px;
    background: var(--primary); color: var(--ink);
    padding: 14px 22px; border-radius: 999px;
    font-family: 'Archivo', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    transition: filter 150ms;
  }
  .mobile-sticky-cta:hover, .mobile-cta:hover, .mobile-cta-sticky:hover, .mobile-call:hover {
    filter: brightness(0.88); text-decoration: none;
  }
  .mobile-sticky-cta svg, .mobile-cta svg, .mobile-cta-sticky svg, .mobile-call svg {
    width: 20px; height: 20px;
  }
}
@media (min-width: 900px) {
  .mobile-sticky-cta, .mobile-cta, .mobile-cta-sticky, .mobile-call { display: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .service-card.flagship { grid-column: 1 / 3; grid-row: 1; }
  .services-bento .service-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .services-bento .service-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .services-bento .service-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .services-bento .service-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .services-bento .service-card:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }
  .footer-inner, .footer-top, .footer-grid {
    grid-template-columns: 1fr 1fr; gap: 40px;
  }
  .timeline-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { padding-bottom: clamp(40px, 8vh, 80px); }
  .hero-ribbon { top: 16px; right: 16px; font-size: 10px; padding: 7px 12px; }
  .contact-grid, .cta-banner-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-verbatim-inner { grid-template-columns: 1fr; }
  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block-inner.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-section .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: 1fr 1fr; }
  .crew-programs { grid-column: span 2; }
  .timeline-track { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner, .footer-top, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-card.flagship { grid-column: 1; grid-row: auto; }
  .services-bento .service-card { grid-column: 1; grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile { aspect-ratio: 4/3; }
  .gallery-tile.tall { aspect-ratio: 4/3; grid-row: span 1; }
  .gallery-section .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 12vw, 80px); }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .crew-grid { grid-template-columns: 1fr; }
  .crew-programs { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
  .about-story-portrait-col > img { max-height: 420px; }
}

/* ─── MISC UTILITY ───────────────────────────────────────── */
.section-inner > h2 {
  font-size: clamp(36px, 5vw, 72px); margin-bottom: clamp(40px, 6vh, 72px);
}
address { font-style: normal; }
::selection { background: var(--primary); color: var(--ink); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* Grain texture overlay */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form { grid-column: 1 / -1; }
.contact-info-block { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.cta-eyebrow { grid-column: 1 / -1; }
.cta-title { grid-column: 1 / -1; }
.cta-sub { grid-column: 1 / -1; }
.cta-actions { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-top { 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; }
