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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #293716;
  --primary-dark:   #1a2410;
  --primary-light:  #3d5220;
  --accent:         #293716;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EEE9DE;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --border:         rgba(41,55,22,0.18);
  --border-light:   rgba(0,0,0,0.07);
  --white:          #FFFFFF;

  --header-height:  72px;
  --section-y:      clamp(96px, 12vh, 180px);
  --container:      1440px;
  --radius:         0px;
}

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

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

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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 30%; 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 30%; 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; }
}

/* Headings as links — inherit color */
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, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

p { line-height: 1.65; }

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

strong { font-weight: 700; }

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

/* ============================================================
   EYEBROW / LABEL SYSTEM
   ============================================================ */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.service-eyebrow,
.cta-banner-eyebrow,
.gallery-section-eyebrow,
.crew-eyebrow,
.founder-body-eyebrow,
.cta-eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-sm,
.btn-ghost,
.btn-outline,
.btn-submit,
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: background 180ms, color 180ms, filter 180ms, transform 120ms;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 18px 32px;
  font-size: 14px;
}
.btn-primary:hover { filter: brightness(1.15); color: var(--white); text-decoration: none; }

.btn-primary-sm {
  background: var(--primary);
  color: var(--white);
  padding: 13px 24px;
  font-size: 13px;
}
.btn-primary-sm:hover { filter: brightness(1.15); color: var(--white); text-decoration: none; }

.btn-primary-sm svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 16px 30px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 16px 30px;
  font-size: 14px;
}
.btn-outline:hover { background: var(--primary); color: var(--white); text-decoration: none; }

.btn-cta-white {
  background: var(--white);
  color: var(--primary);
  padding: 18px 32px;
  font-size: 14px;
}
.btn-cta-white:hover { filter: brightness(0.94); color: var(--primary); text-decoration: none; }

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover { filter: brightness(1.15); text-decoration: none; }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#progressBar,
#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 60ms linear;
}

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

.top-nav {
  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; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-logo a { text-decoration: none; color: var(--ink); }
.nav-logo a:hover { text-decoration: none; color: var(--ink); }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--white); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.18) 0%,
    rgba(20,20,20,0.22) 40%,
    rgba(41,55,22,0.78) 80%,
    rgba(41,55,22,0.92) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 10;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(41,55,22,0.2);
}
.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 64px);
  padding-bottom: clamp(64px, 9vw, 112px);
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.75);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero-title a { color: inherit; text-decoration: none; border-bottom: 0; }

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(247,244,237,0.82);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-ctas .btn-primary { background: var(--white); color: var(--primary); }
.hero-ctas .btn-primary:hover { filter: brightness(0.94); color: var(--primary); text-decoration: none; }
.hero-ctas .btn-ghost { border-color: rgba(255,255,255,0.55); }

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(247,244,237,0.45);
  background: rgba(247,244,237,0.08);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.9);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .hero-ribbon { top: auto; bottom: auto; right: 16px; top: 16px; font-size: 10px; padding: 8px 12px; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--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 {
  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(--muted);
}
.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--canvas);
}

.services-hd {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.services-hd h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.services-hd a { color: inherit; text-decoration: none; }
.services-hd a:hover { color: var(--primary); text-decoration: none; }

.bento-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* flagship card — 2× wide */
.bento-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

/* supporting cards */
.bento-grid > a:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-grid > a:nth-child(3) { grid-column: 1; grid-row: 2; }
.bento-grid > a:nth-child(4) { grid-column: 2; grid-row: 2; }
.bento-grid > a:nth-child(5) { grid-column: 3; grid-row: 2; }
.bento-grid > a:nth-child(6) { display: none; }

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: block;
  text-decoration: none;
  aspect-ratio: unset;
  min-height: 280px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.35); text-decoration: none; }
.bento-flagship { min-height: 520px; }

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

.bento-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(20,20,20,0.45) 60%,
    rgba(20,20,20,0.88) 100%
  );
}

.bento-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(247,244,237,0.18);
  display: block;
  margin-bottom: -8px;
}
.bento-flagship .bento-num { font-size: clamp(72px, 8vw, 120px); }

.bento-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  display: block;
}

.bento-excerpt {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(247,244,237,0.8);
  display: block;
  margin-top: 6px;
  max-width: 48ch;
}

.bento-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.65);
  margin-top: 10px;
  transition: color 150ms;
}
.bento-card:hover .bento-learn { color: var(--white); }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-flagship { grid-column: 1 / 3; grid-row: 1; }
  .bento-grid > a:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-grid > a:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-grid > a:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-grid > a:nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-flagship { min-height: 340px; }
  .bento-card { min-height: 220px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-flagship { grid-column: 1; grid-row: auto; min-height: 300px; }
  .bento-grid > a:nth-child(n) { grid-column: 1; grid-row: auto; }
  .bento-card { min-height: 200px; }
}

/* ============================================================
   CRED BAND
   ============================================================ */
.cred-band {
  background: var(--primary);
  padding: clamp(56px, 7vw, 96px) 0;
}
.cred-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}
.cred-band-inner h3 {
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--white);
  letter-spacing: -0.02em;
}
.cred-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: rgba(247,244,237,0.7);
  margin-top: 10px;
  line-height: 1.55;
}
.cred-divider {
  width: 1px;
  height: 100px;
  background: rgba(247,244,237,0.2);
}
.cred-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.5);
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .cred-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .cred-divider { width: 100%; height: 1px; }
}

/* ============================================================
   GALLERY PREVIEW (index)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
}
.gallery-accent {
  width: 40px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 20px;
}
.gallery-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  margin-bottom: 20px;
}
.gallery-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .gallery-split { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--canvas);
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.team-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.team-cta-inner h2 {
  font-size: clamp(32px, 5vw, 72px);
  margin-bottom: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.faq-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.faq-sticky h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}
.faq-list { display: flex; flex-direction: column; }

details.faq,
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq > summary,
.faq-list details > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
}
details.faq > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms;
}
details[open] .faq-chev { transform: rotate(45deg); }
details.faq > summary::after,
.faq-list details > summary::after { display: none; }

.faq-ans {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 68ch;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
}

/* ============================================================
   CONTACT SECTION (index)
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.contact-grid h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 32px;
}
.contact-info h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}
.c-icon { display: flex; align-items: flex-start; padding-top: 2px; }
.c-icon svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.c-lbl {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.c-val { font-size: 16px; color: var(--ink); }

.financing-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--surface);
  border-left: 3px solid var(--primary);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

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

/* ============================================================
   FORM STYLES (shared)
   ============================================================ */
.contact-form,
form.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full,
.form-group.full { grid-column: 1 / -1; }

.form-field label,
.form-group label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea,
.form-group input,
.form-group select,
.form-group textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41,55,22,0.1);
}
.contact-form textarea,
.form-field textarea,
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit { margin-top: 8px; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(320px, 45vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  max-height: 64vh;
}
.page-header > img { max-height: none; }
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.3) 0%,
    rgba(41,55,22,0.75) 100%
  );
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 64px);
  width: 100%;
}
.page-header-title,
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 96px);
  color: var(--white);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.page-header-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.7);
}
.page-header-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  color: rgba(247,244,237,0.75);
  margin-top: 16px;
  max-width: 56ch;
}
.page-header-meta {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(247,244,237,0.6);
  margin-top: 14px;
}
.page-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.7);
  margin-bottom: 10px;
}

/* ============================================================
   SERVICES INDEX STRIP (services.html)
   ============================================================ */
.services-index-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}
.services-index-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.services-index-inner::-webkit-scrollbar { display: none; }
.services-index-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 150ms, border-color 150ms;
  flex-shrink: 0;
}
.services-index-item:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary); }
.services-index-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  color: var(--primary);
  opacity: 0.5;
}

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.service-feature {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--border-light);
}
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-feature-inner.reverse .service-feature-photo { order: 2; }
.service-feature-inner.reverse .service-feature-body { order: 1; }

.service-feature-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-feature-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
}
.service-index-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 16px;
}
.service-feature-desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-feature-inner { grid-template-columns: 1fr; }
  .service-feature-inner.reverse .service-feature-photo,
  .service-feature-inner.reverse .service-feature-body { order: unset; }
  .service-feature-photo { order: -1; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: clamp(72px, 9vw, 120px) 0;
}
.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
}
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(41,55,22,0.88);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.cta-banner-inner > :only-child {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.65);
  display: block;
  margin-bottom: 16px;
}
.cta-banner-headline,
.cta-banner-text h2,
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 60px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 17px;
  color: rgba(247,244,237,0.75);
  margin-bottom: 32px;
  line-height: 1.55;
}
.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cta-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cta-phone-big:hover { color: rgba(247,244,237,0.8); text-decoration: none; }
.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-banner-text { display: flex; flex-direction: column; justify-content: center; }
.cta-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.6);
  display: block;
  margin-bottom: 14px;
}

/* CTA form in banner */
.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
}
.cta-form h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: var(--white) !important;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.45); }

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

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.gallery-header-row h2 {
  font-size: clamp(28px, 4vw, 56px);
}
.gallery-count {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card.featured { grid-column: 1 / 3; }

.project-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); text-decoration: none; }

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.project-card.featured .project-card-img-wrap { aspect-ratio: 16 / 9; }
.project-card-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.project-card:hover .project-card-img-wrap > img { transform: scale(1.04); }
.project-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,20,20,0.7) 100%);
  z-index: 1;
}
.project-card-tag {
  position: absolute;
  top: 14px; left: 14px; z-index: 2;
  background: var(--primary);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.project-card-overlay-text {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px; z-index: 2;
}
.project-card-location {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.65);
  margin-bottom: 2px;
}
.project-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.project-card-body {
  padding: 16px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.project-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  flex-shrink: 0;
}
.learn-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: 1; }
}

/* ============================================================
   SERVICE AREAS STRIP
   ============================================================ */
.service-areas-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.service-areas-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.service-areas-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 4px;
}
.area-chip {
  display: inline-flex;
  padding: 5px 12px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   FOUNDER / ABOUT (about.html)
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.founder-story-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.founder-portrait {
  position: relative;
}
.founder-portrait > img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}
.founder-portrait-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.founder-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 24px;
}
.founder-body-eyebrow {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.founder-text { display: flex; flex-direction: column; gap: 16px; }
.founder-text p { font-size: 17px; line-height: 1.7; color: var(--ink-mid); }

.founder-pullquote {
  margin: 24px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--primary);
  background: var(--surface);
}
.founder-pullquote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
}

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

/* ============================================================
   VALUES CARDS (about.html)
   ============================================================ */
.values-cards {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.values-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.values-inner > h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 28px;
  background: var(--canvas);
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -8px;
}
.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 16px;
}
.value-body { font-size: 15px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   JOURNEY TIMELINE (about.html)
   ============================================================ */
.journey-timeline {
  background: var(--canvas);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border-light);
}
.journey-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.journey-inner > h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 56px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
  margin-bottom: 20px;
}
.step-marker {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-step h3 { font-size: 16px; margin-bottom: 8px; }
.step-body { font-size: 14px; color: var(--muted); line-height: 1.55; }
.step-title { font-family: 'Archivo Black', sans-serif; font-size: 16px; font-weight: 900; }

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

/* ============================================================
   CREW STRIP (about.html)
   ============================================================ */
.crew-strip {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.crew-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.crew-headline { font-size: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
.crew-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.crew-role {
  padding: 32px;
  background: var(--canvas);
  border-top: 3px solid var(--primary);
}
.crew-role-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
}
.crew-role h3 { font-size: 20px; margin-bottom: 8px; }
.crew-role-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.crew-role-body { font-size: 15px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .crew-roles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .crew-roles { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT EDITORIAL (about.html)
   ============================================================ */
.about-editorial {
  background: var(--canvas);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border-light);
}
.about-editorial-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.about-editorial-heading { font-size: clamp(28px, 4vw, 52px); margin-bottom: 32px; }
.about-editorial-left h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 24px;
}
.about-editorial-text { display: flex; flex-direction: column; gap: 18px; }
.about-editorial-text p { font-size: 17px; line-height: 1.7; color: var(--ink-mid); }

.service-areas { margin-top: 32px; }
.service-areas-label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.service-areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-areas-list li {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
@media (max-width: 900px) { .about-editorial-inner { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT SECTION (contact.html)
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.contact-form-side h2,
.contact-form-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--surface);
  padding: 36px 32px;
  border-top: 3px solid var(--primary);
}
.contact-info-card > h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.info-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 28px;
}
.info-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-row:last-of-type { border-bottom: none; }
.info-icon { display: flex; align-items: flex-start; padding-top: 2px; }
.info-icon svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.info-content-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}
.info-content-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
}

.info-areas { padding: 20px 0; border-bottom: 1px solid var(--border-light); }
.info-areas-label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.info-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-pill {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.info-socials {
  display: flex;
  gap: 12px;
  padding-top: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
}
.social-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.site-footer {
  background: var(--ink);
  color: rgba(247,244,237,0.75);
  padding: clamp(64px, 8vw, 96px) 0 0;
}
.footer-inner,
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: flex-start; }
.footer-logo img { max-height: 48px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247,244,237,0.55);
  max-width: 28ch;
}
.footer-col-title,
.footer-col-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.45);
  margin-bottom: 16px;
  display: block;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links li, .footer-service-areas li { font-size: 14px; }
.footer-links a {
  color: rgba(247,244,237,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-service-areas {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-service-areas li { font-size: 13px; color: rgba(247,244,237,0.5); }

.footer-contact-line,
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,244,237,0.65);
}
.footer-contact-line svg,
.contact-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary-light); }
.footer-contact-line a,
.contact-line a { color: rgba(247,244,237,0.75); text-decoration: none; }
.footer-contact-line a:hover,
.contact-line a:hover { color: var(--white); text-decoration: none; }

.footer-contact-item {
  font-size: 14px;
  color: rgba(247,244,237,0.65);
}
.footer-contact-item a { color: rgba(247,244,237,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); text-decoration: none; }

.footer-phone { font-size: 14px; color: rgba(247,244,237,0.75); }
.footer-email-link { font-size: 14px; color: rgba(247,244,237,0.65); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(247,244,237,0.15);
  color: rgba(247,244,237,0.6);
  transition: border-color 150ms, color 150ms;
  text-decoration: none;
}
.footer-socials a:hover { border-color: rgba(247,244,237,0.5); color: var(--white); text-decoration: none; }
.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(247,244,237,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-bottom span, .footer-bottom p {
  font-size: 12px;
  color: rgba(247,244,237,0.35);
  letter-spacing: 0.05em;
}
.footer-legal, .footer-legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-legal a, .footer-legal-links a {
  font-size: 12px;
  color: rgba(247,244,237,0.35);
  text-decoration: none;
  transition: color 150ms;
}
.footer-legal a:hover, .footer-legal-links a:hover { color: rgba(247,244,237,0.7); text-decoration: none; }

@media (max-width: 900px) {
  .footer-grid, .footer-inner > div { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid, .footer-inner > div { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE CTA PILL (MANDATORY)
   ============================================================ */
.mobile-cta,
.mobile-cta-pill,
a.mobile-cta,
a.mobile-cta-pill {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: filter 150ms, transform 150ms;
}
.mobile-cta:hover,
.mobile-cta-pill:hover {
  filter: brightness(1.1);
  text-decoration: none;
  transform: translateY(-2px);
  color: var(--white);
}
.mobile-cta svg,
.mobile-cta-pill svg,
.mobile-cta > a svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta > a {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); text-decoration: none;
}
.mobile-cta > a:hover { color: var(--white); text-decoration: none; }
div.mobile-cta > a svg { width: 20px; height: 20px; }

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

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

/* Already visible (pre-loaded) */
.visible { opacity: 1 !important; transform: none !important; }

/* ============================================================
   SECTION LAYOUT HELPERS
   ============================================================ */
.section {
  padding: var(--section-y) 0;
}
.section-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.0;
}

/* ============================================================
   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: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}
.stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  background: var(--surface-2);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
}
.review-attribution {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

/* ============================================================
   TABLE (defensive)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   MISC / OVERRIDES
   ============================================================ */
.full { grid-column: 1 / -1; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* area tags / pills */
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag, .area-pill {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============================================================
   MEDIA QUERIES — GLOBAL
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner > div { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  :root { --section-y: clamp(64px, 10vh, 112px); }
  .contact-inner { grid-template-columns: 1fr; }
  .gallery-split { grid-template-columns: 1fr; }
  .service-feature-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; }
  .bento-body { padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.cred-divider { grid-column: 1 / -1; }
.contact-grid { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.c-icon { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.founder-body { grid-column: 1 / -1; }
.info-icon { grid-column: 1 / -1; }
.info-content { 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; }
