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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #16D6F2;
  --primary-dark:   #0ab8d1;
  --primary-deeper: #089ab0;
  --accent:         #7BB153;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a30;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.15);
  --border-ink:     #0C0C0F;
  --header-height:  72px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

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

/* Universal image cap — no <img> may overflow its container, ever */
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 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;
}

.hero-split {
  display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0;
}
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Anchors inside headings inherit heading style */
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: 'Archivo Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
}

p { line-height: 1.65; }

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; }

strong { font-weight: 700; }
em { font-style: italic; }

address { font-style: normal; }

/* Eyebrow / label utility */
.eyebrow, .section-eyebrow, .service-eyebrow, .page-header-eyebrow,
.eyebrow-dark, .eyebrow-light {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  display: block;
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--muted); }
.eyebrow-light { color: rgba(255,255,255,0.7); }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
}

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

section, .section {
  padding-top: clamp(72px, 9vh, 112px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

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

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

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  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); padding-bottom: 4px; }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink) !important; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; }
  .nav-toggle { display: flex; 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;
    gap: 8px;
    border-bottom: 1px solid rgba(12,12,15,0.10);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; width: 100%; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.4vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 200ms, transform 150ms;
  line-height: 1;
}
.btn-primary:hover { filter: brightness(0.92); transform: translateY(-1px); text-decoration: none; color: var(--ink); }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 28px;
  border-radius: 0;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms, background 200ms;
  line-height: 1;
}
.btn-phone:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; color: #fff; }
.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 0;
  text-decoration: none;
  transition: filter 200ms;
  line-height: 1;
}
.btn-service:hover { filter: brightness(0.9); text-decoration: none; color: var(--ink); }
.btn-service svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-submit, .btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: filter 200ms;
  line-height: 1;
}
.btn-submit:hover, .btn-cta-submit:hover { filter: brightness(0.9); }
.btn-submit svg, .btn-cta-submit svg { width: 16px; height: 16px; }

.btn-team {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 32px;
  border-radius: 0;
  border: 2px solid var(--canvas);
  text-decoration: none;
  transition: background 200ms, color 200ms;
  line-height: 1;
}
.btn-team:hover { background: transparent; color: var(--canvas); text-decoration: none; }
.btn-team svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero, section#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#hero.hero > img,
section#hero.hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

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

.hero-inner {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(56px, 8vw, 96px);
  max-width: 1360px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
}

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

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

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
}

.trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 8px 14px;
  border-radius: 0;
  line-height: 1;
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-inner { padding: 40px 20px 48px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-phone { font-size: 13px; padding: 14px 20px; }
}

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

.trust-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}

.trust-badge {
  padding: 28px 24px;
  border-right: 1px solid var(--border-ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-badge:last-child { border-right: none; }

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

.trust-badge-value {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.trust-badge-value em { font-style: normal; color: var(--primary); }

@media (max-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-badge:nth-child(2n) { border-right: none; }
  .trust-badge { border-bottom: 1px solid var(--border-ink); }
}

/* ============================================================
   SERVICE AREAS MARQUEE
   ============================================================ */
.service-areas-marquee {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--canvas);
  max-height: 64px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

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

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

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

.sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 0;
  margin-left: 24px;
}

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

/* ============================================================
   BRAND BAND (the unique move)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 80px) 0;
  overflow: hidden;
}

.brand-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 96px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
}

.brand-band-claim span { color: var(--canvas); }

/* contact.html brand band chips */
.brand-band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.band-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  border-radius: 0;
  line-height: 1;
}

/* claim-band (services.html) */
.claim-band {
  background: var(--primary);
  padding: clamp(32px, 5vw, 64px) 0;
}
.claim-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.claim-band-inner p {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
}

/* ============================================================
   SERVICES (index.html)
   ============================================================ */
.services {
  background: var(--canvas);
  padding-top: clamp(72px, 9vh, 112px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

.services-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.services-inner > h2, .services-inner > .section-heading {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
  max-width: 20ch;
}

/* Flagship service */
.service-flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-ink);
  margin-bottom: 2px;
}

.service-flagship-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.service-flagship-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-flagship-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  z-index: 2;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-flagship-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.service-flagship-body h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}

.service-flagship-body p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-ink);
  text-decoration: none;
  color: var(--ink);
  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.22);
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}

.service-card-photo {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
  background: var(--ink);
}
.service-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 220px;
  display: block;
  transition: transform 400ms ease-out;
}
.service-card:hover .service-card-photo img { transform: scale(1.03); }

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

.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
}

.service-card-body h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1;
  color: var(--ink);
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-top: auto;
}
.service-card-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .service-flagship { grid-template-columns: 1fr; }
  .service-flagship-photo { min-height: 280px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES FEATURE BLOCKS (services.html)
   ============================================================ */
.services-feature { padding: 0; }

.service-block {
  border-bottom: 1px solid var(--border-ink);
}

.service-block-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-block-photo-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 2;
}

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

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 8px;
}

.service-eyebrow {
  color: var(--primary);
}

.service-block-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 52ch;
}

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

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

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

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
.about-split {
  padding: clamp(72px, 9vh, 112px) 0;
  background: var(--canvas);
}

.about-split-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 8px;
}

.about-text p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-mid);
  line-height: 1.7;
}

.divider-bar {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 8px 0;
  flex-shrink: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 2px solid var(--border-ink);
  padding: 8px 14px;
  border-radius: 0;
  line-height: 1;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-ink);
}
.about-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

@media (max-width: 900px) {
  .about-split-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .about-photo img { max-height: 360px; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: clamp(72px, 9vh, 112px) 0;
}

.credentials-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

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

.cred-card {
  background: var(--canvas);
  border: 1px solid var(--border-ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.cred-val {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  word-break: break-all;
}

.cred-note {
  font-size: 13px;
  color: var(--muted);
  display: block;
  line-height: 1.4;
}

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

/* ============================================================
   GALLERY (index.html)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.gallery-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.gallery-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

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

.gallery-tile {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.gallery-tile.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  transition: transform 500ms ease-out;
}
.gallery-tile:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .gallery-inner .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section { padding: clamp(64px, 8vh, 96px) 0; background: var(--canvas); }

.gallery-section-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.gallery-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-section-header h2 {
  font-size: clamp(32px, 4vw, 56px);
}
.gallery-section-header h2 span { color: var(--primary); }

.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 1px solid var(--border-ink);
  padding: 8px 16px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover,
.filter-pill.active { background: var(--ink); color: var(--canvas); }

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

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-card-photo {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ink);
}
.gallery-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 240px;
  display: block;
  transition: transform 500ms ease-out;
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }

.gallery-card-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  z-index: 2;
}

.gallery-card-cat-tag {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: var(--ink);
  padding: 4px 10px;
  z-index: 2;
}

.gallery-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gallery-card-body h3 {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.1;
  color: var(--ink);
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.gallery-meta-item {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.gallery-meta-label { font-weight: 700; color: var(--ink); }
.gallery-meta-val { margin-left: 4px; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-ink);
}

.faq-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.faq-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border-ink);
}

.faq-list details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  color: var(--ink);
  line-height: 1.1;
}
.faq-list details > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-ink);
  color: var(--ink);
  transition: transform 250ms, background 200ms, color 200ms;
}
.faq-chevron svg { width: 16px; height: 16px; }

.faq-list details[open] > summary .faq-chevron {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.faq-answer {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-mid);
  line-height: 1.65;
  padding: 0 0 24px 0;
  max-width: 72ch;
}

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

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) 0;
}

.team-cta-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
}
.team-cta-text span { color: var(--primary); }

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.contact-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.contact-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

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

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

/* Contact section page */
.contact-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-section .contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

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

.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-ink);
}
.contact-info-block:last-child { border-bottom: none; }

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

.contact-info-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--primary); }
.contact-info-value.small { font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0; line-height: 1.55; }

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

.hours-block p { font-size: 15px; color: var(--ink-mid); line-height: 1.6; }
.hours-block strong { color: var(--ink); }

.emergency-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--ink);
  padding: 6px 12px;
  margin-top: 12px;
}
.emergency-note svg { width: 14px; height: 14px; flex-shrink: 0; }

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

/* ============================================================
   FORMS
   ============================================================ */
form { display: flex; flex-direction: column; gap: 16px; }

.form-row, .form-2col, .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group.full-width { grid-column: 1 / -1; }

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

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

.form-group input,
.form-group textarea,
.form-group select,
form input,
form textarea,
form select {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-ink);
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
  transition: border-color 150ms;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--primary);
}
form textarea { min-height: 120px; resize: vertical; }
form select { cursor: pointer; }

@media (max-width: 640px) {
  .form-row, .form-2col, .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: auto; }
}

/* ============================================================
   CTA BANNER (services.html, gallery.html, about.html)
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}

.cta-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* gallery.html cta-banner variant */
.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-banner-text h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
}
.cta-banner-text h2 span { color: var(--primary); }
.cta-banner-text a { color: #fff; }
.cta-banner-text a:hover { color: var(--primary); }
.cta-banner-divider { width: 80px; height: 3px; background: var(--primary); }
.cta-banner-hours { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.cta-banner-email, .cta-banner-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.cta-banner-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-banner-left h2 { font-size: clamp(32px, 4.5vw, 64px); color: #fff; }
.cta-banner-left h2 span { color: var(--primary); }
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.cta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

/* about.html cta-banner grid */
.cta-banner-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-left h2 { font-size: clamp(28px, 4vw, 56px); color: #fff; }
.cta-left h2 span { color: var(--primary); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.cta-sub a { color: var(--primary); }

.cta-phone, .cta-phone-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cta-banner form input,
.cta-banner form textarea,
.cta-banner form select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.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,
.cta-banner form select:focus { border-color: var(--primary); }
.cta-banner form select option { background: var(--ink); color: #fff; }

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

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-ink);
}

.founder-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.founder-portrait {
  position: relative;
  border: 1px solid var(--border-ink);
}
.founder-portrait img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 560px;
}

.founder-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-tag strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.founder-tag span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-copy h2 { font-size: clamp(28px, 3.5vw, 48px); }

.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  float: left;
  line-height: 0.75;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--primary);
  text-transform: uppercase;
}

.pull-quote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: var(--surface);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 8px 0;
}

.founder-copy p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
}

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

/* ============================================================
   VALUES
   ============================================================ */
.values-cards {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-ink);
}

.values-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.values-inner > h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 40px;
}

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

.value-card {
  background: var(--canvas);
  border: 1px solid var(--border-ink);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey-timeline {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-ink);
}

.journey-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.journey-inner > h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 40px; }

.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--primary);
}

.t-step {
  position: relative;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--border-ink);
}
.t-step:last-child { border-right: none; }

.t-dot {
  position: absolute;
  top: -7px; left: 24px;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 0;
  transform: rotate(45deg);
}

.t-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--primary);
  opacity: 0.5;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.t-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.6vw, 18px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

.t-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .timeline-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .timeline-row { grid-template-columns: 1fr; border-top: none; border-left: 2px solid var(--primary); }
  .t-step { border-right: none; border-bottom: 1px solid var(--border-ink); padding-left: 32px; }
  .t-dot { top: 28px; left: -7px; }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border-ink);
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(40px, 6vw, 72px);
  max-width: 1360px;
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 120px);
  color: #fff;
  max-width: 18ch;
  margin-bottom: 12px;
}

.page-header-rule {
  width: 64px;
  height: 3px;
  background: var(--primary);
  margin: 12px 0;
}

.page-header-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

/* ============================================================
   INFO BLOCKS (contact.html)
   ============================================================ */
.info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-block:last-child { border-bottom: none; }

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

.info-block-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.info-block-sub {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.55;
}
.info-block-sub a { color: var(--primary); }

.hours-row { display: flex; flex-direction: column; gap: 8px; }
.hours-item { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.hours-item strong { font-weight: 700; color: var(--ink); }
.hours-item span { color: var(--muted); }

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

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-ink);
  color: var(--ink);
  transition: background 150ms, color 150ms;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 7vw, 96px) 0 0;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand-name, .f-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer-tagline, .f-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 28ch;
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 32ch; }

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

.footer-col ul, .footer-links, .f-col ul, .f-areas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a, .footer-links li a, .f-col ul li a, .f-areas li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover, .footer-links li a:hover, .f-col ul li a:hover { color: var(--primary); text-decoration: none; }

.footer-col address, .f-col address {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-col address a, .f-col address a { color: rgba(255,255,255,0.65); }
.footer-col address a:hover, .f-col address a:hover { color: var(--primary); text-decoration: none; }

.footer-hours, .f-col .footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p, .footer-bottom span, .f-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.footer-bottom-certs { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-cert, .footer-certs, .footer-license {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-phone, .footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-phone a, .footer-email a { color: inherit; }
.footer-phone a:hover, .footer-email a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.10em; }
.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-item a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  transition: background 150ms, color 150ms;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); text-decoration: none; }

.f-brand { display: flex; flex-direction: column; gap: 12px; }
.f-line { font-size: 13px; color: rgba(255,255,255,0.6); }
.f-line a { color: rgba(255,255,255,0.6); }
.f-line a:hover { color: var(--primary); text-decoration: none; }
.f-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta, .mobile-cta-pill, .mobile-sticky-cta, .mobile-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  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-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  gap: 8px;
  transition: filter 200ms, transform 200ms;
}
.mobile-cta:hover, .mobile-cta-pill:hover,
.mobile-sticky-cta:hover, .mobile-sticky-call:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--ink);
}
.mobile-cta svg, .mobile-cta-pill svg,
.mobile-sticky-cta svg, .mobile-sticky-call svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta > a, .mobile-sticky-cta > a, .mobile-sticky-call > a {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mobile-cta > a svg, .mobile-sticky-cta > a svg, .mobile-sticky-call > a svg {
  width: 20px; height: 20px;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  will-change: opacity, transform;
}

.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in   { transform: scale(0.94); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.stagger.visible > *,
.stagger > *.visible {
  opacity: 1;
  transform: none;
}
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   UTILITY / MISC
   ============================================================ */
.section-heading, .section-title {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 40px;
}

.alt-surface { background: var(--surface); }

/* Stats (generic) */
.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; }

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

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

/* Suppress any errant headings-as-links at display scale */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-flagship-photo { grid-column: 1 / -1; }
.service-flagship-body { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.about-text { grid-column: 1 / -1; }
.about-photo { grid-column: 1 / -1; }
.cred-card { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.t-step { grid-column: 1 / -1; }
.f-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; }
