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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:        #4C7434;
  --accent:         #4C743C;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --ink-mid:        #2E2E30;
  --border:         rgba(12,12,15,0.15);
  --border-hard:    #0C0C0F;
  --primary-dark:   #3A5828;
  --primary-light:  #6A9C4E;
  --surface-2:      #E8E5DE;
  --radius:         0px;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── GLOBAL SMOOTH SCROLL ───────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}
[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a, [class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

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

/* ─── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

p { line-height: 1.7; }

ul { list-style: none; }

/* ─── LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* ─── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress,
#scrollProgress,
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  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.12);
}

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  line-height: 1;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 4px;
    border-bottom: 1px solid rgba(12,12,15,0.12);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta span:not(:first-child) { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 96px);
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.65) 40%,
    rgba(76,116,52,0.35) 100%
  );
}

.hero-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-top: clamp(48px, 8vw, 96px);
  width: 100%;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.hero-title,
.hero-inner h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: clamp(28px, 4vw, 40px);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-trust-chips .trust-chip {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn, .btn-primary, .btn-outline, .btn-outline-white,
.btn-phone, .btn-service, .btn-primary-dark, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 150ms, background 150ms, color 150ms;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.btn-primary-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary-dark:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }

.btn-phone {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-phone:hover { border-color: #fff; text-decoration: none; }

.btn-service {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  padding: 14px 24px;
  font-size: 13px;
}
.btn-service:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 20px 32px;
}
.btn-submit:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.btn-submit svg { width: 18px; height: 18px; }

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-hard);
  border-bottom: 1px solid var(--border-hard);
  padding: 0;
  overflow-x: auto;
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.trust-strip .trust-chip,
.trust-strip .tsq {
  flex: 1;
  min-width: 140px;
  padding: 18px 20px;
  border-right: 1px solid var(--border-hard);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.trust-strip .trust-chip:last-child,
.trust-strip .tsq:last-child { border-right: none; }
.trust-chip-accent { color: var(--primary); }
.trust-chip-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.tsq svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ─── CLAIM / BRAND BAND ──────────────────────────────────── */
.claim-band,
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 72px) 0;
  overflow: hidden;
}
.claim-band-inner,
.brand-band-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.claim-text,
.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 22ch;
}

/* ─── SERVICE AREAS MARQUEE ───────────────────────────────── */
.service-areas-marquee {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 14px 0;
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.service-areas-marquee:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 16px;
  line-height: 1.2;
}

.marquee-sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.services-inner > .section-eyebrow { margin-bottom: 48px; }

/* Flagship */
.service-flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--border-hard);
  margin-bottom: 40px;
  min-height: 420px;
}
.flagship-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.flagship-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.flagship-body {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 2px solid var(--border-hard);
}
.flagship-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  color: rgba(76,116,52,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
}
.flagship-title,
.service-flagship h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.0;
}
.flagship-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
}
.flagship-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid var(--primary);
  margin-top: 24px;
  text-decoration: none;
  transition: filter 150ms;
  align-self: flex-start;
}
.flagship-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.flagship-cta svg { width: 16px; height: 16px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--border-hard);
  border-top: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-hard);
  border-top: 2px solid var(--border-hard);
  background: var(--canvas);
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 200ms;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
}

.service-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.04); }

.service-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card-name,
.service-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
  margin-bottom: 14px;
}
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: auto;
}
.service-card-arrow svg { width: 14px; height: 14px; }

/* ─── GALLERY (index) ─────────────────────────────────────── */
.gallery {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
.view-all-link svg { width: 14px; height: 14px; }

.gallery-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 2px solid var(--border-hard);
}
.gallery-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.gallery-feature:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.gallery-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: filter 150ms;
}
.gallery-cta-link:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.gallery-cta-link svg { width: 16px; height: 16px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.faq-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-label { position: sticky; top: calc(var(--header-height) + 24px); }
.faq-label h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.faq-label-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border-hard);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform 200ms, color 200ms;
}
.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 68ch;
}

/* ─── TEAM CTA ────────────────────────────────────────────── */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 7vh, 88px) 0;
}
.team-cta-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  max-width: 22ch;
}
.team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 18px 36px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter 150ms;
}
.team-cta-link:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.team-cta-link svg { width: 18px; height: 18px; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

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

.contact-form-col h2,
.contact-info-col h2,
.contact-col-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 32px;
  color: var(--ink);
}

.contact-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Form */
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-label, label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input, input, textarea, select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 2px solid var(--border-hard);
  border-radius: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  appearance: none;
}
.form-input:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Contact info column */
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-row:last-child { border-bottom: none; }
.ci-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.ci-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.info-block {
  padding: 20px 0;
}
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-block-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.info-link, .info-link-small {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.info-link:hover, .info-link-small:hover { color: var(--primary); }

.divider-line {
  height: 1px;
  background: var(--border);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.hours-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours-value {
  font-size: 14px;
  color: var(--ink);
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.service-area-pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-hard);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--border-hard);
  color: var(--ink);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

.recognition-block {
  margin-top: 24px;
  padding: 20px;
  border: 2px solid var(--primary);
  background: transparent;
}
.recognition-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.recognition-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, rgba(12,12,15,0.4) 100%);
  pointer-events: none;
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1360px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 64px);
  width: 100%;
}
.page-header-eyebrow,
.page-header h1 + p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: block;
}
.page-header-title,
.page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  max-width: 18ch;
}
.page-header-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.6;
}

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

.service-block {
  border-bottom: 2px solid var(--border-hard);
  overflow: hidden;
}
.service-block:first-child { border-top: 2px solid var(--border-hard); }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.service-block.reverse .service-block-inner {
  direction: rtl;
}
.service-block.reverse .service-block-inner > * {
  direction: ltr;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-block-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.4) 0%, transparent 50%);
  z-index: 1;
}
.service-block-index {
  position: absolute;
  bottom: 16px; left: 20px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-block-body {
  padding: clamp(32px, 5vw, 72px);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block-body.alt-surface { background: var(--surface); }

.service-block-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--ink);
}
.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}
.service-bullets {
  margin: 20px 0 28px;
  padding-left: 0;
  list-style: none;
}
.service-bullets li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.service-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-availability::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.service-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.cta-banner-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-eyebrow, .cta-banner-left .section-eyebrow {
  color: var(--primary-light);
  margin-bottom: 16px;
}
.cta-banner-title,
.cta-banner-headline,
.cta-banner-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}
.cta-banner-title em,
.cta-banner-headline em { font-style: normal; color: var(--primary-light); }
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.cta-banner-hours {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-banner-actions .btn-primary,
.cta-banner-actions .btn-outline-white {
  width: 100%;
  justify-content: center;
}

/* CTA form (services.html) */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-form input, .cta-form textarea {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.cta-form input:focus, .cta-form textarea:focus {
  border-color: var(--primary-light);
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form .btn-submit {
  background: var(--primary);
  border-color: var(--primary);
}

/* ─── GALLERY FULL PAGE ───────────────────────────────────── */
.gallery-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  padding: 8px 18px;
  background: transparent;
  border: 2px solid var(--border-hard);
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms, color 150ms;
  border-radius: 0;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-hard);
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  background: var(--surface-2);
}
.project-card-featured {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}
.project-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 1;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 300ms;
}
.project-card:hover .project-card-body { transform: translateY(0); }
.project-card-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.project-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.project-card-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.gallery-count-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.gallery-count-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
#visibleCount { color: var(--primary); }

/* ─── ABOUT (founder-story) ───────────────────────────────── */
.founder-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.founder-story-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.founder-portrait-col {
  position: relative;
}
.founder-portrait-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 600px;
  border: 2px solid var(--border-hard);
  filter: grayscale(20%);
}
.founder-portrait-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.founder-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.founder-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--ink);
}
.founder-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.founder-award {
  margin-top: 32px;
  padding: 24px;
  border: 2px solid var(--primary);
  background: transparent;
}
.founder-award-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.founder-award-quote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.founder-award-sub {
  font-size: 13px;
  color: var(--muted);
}

/* Values section */
.values-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.values-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--border-hard);
}
.value-card {
  padding: 32px;
  border-right: 1px solid var(--border-hard);
  background: var(--canvas);
  transition: background 200ms;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--primary); }
.value-card:hover .value-card-num { color: rgba(255,255,255,0.2); }
.value-card:hover h3, .value-card:hover .value-card-body { color: #fff; }
.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(76,116,52,0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  transition: color 200ms;
}
.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
  transition: color 200ms;
}
.value-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  transition: color 200ms;
}

/* Journey section */
.journey-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.journey-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 2px solid var(--border-hard);
  position: relative;
}
.journey-step {
  padding: 32px;
  border-right: 1px solid var(--border-hard);
  position: relative;
}
.journey-step:last-child { border-right: none; }
.journey-dot {
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 16px;
}
.journey-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.journey-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.1;
}
.journey-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Crew section */
.crew-section {
  background: var(--surface);
  padding: clamp(56px, 7vh, 88px) 0;
}
.crew-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.crew-note {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px;
  border: 2px solid var(--border-hard);
  background: var(--canvas);
  margin-top: 40px;
}
.crew-note-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding-top: 4px;
}
.crew-note-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* About section */
.about-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.about-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-text-col {}
.about-text-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--ink);
}
.about-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-chips-divider {
  width: 80px; height: 4px;
  background: var(--primary);
  margin: 28px 0;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.about-chip {
  display: inline-block;
  padding: 7px 14px;
  border: 2px solid var(--border-hard);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-photo-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 680px;
  border: 2px solid var(--border-hard);
  filter: grayscale(15%);
}

/* ─── AWARD BAND ──────────────────────────────────────────── */
.award-band {
  background: var(--surface);
  border-top: 2px solid var(--border-hard);
  border-bottom: 2px solid var(--border-hard);
  padding: 24px 0;
}
.award-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.award-icon { flex-shrink: 0; }
.award-icon svg { width: 32px; height: 32px; color: var(--primary); }
.award-text-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.award-text-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: clamp(56px, 8vh, 96px) 0 0;
}

.footer-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo { margin-bottom: 8px; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
}
.footer-brand-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 32ch;
}

.footer-col, .footer-grid > div { }
.footer-col-title,
.footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary-light); text-decoration: none; }
.footer-links li span {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-block p,
.footer-contact-block a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-contact-block a:hover { color: var(--primary-light); }
.footer-contact-line {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: block;
}
.footer-contact-line a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-line a:hover { color: var(--primary-light); }
.footer-info-item {
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-info-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-info-item a:hover { color: var(--primary-light); }
.footer-info-line {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}
.footer-info-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
}
.footer-hours strong {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-phone-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.footer-phone-link:hover { color: var(--primary-light); text-decoration: none; }

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

/* ─── MOBILE CALL PILL ────────────────────────────────────── */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta,
.mobile-call a,
.mobile-call {
  display: none;
}
@media (max-width: 899px) {
  .mobile-call-pill,
  .mobile-cta-pill,
  .mobile-sticky-cta {
    display: flex;
    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 Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: filter 150ms;
  }
  .mobile-call-pill:hover,
  .mobile-cta-pill:hover,
  .mobile-sticky-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
  .mobile-call-pill svg,
  .mobile-cta-pill svg,
  .mobile-sticky-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
  .mobile-call {
    display: block;
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
  }
  .mobile-call a {
    display: flex;
    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 Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-call a svg { width: 20px; height: 20px; }
}
@media (min-width: 900px) {
  .mobile-call-pill,
  .mobile-cta-pill,
  .mobile-sticky-cta,
  .mobile-call { display: none !important; }
}

/* ─── ANIMATION UTILITIES ─────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.94); }
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms 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; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }

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

/* ─── MISC CLASSES ────────────────────────────────────────── */
.section-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 40px;
}

.divider-line { height: 1px; background: var(--border); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-step:nth-child(2) { border-right: none; }
  .journey-step:nth-child(3) { border-top: 1px solid var(--border-hard); }
}

@media (max-width: 900px) {
  .service-flagship {
    grid-template-columns: 1fr;
  }
  .flagship-body { border-left: none; border-top: 2px solid var(--border-hard); }
  .flagship-photo { min-height: 260px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:nth-child(2n) { border-right: none; }

  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-label { position: static; }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .service-block-inner {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .service-block-photo { min-height: 56vw; }
  .service-block-inner > * { direction: ltr !important; }

  .cta-banner-inner {
    grid-template-columns: 1fr;
  }
  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-col { order: -1; }
  .about-photo-col img { aspect-ratio: 3 / 2; }

  .founder-story-inner {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card-featured { grid-column: span 2; }

  .crew-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-card:nth-child(2n) { border-right: none; }
  .value-card:nth-child(3), .value-card:nth-child(4) { border-top: 1px solid var(--border-hard); }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-title, .hero-inner h1 { font-size: clamp(48px, 12vw, 80px); }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card { border-right: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child { grid-column: 1; }

  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card-featured { grid-column: 1; }

  .journey-steps {
    grid-template-columns: 1fr;
  }
  .journey-step { border-right: none; border-top: 1px solid var(--border-hard); }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-card { border-right: none; border-top: 1px solid var(--border-hard); }
  .value-card:first-child { border-top: none; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    flex-wrap: wrap;
  }
  .trust-strip .trust-chip,
  .trust-strip .tsq {
    min-width: 48%;
    border-right: 1px solid var(--border-hard);
    border-bottom: 1px solid var(--border-hard);
  }

  .faq-inner { gap: 32px; }
}


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