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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #1C542C;
  --accent:         #32613F;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --ink-mid:        #3A3A3F;
  --border:         rgba(12,12,15,0.12);
  --border-strong:  rgba(12,12,15,0.22);
  --primary-dark:   #163f21;
  --primary-light:  #2a7a40;
  --surface-2:      #EAE8E3;
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.07);
  --shadow-md:      0 8px 28px rgba(12,12,15,0.10);
  --shadow-lg:      0 18px 48px rgba(12,12,15,0.14);
  --header-height:  72px;
  --radius:         4px;
  --radius-pill:    999px;
  --section-py:     clamp(88px, 11vh, 144px);
  --content-max:    1280px;
  --wide-max:       1400px;
}

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

/* ============================================================
   GLOBAL RESET + SMOOTH SCROLL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 400; background: var(--canvas); color: var(--ink); line-height: 1.65; overflow-x: hidden; }

/* ============================================================
   UNIVERSAL IMAGE CAP — MANDATORY
   ============================================================ */
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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY BASE
   ============================================================ */
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);
}
h1 { font-size: clamp(48px, 7vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); line-height: 1.1; }
h4 { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.25; letter-spacing: -0.01em; }

p { line-height: 1.68; }
strong { font-weight: 600; }
em { font-style: italic; }

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

/* Mono label utility */
.mono-label, .section-eyebrow, .page-header-eyebrow, .hero-eyebrow,
.service-body-eyebrow, .gallery-section-label, .gallery-feature-label,
.cta-banner-eyebrow, .cta-banner-label, .about-eyebrow,
.contact-data-label, .info-card-label, .info-block-label,
.footer-col-heading, .footer-col-title, .footer-brand-name {
  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);
  display: block;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.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; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

.nav-pages { flex: 1; display: flex; justify-content: center; }
.nav-pages ul { list-style: none; padding: 0; margin: 0; display: flex; 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;
  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: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }

.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;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); 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 ul { flex-direction: column; gap: 0; }
  .nav-pages a { padding: 12px 0; font-size: 16px; width: 100%; }
  .nav-cta span { display: none; }
}

/* ============================================================
   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: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, filter 180ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--primary); color: #fff; border: 2px solid var(--primary);
}
.btn-primary:hover { filter: brightness(0.92); color: #fff; }

.btn-outline {
  background: transparent; color: var(--ink); border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--canvas); }

.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-form, .btn-submit {
  width: 100%; background: var(--primary); color: #fff;
  border: none; padding: 16px 28px; border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: filter 180ms;
}
.btn-form:hover, .btn-submit:hover { filter: brightness(0.9); }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: filter 150ms, transform 150ms;
}
.btn-service:hover { filter: brightness(0.92); transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-service svg { width: 16px; height: 16px; }

.btn-gallery-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink);
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 600; font-size: 13px;
  text-decoration: none;
  transition: background 150ms;
}
.btn-gallery-link:hover { background: var(--surface); color: var(--ink); text-decoration: none; }
.btn-gallery-link svg { width: 14px; height: 14px; }

.btn-info-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: filter 150ms;
}
.btn-info-call:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.btn-info-call svg { width: 16px; height: 16px; }

/* ============================================================
   SECTION INDEX NUMERALS — The Design System
   ============================================================ */
.section-numeral, .hero-numeral, .about-numeral,
.cta-banner-numeral, .cta-banner-index,
.page-header-numeral, .info-card-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);
  pointer-events: none;
  user-select: none;
}

.section-header .section-numeral { margin-bottom: -8px; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  background: var(--ink);
}
#hero.hero > img:first-of-type,
#hero.hero .hero-bg {
  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(180deg, rgba(12,12,15,0.50) 0%, rgba(12,12,15,0.70) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px) clamp(64px, 8vh, 100px);
  display: flex; flex-direction: column; gap: 0;
  min-height: 92vh; justify-content: flex-end;
}

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

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

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 8.5vw, 128px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}

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

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.hero-ctas .btn { font-size: 15px; }
.hero-ctas svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.trust-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  white-space: nowrap;
}
.trust-pill-featured {
  background: var(--primary); color: #fff; border-color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   SECTION HEADER SHARED
   ============================================================ */
.section-header {
  margin-bottom: clamp(40px, 5vh, 64px);
}
.section-header .section-eyebrow { margin-bottom: 8px; }
.section-title {
  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);
  margin-top: 4px;
  max-width: 18ch;
}
.section-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  max-width: 56ch;
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.service-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  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);
  z-index: 2;
  text-decoration: none;
  color: var(--ink);
}
.service-card > img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center;
  display: block;
  flex-shrink: 0;
  max-height: 220px;
  filter: grayscale(20%);
  transition: filter 300ms;
}
.service-card:hover > img { filter: grayscale(0%); }

.service-card-body {
  padding: 24px 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.service-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}
.service-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.service-card-arrow {
  display: flex; align-items: center;
  margin-top: 12px;
  color: var(--primary);
}
.service-card-arrow svg { width: 20px; height: 20px; transition: transform 200ms; }
.service-card:hover .service-card-arrow svg { transform: translateX(4px); }

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

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail { padding: var(--section-py) 0; }

.service-block {
  padding: clamp(56px, 7vh, 88px) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-of-type { border-bottom: none; }
.surface-row { background: var(--surface); }

.service-block-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }

.service-photo-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.service-photo-wrap img {
  width: 100%; height: clamp(280px, 40vh, 480px);
  object-fit: cover; max-height: none;
  display: block;
}
.service-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px; font-weight: 700;
  line-height: 0.85; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  pointer-events: none;
}

.service-body { display: flex; flex-direction: column; gap: 14px; }
.service-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 8px;
}
.service-body-eyebrow { margin-bottom: 4px; }
.service-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.65; }

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

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
}

/* ============================================================
   GALLERY PREVIEW (index page)
   ============================================================ */
.gallery-preview {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.gallery-feature-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
.gallery-feature-wrap > img {
  width: 100%; height: clamp(320px, 50vh, 560px);
  object-fit: cover; display: block; max-height: none;
}
.gallery-feature-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(12,12,15,0.75) 0%, transparent 100%);
}
.gallery-feature-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.gallery-section-header {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  margin-bottom: 32px;
}
.gallery-section-label { margin-bottom: 8px; }
.gallery-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 0.96;
}

.gallery-filters {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 8px 18px; cursor: pointer; background: transparent;
  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 {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  grid-column: auto;
}
.gallery-tile > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease-out, filter 400ms;
  filter: grayscale(15%);
}
.gallery-tile:hover > img { transform: scale(1.04); filter: grayscale(0%); }

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

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

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

.gallery-tile-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.gallery-tile-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 600;
  color: #fff; line-height: 1.2;
}
.gallery-tile-location {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-top: 4px; display: flex; align-items: center; gap: 4px;
}
.gallery-tile-location svg { width: 12px; height: 12px; flex-shrink: 0; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.faq-list { margin-top: 0; }

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

.faq-list details summary {
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: -0.015em;
  line-height: 1.3;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  color: var(--ink);
  transition: color 150ms;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: "+";
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300; font-size: 24px; line-height: 1;
  flex-shrink: 0; transition: transform 200ms, color 200ms;
  color: var(--muted);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg); color: var(--primary);
}
.faq-list details[open] summary { color: var(--primary); }

.faq-chevron { width: 0; height: 0; display: none; }

.faq-answer {
  font-size: 15px; line-height: 1.68;
  color: var(--ink-mid);
  padding-bottom: 22px;
  max-width: 72ch;
}

/* ============================================================
   CONTACT SECTION (index page)
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.contact-grid {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 16px; }

.contact-info-col { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }

.contact-data-group { display: flex; flex-direction: column; gap: 4px; }
.contact-data-label { margin-bottom: 6px; }
.contact-data-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--ink);
}
.contact-data-value a { color: var(--ink); }
.contact-data-value a:hover { color: var(--primary); text-decoration: none; }
.contact-data-value-sm {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500; color: var(--ink);
  line-height: 1.4;
}
.contact-data-value-sm a { color: var(--ink); }
.contact-data-value-sm a:hover { color: var(--primary); text-decoration: none; }
.contact-data-sub {
  font-size: 13px; color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}
.contact-quote {
  border-left: 3px solid var(--primary);
  padding: 16px 0 16px 20px;
}
.contact-quote-text { font-size: 16px; color: var(--ink-mid); line-height: 1.6; font-style: italic; }
.contact-quote-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-top: 8px; display: block;
}

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

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.contact-form-block {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-form-block .section-numeral { margin-bottom: -4px; }
.contact-form-block .section-eyebrow { margin-bottom: 4px; }
.contact-intro {
  font-size: 15px; color: var(--muted);
  line-height: 1.6; max-width: 48ch;
  margin-bottom: 8px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.contact-form .full-width { grid-column: 1 / -1; }
.form-submit { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 8px; }
.form-note { font-size: 12px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: calc(var(--header-height) + 24px);
}
.info-card-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--primary); display: block;
}
.info-card-label { margin-bottom: -8px; }

.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-block-label { color: var(--muted); }
.info-block a {
  font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none;
  transition: color 150ms;
}
.info-block a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.info-block-text { font-size: 15px; color: var(--ink-mid); line-height: 1.55; }

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

.info-cta-strip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border-radius: var(--radius);
  padding: 16px 20px; gap: 12px;
  margin-top: 8px;
}
.info-cta-strip p { font-size: 14px; color: var(--ink-mid); font-weight: 500; flex: 1; }

/* ============================================================
   FORMS (shared)
   ============================================================ */
.form-group, .form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-label, .form-group label, .form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.form-input,
.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select,
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.form-input:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28,84,44,0.12);
}
.form-textarea,
.form-group textarea, .form-field textarea, .contact-form textarea {
  min-height: 120px; resize: vertical;
}
.cta-banner-form input,
.cta-banner-form select,
.cta-banner-form textarea {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.cta-banner-form input::placeholder { color: rgba(255,255,255,0.45); }
.cta-banner-form input:focus,
.cta-banner-form select:focus,
.cta-banner-form textarea:focus {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

/* ============================================================
   FORM ROW
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; 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.9' 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.04; pointer-events: none;
}
.cta-banner-numeral {
  position: absolute; right: -20px; top: -40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(200px, 25vw, 340px);
  font-weight: 700; letter-spacing: -0.06em; line-height: 0.8;
  color: rgba(28,84,44,0.18);
  pointer-events: none; user-select: none;
  z-index: 0;
}
.cta-banner-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  position: relative; z-index: 1;
}
.cta-banner-left { display: flex; flex-direction: column; gap: 16px; }
.cta-banner-index {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--primary); display: block; margin-bottom: 8px;
}
.cta-banner-eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.cta-banner-title, .cta-banner-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 0.96;
  color: #fff;
}
.cta-banner-title em, .cta-banner-headline em { font-style: italic; color: var(--primary-light); }
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 48ch; }
.cta-banner-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: #fff; text-decoration: none;
  transition: color 150ms;
}
.cta-banner-phone:hover { color: var(--primary-light); text-decoration: none; }
.cta-banner-label { color: rgba(255,255,255,0.55); }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.cta-banner-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-banner-actions .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cta-banner-actions a { text-decoration: none; }

.cta-banner-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.cta-banner-form h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.cta-banner-form label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); display: block; margin-bottom: 5px;
}
.cta-banner-form .form-group { gap: 4px; }
.cta-banner-form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.cta-banner-form select option { background: var(--ink); color: #fff; }

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.about-grid {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 20px; }
.about-numeral { color: var(--primary); margin-bottom: -8px; }
.about-eyebrow { margin-bottom: 0; }
.about-left h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px; max-width: 16ch;
}
.about-body { display: flex; flex-direction: column; gap: 14px; }
.about-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.68; }
.about-quote-block {
  border-left: 3px solid var(--primary);
  padding: 14px 0 14px 20px;
}
.about-quote { font-size: 17px; font-style: italic; color: var(--ink-mid); line-height: 1.55; }
.about-quote-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-top: 8px; display: block;
}
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.about-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); padding: 7px 14px;
}

.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-photo-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.about-photo-wrap img {
  width: 100%; height: clamp(280px, 45vh, 500px);
  object-fit: cover; display: block; max-height: none;
}
.about-photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: var(--primary);
  padding: 8px 14px; border-radius: var(--radius);
}

.about-service-list { display: flex; flex-direction: column; gap: 0; }
.about-service-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.about-service-item:first-child { border-top: 1px solid var(--border); }
.about-service-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

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

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.service-area-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.service-area-inner .section-numeral { margin-bottom: -4px; }
.service-area-inner h2 { font-size: clamp(30px, 4vw, 52px); margin-top: 8px; }
.section-body { font-size: 16px; color: var(--ink-mid); line-height: 1.65; margin-top: 12px; }

.area-counties {
  display: flex; flex-direction: column; gap: 0;
}
.area-county {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.area-county:first-child { border-top: 1px solid var(--border); }
.area-county-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--primary); letter-spacing: -0.04em;
  grid-row: 1 / 3; align-self: center;
}
.area-county-name {
  font-weight: 600; font-size: 15px; color: var(--ink);
  grid-column: 2;
}
.area-county-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  grid-column: 2;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vh, 480px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,12,15,0.38) 0%, rgba(12,12,15,0.68) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin: 0 auto;
  padding: clamp(48px, 6vh, 72px) clamp(20px, 4vw, 48px) clamp(40px, 5vh, 60px);
  display: flex; flex-direction: column; gap: 12px;
}
.page-header-eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 0; }
.page-header-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 700; letter-spacing: -0.035em;
  line-height: 0.92; color: #fff;
  max-width: 16ch;
}
.page-header-title em { font-style: italic; color: var(--primary-light); }
.page-header-title span { color: var(--primary-light); }
.page-header-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.85;
  color: var(--primary); display: block; margin-bottom: 4px;
}
.page-header-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.68); line-height: 1.55;
  max-width: 52ch; margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(64px, 8vh, 96px) 0 0;
}
.footer-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p, .footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: -0.01em;
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-heading, .footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.62);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover, .footer-col a:hover { color: #fff; text-decoration: none; }
.footer-links span { font-size: 14px; color: rgba(255,255,255,0.38); }

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

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

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

.mobile-sticky-cta a {
  display: flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none;
}
.mobile-sticky-cta a:hover { color: #fff; text-decoration: none; }

@media (min-width: 900px) {
  .mobile-call-pill, .mobile-call, .mobile-cta, .mobile-sticky-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 > * { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }

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

/* ============================================================
   SURFACE ROW UTILITY
   ============================================================ */
.surface-row { background: var(--surface); }

/* ============================================================
   SVG CAPS — prevent unsized SVGs from blowing up layout
   ============================================================ */
.hero-ctas svg,
.nav-cta svg,
.mobile-call svg,
.mobile-cta svg,
.mobile-call-pill svg,
.mobile-sticky-cta svg,
.service-card-arrow svg,
.btn-service svg,
.btn-gallery-link svg,
.btn-info-call svg,
.faq-chevron,
.faq-list details summary svg,
.gallery-tile-location svg,
.cta-banner-actions svg,
.info-cta-strip svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Explicit nav cta icon */
.nav-cta-icon { width: 16px; height: 16px; }

/* Prevent any stray svg from blowing out grid/flex containers */
svg { max-width: 100%; display: inline-block; }

/* ============================================================
   MARQUEE (thin strip default)
   ============================================================ */
.marquee {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee: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(13px, 1.4vw, 18px);
  line-height: 1.2;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   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);
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-top: 8px;
}

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

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

/* ============================================================
   FAQ (reusable details pattern)
   ============================================================ */
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; }

/* ============================================================
   TABLES — scoped dark headers
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink); color: #fff;
}
.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: transparent; color: var(--ink);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .contact-grid { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .cta-banner-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-form { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}


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