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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #5CB46C;
  --accent:         #5CAC70;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --muted:          #5C6068;
  --ink-mid:        #2E3540;
  --border:         rgba(92,180,108,0.22);
  --border-light:   rgba(20,24,29,0.10);
  --primary-dark:   #459958;
  --primary-faint:  rgba(92,180,108,0.08);
  --shadow-sm:      0 2px 8px rgba(20,24,29,0.07);
  --shadow-md:      0 8px 32px rgba(20,24,29,0.10);
  --shadow-lg:      0 18px 48px -12px rgba(20,24,29,0.16);
  --radius:         4px;
  --radius-card:    4px;
  --header-height:  72px;
  --section-pad:    clamp(80px, 10vh, 128px);
  --max-w:          1320px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* Universal image cap — no <img> may overflow its container, ever */
img { max-width: 100%; height: auto; display: block; }

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

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

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

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a, [class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[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; }
}

h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

h1 { font-size: clamp(40px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(18px, 2vw, 26px); }

p { line-height: 1.7; }

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

strong { font-weight: 700; }

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section-inner, .contact-inner, .faq-inner, .gallery-inner,
.footer-inner, .top-nav, .cta-banner-inner, .team-cta-inner, .services-detail-header {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

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

.top-nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-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 { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages li.active > a,
.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: var(--surface);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--surface); text-decoration: none; }
.nav-cta-text { display: inline; }
.nav-cta-icon { display: none; }
.nav-cta svg { width: 18px; height: 18px; flex: 0 0 auto; }

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

@media (max-width: 900px) {
  .top-nav { padding-left: 20px; padding-right: 20px; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    z-index: 899;
    box-shadow: 0 8px 24px rgba(20,24,29,0.10);
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }
  .nav-cta-text { display: none; }
  .nav-cta-icon { display: flex; align-items: center; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-ghost, .btn-ink, .btn-submit, .btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
  white-space: nowrap;
}
.btn svg, .btn-primary svg, .btn-outline svg, .btn-ghost svg, .btn-submit svg, .btn-service svg {
  width: 18px; height: 18px; flex: 0 0 auto;
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-light);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

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

.btn-submit {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.btn-submit:hover { filter: brightness(0.92); color: var(--surface); text-decoration: none; }

.btn-service {
  background: var(--primary-faint);
  color: var(--primary-dark);
  border-color: var(--border);
  font-size: 14px;
  padding: 10px 18px;
}
.btn-service:hover { background: var(--primary); color: var(--surface); text-decoration: none; }

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

.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 {
  padding: clamp(64px, 8vh, 112px) clamp(24px, 5vw, 80px) clamp(64px, 8vh, 96px);
  max-width: 860px;
}

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

.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--surface);
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(247,246,242,0.78);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

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

.hero-trust-chips .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.9);
  background: rgba(20,24,29,0.5);
  border: 1px solid rgba(92,180,108,0.45);
  border-radius: var(--radius);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .hero-inner { padding: 48px 20px 56px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

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

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  flex: 0 0 auto;
}
.trust-badge svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--primary); }

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-chip svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--primary); }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  overflow: hidden;
  padding: 20px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

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

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1.2;
  color: rgba(247,246,242,0.55);
}
.marquee-item.accent { color: var(--primary); }

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

/* ============================================================
   SECTION EYEBROW / LABELS
   ============================================================ */
.section-eyebrow, .section-label, .page-eyebrow,
.service-eyebrow, .faq-eyebrow, .cta-eyebrow,
.info-card-eyebrow, .contact-section-eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title, .faq-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub, .contact-section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES — BENTO GRID (6 cards)
   ============================================================ */
#services .section-inner { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.service-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 300ms, transform 300ms;
  flex: 0 0 auto;
  max-height: 200px;
}
.service-card:hover > img { filter: grayscale(0%); transform: scale(1.03); }

.service-card.featured { grid-column: span 2; }
.service-card.featured > img { height: 260px; max-height: 260px; }

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

.service-card-body h3 {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

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

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

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

@media (max-width: 900px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; }
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.services-detail-header {
  margin-bottom: 64px;
}
.services-detail-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.025em;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto clamp(48px, 7vh, 96px);
  padding: 0 clamp(20px, 4vw, 48px);
}

.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }

.feature-block-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border-light);
  aspect-ratio: 4 / 3;
}
.feature-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-index-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(20,24,29,0.6);
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.feature-block-body { display: flex; flex-direction: column; gap: 16px; }
.feature-block-body h2 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
}
.feature-block-body p { font-size: 16px; color: var(--muted); line-height: 1.7; }
.feature-block-body .service-eyebrow { margin-bottom: 0; }

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .feature-block:nth-child(even) { direction: ltr; }
  .feature-block-photo { aspect-ratio: 16/9; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 38vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-overlay {
  background: rgba(20,24,29,0.52);
  position: absolute; inset: 0; z-index: 1;
}
.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

.page-header-inner, .page-header-content {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vh, 72px) clamp(24px, 5vw, 80px) clamp(36px, 5vh, 64px);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.page-header-title, h1.page-header-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin-bottom: 12px;
}
.page-header-eyebrow, .page-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(247,246,242,0.78);
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: var(--border-light);
  border-radius: var(--radius);
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 300ms;
  filter: grayscale(10%);
}
.gallery-tile:hover > img { transform: scale(1.05); filter: grayscale(0%); }

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

/* Gallery page */
.gallery-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--canvas);
}

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

.gallery-heading h2 {
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.025em;
}

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

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

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border-light);
}
.gallery-card-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 350ms;
}
.gallery-card:hover .gallery-card-photo > img { transform: scale(1.04); }

.gallery-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 2;
}
.gallery-card-index {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247,246,242,0.7);
  background: rgba(20,24,29,0.5);
  padding: 3px 8px;
  border-radius: var(--radius);
  z-index: 2;
}

.gallery-card-body { padding: 18px 20px 20px; }
.gallery-card-body h3 { font-size: 15px; margin-bottom: 6px; }
.gallery-card-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.gallery-card-loc svg { width: 13px; height: 13px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }

.gallery-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 3px 8px;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--canvas);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.faq-title { margin-bottom: 40px; }

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

details {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
details > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  line-height: 1.3;
}
details > summary::-webkit-details-marker { display: none; }
details > summary .faq-chevron {
  width: 20px; height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}
details[open] > summary .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body, .faq-answer {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 68ch;
}

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

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta-band {
  background: var(--ink);
  padding: clamp(48px, 7vh, 80px) clamp(24px, 5vw, 80px);
}
.team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.team-cta-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--surface);
}
.team-cta-text span { color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(48px, 8vh, 96px) 0;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-banner-text h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--surface);
  margin-bottom: 28px;
}
.cta-banner-text .cta-eyebrow { color: var(--primary); }
.cta-title { font-size: clamp(28px, 3.5vw, 52px); color: var(--surface); margin-bottom: 8px; }
.cta-sub { color: rgba(247,246,242,0.6); font-size: 16px; margin-bottom: 28px; }

.cta-banner-ctas, .cta-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.cta-banner-form {
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  padding: 32px;
}
.cta-banner-form h3 {
  font-size: 18px; margin-bottom: 24px; letter-spacing: -0.01em;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--surface);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 150ms;
}
.cta-phone-link:hover { color: var(--primary); text-decoration: none; }

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--surface);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.contact-form-side {}
.contact-section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}

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

.contact-info {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--primary);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-info-val, .info-item-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-val.small, .info-item-value.small { font-size: 13px; color: var(--muted); }
.contact-info-val a, .info-item-value a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.contact-info-val a:hover, .info-item-value a:hover { color: var(--primary); }

.contact-info-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
}

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

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-item:last-child { border-bottom: none; }
.info-item-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.info-divider { border: none; border-top: 1px solid var(--border-light); margin: 8px 0; }

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

.response-note {
  background: var(--primary-faint);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }

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

.form-input, input[type="text"], input[type="email"], input[type="tel"], input[type="phone"],
.form-select, select, .form-textarea, textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, input:focus, .form-select:focus, select:focus, .form-textarea:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92,180,108,0.15);
}

.form-textarea, textarea { min-height: 128px; resize: vertical; }
.form-select, select { cursor: pointer; }

.form-check, .form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}
.form-check input[type="checkbox"], .form-privacy input[type="checkbox"] {
  width: 18px; height: 18px; flex: 0 0 auto;
  accent-color: var(--primary);
  margin-top: 1px;
  cursor: pointer;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--surface);
  padding: var(--section-pad) 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.about-story-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-story-portrait > img {
  width: 100%;
  object-fit: cover;
  max-height: 560px;
  filter: grayscale(15%);
  border-radius: var(--radius);
}
.about-story-portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.about-story-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 24px;
}
.about-story-body .section-label { margin-bottom: 20px; }
.about-story-body p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--canvas);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 21px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

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

/* Values section */
.values-section {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.values-header { margin-bottom: 48px; }
.values-header h2 { font-size: clamp(28px, 3.5vw, 52px); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  padding: 28px;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card h3 { font-size: 16px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.value-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* Timeline section */
.timeline-section {
  background: var(--surface);
  padding: var(--section-pad) 0;
}
.timeline-header { margin-bottom: 48px; }
.timeline-header h2 { font-size: clamp(28px, 3.5vw, 52px); }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  position: relative;
  padding-top: 52px;
  padding-right: 24px;
}
.timeline-dot {
  position: absolute;
  top: 8px; left: 0;
  width: 24px; height: 24px;
  background: var(--canvas);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-dot-inner {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.timeline-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-step h3 { font-size: 16px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr; gap: 32px; }
  .timeline-track::before { display: none; }
  .timeline-step { padding-left: 40px; padding-top: 0; }
  .timeline-dot { top: 0; }
}

/* About structured section */
.about-structured {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.about-structured-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.about-structured-left h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 24px; }
.about-structured-right p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.about-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-service-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 8px 14px;
}

.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: -0.01em;
  transition: gap 200ms;
}
.about-contact-link:hover { gap: 14px; text-decoration: none; }
.about-contact-link svg { width: 18px; height: 18px; }

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

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

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
}
.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; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.72);
  padding: 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 48px) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 48px !important; max-width: 160px !important; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-col img { max-height: 44px !important; max-width: 160px !important; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-brand-name, .footer-biz-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--surface);
  letter-spacing: -0.01em;
}
.footer-brand-name p, .footer-brand > p { color: rgba(247,246,242,0.72); }

.footer-tagline {
  font-size: 14px;
  color: rgba(247,246,242,0.55);
  line-height: 1.5;
  max-width: 32ch;
}

.footer-contact-links { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.footer-contact-links a {
  font-size: 14px;
  color: rgba(247,246,242,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-links a:hover { color: var(--primary); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; }
.footer-col h4, .footer-col-title, .footer-col-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.4);
  margin-bottom: 20px;
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  line-height: 1.8;
}
.footer-col address a { color: rgba(247,246,242,0.65); }
.footer-col address a:hover { color: var(--primary); text-decoration: none; }

.footer-links, .footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a, .footer-nav-list a {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  text-decoration: none;
  transition: color 150ms;
  line-height: 1.5;
}
.footer-links a:hover, .footer-nav-list a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-block { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.35);
}
.footer-contact-value {
  font-size: 14px;
  color: rgba(247,246,242,0.7);
}
.footer-contact-value a { color: rgba(247,246,242,0.7); text-decoration: none; }
.footer-contact-value a:hover { color: var(--primary); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(247,246,242,0.35); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 13px; color: rgba(247,246,242,0.35); text-decoration: none; }
.footer-legal a:hover { color: var(--primary); text-decoration: none; }

.footer-bottom > span:first-child,
.footer-bottom > p:first-child { font-size: 13px; color: rgba(247,246,242,0.35); }

.footer-phone, .footer-email { display: none; }
.footer-phone-link, .footer-email-link, .footer-brand-phone, .footer-brand-email {
  font-size: 14px; color: rgba(247,246,242,0.65); text-decoration: none;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE CALL PILL / CTA
   ============================================================ */
.mobile-call-pill, .mobile-cta-sticky, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--surface);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: filter 150ms, transform 150ms;
}
.mobile-call-pill svg, .mobile-cta svg, .mobile-cta-sticky svg,
.mobile-call-pill > a svg, .mobile-cta > a svg {
  width: 20px; height: 20px; flex: 0 0 auto; color: var(--surface);
}
.mobile-cta > a, .mobile-cta-sticky > a {
  display: flex; align-items: center; gap: 10px;
  color: var(--surface); text-decoration: none;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
}
.mobile-call-pill:hover, .mobile-cta:hover, .mobile-cta-sticky:hover {
  filter: brightness(0.92); transform: translateY(-2px); text-decoration: none; color: var(--surface);
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.stagger .fade-up:nth-child(2) { transition-delay: 100ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 180ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 260ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 340ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 420ms; }

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

/* Elements already marked visible on load */
.hero-eyebrow.visible, .hero-sub.visible, .hero-ctas.visible, .hero-trust-chips.visible {
  opacity: 1; transform: none;
}

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

/* ============================================================
   TABLE
   ============================================================ */
.services-table { width: 100%; border-collapse: collapse; }
.services-table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; }
.services-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.services-table thead .col-service { background: var(--ink); color: var(--surface); }
.services-table thead .col-desc { background: var(--ink); color: var(--surface); }
.services-table thead .col-timeline { background: var(--ink); color: var(--surface); }
.services-table thead .col-price { background: var(--ink); color: var(--surface); }
.services-table tbody .col-service { background: var(--surface); color: var(--ink); }
.services-table tbody .col-desc { background: var(--surface); color: var(--ink-mid); }
.services-table tbody .col-timeline { background: var(--surface); color: var(--ink-mid); }
.services-table tbody .col-price { background: var(--surface); color: var(--ink); font-weight: 600; }

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.accent { color: var(--primary); }
.small { font-size: 13px; }
.featured { }

.section-heading h2, h2.section-heading {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 16px;
}

/* Section label — IBM Plex Mono, small, uppercase */
.meta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-val { font-size: 14px; font-weight: 600; color: var(--ink); }

/* ============================================================
   MOBILE BREAKPOINTS
   ============================================================ */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .section-title { font-size: clamp(28px, 8vw, 48px); }
  .team-cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-cta-row { justify-content: flex-start; }
  details > summary { font-size: 15px; }
  .about-story-portrait > img { max-height: 320px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.feature-block-photo { grid-column: 1 / -1; }
.feature-block-body { grid-column: 1 / -1; }
.cta-eyebrow { grid-column: 1 / -1; }
.cta-title { grid-column: 1 / -1; }
.cta-sub { grid-column: 1 / -1; }
.cta-phone-link { grid-column: 1 / -1; }
.cta-actions { 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; }
