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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #74b617;
  --primary-dark:   #5a8e10;
  --primary-light:  #e8f4cc;
  --accent:         #545454;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2e3440;
  --muted:          #5C6068;
  --border:         rgba(20,24,29,0.10);
  --border-strong:  rgba(20,24,29,0.18);
  --header-height:  72px;
  --radius:         4px;
  --radius-card:    4px;
  --shadow-card:    0 2px 16px -4px rgba(20,24,29,0.10);
  --shadow-lift:    0 18px 40px -16px rgba(20,24,29,0.18);
  --max-w:          1320px;
  --max-w-wide:     1400px;
}

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

/* ============================================================
   RESET + GLOBALS
   ============================================================ */
*, *::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;
  -webkit-text-size-adjust: 100%;
}

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

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

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

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

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

/* Lists */
ul, ol { list-style: none; }

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

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

p { line-height: 1.7; }

/* Mono label utility */
.label-mono, .eyebrow, .section-eyebrow, .gallery-eyebrow,
.contact-form-eyebrow, .cta-banner-eyebrow, .page-header-eyebrow,
.service-eyebrow, .about-story-eyebrow, .team-cta-ey,
.rev-attr, .ci-lbl, .info-block-label, .footer-col-title,
.footer-col-heading, .fcol-t {
  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);
  line-height: 1.4;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.wrap, .container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  width: 100%;
}

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

.bleed { width: 100%; }

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

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

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

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

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

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

.nav-pages a, #navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
}
.nav-pages a:hover, #navLinks a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"], #navLinks 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(--surface);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  letter-spacing: 0.01em;
}
.nav-cta:hover { filter: brightness(0.9); color: var(--surface); text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(20px, 4vw, 40px);
    gap: 8px;
    border-bottom: 1px solid rgba(20,24,29,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav-pages a, #navLinks a { font-size: 18px; padding: 10px 0; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline-light, .btn-g, .btn-k, .btn-w, .btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary, .btn-g {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-g:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  color: var(--surface);
  text-decoration: none;
}

.btn-outline-light, .btn-k {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-k:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: var(--surface);
  text-decoration: none;
}

.btn-w {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-w:hover { filter: brightness(0.96); transform: translateY(-1px); color: var(--ink); text-decoration: none; }

.btn-banner {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.btn-banner:hover { filter: brightness(0.9); color: var(--surface); text-decoration: none; }

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.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 > * { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  background: rgba(20,24,29,0.55);
}

.hero-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
  padding-bottom: clamp(56px, 8vh, 100px);
  min-height: 92vh;
  max-width: calc(var(--max-w) + clamp(24px, 5vw, 80px) * 2);
  margin-inline: auto;
  width: 100%;
}

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

.hero-title, h1.hero-title, .hero-inner h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--surface);
  max-width: 18ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(247,246,242,0.75);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 400;
}

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

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

.hchip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--surface);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 6px 12px;
  line-height: 1.4;
  white-space: nowrap;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.mq-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid rgba(20,24,29,0.12);
  background: var(--ink);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.mq-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

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

.mq-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.65);
  line-height: 1.2;
  display: inline-block;
}

.mq-dot {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

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

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

.trust-strip-inner, .trust-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.tbadge, .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 7px 12px;
  background: var(--surface);
  white-space: nowrap;
  line-height: 1.3;
}

.tbadge svg, .trust-chip svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--primary);
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: clamp(80px, 10vh, 128px);
}

.svc-hd {
  margin-bottom: 48px;
}

.svc-hd a { text-decoration: none; }
.svc-hd a:hover { text-decoration: none; color: var(--primary); }

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

.scard {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  border-top: 4px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  min-height: 320px;
}

.scard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}

.scard > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex: 0 0 200px;
  max-height: 200px;
}

.scard-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scard-body h3 {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.scard-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.scard-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.scard-cta {
  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.10em;
  color: var(--primary);
  margin-top: 10px;
  transition: gap 150ms;
}

.scard:hover .scard-cta { gap: 10px; }

.scard-flag {
  grid-column: 1 / 3;
}

.scard-flag > img {
  height: 240px;
  max-height: 240px;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .scard-flag { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .scard-flag { grid-column: auto; }
}

/* ============================================================
   GALLERY (index)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding-block: clamp(80px, 10vh, 128px);
}

.gal-hd {
  margin-bottom: 32px;
}

.gal-hd a { text-decoration: none; }

.gal-frame {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  margin-bottom: 24px;
}

.gal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: unset;
  transition: transform 400ms ease;
}

.gal-frame:hover img { transform: scale(1.03); }

.gal-cta {
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding-block: clamp(80px, 10vh, 128px);
  border-top: 1px solid var(--border);
}

.reviews .wrap > .eyebrow {
  margin-bottom: 8px;
}

.reviews .wrap > h2 {
  margin-bottom: 48px;
}

.rev-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.rev-card {
  background: var(--canvas);
  border-radius: var(--radius-card);
  padding: 36px;
  border-top: 4px solid var(--primary);
}

.rev-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.rev-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
  flex: 0 0 18px;
}

.rev-quote {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.rev-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
}

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

.rev-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--canvas);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  border-top: 4px solid var(--primary);
  text-align: center;
}

.stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 11px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.rev-dark {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  border-top: 4px solid var(--primary);
}

.rev-dark-hed {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--surface);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.rev-dark-sub {
  font-size: 13px;
  color: rgba(247,246,242,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.rev-dark a {
  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.10em;
  color: var(--primary);
}
.rev-dark a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .rev-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding-block: clamp(56px, 7vh, 88px);
}

.team-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-ey {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.team-cta-hed, h2.team-cta-hed {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--surface);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.team-cta-hed span { color: var(--surface); }

.team-cta-inner a.btn-w,
.team-cta-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 160ms, transform 160ms;
  flex-shrink: 0;
}
.team-cta-inner > a:hover { filter: brightness(0.96); transform: translateY(-1px); text-decoration: none; color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding-block: clamp(80px, 10vh, 128px);
}

.faq .wrap > .eyebrow { margin-bottom: 8px; }
.faq .wrap > h2 { margin-bottom: 48px; }

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

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

.faq-list details summary {
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--ink);
  gap: 24px;
  transition: color 150ms;
}

.faq-list details summary::-webkit-details-marker { display: none; }

.fchev, .faq-list details summary svg {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px;
  color: var(--muted);
  transition: transform 220ms ease, color 150ms;
}

.faq-list details[open] summary {
  color: var(--primary);
}

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

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

/* ============================================================
   CONTACT (index page)
   ============================================================ */
.contact {
  background: var(--surface);
  padding-block: clamp(80px, 10vh, 128px);
  border-top: 1px solid var(--border);
}

.contact .wrap > .eyebrow { margin-bottom: 8px; }
.contact .wrap > h2 { margin-bottom: 48px; }

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

/* ============================================================
   FORMS (index cform + contact page)
   ============================================================ */
.cform, .contact-form, .cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.fg label, .form-field label, .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);
}

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

.fg input:focus, .fg textarea:focus, .fg select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  background: var(--surface);
}

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

.cform button[type="submit"],
.contact-form button[type="submit"],
.cta-form button[type="submit"],
.form-submit {
  align-self: flex-start;
  background: var(--primary);
  color: var(--surface);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter 160ms, transform 160ms;
}
.cform button[type="submit"]:hover,
.contact-form button[type="submit"]:hover,
.cta-form button[type="submit"]:hover { filter: brightness(0.9); transform: translateY(-1px); }

.form-notice {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.form-success {
  padding: 14px 18px;
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   CONTACT INFO (index cinfo)
   ============================================================ */
.cinfo {
  background: var(--canvas);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cinfo > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.ci-val {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.ci-val a { color: var(--ink); }
.ci-val a:hover { color: var(--primary); text-decoration: underline; }

.ci-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.75);
  padding-top: clamp(56px, 8vh, 88px);
}

.foot-grid, .footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-bottom: 56px;
}

.foot-grid > div:first-child,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-tag, .footer-tagline, .footer-brand-tagline, .footer-brand-name {
  font-size: 13px;
  color: rgba(247,246,242,0.55);
  line-height: 1.55;
  max-width: 28ch;
}

.foot-ph a, .footer-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--surface);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.foot-ph a:hover, .footer-phone:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item, .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  margin-top: 4px;
}

.footer-contact-item svg, .footer-contact-line svg {
  width: 16px; height: 16px; flex: 0 0 16px;
  color: var(--primary);
}

.footer-contact-item a, .footer-contact-line a {
  color: rgba(247,246,242,0.65);
  text-decoration: none;
}
.footer-contact-item a:hover, .footer-contact-line a:hover { color: var(--primary); }

.fcol, .footer-col { display: flex; flex-direction: column; }

.fcol-t, .footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.fcol ul li a, .footer-col ul li a, .footer-links li a {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  text-decoration: none;
  transition: color 150ms;
}

.fcol ul li a:hover, .footer-col ul li a:hover, .footer-links li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-license {
  font-size: 12px;
  color: rgba(247,246,242,0.4);
}

.foot-bot, .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.foot-copy, .footer-copy, .footer-bottom-copy, .footer-bottom span {
  font-size: 12px;
  color: rgba(247,246,242,0.4);
}

.foot-bot, .footer-bottom {
  max-width: 100%;
}

@media (max-width: 900px) {
  .foot-grid, .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid > div:first-child, .footer-brand {
    grid-column: 1 / -1;
  }
}

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

/* ============================================================
   MOBILE CALL PILL / CTA
   ============================================================ */
.mobile-call-pill, .mob-pill, .mobile-cta, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mob-pill, .mobile-cta, .mobile-sticky-cta {
  background: transparent;
}

.mob-pill a, .mobile-cta a, .mobile-sticky-cta a,
.mobile-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--surface);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(20,24,29,0.45);
  transition: filter 160ms, transform 160ms;
  white-space: nowrap;
}

.mob-pill a:hover, .mobile-cta a:hover, .mobile-sticky-cta a:hover,
.mobile-call-pill:hover { filter: brightness(0.9); transform: translateY(-2px); color: var(--surface); text-decoration: none; }

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

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 44vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: rgba(20,24,29,0.58);
  z-index: 1;
}

.page-header-hairline, .page-header-line, .page-header-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 10vh, 96px) clamp(24px, 5vw, 72px) clamp(40px, 6vh, 64px);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 44vh;
  justify-content: flex-end;
}

.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.page-header-title, .page-header h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--surface);
  max-width: 20ch;
}

.page-header-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(247,246,242,0.7);
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.services-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}

.services-nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 48px);
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 52px;
  white-space: nowrap;
}

.services-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 16px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}

.services-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.service-feature {
  padding-block: clamp(72px, 9vh, 112px);
  background: var(--canvas);
}

.service-feature:nth-child(even) {
  background: var(--surface);
}

.service-feature-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.photo-right .service-feature-inner {
  direction: rtl;
}
.photo-right .service-feature-inner > * {
  direction: ltr;
}

.service-feature-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-feature-photo img {
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.service-feature-photo-accent {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  z-index: 2;
}

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

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

.service-title, .service-feature-content h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.service-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-block: 4px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
}

.service-feature-content > div > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--surface);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
  transition: filter 160ms;
}
.service-feature-content > div > a:hover { filter: brightness(0.9); color: var(--surface); text-decoration: none; }

@media (max-width: 900px) {
  .service-feature-inner { grid-template-columns: 1fr; }
  .photo-right .service-feature-inner { direction: ltr; }
  .service-feature-photo img { height: 280px; max-height: 280px; }
}

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

.cta-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

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

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

.cta-banner-title, .cta-banner-hed,
.cta-banner-left h2, .cta-banner h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(247,246,242,0.65);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 12px;
}

.cta-banner-meta {
  font-size: 15px;
  color: rgba(247,246,242,0.65);
  line-height: 1.6;
  margin-bottom: 12px;
}

.cta-banner-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--surface);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.cta-banner-right {
  min-width: 320px;
}

.cta-form {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-form-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}

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

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(56px, 8vh, 88px);
}

.gallery-intro {
  margin-bottom: 32px;
}

.gallery-eyebrow { margin-bottom: 6px; }

.gallery-headline, .gallery-intro h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 12px;
}

.gallery-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.65;
}

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

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}

.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--ink);
  background: var(--primary-light);
}

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

.project-card {
  background: var(--surface);
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  z-index: 2;
  position: relative;
}

.card-wide {
  grid-column: span 2;
}

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-wide .project-card-img-wrap {
  aspect-ratio: 16 / 9;
}

.project-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: unset;
  transition: transform 400ms ease;
}

.project-card:hover .project-card-img-wrap img { transform: scale(1.04); }

.project-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: var(--primary);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}

.project-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.project-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.project-card-location svg { width: 12px; height: 12px; flex: 0 0 12px; }

.project-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  line-height: 1;
}

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

.gallery-photo-strip {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 32vw, 440px);
  margin-top: 2px;
  background: var(--ink);
}

.gallery-photo-strip img {
  width: 100%;
  height: 100%;
  max-height: unset;
  object-fit: cover;
  opacity: 0.55;
}

.gallery-photo-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  z-index: 2;
}

.gallery-strip-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-strip-caption-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.gallery-strip-caption-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--surface);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

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

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
}

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

.about-story-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-story-portrait {
  position: relative;
}

.about-story-portrait img {
  width: 100%;
  height: 520px;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(20%);
}

.portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

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

.about-story-eyebrow { margin-bottom: -4px; }

.about-story-body > h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.0;
  margin-bottom: 8px;
}

.about-story-prose {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.about-pull-quote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-block: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.about-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 6px 12px;
  background: var(--surface);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-portrait img { height: 320px; max-height: 320px; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values {
  background: var(--surface);
  padding-block: clamp(80px, 10vh, 128px);
  border-top: 1px solid var(--border);
}

.values-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.values-inner > .section-eyebrow { margin-bottom: 8px; }
.values-inner > h2 { margin-bottom: 48px; }

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

.value-card {
  background: var(--canvas);
  padding: 28px 24px 32px;
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  z-index: 2;
  position: relative;
}

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

.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

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

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

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

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.journey {
  background: var(--canvas);
  padding-block: clamp(80px, 10vh, 128px);
}

.journey-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.journey-inner > .section-eyebrow { margin-bottom: 8px; }
.journey-inner > h2 { margin-bottom: 48px; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.journey-step {
  background: var(--surface);
  padding: 28px 24px 32px;
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journey-dot {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.journey-dot svg { width: 16px !important; height: 16px !important; color: var(--surface); }

.journey-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.journey-step h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

.journey-title {
  font-size: clamp(28px, 4vw, 48px);
}

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

@media (max-width: 640px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT VERBATIM
   ============================================================ */
.about-verbatim {
  background: var(--surface);
  padding-block: clamp(72px, 9vh, 112px);
  border-top: 1px solid var(--border);
}

.about-verbatim-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-verbatim-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.0;
}

.about-verbatim-left .section-eyebrow { margin-bottom: 10px; }

.about-verbatim-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-verbatim-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.about-verbatim-right a {
  color: var(--primary);
  font-weight: 600;
}

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

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

.contact-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--primary);
  padding: 36px 32px;
}

.contact-form-eyebrow { margin-bottom: 6px; }

.contact-form-heading {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.info-card-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.info-block {
  padding-block: 16px;
}

.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;
  margin-bottom: 6px;
}

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

.info-block-value a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.info-block-value a:hover { color: var(--primary); text-decoration: underline; }

.info-phone-big {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 4px 10px;
  background: var(--surface);
  white-space: nowrap;
}

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

.info-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--surface);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 20px;
  transition: filter 160ms;
}
.info-cta-link:hover { filter: brightness(0.9); color: var(--surface); text-decoration: none; }
.info-cta-link svg { width: 18px; height: 18px; flex: 0 0 18px; }

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

/* ============================================================
   SECTION GENERAL HEADERS
   ============================================================ */
.sec-title { font-size: clamp(32px, 4.5vw, 56px); }

.section-headline { font-size: clamp(32px, 4.5vw, 56px); }

/* ============================================================
   SERVICE AREA SECTION
   ============================================================ */
.see-all {
  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.10em;
  color: var(--primary);
  text-decoration: none;
  margin-top: 12px;
}
.see-all:hover { color: var(--primary-dark); text-decoration: underline; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.info-divider + .info-block { padding-top: 16px; }

/* Generic section spacing */
section + section { /* rely on individual section padding-block */ }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  .foot-grid, .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .foot-grid > div:first-child,
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about-story-inner,
  .about-verbatim-inner {
    grid-template-columns: 1fr;
  }
  .service-feature-inner {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .rev-layout { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-inner { padding-inline: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas .btn-primary, .hero-ctas .btn-outline-light { width: 100%; justify-content: center; }
  .bento { grid-template-columns: 1fr; }
  .scard-flag { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.scard { grid-column: 1 / -1; }
.rev-card { grid-column: 1 / -1; }
.rev-aside { grid-column: 1 / -1; }
.cform { grid-column: 1 / -1; }
.cinfo { grid-column: 1 / -1; }
.fg { grid-column: 1 / -1; }
.fcol { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
