@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:        #30a67d;
  --accent:         #30a67d;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #221F1A;
  --ink:            #F4F1EA;
  --ink-dim:        #C8C4BC;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(48,166,125,0.30);
  --primary-dim:    rgba(48,166,125,0.15);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  background: var(--canvas);
  color: var(--ink);
}
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  background: var(--canvas);
  color: var(--ink);
  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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; 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 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; }
}

/* Anchor headings 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 SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
p { line-height: 1.70; color: var(--ink-dim); }

/* Luxury display inline — the unique move */
.display-inline, .accent-word, .name-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--primary);
  letter-spacing: -0.01em;
}

/* Mono label utility */
.mono-eyebrow,
.section-eyebrow,
.page-header-eyebrow,
.page-eyebrow,
.feature-index,
.feature-service-eyebrow,
.cta-banner-eyebrow,
.cta-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

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

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.bleed { width: 100%; }

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

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(244,241,234,0.08);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; }
.nav-pages {
  flex: 1;
  display: flex; justify-content: center;
  list-style: none; gap: 28px; align-items: center;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink-dim); text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  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); padding-bottom: 4px; }
.nav-cta {
  flex: 0 0 auto; background: var(--primary); color: var(--canvas);
  padding: 10px 20px; border-radius: 4px; font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 18px; height: 18px; }
.nav-toggle {
  display: none; background: transparent; border: none;
  color: var(--ink); font-size: 24px; cursor: pointer; padding: 0;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .top-nav { padding: 0 16px; gap: 16px; }
  .nav-pages {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px;
    gap: 8px; border-bottom: 1px solid rgba(244,241,234,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 96vh;
  display: flex; align-items: flex-end;
}
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(48,166,125,0.18) 0%,
    rgba(12,12,15,0.55) 40%,
    rgba(12,12,15,0.88) 100%
  );
}
.hero-inner {
  padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 96px);
  padding-bottom: clamp(72px, 10vh, 120px);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 9vw, 144px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title .accent-word {
  font-style: italic;
  color: var(--primary);
  font-size: 1em;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(244,241,234,0.20);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 18px 32px; border-radius: 4px;
  cursor: pointer; border: none; text-decoration: none;
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary, .btn-primary-lg {
  background: var(--primary); color: var(--canvas);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary-lg:hover { filter: brightness(0.92); color: var(--canvas); }
.btn-primary-lg { font-size: 17px; padding: 20px 40px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(244,241,234,0.30);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--primary); text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: gap 200ms, color 150ms;
}
.btn-service:hover { gap: 12px; text-decoration: none; color: var(--ink); border-bottom-color: var(--ink); }
.btn-service svg { width: 16px; height: 16px; }

.btn-submit, .form-submit {
  background: var(--primary); color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 4px;
  border: none; cursor: pointer; width: 100%;
  transition: filter 200ms;
}
.btn-submit:hover, .form-submit:hover { filter: brightness(0.92); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee, .marquee-strip {
  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,
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2; color: var(--muted);
}
.marquee-dot {
  color: var(--primary); font-size: 18px; line-height: 1;
  align-self: center; display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 32px 0; background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.trust-strip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.trust-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(244,241,234,0.15);
  border-radius: 999px; padding: 6px 14px;
}
.trust-sep {
  color: var(--primary); font-size: 16px; line-height: 1; opacity: 0.7;
}

/* ============================================================
   SERVICES (tabbed panel — index.html)
   ============================================================ */
.services {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--canvas);
}
.services-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.services-inner .section-eyebrow { margin-bottom: 12px; }
.services-inner .section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 40px;
}
.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.15);
  border-radius: 999px; padding: 8px 18px;
  background: transparent; cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}
.service-tab:hover { color: var(--ink); border-color: rgba(244,241,234,0.35); }
.service-tab.active {
  color: var(--canvas); background: var(--primary);
  border-color: var(--primary);
}
.services-panels { position: relative; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0; min-height: 480px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  background: var(--surface); border-radius: 4px;
  overflow: hidden;
}
.service-panel.active { display: grid; }
.service-panel-img {
  width: 100%; height: 100%; max-height: none !important;
  object-fit: cover; display: block;
}
.service-panel > img {
  width: 100%; height: 100%; max-height: none !important;
  object-fit: cover; display: block;
}
.service-panel-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 16px;
}
.service-panel-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--primary);
  display: block; margin-bottom: 4px;
}
.service-panel-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.0;
  color: var(--primary); margin-bottom: 8px;
}
.service-panel-body p {
  font-size: 15px; line-height: 1.70; color: var(--ink-dim);
}
.service-panel-body a { margin-top: 12px; align-self: flex-start; }

@media (max-width: 640px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel > img { max-height: 240px !important; }
  .service-panel-body { padding: 28px 20px; }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview { padding: clamp(80px, 10vh, 140px) 0; background: var(--canvas); }
.gallery-preview-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}
.gallery-header .section-eyebrow { margin-bottom: 10px; }
.gallery-header .section-title {
  font-size: clamp(36px, 4vw, 60px); margin-bottom: 0;
}
.gallery-header a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); white-space: nowrap;
  border-bottom: 1px solid var(--primary); padding-bottom: 2px;
  text-decoration: none;
}
.gallery-header a:hover { text-decoration: none; color: var(--ink); border-bottom-color: var(--ink); }

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid-preview .gallery-tile {
  aspect-ratio: 4/3; overflow: hidden; display: block;
  position: relative; background: var(--surface);
  grid-column: auto;
}
.gallery-grid-preview .gallery-tile:first-child {
  grid-column: span 2; grid-row: span 2; aspect-ratio: auto;
  min-height: 380px;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease; display: block;
  max-height: none !important;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
}
.gallery-tile-placeholder span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
}

@media (max-width: 640px) {
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-preview .gallery-tile:first-child { grid-column: span 2; min-height: 220px; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.service-areas-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start;
}
.service-areas-inner .section-eyebrow { margin-bottom: 10px; }
.service-areas-inner .section-title { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
.service-areas-inner p { font-size: 14px; color: var(--muted); }
.areas-pill-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(244,241,234,0.15);
  border-radius: 999px; padding: 7px 16px;
  transition: border-color 150ms, color 150ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }

/* about.html service-areas variant */
.areas-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex; flex-direction: column; gap: 20px;
}
.areas-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; color: var(--ink);
}
.areas-pills { display: flex; flex-wrap: wrap; gap: 10px; }

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

/* ============================================================
   EDITORIAL PULLQUOTE
   ============================================================ */
.editorial-pullquote {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
}
.pullquote-inner {
  max-width: 800px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.pullquote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px; line-height: 0.5;
  color: var(--primary); display: block;
  margin-bottom: 24px; opacity: 0.7;
}
.pullquote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 24px;
}
.pullquote-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.cta-banner-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.cta-banner-left { display: flex; flex-direction: column; gap: 20px; }
.cta-banner-eyebrow { display: block; margin-bottom: 0; }
.cta-banner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 8px;
}
.cta-banner-title em { font-style: italic; color: var(--primary); }
.cta-banner-sub {
  font-size: 16px; color: var(--ink-dim); line-height: 1.65;
  max-width: 46ch;
}
.cta-banner-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
/* index.html cta/contact form variant */
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-banner-left [div] { display: flex; flex-direction: column; gap: 12px; }
/* about.html cta variant */
.cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
}
.cta-headline em { font-style: italic; color: var(--primary); }
.cta-sub { font-size: 16px; color: var(--ink-dim); line-height: 1.65; }
.cta-eyebrow { display: block; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

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

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  padding: clamp(40px, 6vh, 80px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
}
.team-cta-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex; align-items: center; gap: 24px;
}
.team-cta-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: var(--ink-dim); line-height: 1.5;
}
.team-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); border-bottom: 1px solid var(--primary);
  padding-bottom: 2px; text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
}
.team-cta-link:hover { color: var(--ink); border-bottom-color: var(--ink); text-decoration: none; }

/* ============================================================
   TEAM BRIDGE (about.html)
   ============================================================ */
.team-bridge {
  padding: 40px clamp(20px, 5vw, 60px);
  background: var(--canvas);
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--border);
}
.bridge-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(18px, 2.5vw, 26px);
  color: var(--ink-dim); text-align: center;
}
.bridge-link {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px; text-decoration: none;
}
.bridge-link:hover { color: var(--ink); border-bottom-color: var(--ink); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  padding: clamp(60px, 8vh, 100px) 0 0;
}
.footer-inner, footer > div {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
}
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.60; }
.footer-contact-line, .footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.footer-contact-line svg, .footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-row { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item a, .footer-contact-line a { color: var(--ink-dim); text-decoration: none; }
.footer-contact-item a:hover, .footer-contact-line a:hover { color: var(--primary); }
.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.footer-nav-list, .footer-links, .footer-services-list, .footer-trust-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-nav-list a, .footer-links a, .footer-services-list li, .footer-trust-list li {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 150ms;
}
.footer-nav-list a:hover, .footer-links a:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link { color: var(--ink-dim) !important; font-weight: 500; }
.footer-phone-link:hover { color: var(--primary) !important; }
.footer-rating { font-size: 13px; color: var(--muted); }
.footer-lic { font-size: 12px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 60px);
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-copy-accent { color: var(--primary); }
.footer-service-area { font-size: 13px; color: var(--muted); }
.footer-logo img { max-height: 36px !important; }
.footer-info { display: flex; flex-direction: column; gap: 8px; }
.footer-info p { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 42vh, 480px);
  display: flex; align-items: flex-end;
}
.page-header-overlay {
  background: linear-gradient(
    to top,
    rgba(12,12,15,0.92) 0%,
    rgba(12,12,15,0.50) 50%,
    rgba(12,12,15,0.30) 100%
  );
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 6vw, 80px);
  max-width: 900px;
}
.page-header-title, .page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; line-height: 0.95; letter-spacing: -0.03em;
  color: var(--ink);
}
.page-header-title em, .page-header h1 em { font-style: italic; color: var(--primary); }
.page-header-eyebrow { display: block; margin-bottom: 14px; }
.page-header-sub, .page-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-dim);
  margin-top: 16px; max-width: 52ch; line-height: 1.6;
}
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; line-height: 0.95; letter-spacing: -0.03em; color: var(--ink);
}
.page-title em { font-style: italic; color: var(--primary); }
.page-eyebrow { display: block; margin-bottom: 14px; }

/* ============================================================
   SERVICES FEATURES (services.html)
   ============================================================ */
.services-features {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--canvas);
}
.services-features-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.services-features-inner .section-eyebrow { margin-bottom: 12px; }
.services-features-inner .section-title {
  font-size: clamp(36px, 5vw, 72px); margin-bottom: 72px;
}
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 2px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  background: var(--surface);
  overflow: hidden; border-radius: 4px;
  margin-bottom: 24px;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-photo-wrap {
  overflow: hidden; position: relative;
  min-height: 420px;
}
.feature-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-height: none !important;
  transition: transform 600ms ease;
}
.feature-block:hover .feature-photo-wrap img { transform: scale(1.03); }
.feature-content {
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 16px;
}
.feature-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: block;
}
.feature-service-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block;
}
.feature-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
}
.feature-body {
  font-size: 15px; line-height: 1.70; color: var(--ink-dim);
}
.feature-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px;
}
.feature-bullets li {
  font-size: 14px; color: var(--ink-dim); padding-left: 16px; position: relative;
}
.feature-bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--primary);
}

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse { direction: ltr; }
  .feature-photo-wrap { min-height: 260px; }
}

/* ============================================================
   GALLERY (gallery.html)
   ============================================================ */
.gallery-section {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--canvas);
}
.gallery-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.gallery-count span { color: var(--primary); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px; padding: 7px 16px;
  background: transparent; cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}
.filter-pill:hover { color: var(--ink); border-color: rgba(244,241,234,0.30); }
.filter-pill.active { color: var(--canvas); background: var(--primary); border-color: var(--primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface);
  cursor: pointer; display: block;
  border-radius: 4px;
}
.gallery-card.featured {
  grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 480px;
}
.gallery-card > img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-height: none !important;
  transition: transform 600ms ease;
}
.gallery-card:hover > img { transform: scale(1.04); }
.gallery-card-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 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--canvas); background: var(--primary);
  border-radius: 999px; padding: 4px 12px;
}
.gallery-card-num {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--muted);
}
.gallery-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px; transform: translateY(8px); opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.gallery-card:hover .gallery-card-body { transform: translateY(0); opacity: 1; }
.gallery-card-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.gallery-card-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.gallery-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-dim);
}
.gallery-card-location svg { width: 14px; height: 14px; color: var(--primary); }
.gallery-card-meta {
  display: flex; gap: 16px; margin-top: 8px;
}
.gallery-meta-item {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted);
}
.gallery-meta-key { color: var(--muted); }
.gallery-meta-val { color: var(--ink-dim); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; min-height: 300px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: auto; min-height: 240px; }
}

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
.about-story {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--canvas);
}
.about-story-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.about-portrait-wrap {
  position: relative;
}
.about-portrait-wrap img {
  width: 100%; object-fit: cover; border-radius: 4px;
  aspect-ratio: 3/4; max-height: 600px !important;
}
.portrait-accent {
  position: absolute; bottom: -12px; left: -12px;
  width: 80px; height: 80px;
  border-left: 3px solid var(--primary); border-bottom: 3px solid var(--primary);
  pointer-events: none;
}
.about-body { display: flex; flex-direction: column; gap: 20px; }
.about-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
}
.about-headline em { font-style: italic; color: var(--primary); }
.brand-hairline {
  width: 80px; height: 2px; background: var(--primary);
  margin: 4px 0 12px;
}
.about-prose { display: flex; flex-direction: column; gap: 16px; }
.about-prose p { font-size: 16px; line-height: 1.75; color: var(--ink-dim); }
.rating-inline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-wrap img { aspect-ratio: 16/9; max-height: 340px !important; }
}

/* ============================================================
   VALUES (about.html)
   ============================================================ */
.values {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.values-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.values-inner .section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 48px;
}
.values-inner .section-headline em { font-style: italic; color: var(--primary); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.value-card {
  padding: 36px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px;
  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.40); }
.value-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 24px); font-weight: 600;
  color: var(--ink); margin-bottom: 12px;
}
.value-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.value-body { font-size: 14px; line-height: 1.65; color: var(--muted); }
.value-title { color: var(--ink); font-weight: 600; margin-bottom: 4px; }

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

/* ============================================================
   JOURNEY (about.html)
   ============================================================ */
.journey {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
  max-width: 1200px; margin: 0 auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}
.journey .section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; line-height: 1.0; color: var(--ink); margin-bottom: 56px;
}
.journey .section-headline em { font-style: italic; color: var(--primary); }
.journey-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.journey-step { position: relative; }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-dot span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--primary);
  letter-spacing: 0.06em;
}
.journey-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 24px); font-weight: 600; color: var(--ink);
  margin-bottom: 10px;
}
.step-body { font-size: 14px; line-height: 1.70; color: var(--muted); }
.step-title { font-weight: 600; color: var(--ink-dim); font-size: 15px; }

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

/* ============================================================
   CREW STRIP (about.html)
   ============================================================ */
.crew-strip {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.crew-strip-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.crew-strip-inner .section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 600; line-height: 1.0;
  color: var(--ink); margin-bottom: 48px;
}
.crew-strip-inner .section-headline em { font-style: italic; color: var(--primary); }
.crew-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.crew-card {
  padding: 32px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.crew-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.40); }
.crew-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 24px; font-weight: 600;
  color: var(--primary); margin-bottom: 4px;
}
.crew-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.crew-bio { font-size: 14px; line-height: 1.70; color: var(--ink-dim); }

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

/* ============================================================
   CONTACT (contact.html)
   ============================================================ */
.contact-section {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--canvas);
}
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; gap: 24px; }
.col-eyebrow { display: block; margin-bottom: 8px; }
.col-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--ink);
}
.col-headline em { font-style: italic; color: var(--primary); }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 4px; padding: 36px;
  display: flex; flex-direction: column;
}
.info-block { padding: 20px 0; }
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px; display: block;
}
.info-block p { font-size: 15px; color: var(--ink-dim); line-height: 1.60; }
.info-block a { color: var(--ink-dim); text-decoration: none; }
.info-block a:hover { color: var(--primary); }
.info-divider { height: 1px; background: var(--border); }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

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

/* ============================================================
   FORMS
   ============================================================ */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--surface);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 4px; padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif; font-size: 15px;
  color: var(--ink); outline: none;
  transition: border-color 150ms;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--primary); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

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

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section { padding: clamp(80px, 12vh, 140px) 0; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--primary); }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.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); }

/* ============================================================
   REVIEW CARD
   ============================================================ */
.review-card { padding: 28px; border-radius: 12px; background: var(--surface-2); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

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

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

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-sticky-cta, .mobile-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: var(--canvas);
  padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none; font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover {
  filter: brightness(0.92); transform: translateY(-2px);
  color: var(--canvas); text-decoration: none;
}
.mobile-call-pill svg,
.mobile-sticky-cta svg,
.mobile-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
/* Children (nested a) */
.mobile-sticky-cta a, .mobile-cta a {
  color: var(--canvas); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.mobile-sticky-cta a svg, .mobile-cta a svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .mobile-call-pill, .mobile-sticky-cta, .mobile-cta { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms ease;
}
.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay:  40ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 100ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 220ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 280ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 340ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 460ms; }
.stagger.visible > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 500ms; }

/* ============================================================
   MISC HELPERS
   ============================================================ */
.full-bleed { width: 100%; }
.featured { font-style: italic; }

/* Prevent nav-link styling from being non-uniform */
#navLinks a { background: none; border: none; padding: 6px 0; }

/* Column layout safety */
.col-eyebrow,
.col-headline { display: block; }

/* Defensive: any leftover utility-bar classes are unstyled */


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.cta-banner-left { grid-column: 1 / -1; }
.cta-form { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-info { grid-column: 1 / -1; }
.feature-photo-wrap { grid-column: 1 / -1; }
.feature-content { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.mono-eyebrow { grid-column: 1 / -1; }
.cta-headline { grid-column: 1 / -1; }
.cta-sub { grid-column: 1 / -1; }
.cta-phone-link { grid-column: 1 / -1; }
.btn-row { grid-column: 1 / -1; }
.footer-col { 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; }
