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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #28373c;
  --accent:         #28373c;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.12);
  --border-strong:  rgba(12,12,15,0.22);
  --primary-dark:   #1a262a;
  --primary-mid:    #3d5257;
  --surface-2:      #eeece8;
  --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);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

/* ============================================================
   UNIVERSAL IMAGE CAP
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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 rule */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: clamp(16px, 1.8vw, 22px); }

p { line-height: 1.7; }

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

strong { font-weight: 600; }

label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

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

.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(88px, 11vh, 144px);
}

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

#scrollBar,
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
}

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

/* ============================================================
   SECTION NUMERALS (the defining identity system)
   ============================================================ */
.section-numeral,
.hero-numeral,
.gallery-section-numeral,
.page-header-numeral,
.info-card-numeral {
  font-family: 'Space Grotesk', sans-serif;
  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;
}

.review-card-num,
.service-panel-num,
.service-index-num,
.value-card-num,
.project-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
  user-select: none;
}

.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  display: block;
}

/* ============================================================
   LABELS / EYEBROWS
   ============================================================ */
.section-label,
.section-eyebrow,
.service-eyebrow,
.gallery-eyebrow,
.project-cards-eyebrow,
.page-header-eyebrow,
.cta-banner-eyebrow,
.crew-header span,
.values-header span,
.timeline-header span,
.footer-col-title,
.footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-dark,
.btn-submit,
.btn-send,
.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 150ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover,
.btn-primary:hover,
.btn-dark:hover,
.btn-submit:hover,
.btn-send:hover,
.btn-banner-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(40,55,60,0.4);
}

.btn-ghost,
.btn-cta-outline,
.btn-banner-secondary,
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 150ms ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-ghost:hover,
.btn-cta-outline:hover,
.btn-banner-secondary:hover,
.btn-cta-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.btn-service:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
.btn-service svg { width: 16px; height: 16px; }

/* ============================================================
   CHIPS / PILLS
   ============================================================ */
.trust-chip,
.trust-pill,
.area-pill,
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 16px;
  background: var(--canvas);
  white-space: nowrap;
  display: inline-block;
}

.trust-chip.accent,
.trust-pill.accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.area-pill {
  font-size: 11px;
  padding: 5px 12px;
  background: var(--surface);
  border-color: var(--border);
}

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

.top-nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 150ms, background 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  background: var(--surface);
  text-decoration: none;
}
.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-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover {
  filter: brightness(0.88);
  color: #fff;
  text-decoration: none;
}
.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;
  padding: 8px;
  line-height: 1;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { width: 100%; padding: 12px 16px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(12,12,15,0.32) 0%, rgba(12,12,15,0.68) 100%);
}

.hero-numeral {
  position: absolute;
  top: clamp(32px, 6vh, 80px);
  left: clamp(20px, 5vw, 64px);
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
}

.hero-inner {
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 64px) clamp(64px, 10vh, 120px);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

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

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.5;
  margin-bottom: 36px;
}

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

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

.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

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

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item span {
  color: var(--primary);
  font-weight: 700;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.services .section-inner {
  padding-block: clamp(88px, 11vh, 144px);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.services-header .section-label {
  margin-bottom: 8px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

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

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
}
.service-tab:hover {
  color: var(--primary);
  border-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: 1fr 1fr;
  gap: 0;
  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 {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.service-panel:hover .service-panel-img img { transform: scale(1.03); }

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-panel-body h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  margin-bottom: 16px;
}
.service-panel-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-panel-body a { margin-top: 24px; align-self: flex-start; }

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel-img { aspect-ratio: 16 / 9; }
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  background: var(--canvas);
}

.services-detail-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(64px, 8vh, 112px);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 10vh, 112px);
}

.service-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-feature-block.reverse .service-photo-col { order: 2; }
.service-feature-block.reverse .service-content-col { order: 1; }

.service-photo-col {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-index-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.service-content-col h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  margin-bottom: 16px;
}

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

.service-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-feature-block {
    grid-template-columns: 1fr;
  }
  .service-feature-block.reverse .service-photo-col { order: -1; }
  .service-feature-block.reverse .service-content-col { order: 1; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--canvas);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

.review-quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
  flex: 1;
}

.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-verified {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 0.08em;
}

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

/* ============================================================
   GALLERY (index page)
   ============================================================ */
.gallery {
  background: var(--surface);
}

.gallery-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-top: 48px;
}
.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.gallery-feature-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(0deg, rgba(12,12,15,0.7) 0%, transparent 100%);
  color: #fff;
}
.gallery-feature-caption p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.gallery-feature-caption a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.gallery-feature-caption a:hover { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  background: var(--canvas);
}

.section-wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(88px, 11vh, 144px);
}

.gallery-header-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.gallery-title-block {
  flex: 1;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--surface);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,12,15,0.78) 0%, rgba(12,12,15,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 300ms ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.gallery-card-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px 10px;
  align-self: flex-start;
  margin-bottom: 8px;
}

.gallery-card-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.gallery-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gallery-card-meta svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
.gallery-card-location {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Gallery stats */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-stat-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.gallery-stat-cell:last-child { border-right: none; }

.gallery-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.gallery-stat-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 8px;
}

/* Project cards */
.project-cards {
  margin-top: 64px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

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

.project-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: none;
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.project-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 10px;
}

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

.project-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.project-card-location {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .gallery-stats { grid-template-columns: 1fr; }
  .gallery-stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-stat-cell:last-child { border-bottom: none; }
}

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

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

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

details.faq > summary,
.faq-list details > summary {
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  color: var(--ink);
}

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;
  color: var(--primary);
  transition: transform 200ms;
  flex-shrink: 0;
}

details.faq[open] > summary::after,
.faq-list details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

details.faq p,
.faq-list details p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA (the compact mid-page CTA band)
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(64px, 9vh, 112px) clamp(20px, 5vw, 64px);
}

.team-cta-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.team-cta-text p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.team-cta-text h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  color: #fff;
  line-height: 1.0;
}

.team-cta-action a {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  transition: filter 200ms, transform 150ms;
  display: inline-block;
  white-space: nowrap;
}
.team-cta-action a:hover {
  filter: brightness(0.94);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--primary);
}

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

/* ============================================================
   CONTACT (index page)
   ============================================================ */
.contact {
  background: var(--surface);
}

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

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-group > p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.form-field,
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40,55,60,0.12);
}

.form-field textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .label {
  margin-bottom: 4px;
  color: var(--muted);
}
.contact-info-item p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-item a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.contact-info-item a:hover { color: var(--primary); }
.contact-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

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

.contact-header {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-top: clamp(88px, 11vh, 144px);
  padding-bottom: 48px;
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
}

.contact-section .contact-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-bottom: clamp(88px, 11vh, 144px);
  margin-top: 0;
}

.contact-form {
  /* wraps the form */
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 28px;
}

.info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-item:last-of-type { border-bottom: none; }

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

.info-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  display: block;
}

.info-value-large {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
}
.info-value-large a {
  color: var(--primary);
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 16px;
  align-self: flex-start;
}
.veteran-badge svg { width: 20px; height: 20px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(72px, 10vh, 128px) clamp(20px, 5vw, 64px);
}

.cta-banner-inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 8px;
}

.cta-banner-inner h2,
.cta-banner-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
}

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 56ch;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-banner-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* About page inline contact form in cta-banner */
.cta-banner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 640px;
}
.cta-banner-form input,
.cta-banner-form textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  width: 100%;
}
.cta-banner-form input::placeholder,
.cta-banner-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-banner-form input:focus,
.cta-banner-form textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.16);
}
.cta-banner-form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  resize: vertical;
}
.cta-banner-form button {
  grid-column: 1 / -1;
  background: #fff;
  color: var(--primary);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 200ms;
}
.cta-banner-form button:hover { filter: brightness(0.94); }

.cta-phone-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  margin-top: 8px;
}
.cta-phone-link:hover { color: rgba(255,255,255,0.82); text-decoration: underline; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 44vh, 520px);
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,15,0.28) 0%, rgba(12,12,15,0.65) 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vh, 72px) clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

.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.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  display: block;
}

.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 52ch;
}

.page-header-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: clamp(88px, 11vh, 144px);
}

.about-story-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.about-story-portrait {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.about-story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(20%) contrast(1.05);
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-body-text p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-portrait { aspect-ratio: 16 / 9; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding-block: clamp(88px, 11vh, 144px);
}

.values-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.values-header {
  margin-bottom: 48px;
}
.values-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--canvas);
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  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.14);
}

.value-card h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  margin-bottom: 12px;
}

.value-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   TIMELINE / JOURNEY
   ============================================================ */
.timeline-section {
  background: var(--canvas);
  padding-block: clamp(88px, 11vh, 144px);
}

.timeline-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.timeline-header {
  margin-bottom: 48px;
}
.timeline-header h2 { font-size: clamp(32px, 4.5vw, 64px); margin-top: 8px; }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--canvas);
  transition: background 200ms;
}
.timeline-step:last-child { border-right: none; }
.timeline-step:hover { background: var(--surface); }

.timeline-step h3 {
  font-size: clamp(16px, 1.6vw, 20px);
  margin-bottom: 10px;
}

.timeline-step-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.timeline-step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-step:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .timeline-track { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-step:last-child { border-bottom: none; }
}

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding-block: clamp(88px, 11vh, 144px);
}

.crew-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.crew-header {
  margin-bottom: 48px;
}
.crew-header h2 { font-size: clamp(32px, 4.5vw, 64px); margin-top: 8px; }

.crew-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.crew-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.crew-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: filter 300ms;
}
.crew-photo-wrap:hover img { filter: none; }

.crew-photo-caption { padding-top: 12px; }

.crew-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.crew-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

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

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(64px, 9vh, 112px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand img, .footer-brand-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  max-height: 40px !important;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline,
.footer-brand-tagline,
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-phone,
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-phone a,
.footer-contact-line a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 150ms;
}
.footer-phone a:hover,
.footer-contact-line a:hover { color: #fff; text-decoration: underline; }
.footer-contact-line svg { width: 16px; height: 16px; color: rgba(255,255,255,0.45); }

.footer-col h4,
.footer-col-title,
.footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-hours-block {
  margin-bottom: 12px;
}
.footer-hours-block strong {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-hours-day {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-hours-time {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-hours-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-hours-item strong {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-hours-line {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-areas {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-bottom-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a,
.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  transition: color 150ms;
}
.footer-bottom-links a:hover,
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); text-decoration: underline; }

.footer-contact-item {
  margin-bottom: 10px;
}
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 1000px) {
  .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 STICKY CTA
   ============================================================ */
.mobile-sticky-cta,
.mobile-cta-pill,
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms, box-shadow 200ms;
}

.mobile-sticky-cta a,
.mobile-cta a,
.mobile-cta-pill a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.mobile-sticky-cta a:hover { color: #fff; text-decoration: none; }

.mobile-sticky-cta svg,
.mobile-cta svg,
.mobile-cta-pill svg,
.mobile-sticky-cta a svg,
.mobile-cta a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-sticky-cta:hover,
.mobile-cta:hover,
.mobile-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
}

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

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

/* ============================================================
   PROCESS STRIP (utility — referenced in brief but rendered as timeline)
   ============================================================ */
.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);
}

/* ============================================================
   STATS UTILITY
   ============================================================ */
.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: 900;
  line-height: 1;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.accent { color: var(--primary); }
.reverse { /* layout handled per section */ }

/* SVG cap */
svg { display: block; }

/* Unsized SVGs in UI contexts */
.contact-info-item svg,
.footer-contact-line svg,
.gallery-card-meta svg,
.review-stars svg,
.btn svg,
.btn-service svg,
.nav-cta svg,
.nav-toggle svg,
.mobile-sticky-cta svg,
.mobile-cta svg,
.mobile-cta-pill svg,
.veteran-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review-stars svg { width: 18px; height: 18px; }
.gallery-card-meta svg { width: 14px; height: 14px; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .team-cta-inner { grid-template-columns: 1fr; }
  .service-panel { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.team-cta-text { grid-column: 1 / -1; }
.team-cta-action { grid-column: 1 / -1; }
.contact-form-group { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-photo-col { grid-column: 1 / -1; }
.service-content-col { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.gallery-stat-cell { grid-column: 1 / -1; }
.project-card { grid-column: 1 / -1; }
.about-story-body { grid-column: 1 / -1; }
.crew-photo-caption { grid-column: 1 / -1; }
.btn-send { 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; }
