@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;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #0C7A34;
  --primary-dark:   #085c27;
  --primary-light:  #e8f5ee;
  --accent:         #16E862;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2d;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-mid:     rgba(12,12,15,0.18);
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.06);
  --shadow-md:      0 8px 32px rgba(12,12,15,0.10);
  --shadow-lg:      0 20px 56px rgba(12,12,15,0.14);
  --radius:         4px;
  --radius-pill:    999px;
  --ff-display:     'Space Grotesk', sans-serif;
  --ff-body:        'IBM Plex Sans', sans-serif;
  --ff-mono:        'IBM Plex Mono', monospace;
  --header-height:  72px;
  --section-py:     clamp(88px, 11vh, 144px);
  --max-w:          1280px;
  --wide-w:         1400px;
}

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

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
}

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

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

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

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

/* ─── GLOBAL ANCHORS ──────────────────────────────────────────────────────── */
a { color: inherit; text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.0;
  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); letter-spacing: -0.02em; }
h4 { font-size: 16px; letter-spacing: -0.01em; }

p { line-height: 1.68; }

/* ─── CONTAINERS ──────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wide-container { max-width: var(--wide-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--section-py) clamp(20px, 4vw, 56px); }

/* ─── LABELS / EYEBROWS ──────────────────────────────────────────────────── */
.eyebrow, .mono-eyebrow, .section-label, .section-num,
.page-header-eyebrow, .about-eyebrow, .service-eyebrow,
.crew-eyebrow, .faq-eyebrow, .contact-eyebrow, .cta-eyebrow,
.cta-banner-label, .sh-eyebrow, .gallery-section-label,
.footer-col-title, .footer-col-label, .footer-contact-label,
.info-block-label, .step-era {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, background 200ms ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { filter: brightness(0.9); color: #fff; box-shadow: 0 8px 24px rgba(12,122,52,0.3); }

.btn-accent {
  background: var(--accent); color: var(--ink);
}
.btn-accent:hover { filter: brightness(0.92); color: var(--ink); }

.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-submit, .form-submit {
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  padding: 16px 36px; border-radius: var(--radius);
  border: none; cursor: pointer; width: 100%; margin-top: 8px;
  transition: filter 200ms ease, transform 200ms ease;
}
.btn-submit:hover, .form-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }

/* ─── CHIPS + PILLS ──────────────────────────────────────────────────────── */
.chip {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); color: var(--ink);
  background: var(--canvas); white-space: nowrap;
}
.chip-accent { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* ─── SUPER NUMERALS (the identity system) ────────────────────────────────── */
.section-num,
.section-numeral,
.super-numeral,
.hero-number,
.page-header-numeral,
.contact-numeral,
.faq-numeral,
.cta-banner-numeral,
.info-card-numeral,
.service-index-numeral,
.card-num,
.card-numeral {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  user-select: none;
  pointer-events: none;
}

.service-card-num, .si-num {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}

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

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

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

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { max-height: 44px !important; max-width: 200px !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-family: var(--ff-body); font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

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

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column; gap: 8px;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas); padding: 24px 28px;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    justify-content: flex-start; z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 94vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(56px, 8vh, 96px);
}

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

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.45) 0%,
    rgba(12,12,15,0.55) 50%,
    rgba(12,12,15,0.72) 100%
  );
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}

.hero-number {
  font-size: clamp(80px, 10vw, 140px);
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}

.hero h1, .hero-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 8.5vw, 128px);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.03em;
  color: #fff; max-width: 16ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 52ch; line-height: 1.55;
  margin-bottom: 32px;
}

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

.hero-trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-trust-chips .trust-chip {
  font-family: var(--ff-mono);
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: var(--canvas);
}
.trust-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.trust-pill {
  font-family: var(--ff-mono);
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); color: var(--ink);
  background: var(--canvas); white-space: nowrap;
}
.trust-pill-accent {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.trust-chip {
  font-family: var(--ff-mono);
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); color: var(--ink);
  background: var(--canvas); white-space: nowrap;
}
.trust-chip.primary {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* ─── PAGE HEADER (sub-pages) ────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 42vh, 480px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(40px, 6vh, 72px);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(12,12,15,0.35) 0%, rgba(12,12,15,0.68) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff; margin-top: 12px;
}
.page-header-numeral {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--accent); display: block; margin-bottom: 8px;
  position: relative; z-index: 2;
}
.page-header-eyebrow {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.66); margin-bottom: 8px; display: block;
}
.page-header-sub {
  font-family: var(--ff-body); font-size: 17px;
  color: rgba(255,255,255,0.75); max-width: 52ch; line-height: 1.55;
  margin-top: 10px; display: block;
}

/* ─── SECTION HEADERS ─────────────────────────────────────────────────────── */
.services-header,
.gallery-header,
.faq-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.services-header .section-num,
.gallery-header .section-num,
.faq-header .section-num {
  font-size: clamp(72px, 9vw, 120px);
  display: block; margin-bottom: 8px;
}

.section-label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
  display: block; margin-bottom: 12px;
}

.section-heading {
  font-family: var(--ff-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.03em;
  color: var(--ink); max-width: 22ch;
}

.section-header-row {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header-row .section-numeral { flex-shrink: 0; }
.section-header-text { flex: 1; }
.section-header-text h2 { font-size: clamp(32px, 4vw, 56px); }

/* ─── SERVICES SECTION ───────────────────────────────────────────────────── */
.services {
  background: var(--surface);
}

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

.service-card {
  display: flex; flex-direction: column;
  background: var(--canvas);
  padding: 28px 24px 24px;
  text-decoration: none; color: var(--ink);
  border-radius: 0;
  position: relative; overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  border: 1px solid var(--border);
  gap: 0;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(12,12,15,0.18);
  color: var(--ink); text-decoration: none; z-index: 2;
}

.service-card img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border-radius: var(--radius);
  margin-bottom: 20px; display: block;
  max-height: none !important; height: auto;
  filter: grayscale(10%);
  transition: filter 300ms ease;
}
.service-card:hover img { filter: grayscale(0%); }

.service-card-num {
  font-size: clamp(32px, 4vw, 52px);
  display: block; margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--ff-display); font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--ink); margin-bottom: 10px;
}

.service-card-desc {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  flex: 1; margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary);
}
.service-card-link svg { width: 14px; height: 14px; }

.services-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 56px);
}

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

/* ─── SERVICE FEATURE (services.html) ────────────────────────────────────── */
.services-list { padding: var(--section-py) 0; }

.service-feature {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

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

.service-photo-wrap {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; position: relative;
}
.service-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  filter: grayscale(10%);
  transition: filter 400ms ease, transform 400ms ease;
}
.service-feature:hover .service-photo-wrap img {
  filter: grayscale(0%); transform: scale(1.02);
}

.service-feature-body { display: flex; flex-direction: column; gap: 16px; }

.service-index-numeral {
  font-size: clamp(72px, 9vw, 120px);
  display: block; margin-bottom: 4px;
}

.service-eyebrow {
  display: block;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
}

.service-feature-body h2 {
  font-size: clamp(28px, 4vw, 48px); max-width: 20ch;
}

.service-feature-body p {
  color: var(--muted); line-height: 1.68; font-size: 16px;
}

.service-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  font-size: 15px; color: var(--ink-mid); padding-left: 20px; position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; background: var(--primary);
}

.section-divider {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.section-divider::after {
  content: ''; display: block;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .service-feature-grid,
  .service-feature-grid.photo-right {
    grid-template-columns: 1fr; direction: ltr;
  }
  .service-photo-wrap { aspect-ratio: 16/9; }
}

/* ─── SERVICES INDEX ─────────────────────────────────────────────────────── */
.services-index-section {
  background: var(--surface);
  padding: var(--section-py) clamp(20px, 4vw, 56px);
}
.services-index-header {
  max-width: var(--max-w); margin: 0 auto 40px;
}
.services-index-header .section-numeral { display: block; margin-bottom: 8px; }

.services-index-section .services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: var(--max-w); margin: 0 auto;
  background: var(--border);
}
.service-index-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; background: var(--canvas);
  text-decoration: none; color: var(--ink);
  transition: background 200ms ease;
}
.service-index-item:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }

.si-num {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.1em; flex-shrink: 0;
}
.si-name {
  font-family: var(--ff-body); font-size: 14px; font-weight: 500;
  color: inherit; flex: 1;
}
.si-arrow {
  font-size: 16px; color: var(--primary); flex-shrink: 0; line-height: 1;
}

@media (max-width: 900px) {
  .services-index-section .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-index-section .services-grid { grid-template-columns: 1fr; }
}

/* ─── GALLERY SECTION (index.html) ───────────────────────────────────────── */
.gallery { background: var(--canvas); }

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

.gallery-tile {
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease, filter 300ms ease;
  filter: grayscale(15%);
}
.gallery-tile:hover img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-tile-large {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}

.gallery-cta-row {
  margin-top: 32px; display: flex; justify-content: center;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-large { grid-column: 1 / 3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile-large { grid-column: auto; aspect-ratio: 4/3; }
}

/* ─── GALLERY PAGE (gallery.html) ───────────────────────────────────────── */
.gallery-section { padding: var(--section-py) 0; }
.gallery-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.gallery-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.gallery-section-label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
  display: block; margin-bottom: 8px;
}
.gallery-section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
}
.gallery-count {
  font-family: var(--ff-mono); font-size: 13px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.08em; padding-bottom: 6px;
}

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.filter-pill {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 7px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); background: var(--canvas);
  color: var(--muted); cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

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

.project-card {
  background: var(--canvas); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.project-card.featured { grid-column: 1 / 3; }

.card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease, filter 300ms ease;
  filter: grayscale(10%);
}
.project-card:hover .card-img img { transform: scale(1.03); filter: grayscale(0%); }

.card-numeral {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--ff-display); font-size: 32px; font-weight: 700;
  line-height: 1; letter-spacing: -0.04em;
  color: var(--accent);
  text-shadow: 0 1px 4px rgba(12,12,15,0.4);
  pointer-events: none; z-index: 2;
}
.card-category-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(12,12,15,0.65); color: #fff;
  backdrop-filter: blur(4px); z-index: 2;
}

.card-body { padding: 18px 20px 20px; }
.card-body h3 { font-size: 16px; letter-spacing: -0.01em; margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.card-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--ff-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em;
}
.card-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: auto; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */
.faq { background: var(--surface); }
.faq-section { padding: var(--section-py) 0; background: var(--surface); }
.faq-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 56px);
}
.faq-header { margin-bottom: clamp(40px, 5vw, 64px); }
.faq-header-text h2 { font-size: clamp(36px, 5vw, 64px); }
.faq-numeral { display: block; margin-bottom: 12px; }

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

details.faq,
.faq-list details {
  border-bottom: 1px solid var(--border-mid);
  padding: 20px 0;
}

details.faq > summary,
.faq-list details > summary {
  cursor: pointer; font-weight: 600; font-size: 16px;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--ff-body);
  transition: color 150ms ease;
}
details.faq > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }

details.faq > summary::after,
.faq-list details > summary::after {
  content: "+"; font-weight: 300; font-size: 24px; line-height: 1;
  transition: transform 200ms ease, color 200ms ease;
  color: var(--muted); flex-shrink: 0;
}
details.faq[open] > summary::after,
.faq-list details[open] > summary::after {
  transform: rotate(45deg); color: var(--primary);
}
details.faq[open] > summary,
.faq-list details[open] > summary { color: var(--primary); }

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

.faq-chevron { display: none; }
.faq-answer { margin-top: 14px; color: var(--muted); line-height: 1.68; font-size: 15px; }

/* ─── CONTACT SECTION ────────────────────────────────────────────────────── */
.contact { background: var(--canvas); }
.contact-section { padding: var(--section-py) 0; }

.contact-header { margin-bottom: 48px; }
.contact-numeral { display: block; }
.faq-header .faq-numeral, .contact-header .contact-numeral {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--primary); display: block; margin-bottom: 8px;
}
.contact-eyebrow { display: block; margin-bottom: 8px; }
.contact-headline {
  font-family: var(--ff-display); font-size: clamp(32px, 5vw, 60px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.03em; color: var(--ink);
}

.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

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

/* ─── FORMS ──────────────────────────────────────────────────────────────── */
.contact-form, .cta-form, .contact-section form {
  display: flex; flex-direction: column; gap: 16px;
}

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

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

.form-label, label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}

.form-input, .form-textarea, .form-select,
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  font-family: var(--ff-body); font-size: 15px; font-weight: 400;
  color: var(--ink); background: var(--canvas);
  border: 1.5px solid var(--border-mid); border-radius: var(--radius);
  padding: 13px 16px; outline: none; width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,122,52,0.12);
}
textarea, .form-textarea { min-height: 120px; resize: vertical; }

/* ─── CONTACT INFO ───────────────────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); display: block; margin-bottom: 6px;
}
.contact-info-item a {
  font-size: 17px; font-weight: 500; color: var(--ink); text-decoration: none;
  display: block;
}
.contact-info-item a:hover { color: var(--primary); }
.contact-info-value { font-size: 16px; color: var(--ink-mid); }
.contact-hours-list { list-style: none; margin-top: 4px; }
.contact-hours-list li { font-size: 14px; color: var(--muted); line-height: 1.8; }
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-socials a {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); color: var(--muted);
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease;
}
.contact-socials a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* ─── CONTACT INFO CARD (contact.html) ───────────────────────────────────── */
.contact-info-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 32px 28px;
}
.info-card-numeral {
  font-family: var(--ff-display); font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--primary); display: block; margin-bottom: 16px;
}
.info-block { padding: 16px 0; }
.info-block-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); display: block; margin-bottom: 6px;
}
.info-block-value { font-size: 16px; color: var(--ink); font-weight: 500; }
.info-block a { color: var(--ink); font-weight: 500; text-decoration: none; }
.info-block a:hover { color: var(--primary); text-decoration: underline; }
.info-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.info-phone-link {
  font-size: 20px; font-weight: 600; color: var(--primary) !important;
}

.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-pill {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); color: var(--muted); background: var(--canvas);
}

.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid); color: var(--muted);
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease;
}
.social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink); padding: var(--section-py) clamp(20px, 4vw, 56px);
  position: relative; overflow: hidden;
}
.cta-banner-numeral {
  position: absolute; top: -20px; right: -10px;
  font-family: var(--ff-display); font-size: clamp(120px, 20vw, 280px);
  font-weight: 700; line-height: 0.8; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04); pointer-events: none; user-select: none;
}
.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-inner h2 { font-size: clamp(32px, 5vw, 56px); }
.cta-banner-text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-text h2, .cta-banner-title { color: #fff; }
.cta-eyebrow { color: var(--accent) !important; display: block; margin-bottom: 4px; }
.cta-banner-label { color: var(--accent); }
.cta-banner-sub, .cta-meta {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.55;
}
.cta-banner-actions, .cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cta-meta a { color: rgba(255,255,255,0.8); }
.cta-meta a:hover { color: var(--accent); }
.cta-phone-link { color: var(--accent) !important; font-weight: 600; }

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

/* ─── TEAM CTA ────────────────────────────────────────────────────────────── */
.team-cta { background: var(--primary); padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 56px); }
.team-cta-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.team-cta-text {
  font-family: var(--ff-display); font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700; letter-spacing: -0.02em; color: #fff;
  margin-bottom: 24px; line-height: 1.2;
}
.team-cta-text span { color: var(--accent); }
.team-cta-inner a { background: #fff; color: var(--primary); border-radius: var(--radius); }
.team-cta-inner a:hover { filter: brightness(0.94); color: var(--primary); text-decoration: none; }

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-section {
  background: var(--surface); padding: var(--section-py) 0;
}
.about-split {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 380px 1fr; gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.about-left { position: relative; }
.about-left h2 { font-size: clamp(32px, 4.5vw, 56px); }
.super-numeral {
  font-size: clamp(72px, 9vw, 120px); display: block; margin-bottom: 8px;
}
.about-eyebrow { display: block; margin-bottom: 12px; }
.about-right-body { padding-top: 8px; }
.about-right-body p { color: var(--muted); line-height: 1.72; margin-bottom: 16px; font-size: 16px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

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

/* ─── FOUNDER STORY ──────────────────────────────────────────────────────── */
.founder-story {
  padding: var(--section-py) 0;
}
.founder-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}

.founder-portrait-col { position: relative; }
.founder-portrait-col img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius); max-height: none !important;
  filter: grayscale(12%);
}
.founder-id {
  margin-top: 14px; padding: 14px; background: var(--surface);
  border-radius: var(--radius); border-left: 3px solid var(--primary);
}
.biz-name {
  font-family: var(--ff-display); font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--ink);
}
.biz-role {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  margin-top: 2px;
}

.founder-story-col { display: flex; flex-direction: column; gap: 0; }
.founder-story-col .section-numeral { display: block; margin-bottom: 8px; }
.founder-story-col .eyebrow { display: block; margin-bottom: 12px; }
.founder-story-col h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
.story-body p { color: var(--muted); line-height: 1.72; margin-bottom: 14px; font-size: 16px; }
.story-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait-col img { aspect-ratio: 16/9; }
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values { background: var(--surface); padding: var(--section-py) 0; }
.values-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border);
}
.value-card {
  background: var(--canvas); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 250ms ease;
}
.value-card:hover { background: var(--primary-light); }
.card-num {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  color: var(--primary); display: block; margin-bottom: 4px;
}
.value-card h3 { font-size: 18px; letter-spacing: -0.015em; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ─── JOURNEY ────────────────────────────────────────────────────────────── */
.journey {
  padding: var(--section-py) 0;
}
.journey .section-header-row,
.journey .journey-steps {
  max-width: var(--max-w); margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.journey-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; background: var(--border);
  margin-top: 40px;
}
.journey-step {
  background: var(--canvas); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.step-dot span {
  width: 10px; height: 10px; background: var(--primary); border-radius: 50%;
}
.step-era { display: block; margin-bottom: 4px; }
.journey-step h3 { font-size: 17px; letter-spacing: -0.01em; margin-bottom: 4px; }
.journey-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ─── CREW STRIP ─────────────────────────────────────────────────────────── */
.crew-strip {
  background: var(--ink); padding: var(--section-py) 0;
}
.crew-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 96px); align-items: center;
}
.crew-text { display: flex; flex-direction: column; gap: 8px; }
.crew-text .section-numeral { color: var(--accent); }
.crew-eyebrow { color: rgba(255,255,255,0.5) !important; }
.crew-text h2 { color: #fff; font-size: clamp(28px, 4vw, 48px); }
.crew-text p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.65; }

.crew-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(255,255,255,0.08);
}
.stat-tile {
  background: rgba(255,255,255,0.04); padding: 28px 20px;
  text-align: center; display: flex; flex-direction: column; gap: 6px;
}
.stat-big {
  font-family: var(--ff-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em; color: var(--accent);
}
.stat-big em { font-style: normal; }
.stat-lbl {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5); line-height: 1.4;
}

@media (max-width: 900px) {
  .crew-inner { grid-template-columns: 1fr; }
  .crew-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .crew-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding-top: clamp(64px, 8vw, 96px);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 40px !important; filter: brightness(0) invert(1); }
.footer-brand p, .brand-blurb, .footer-brand-tagline {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 28ch;
}
.footer-brand-name {
  font-family: var(--ff-display); font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); }

.footer-col-title, .footer-col-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px; display: block;
}
.footer-col h4 {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
  font-family: var(--ff-mono);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 150ms ease;
}
.footer-links li a:hover, .footer-col a:hover {
  color: #fff; text-decoration: none;
}
.footer-col-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-contact-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.footer-contact-links a, .footer-phone-link, .footer-email-link {
  font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 150ms ease;
}
.footer-contact-links a:hover, .footer-phone-link:hover, .footer-email-link:hover { color: var(--accent); }

.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.footer-contact-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
}

.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy, .footer-creds {
  font-family: var(--ff-mono); font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── MOBILE CTA PILL ─────────────────────────────────────────────────────── */
.mobile-cta, .mobile-call-pill, .mobile-cta-pill {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  text-decoration: none; box-shadow: 0 18px 40px -10px rgba(12,12,15,0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.mobile-cta a, .mobile-call-pill a, .mobile-cta-pill a {
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.mobile-cta:hover, .mobile-call-pill:hover, .mobile-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(12,12,15,0.5);
  text-decoration: none; color: #fff;
}
.mobile-cta svg, .mobile-call-pill svg, .mobile-cta-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
@media (min-width: 900px) {
  .mobile-cta, .mobile-call-pill, .mobile-cta-pill { display: none; }
}

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}

.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 70ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 140ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 210ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 280ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 350ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 420ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 490ms; }

/* ─── MARQUEE (placeholder — thin strip default) ─────────────────────────── */
.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;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: clamp(13px, 1.4vw, 18px); line-height: 1.2;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── MISC UTILITY ───────────────────────────────────────────────────────── */
.bleed { width: 100%; max-width: none; }

.section-divider { padding: 0; }

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

/* Scroll progress bar fill */
#scrollProgress::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--primary); width: var(--progress, 0%);
  transition: width 80ms linear;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.service-photo-wrap { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.service-index-item { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-form { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.founder-portrait-col { grid-column: 1 / -1; }
.founder-story-col { grid-column: 1 / -1; }
.crew-text { grid-column: 1 / -1; }
.cta-eyebrow { grid-column: 1 / -1; }
.cta-actions { grid-column: 1 / -1; }
.about-left { grid-column: 1 / -1; }
.about-right-body { grid-column: 1 / -1; }
.form-group { 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; }
