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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2ab903;
  --primary-dim:    #1f8c02;
  --primary-glow:   rgba(42,185,3,0.15);
  --accent:         #CCCCCC;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #221f1a;
  --ink:            #F4F1EA;
  --ink-mid:        #c8c4bc;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(42,185,3,0.35);
  --hairline:       rgba(42,185,3,0.5);

  --ff-display:     'Cormorant Garamond', Georgia, serif;
  --ff-body:        'Inter Tight', system-ui, sans-serif;
  --ff-mono:        'IBM Plex Mono', 'Courier New', monospace;

  --section-py:     clamp(112px, 14vh, 180px);
  --container-w:    1200px;
  --wide-w:         1400px;
  --radius:         4px;
  --radius-pill:    999px;

  --header-height:  72px;
}

@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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.1vw, 17px);
  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; }
}

/* Heading anchors never look like links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY TOKENS
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: clamp(17px, 1.8vw, 22px); }

p { line-height: 1.68; color: var(--ink-mid); }

em { font-style: italic; }

/* The unique move: brand-italic inline display words */
.brand-italic, .accent-word {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--primary);
  line-height: 0.95;
  display: inline;
}

/* Mono label */
.label, .section-eyebrow, .service-eyebrow, .page-header-eyebrow,
.page-eyebrow, .crew-eyebrow, .values-eyebrow, .timeline-eyebrow,
.about-story-eyebrow, .about-editorial-eyebrow, .footer-col-title,
.contact-section-label, .info-card-label, .cta-banner-eyebrow {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

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

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms, transform 150ms, box-shadow 200ms;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--primary);
  color: #0C0C0F;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--primary-dim);
  color: #0C0C0F;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(42,185,3,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(244,241,234,0.3);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-service, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #0C0C0F;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, transform 150ms;
  white-space: nowrap;
}
.btn-service:hover, .btn-submit:hover {
  background: var(--primary-dim);
  color: #0C0C0F;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-service svg, .btn-submit svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(244,241,234,0.07);
}
.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;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px; max-width: 200px;
  width: auto; object-fit: contain;
}
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  font-family: var(--ff-body);
  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: #0C0C0F;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #0C0C0F; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  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;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(244,241,234,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-cta span { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

/* Hero background image already handled by universal cap above */
.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
  filter: grayscale(20%);
}

.hero-overlay {
  background:
    radial-gradient(ellipse 70% 90% at 0% 100%, rgba(42,185,3,0.18) 0%, transparent 55%),
    linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.55) 50%, rgba(12,12,15,0.75) 100%);
}

.hero-inner {
  padding: clamp(60px, 9vw, 140px) clamp(20px, 5vw, 80px) clamp(64px, 9vw, 120px);
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title .accent-word {
  color: var(--primary);
  font-size: 1em;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-ctas .btn { font-size: 15px; }

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid rgba(244,241,234,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border-brand);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  justify-content: center;
}
.trust-item {
  font-family: var(--ff-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
}
.trust-star {
  color: var(--primary);
  font-size: 14px;
}
.trust-sep {
  color: var(--primary);
  font-size: 16px;
  opacity: 0.6;
  padding: 0;
}

/* ============================================================
   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;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ff-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.marquee-dot {
  color: var(--primary);
  font-size: 18px;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
}
.section-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
}
.section-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mid);
  max-width: 60ch;
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================================
   SERVICES (bento on index)
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  cursor: pointer;
  text-decoration: none;
  background: var(--surface);
}
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transition: transform 600ms ease-out;
  filter: grayscale(30%) brightness(0.7);
  max-height: none;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.35) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 300ms;
}
.service-card:hover .service-card-overlay { opacity: 0.85; }

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  z-index: 2;
}
.service-card-body h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 6px;
}
.service-card-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.45;
  margin: 8px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 250ms, transform 250ms;
}
.service-card:hover .service-card-desc { opacity: 1; transform: none; }
.service-card-link {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 200ms;
}
.service-card:hover .service-card-link { opacity: 1; }

/* Service card hover — required pattern */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5); }

@media (max-width: 900px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4 / 3; }
}

/* ============================================================
   SERVICES (detail page)
   ============================================================ */
.services-detail {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.services-detail-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 140px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}
.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 600ms ease-out;
  max-height: none;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }

.service-block-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-block-body h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.95;
  color: var(--ink);
}
.service-block-divider {
  height: 1px;
  background: var(--hairline);
  width: 48px;
}
.service-block-body p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.7;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.service-features li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
}

/* Services intro strip */
.services-intro-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) 0;
}
.services-intro-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.services-intro-inner p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.7;
}
.services-intro-inner blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.3;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
}
.services-intro-inner blockquote strong {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 640px) {
  .services-intro-inner { grid-template-columns: 1fr; }
}

/* Services list / index */
.services-list-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 56px) 0;
}
.services-list-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-list-inner p {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.services-index-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 200ms, border-color 200ms;
}
.services-index-item:hover {
  background: var(--surface-2);
  border-color: var(--border-brand);
  text-decoration: none;
  color: var(--ink);
}
.services-index-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  flex-shrink: 0;
}
.services-index-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--ink);
  flex: 1;
  line-height: 1.1;
}
.services-index-arrow {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .services-index-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg {
  width: 16px; height: 16px;
  color: var(--primary);
  fill: var(--primary);
}
.review-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.review-attribution {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
}

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

/* ============================================================
   GALLERY (index)
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
/* gallery-tile already handled by universal cap above */
/* override for index gallery */
.gallery .gallery-grid .gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.gallery .gallery-grid .gallery-tile.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery .gallery-grid .gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: transform 500ms ease-out, filter 400ms;
}
.gallery .gallery-grid .gallery-tile:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.gallery-cta {
  margin-top: 40px;
  text-align: center;
}
.gallery-cta a {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery .gallery-grid .gallery-tile.gallery-tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.gallery-inner {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0C0C0F;
}

/* Gallery page grid */
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-section .gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--surface);
}
.gallery-section .gallery-tile.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-section .gallery-tile > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(20%);
  transition: filter 400ms, transform 500ms;
}
.gallery-section .gallery-tile:hover > img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 350ms;
}
.gallery-section .gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-badge, .tile-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--primary);
  color: #0C0C0F;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.gallery-tile-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms, transform 350ms;
}
.gallery-section .gallery-tile:hover .gallery-tile-body { opacity: 1; transform: none; }
.tile-category {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.tile-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.tile-desc {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.4;
  margin-bottom: 10px;
}
.tile-stats { display: flex; gap: 12px; margin-bottom: 8px; }
.tile-stat {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile-meta { display: flex; gap: 12px; }
.tile-meta-item {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tile-meta-item svg { width: 12px; height: 12px; }

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  gap: 24px;
}
.gallery-note-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--ink-mid);
  line-height: 1.3;
}
.gallery-note-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  flex-shrink: 0;
}
.gallery-note-cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .gallery-section .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section .gallery-tile.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .gallery-section .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.faq-list {
  max-width: 760px;
  margin-top: 0;
}
details.faq, .faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-list details > summary,
details.faq > summary {
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  min-height: 66px;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.faq-list details > summary::-webkit-details-marker,
details.faq > summary::-webkit-details-marker { display: none; }

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

.faq-list details > summary::after,
details.faq > summary::after { display: none; }

.faq-body {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.7;
  padding: 0 0 22px;
  max-width: 68ch;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border-brand);
}
.team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.team-cta-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 40px);
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
}

/* ============================================================
   CONTACT (index page)
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 64px);
}

/* Forms */
.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label,
.form-field label,
.form-group label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.contact-form textarea,
.form-field textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form select,
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238E8A82'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-value {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--ink);
  text-decoration: none;
}
.contact-info-value a:hover { color: var(--primary); }

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

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-form-side { display: flex; flex-direction: column; gap: 24px; }
.contact-section-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0;
}
.contact-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  max-width: 16ch;
}
.contact-intro {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 50ch;
}
.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #0C0C0F;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 200ms, transform 150ms;
}
.form-submit:hover { background: var(--primary-dim); transform: translateY(-1px); }
.form-submit svg { width: 16px; height: 16px; }

/* Contact info side */
.contact-info-side { display: flex; flex-direction: column; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-card-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}
.info-block { display: flex; flex-direction: column; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}
.info-divider { height: 1px; background: var(--border); }
.info-icon {
  width: 36px; height: 36px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 16px; height: 16px; color: var(--primary); }
.info-item-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.info-item-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--canvas);
}
.cta-banner > img:first-of-type,
.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(30%) brightness(0.4);
  max-height: none;
}
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(12,12,15,0.92) 40%, rgba(42,185,3,0.12) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-left { display: flex; flex-direction: column; gap: 24px; }
.cta-banner-left h2,
.cta-banner-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
}
.cta-banner-right h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 24px;
}
.cta-banner-right { display: flex; flex-direction: column; gap: 20px; }
.cta-banner-right .contact-form { gap: 16px; }

/* Gallery page CTA banner variant */
.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1 / 2;
}
.cta-banner-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
}
.cta-banner-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 48ch;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 2 / 3;
  align-items: center;
  justify-content: flex-end;
}
.cta-banner-actions a.btn { display: inline-flex; }

/* About page CTA (bg-text variant) */
.cta-banner-bg-text {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.cta-banner-bg-text span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(42,185,3,0.04);
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}
#cta-banner {
  background: var(--canvas);
}
#cta-banner .cta-banner-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}
#cta-banner .cta-banner-actions { justify-content: center; }
#cta-banner .cta-banner-headline { max-width: 18ch; margin: 0 auto; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { justify-content: flex-start; grid-column: 1; }
  .cta-banner-text { grid-column: 1; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--surface);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.55) 60%, rgba(12,12,15,0.75) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px);
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
}
.page-header-inner h1,
.page-header-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  color: var(--ink);
  max-width: 16ch;
}
.page-header-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--ink-mid);
  max-width: 50ch;
  margin-top: 16px;
  line-height: 1.6;
}
.page-header-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 100px);
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  align-items: start;
}
.about-story-portrait {
  position: relative;
}
.about-story-portrait img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(20%);
}
.portrait-caption {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.about-story-copy { display: flex; flex-direction: column; gap: 20px; }
.about-story-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-story-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  color: var(--ink);
  max-width: 16ch;
}
.about-story-divider {
  height: 1px;
  background: var(--hairline);
  width: 56px;
  margin: 4px 0;
}
.about-story-body p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pullquote {
  border-left: 2px solid var(--primary);
  padding: 16px 0 16px 24px;
  margin: 8px 0;
}
.about-pullquote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.35;
}

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

/* Values */
.values {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.values-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.values-header { margin-bottom: clamp(40px, 5vw, 64px); }
.values-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.95;
  color: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink);
  line-height: 1.1;
}
.value-card-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.value-card-body {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink-mid);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.timeline-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.timeline-header { margin-bottom: clamp(48px, 6vw, 80px); }
.timeline-title,
.timeline-header h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.95;
  color: var(--ink);
}
.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border-brand);
  margin-left: 60px;
  padding-left: clamp(32px, 4vw, 56px);
}
.timeline-step {
  position: relative;
  padding-bottom: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(32px, 4vw, 56px) - 5px);
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.timeline-year {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  margin-top: 4px;
  grid-column: 1;
}
.timeline-content {
  grid-column: 2;
}
.timeline-content h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.timeline-step-body {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink-mid);
  line-height: 1.65;
}
.timeline-step-title { font-weight: 600; }

/* Crew */
.crew {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.crew-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.crew-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.crew-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 18ch;
}
.crew-divider {
  height: 1px;
  background: var(--hairline);
  width: 56px;
  margin-bottom: 48px;
}
.crew-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.crew-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.crew-highlight-role {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.crew-highlight-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
}
.crew-highlight-bio {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 50ch;
}
.crew-credentials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.crew-credentials li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.crew-credentials li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.crew-statement {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--primary);
  padding-left: 28px;
}
.crew-statement p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px);
  color: var(--ink);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .crew-highlight { grid-template-columns: 1fr; }
}

/* About editorial strip */
.about-editorial {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.about-editorial-inner {
  max-width: 70ch;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-editorial-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-editorial-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-editorial-divider {
  height: 1px;
  background: var(--hairline);
  width: 48px;
}
.about-editorial-body p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  padding: clamp(64px, 8vw, 100px) 0 0;
}
.footer-inner, .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink);
  line-height: 1.2;
  max-width: 28ch;
}
.footer-brand-desc, .footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 32ch;
}
.footer-brand-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--ink);
  line-height: 1.2;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }
.footer-contact-item, .footer-contact-val {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 8px;
}
.footer-contact-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.footer-contact-val a, .footer-contact-value a {
  color: var(--ink-mid);
}
.footer-contact-val a:hover, .footer-contact-value a:hover { color: var(--primary); }
.footer-contact-value { font-size: 13px; color: var(--ink-mid); }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 4vw, 48px);
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.4;
}
.footer-isa { font-family: var(--ff-mono); font-size: 11px; color: var(--muted); }

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

/* ============================================================
   MOBILE CTA PILL (required pattern)
   ============================================================ */
.mobile-cta-pill,
.mobile-cta,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #0C0C0F;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 150ms, background 150ms;
}
.mobile-cta-pill:hover,
.mobile-cta:hover,
.mobile-sticky-cta:hover {
  background: var(--primary-dim);
  text-decoration: none;
  color: #0C0C0F;
  transform: translateY(-2px);
}
.mobile-cta-pill svg,
.mobile-cta svg,
.mobile-sticky-cta svg,
.mobile-cta-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-cta-link {
  display: flex; align-items: center; gap: 8px;
  color: #0C0C0F; text-decoration: none;
}

@media (max-width: 899px) {
  .mobile-cta-pill,
  .mobile-cta,
  .mobile-sticky-cta { display: flex; }
}

/* ============================================================
   RATING DISPLAY
   ============================================================ */
.rating-display { display: flex; align-items: center; gap: 8px; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars svg { width: 14px; height: 14px; color: var(--primary); fill: var(--primary); }
.rating-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============================================================
   MISC + UTILITY
   ============================================================ */
.info-icon svg { width: 16px; height: 16px; }

/* Cap unsized SVGs everywhere */
svg { display: block; }
.faq-chevron { width: 18px; height: 18px; }
.services-index-arrow { width: 16px; height: 16px; }
.review-stars svg { width: 16px; height: 16px; }
.tile-meta-item svg { width: 12px; height: 12px; }
.gallery-note-cta svg { width: 14px; height: 14px; }
.btn-service svg { width: 16px; height: 16px; }

/* No mirror transforms */
.reverse { order: unset; }

@media (max-width: 640px) {
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero-title { font-size: clamp(56px, 14vw, 96px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .timeline-track { margin-left: 20px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.review-card { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.services-index-item { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.about-story-copy { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.crew-highlight-text { grid-column: 1 / -1; }
.crew-statement { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
