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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #38854a;
  --accent:         #38854a;
  --primary-dark:   #2a6638;
  --primary-light:  #e8f5eb;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --surface-2:      #ECEAE5;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2d;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.12);
  --border-strong:  rgba(12,12,15,0.22);
  --header-height:  72px;
}

@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 CAPS ───────────────────────────────────────────────── */
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;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

.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 IN HEADINGS ────────────────────────────────────────────────── */
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: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ─── TYPE SCALE ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.label-mono, .section-label, .section-eyebrow,
.hero-eyebrow, .page-header-eyebrow, .service-feature-eyebrow,
.cta-banner-eyebrow, .about-eyebrow, .founder-eyebrow,
.contact-section-eyebrow, .info-card-eyebrow,
.gallery-caption-label, .gallery-tile-label, .footer-col-title,
.footer-col-heading, .footer-col-label, .footer-contact-label,
.stat-label, .step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────────────────── */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container{ max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.services-detail-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.gallery-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.contact-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.about-section-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.founder-callout-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.cta-banner-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center;
}

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

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

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

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

.nav-pages {
  flex: 1; display: flex; justify-content: center;
  list-style: none; padding: 0; margin: 0;
  gap: 28px; align-items: center;
}
.nav-pages li { display: block; }
.nav-pages 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;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

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

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

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 4px;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: filter 180ms, transform 150ms, background 150ms, color 150ms, border-color 150ms;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary, .btn-cta-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover, .btn-cta-primary:hover { filter: brightness(0.9); color: #fff; }

.btn-ghost, .btn-cta-outline, .btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover, .btn-cta-outline:hover, .btn-outline-white:hover {
  border-color: #fff; background: rgba(255,255,255,0.1); color: #fff;
}

.btn-light {
  background: var(--canvas); color: var(--ink); border-color: var(--border-strong);
}
.btn-light:hover { background: var(--surface); }

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 32px; border-radius: 4px;
  border: none; cursor: pointer;
  transition: filter 180ms, transform 150ms;
}
.btn-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(12,12,15,0.42) 0%, rgba(12,12,15,0.72) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

.hero-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
  user-select: none;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55; color: rgba(255,255,255,0.72);
  max-width: 48ch; margin-bottom: 36px;
}

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

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

.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

/* ─── TRUST CHIPS / PILLS ────────────────────────────────────────────────── */
.trust-chip, .trust-pill {
  display: inline-flex; align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--canvas); color: var(--ink);
  white-space: nowrap; line-height: 1.2;
}

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

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  overflow: hidden;
}

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

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

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

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2; color: var(--muted);
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-item span {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
  flex-shrink: 0;
}

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

/* ─── SECTION STRUCTURE ──────────────────────────────────────────────────── */
.services, .gallery, .faq, .contact, .about-section {
  padding: clamp(88px, 11vh, 144px) 0;
}

.services { background: var(--surface); }
.gallery  { background: var(--canvas); }
.faq      { background: var(--surface); }
.contact  { background: var(--canvas); }
.about-section { background: var(--canvas); }

/* ─── SECTION HEADER / EYEBROW PATTERN ──────────────────────────────────── */
.section-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  user-select: none; margin-bottom: 4px;
}

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

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

.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink);
  max-width: 22ch;
}

/* ─── SERVICES SECTION ───────────────────────────────────────────────────── */
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  gap: 32px; flex-wrap: wrap;
}
.services-header a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); text-decoration: none;
  flex-shrink: 0; align-self: flex-end;
  transition: opacity 150ms;
}
.services-header a:hover { opacity: 0.7; text-decoration: none; }

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

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

.service-card-flagship {
  grid-column: 1 / 3;
  min-height: 420px;
}

.service-card > img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 300ms, transform 400ms;
  max-height: none !important;
}
.service-card:hover > img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

.service-card-body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 28px 28px 28px;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.0) 100%);
  color: #fff;
}

.service-card-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  color: var(--primary); margin-bottom: 8px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 8px;
}

.service-card-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.72);
  display: block; margin-bottom: 12px;
}

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

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

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card-flagship { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: 1 / 2; }
}

/* ─── GALLERY SECTION ────────────────────────────────────────────────────── */
.gallery-section {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
}

.gallery-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
  gap: 24px; flex-wrap: wrap;
}
.gallery-header-left { flex: 1; }

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

.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); align-self: flex-end;
  flex-shrink: 0;
}

.filter-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}

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

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

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

/* parent of the last 3-item row — make it a grid too */
.gallery-section .gallery-inner > div:last-of-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-bottom: 40px;
}

.gallery-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--surface-2);
  cursor: pointer;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 300ms;
  max-height: none !important;
}
.gallery-tile:hover > img { transform: scale(1.05); filter: brightness(0.85); }

.gallery-tile-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px;
  background: var(--primary); color: #fff;
}

.gallery-tile-big-num {
  position: absolute; top: 10px; left: 14px; z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.18); letter-spacing: -0.04em;
  user-select: none;
}

.gallery-tile-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px; z-index: 4;
  transform: translateY(4px); transition: transform 300ms, opacity 300ms;
  opacity: 0;
}
.gallery-tile:hover .gallery-tile-info { transform: translateY(0); opacity: 1; }

.gallery-tile-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); margin-bottom: 2px;
}
.gallery-tile-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 4px;
}
.gallery-tile-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  line-height: 1.1; color: #fff; letter-spacing: -0.01em;
}

.gallery-card {
  background: var(--surface); padding: 28px;
  border-radius: 4px; position: relative;
}
.gallery-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; line-height: 1;
  color: var(--primary); letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.gallery-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 8px;
}
.gallery-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 10px;
}
.gallery-card-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; line-height: 1.6; color: var(--muted);
  margin-bottom: 16px;
}
.gallery-card-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.gallery-card-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--muted);
}
.gallery-card-meta-item svg { width: 14px; height: 14px; }

.gallery-featured {
  position: relative; overflow: hidden;
  border-radius: 4px; aspect-ratio: 16/7;
  margin-bottom: 48px; cursor: pointer;
}
.gallery-featured > img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease;
}
.gallery-featured:hover > img { transform: scale(1.02); }

.gallery-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 32px;
}
.gallery-caption { position: relative; z-index: 2; }
.gallery-caption-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6); margin-bottom: 6px;
}
.gallery-caption-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.02em; color: #fff;
}

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

@media (max-width: 900px) {
  .gallery-grid,
  .gallery-row-2 { grid-template-columns: 1fr 1fr; }
  .gallery-section .gallery-inner > div:last-of-type { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid,
  .gallery-row-2 { grid-template-columns: 1fr; }
  .gallery-section .gallery-inner > div:last-of-type { grid-template-columns: 1fr; }
}

/* ─── STATS ROW ──────────────────────────────────────────────────────────── */
.stats-row {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.04em; color: var(--primary);
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-top: 8px; display: block;
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-header { margin-bottom: 56px; }
.faq-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; margin-top: 8px;
}

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

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

details.faq > summary, .faq-list details > summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px; line-height: 1.4; gap: 16px;
  user-select: none;
}
details.faq > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }

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

details[open] .faq-chevron { background: var(--primary); border-color: var(--primary); }
details[open] .faq-chevron svg { transform: rotate(45deg); color: #fff; fill: #fff; }

.faq-answer {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; line-height: 1.7; color: var(--muted);
  padding-top: 14px; max-width: 70ch;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-header { margin-bottom: 56px; }
.contact-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.03em;
}
.contact-section-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 4px; user-select: none;
}
.contact-section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); display: block; margin-bottom: 12px;
}

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

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 4px; padding: 13px 16px;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56,133,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

.contact-info-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  text-decoration: none; margin-bottom: 24px;
  transition: opacity 150ms;
}
.contact-info-num:hover { opacity: 0.8; text-decoration: none; }

.contact-data-rows { display: flex; flex-direction: column; gap: 0; }
.contact-data-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.contact-data-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  padding-top: 2px;
}
.contact-data-value {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.contact-data-value a { color: var(--ink); }
.contact-data-value a:hover { color: var(--primary); }

.contact-info-card {
  background: var(--surface); padding: 36px;
  border-radius: 4px; position: relative;
}
.info-card-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 8px; user-select: none;
}
.info-card-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); display: block; margin-bottom: 24px;
}
.info-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.info-item:last-of-type { border-bottom: 0; }
.info-item-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); display: block; margin-bottom: 4px;
}
.info-item-value {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; color: var(--ink);
}
.info-item-value a { color: var(--ink); }
.info-item-value a:hover { color: var(--primary); }

.info-rating { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.info-stars { display: flex; gap: 2px; }
.info-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }
.info-rating-text {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}

.info-service-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.info-area-chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
}

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

/* ─── PAGE HEADER (sub-pages) ────────────────────────────────────────────── */
.page-header {
  position: relative; overflow: hidden;
  min-height: 46vh; max-height: 64vh;
  display: flex; align-items: flex-end;
}
.page-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; z-index: 0;
  max-height: none !important;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(12,12,15,0.38) 0%, rgba(12,12,15,0.68) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px);
  width: 100%;
}
.page-header-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 8px; user-select: none;
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1.1vw, 12px); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6); display: block; margin-bottom: 12px;
}
.page-header-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
}
.page-header-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px); color: rgba(255,255,255,0.68);
  margin-top: 12px; line-height: 1.55;
}
.page-header-num {
  position: absolute; top: 20px; left: clamp(20px, 4vw, 48px); z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  user-select: none; opacity: 0.6;
}

/* ─── SERVICES DETAIL PAGE ───────────────────────────────────────────────── */
.services-detail {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}

.services-section-header { margin-bottom: 72px; }
.services-section-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 4px; user-select: none;
}
.services-section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 12px; display: block;
}
.services-section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.03em; color: var(--ink);
}
.services-section-title-block { margin-top: 8px; }

.service-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 2px;
  min-height: 580px;
}

.service-feature.reverse .service-feature-photo { order: 2; }
.service-feature.reverse .service-feature-body  { order: 1; }

.service-feature-photo {
  position: relative; overflow: hidden;
  min-height: 420px;
}
.service-feature-photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  max-height: none !important;
}
.service-feature:hover .service-feature-photo > img { transform: scale(1.03); }

.service-feature-index {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.04em; color: rgba(255,255,255,0.3);
  user-select: none;
}

.service-feature-body {
  background: var(--surface);
  padding: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.service-feature-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.service-feature-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 16px;
}
.service-feature-body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; line-height: 1.7; color: var(--muted);
  margin-bottom: 12px;
}
.service-feature-body a.btn {
  margin-top: 24px; align-self: flex-start;
}

.service-bullets {
  list-style: none; padding: 0; margin: 16px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; color: var(--muted); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}

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

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-section { padding: clamp(88px, 11vh, 144px) 0; }

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

.about-photo-col {
  position: relative;
}
.about-photo-col > img {
  width: 100%; object-fit: cover; border-radius: 4px;
  max-height: 640px;
}
.about-photo-numeral {
  position: absolute; top: -20px; left: -20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  user-select: none; z-index: -1;
  opacity: 0.35;
}

.about-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 8px; user-select: none;
}
.about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); display: block; margin-bottom: 16px;
}
.about-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.about-text-col h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.about-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--muted);
  margin-bottom: 16px;
}
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ─── FOUNDER CALLOUT ────────────────────────────────────────────────────── */
.founder-callout {
  background: var(--surface); padding: clamp(64px, 8vh, 96px) 0;
}
@media (max-width: 900px) {
  .founder-callout-inner { grid-template-columns: 1fr; gap: 32px; }
}
.founder-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  user-select: none;
}
.founder-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 16px; display: block;
}
.founder-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.founder-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.founder-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--muted);
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink); color: #fff;
  padding: clamp(80px, 10vh, 120px) 0;
  position: relative; overflow: hidden;
}
.cta-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12; z-index: 0;
  max-height: none !important;
}
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner-numeral {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: var(--primary);
  margin-bottom: 8px; user-select: none;
}
.cta-banner-num {
  position: absolute; top: 24px; right: clamp(20px, 4vw, 48px); z-index: 3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700; line-height: 0.85;
  letter-spacing: -0.04em; color: rgba(56,133,74,0.18);
  user-select: none;
}
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; display: block;
}
.cta-banner-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 20px; max-width: 20ch;
}
.cta-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 20px; max-width: 20ch;
}
.cta-banner-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6;
  color: rgba(255,255,255,0.65); max-width: 48ch; margin-bottom: 36px;
}
.cta-banner-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.03em; color: var(--primary);
  text-decoration: none; display: block; margin-bottom: 32px;
}
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cta-banner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 20px;
}

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

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: clamp(48px, 6vh, 72px);
}

.footer-brand img { margin-bottom: 20px; }
.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.footer-brand-tagline, .footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-brand-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

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

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-contact-item {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3); display: block; margin-bottom: 2px;
}
.footer-contact-value { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-contact-line { color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact-line svg { width: 14px; height: 14px; }

.footer-phone-link {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600; color: #fff;
  text-decoration: none; transition: color 150ms;
}
.footer-phone-link:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright, .footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.35);
  text-decoration: none; letter-spacing: 0.06em;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }

.footer-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
}
.footer-rating-stars { color: var(--primary); letter-spacing: 1px; }
.footer-rating svg { width: 14px; height: 14px; fill: var(--primary); color: var(--primary); }

.footer-col { display: flex; flex-direction: column; }
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
  line-height: 1.2;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-family: 'IBM Plex Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 150ms; }
.footer-col ul a:hover { color: #fff; text-decoration: none; }
.footer-col ul li { color: rgba(255,255,255,0.6); font-family: 'IBM Plex Sans', sans-serif; font-size: 14px; }

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

/* ─── MOBILE CALL PILL ───────────────────────────────────────────────────── */
.mobile-call, .mobile-cta, .mobile-sticky-cta, .mobile-sticky-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex;
}

.mobile-call a, .mobile-cta a, .mobile-sticky-cta a, .mobile-sticky-call a,
a.mobile-call, a.mobile-cta, a.mobile-sticky-cta, a.mobile-sticky-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 150ms;
}
.mobile-call a:hover, .mobile-cta a:hover,
.mobile-sticky-cta a:hover, .mobile-sticky-call a:hover {
  filter: brightness(0.9); transform: translateY(-2px); color: #fff; text-decoration: none;
}
.mobile-call svg, .mobile-cta svg, .mobile-sticky-cta svg, .mobile-sticky-call svg,
.mobile-call a svg, .mobile-cta a svg, .mobile-sticky-cta a svg, .mobile-sticky-call a svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

/* ─── LIGHTBOX ───────────────────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(12,12,15,0.92);
  align-items: center; justify-content: center;
  padding: 32px;
}
#lightbox.active { display: flex; }
.lightbox-img { max-height: 85vh; max-width: 90vw; object-fit: contain; border-radius: 4px; }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.6); text-align: center;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 28px;
  cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 150ms;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); }

/* ─── ANIMATION UTILITIES ────────────────────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.fade-right { opacity: 0; transform: translateX(28px);  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.scale-in   { opacity: 0; transform: scale(0.92); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ─── PROCESS STRIP (required pattern) ──────────────────────────────────── */
.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: 4px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ─── REVIEW CARDS (required pattern) ───────────────────────────────────── */
.review-card { padding: 28px; border-radius: 4px; background: var(--surface); }
.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; }

/* ─── SERVICE CARD HOVER ─────────────────────────────────────────────────── */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ─── MISC SVG CAPS ──────────────────────────────────────────────────────── */
.faq-chevron svg { width: 14px; height: 14px; }
.gallery-card-meta-item svg { width: 14px; height: 14px; }
.info-stars svg { width: 18px; height: 18px; }
.footer-contact-item svg { width: 14px; height: 14px; }
.footer-contact-line svg { width: 14px; height: 14px; }
.footer-phone-link svg { width: 18px; height: 18px; }
.footer-rating svg { width: 14px; height: 14px; }
.btn-submit svg { width: 18px; height: 18px; }
.nav-cta svg { width: 16px; height: 16px; }
.cta-phone svg { width: 20px; height: 20px; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
#contact-area { padding: clamp(88px, 11vh, 144px) 0; background: var(--canvas); }

/* ─── SECTION .contact (standalone) ─────────────────────────────────────── */
section#contact.contact > .contact-inner > .contact-header {
  margin-bottom: 48px;
}

/* ─── RESPONSIVE HELPERS ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
  .contact-data-row { grid-template-columns: 1fr; gap: 4px; }
  .about-section-inner { gap: 40px; }
  .founder-callout-inner { gap: 24px; }
}


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