@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;450;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #248C5C;
  --accent:         #1B6945;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-mid:     rgba(12,12,15,0.16);
  --primary-dim:    rgba(36,140,92,0.10);
  --radius:         4px;
  --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;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  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, .site-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; }

/* Anchors in headings render as headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; }
p { line-height: 1.7; }

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

/* Mono label style */
.eyebrow, .sec-num, .section-label, .section-numeral,
.page-header-eyebrow, .page-header-numeral, .page-header-super,
.info-lbl, .info-block-label, .info-card-eyebrow,
.cred-lbl, .credential-badge-label,
.footer-col-h, .footer-col-head, .footer-col-heading, .footer-col-title,
.gallery-meta-label, .gallery-card-category,
.service-block-eyebrow, .founder-story-eyebrow,
.cta-banner-label, .cta-banner-eyebrow,
.step-num, .journey-date,
.trust-chip, .trust-badge,
.marquee-item, .area-chip, .service-area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

/* Section rhythm */
section, .credentials, .faq, .team-cta, .contact {
  padding-block: clamp(88px, 11vh, 144px);
}

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

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

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
}

#navLinks, .nav-pages {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  margin: 0; padding: 0;
}

#navLinks li { list-style: none; }

#navLinks a, .nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0;
  transition: color 150ms;
}
#navLinks a:hover, .nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
#navLinks a[aria-current="page"], .nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

.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: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  #navLinks, .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 888;
  }
  #navLinks.open, .nav-pages.open { display: flex; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

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

.hero-overlay {
  background: linear-gradient(to bottom, rgba(12,12,15,0.42) 0%, rgba(12,12,15,0.72) 100%);
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-bignum {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  leading-trim: both;
  margin-bottom: -8px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}

.hero-title,
#hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-rule {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-block: 4px;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.trust-chip-star {
  color: var(--primary);
  font-size: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn-primary, .btn-primary-dark {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary-dark:hover {
  filter: brightness(0.90); transform: translateY(-1px); color: #fff; text-decoration: none;
}

.btn-ghost, .btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 27px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms, color 150ms, transform 150ms;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  white-space: nowrap;
}
.btn-ghost:hover, .btn-ghost-dark:hover {
  background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; transform: translateY(-1px);
}
.btn-ghost svg, .btn-ghost-dark svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-outline:hover { background: var(--ink); color: #fff; text-decoration: none; }

.btn-surface {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  background: var(--surface);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 150ms, transform 150ms;
}
.btn-surface:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.10); transform: translateY(-1px); text-decoration: none; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px clamp(20px,4vw,56px);
  overflow: hidden;
}

.trust-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  white-space: nowrap;
}
.trust-badge-hi {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.trust-badge-soft {
  background: var(--primary-dim);
  border-color: transparent;
  color: var(--accent);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip, .service-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(--surface);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.marquee-strip:hover .marquee-track,
.service-marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 24px;
  line-height: 1.2;
}

.marquee-item::after {
  content: '·';
  color: var(--primary);
  margin-left: 24px;
  font-weight: 900;
}

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

/* ============================================================
   SECTION HEADER (sec-head)
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.sec-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  align-self: start;
  flex-shrink: 0;
  font-style: normal;
}

.sec-text { padding-top: 12px; }
.sec-text h2 {
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.sec-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================
   SERVICES (tabs + panels)
   ============================================================ */
#services.services, .services {
  background: var(--surface);
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.service-panel.active { display: grid; }

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

.service-panel-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.panel-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -12px;
  align-self: flex-start;
}

.service-panel-body h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.025em;
}

.panel-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.service-panel-body .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img { min-height: 240px; position: relative; }
  .service-panel-img img { position: absolute; max-height: none; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.cred-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14);
}

.cred-lbl {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
}

.cred-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--ink);
  line-height: 1.3;
}

/* Credentials section (about.html) */
.credentials-section { background: var(--surface); }
.credentials-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.credentials-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.credential-badge {
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.credential-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.credential-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.credential-badge-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq.faq { background: var(--canvas); }

.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--border-mid);
}
.faq-item:first-child { border-top: 1px solid var(--border-mid); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 150ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--primary); }

.faq-chev {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 220ms;
  color: var(--muted);
}
.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-chev svg { width: 20px; height: 20px; }

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

/* ============================================================
   TEAM CTA BANNER
   ============================================================ */
#team-cta.team-cta {
  background: var(--ink);
  padding-block: clamp(64px, 9vh, 100px);
  text-align: center;
}
.team-cta-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.team-cta-hl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.team-cta-hl em { color: var(--primary); font-style: normal; }
.team-cta-inner a { margin-top: 8px; }

/* CTA BANNER (services.html, gallery.html, about.html) */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-block: clamp(80px, 10vh, 128px);
  text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.3;
  max-height: none;
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-banner-numeral, .cta-banner-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.25;
}
.cta-banner-label, .cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}
.cta-banner-heading, .cta-banner-headline, #cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
}
.cta-banner-sub, .cta-banner-promise {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  line-height: 1.6;
}
.cta-banner-ctas, .cta-banner-actions, .cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact.contact { background: var(--canvas); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label, .form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-group input, .form-group select, .form-group textarea,
.form-field input, .form-field select, .form-field textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36,140,92,0.12);
}
.form-group textarea, .form-field textarea { min-height: 120px; resize: vertical; }

.form-submit, .contact-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px 28px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
  align-self: flex-start;
}
.form-submit:hover, .contact-form button[type="submit"]:hover {
  filter: brightness(0.90); transform: translateY(-1px);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-lbl {
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.info-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}
.info-val a { color: var(--ink); }
.info-val a:hover { color: var(--primary); }
.info-val-sm {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact split (contact.html) */
.contact-split { background: var(--canvas); padding-block: clamp(88px,11vh,144px); }
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.contact-form-col { display: flex; flex-direction: column; gap: 20px; }
.contact-section-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}
.contact-section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.contact-section-heading { font-size: clamp(28px, 3.5vw, 44px); }
.contact-section-sub { font-size: 16px; color: var(--muted); }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-card-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 6px;
}
.info-card-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.info-block {
  padding-block: 16px;
}
.info-block-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 5px;
}
.info-highlight {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.info-highlight a { color: var(--ink); }
.info-highlight a:hover { color: var(--primary); text-decoration: none; }
.info-divider { height: 1px; background: var(--border); }
.info-block-hours {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.service-area-pill {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
}

.social-chips, .social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.social-chip, .social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.social-chip:hover, .social-link:hover {
  background: var(--primary); color: #fff; text-decoration: none; border-color: var(--primary);
}
.social-chip svg, .social-link svg { width: 14px; height: 14px; }

/* Guarantee strip */
.guarantee-strip {
  background: var(--ink);
  padding-block: clamp(56px,8vh,88px);
}
.guarantee-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.guarantee-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guarantee-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.35;
}
.guarantee-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  letter-spacing: -0.02em;
}
.guarantee-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(12,12,15,0.38), rgba(12,12,15,0.72));
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px,6vw,64px) clamp(20px,4vw,56px);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.page-header-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: -16px;
}
.page-header-super {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}
.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  max-width: 52ch;
  line-height: 1.55;
}

/* ============================================================
   SERVICES (feature blocks — services.html)
   ============================================================ */
.services-intro {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,56px) 0;
}
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.services-intro-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.services-intro-grid h2 {
  font-size: clamp(28px, 4vw, 52px);
}
.services-intro-body { font-size: 16px; color: var(--muted); line-height: 1.7; padding-top: 8px; }

#services section, .service-block {
  padding-block: clamp(64px,8vh,104px);
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) .service-block-inner {
  direction: rtl;
}
.service-block:nth-child(even) .service-block-inner > * {
  direction: ltr;
}

.service-block-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.service-block-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-block-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-block-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.15;
  display: block;
  margin-bottom: -8px;
}
.service-block-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
}
.service-block-content h2 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.service-block-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.service-block-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-block-bullets li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-block-bullets 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-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .services-intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(56px,7vh,96px) clamp(20px,4vw,56px);
}
.gallery-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 32px;
  gap: 24px;
}
.gallery-header-left { display: flex; flex-direction: column; gap: 4px; }
.section-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  display: block;
  margin-bottom: -8px;
}
.gallery-title-block h2 { font-size: clamp(28px, 4vw, 52px); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 7px 16px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  grid-column: auto;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

.gallery-card.featured-card {
  grid-column: span 2;
}

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery-card.featured-card .gallery-card-img-wrap { aspect-ratio: 16/9; }
.gallery-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.gallery-card-category {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: rgba(12,12,15,0.65);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 20px;
}
.gallery-card-body h3 {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-meta-item { display: flex; flex-direction: column; gap: 2px; }
.gallery-meta-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.gallery-meta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

/* ============================================================
   ABOUT / FOUNDER STORY
   ============================================================ */
#founder-story.founder-story {
  background: var(--canvas);
  padding-block: clamp(88px,11vh,144px);
}
.founder-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.founder-portrait-col { display: flex; flex-direction: column; gap: 12px; }
.founder-portrait-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 600px;
  filter: grayscale(15%);
}
.founder-portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.founder-story-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -8px;
}
.founder-story-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}
.founder-story-text h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
.founder-story-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 16px;
}
.founder-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.founder-chip {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
}

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

/* VALUES */
.values-section { background: var(--surface); padding-block: clamp(88px,11vh,144px); }
.values-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.values-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 8px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }
.value-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.22;
  margin-bottom: 8px;
}
.value-card h3 { font-size: 18px; letter-spacing: -0.015em; margin-bottom: 8px; }
.value-card-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* JOURNEY */
.journey-section { background: var(--canvas); padding-block: clamp(88px,11vh,144px); }
.journey-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.journey-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 40px; }
.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.journey-step { display: flex; flex-direction: column; gap: 10px; }
.journey-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  background: var(--canvas);
  flex-shrink: 0;
}
.journey-dot-inner {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.journey-step h3 { font-size: 17px; letter-spacing: -0.015em; margin-bottom: 4px; }
.journey-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.journey-step-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* CREW */
.crew-section { background: var(--surface); padding-block: clamp(88px,11vh,144px); }
.crew-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.crew-inner > h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 40px; }
.crew-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.crew-card {
  background: var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  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.14); }
.crew-card > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(20%);
  max-height: 280px;
}
.crew-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.crew-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.22;
  margin-bottom: 4px;
}
.crew-card-body h3 { font-size: 17px; letter-spacing: -0.015em; }
.crew-card-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.crew-card-title { font-size: 14px; color: var(--muted); }

/* ABOUT SECTION (about.html additional) */
.about-section { background: var(--canvas); padding-block: clamp(88px,11vh,144px); }
.about-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,56px);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.about-grid > div:first-child { display: flex; flex-direction: column; gap: 16px; }
.about-grid-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -8px;
}
.about-grid > div:first-child h2 { font-size: clamp(24px, 3vw, 40px); }
.about-grid-body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.about-grid-photo { overflow: hidden; border-radius: var(--radius); }
.about-grid-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  max-height: 600px;
  filter: grayscale(15%);
}
.about-grid-headline { font-size: clamp(24px, 3vw, 40px); }

.service-areas-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.area-chip {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: var(--surface);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(56px,8vh,88px) clamp(20px,4vw,56px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: clamp(40px,6vh,64px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-tagline, .footer-brand-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-top: 8px;
}
.footer-desc, .footer-brand-desc, .footer-brand-blurb {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
}
.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.footer-socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-h, .footer-col-head, .footer-col-heading, .footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover { color: var(--primary); text-decoration: none; }

.footer-cline, .footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  display: block;
  margin-bottom: 4px;
}
.footer-cline a, .footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 150ms; }
.footer-cline a:hover, .footer-contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer-creds-txt { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.7; }

.footer-phone-link { color: rgba(255,255,255,0.7) !important; }
.footer-phone-link:hover { color: var(--primary) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}
.footer-copy, .footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-badges, .footer-licenses { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-bottom-badge, .footer-certs, .license-badge, .footer-cred, .footer-license {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.4);
}

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-call, .mobile-sticky-cta, .mobile-cta-sticky {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-call-pill, .mobile-call, .mobile-sticky-cta a, .mobile-cta-sticky a {
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: filter 150ms, transform 150ms;
}
.mobile-call-pill:hover, .mobile-call:hover,
.mobile-sticky-cta a:hover, .mobile-cta-sticky a:hover {
  filter: brightness(0.90); transform: translateY(-2px); text-decoration: none; color: #fff;
}
.mobile-call-pill svg, .mobile-call svg,
.mobile-sticky-cta svg, .mobile-cta-sticky svg { width: 18px; height: 18px; flex-shrink: 0; }

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

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

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}

.stagger > *:nth-child(1)  { transition-delay: 0.00s; }
.stagger > *:nth-child(2)  { transition-delay: 0.06s; }
.stagger > *:nth-child(3)  { transition-delay: 0.12s; }
.stagger > *:nth-child(4)  { transition-delay: 0.18s; }
.stagger > *:nth-child(5)  { transition-delay: 0.24s; }
.stagger > *:nth-child(6)  { transition-delay: 0.30s; }
.stagger > *:nth-child(7)  { transition-delay: 0.36s; }
.stagger > *:nth-child(8)  { transition-delay: 0.42s; }
.stagger > *:nth-child(9)  { transition-delay: 0.48s; }
.stagger > *:nth-child(10) { transition-delay: 0.54s; }
.stagger > *:nth-child(11) { transition-delay: 0.60s; }
.stagger > *:nth-child(12) { transition-delay: 0.66s; }

/* ============================================================
   CONTACT GRID (index.html)
   ============================================================ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-split-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; gap: 8px; }
  .sec-num { font-size: clamp(56px, 10vw, 80px); }
}

/* ============================================================
   MISC / UTILITIES
   ============================================================ */
.section-label {
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

/* Stats (if used) */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(48px, 8vw, 96px); font-weight: 700; line-height: 1; color: var(--primary); letter-spacing: -0.04em; }
.stat-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

/* Process */
.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: var(--radius); }
.step-num { font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* Review card */
.review-card { padding: 28px; border-radius: 12px; background: rgba(0,0,0,0.02); }
.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 (system) */
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; }

/* 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); }

/* Table safety */
thead .col-service, thead .col-desc, thead .col-timeline, thead .col-price {
  background: var(--ink); color: #fff;
}

/* SVG caps */
svg { max-width: 100%; }
.hero-ctas svg, .btn svg, .btn-ghost svg { width: 18px; height: 18px; flex-shrink: 0; }
.faq-chev svg { width: 20px; height: 20px; }
.gallery-card-location svg { width: 12px; height: 12px; }
.social-chip svg, .social-link svg { width: 14px; height: 14px; }
.nav-cta svg { width: 16px; height: 16px; }

/* No flip transforms on content */
.flip { order: -1; }

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

/* ============================================================
   RESPONSIVE FINAL
   ============================================================ */
@media (max-width: 640px) {
  .hero-inner { gap: 14px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-bignum { font-size: clamp(56px, 14vw, 80px); }
  .hero-title, #hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .service-panel { grid-template-columns: 1fr; }
  .founder-story-grid { grid-template-columns: 1fr; }
  .cred-card, .credential-badge { padding: 18px 14px; }
  .crew-strip { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-split-grid { gap: 32px; }
  .guarantee-strip-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.sec-num { grid-column: 1 / -1; }
.sec-text { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.gallery-header-left { grid-column: 1 / -1; }
.founder-portrait-col { grid-column: 1 / -1; }
.founder-story-text { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.journey-step { grid-column: 1 / -1; }
.crew-card { grid-column: 1 / -1; }
.about-grid-photo { grid-column: 1 / -1; }
.credential-badge { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
