@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;600;700&family=Fraunces:ital,wght@1,300;1,400;1,500&family=Inter+Tight:wght@400;500;600&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --primary:        #5DA15D;
  --primary-dark:   #4a8a4a;
  --primary-deeper: #305330;
  --accent:         #305330;
  --canvas:         #0E0E0E;
  --surface:        #1A1A1A;
  --surface-2:      #242424;
  --surface-3:      #2e2e2e;
  --ink:            #FFFFFF;
  --ink-mid:        rgba(255,255,255,0.80);
  --muted:          rgba(255,255,255,0.55);
  --border:         rgba(255,255,255,0.10);
  --border-brand:   rgba(93,161,93,0.45);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::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 { background: var(--canvas); color: var(--ink); font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: 16.5px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a { color: inherit; text-decoration: none; border-bottom: 0; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── UNIVERSAL IMAGE CAP ─────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }
section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) { max-height: 640px; object-fit: cover; }
.nav img, header img, .header img, .nav-logo img, .logo img { max-height: 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; z-index: 0; }
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) { 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; 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; }
.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; }
}

/* ─── 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 80ms linear;
}

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.container       { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wide-container  { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.bleed           { width: 100%; }
.section-inner   { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ─── TYPOGRAPHY UTILITIES ────────────────────────────────────────────────── */
.section-label,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; display: block; }

.section-heading,
.gallery-heading { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(36px, 5vw, 72px); line-height: 1.0; letter-spacing: -0.025em; color: var(--ink); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-cta-primary,
.btn-submit,
.btn-service { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: var(--primary); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; text-decoration: none; border: none; cursor: pointer; transition: background 200ms, transform 150ms; white-space: nowrap; }
.btn:hover, .btn-primary:hover, .btn-cta-primary:hover, .btn-submit:hover, .btn-service:hover { background: var(--primary-dark); text-decoration: none; transform: translateY(-1px); color: #fff; }
.btn-cta-secondary,
.btn-ghost,
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: transparent; color: var(--ink); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; text-decoration: none; border: 1px solid var(--border); cursor: pointer; transition: border-color 200ms, color 200ms, transform 150ms; white-space: nowrap; }
.btn-cta-secondary:hover, .btn-ghost:hover, .btn-outline:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; transform: translateY(-1px); }
.btn-phone,
.btn-white { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: #fff; color: var(--canvas); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; text-decoration: none; transition: background 200ms; }
.btn-phone:hover, .btn-white:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn svg, .btn-primary svg, .btn-cta-primary svg, .btn-cta-secondary svg, .btn-ghost svg, .btn-phone svg, .btn-service svg, .btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── SITE HEADER ─────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 900; background: var(--canvas); border-bottom: 1px solid rgba(255,255,255,0.07); }
.top-nav { height: var(--header-height); max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: flex; align-items: center; gap: 32px; }
.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-pages { flex: 1; display: flex; justify-content: center; }
.nav-pages ul { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-pages a { display: inline-block; padding: 6px 0; font-size: 14px; font-weight: 600; font-family: 'Archivo', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); 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; }
.nav-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--primary); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 0; transition: background 200ms; white-space: nowrap; }
.nav-cta a:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero.hero { min-height: 96vh; display: flex; align-items: flex-end; background: var(--canvas); }
.hero-overlay { background: linear-gradient(to top, rgba(14,14,14,0.96) 0%, rgba(14,14,14,0.55) 40%, rgba(48,83,48,0.12) 100%); }
.hero-ribbon { position: absolute; top: clamp(18px, 3vh, 36px); right: clamp(18px, 3vw, 48px); z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--border-brand); background: rgba(14,14,14,0.72); backdrop-filter: blur(8px); }
.ribbon-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(93,161,93,0.7); } 50% { box-shadow: 0 0 0 6px rgba(93,161,93,0); } }
.ribbon-text { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.hero-inner { padding: clamp(56px, 8vh, 120px) clamp(24px, 5vw, 96px); max-width: 1440px; width: 100%; }
.hero-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 2px; background: var(--primary); flex-shrink: 0; }
.hero-title { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(56px, 8vw, 132px); line-height: 0.96; letter-spacing: -0.03em; color: var(--ink); max-width: 18ch; margin-bottom: 28px; }
.hero-sub { font-size: clamp(16px, 1.8vw, 20px); color: var(--ink-mid); max-width: 52ch; margin-bottom: 36px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust-chips .trust-chip { display: inline-flex; align-items: center; padding: 7px 14px; border: 1px solid var(--border-brand); background: rgba(14,14,14,0.6); backdrop-filter: blur(6px); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); gap: 7px; border-radius: 0; }

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.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; background: var(--surface); }
.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: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(13px, 1.4vw, 18px); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); line-height: 1.2; display: inline-flex; align-items: center; gap: 20px; }
.marquee-item::after { content: '✦'; color: var(--primary); font-size: 10px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip { background: var(--surface); padding: clamp(40px, 6vh, 72px) 0; }
.trust-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 32px; align-items: start; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px 16px; border: 1px solid var(--border); background: var(--surface-2); transition: border-color 250ms, background 250ms; }
.trust-badge:hover { border-color: var(--border-brand); background: var(--surface-3); }
.trust-badge-icon { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; }
.trust-badge svg { width: 32px; height: 32px; color: var(--primary); }

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.services { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.services-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.services-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.services-header .section-label { margin-bottom: 12px; }
.services-header .section-heading { font-size: clamp(36px, 5vw, 64px); }
.services-tabs { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-end; padding-bottom: 4px; }
.service-tab { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 10px 18px; border: 1px solid var(--border); background: transparent; cursor: pointer; transition: color 200ms, border-color 200ms, background 200ms; border-radius: 0; white-space: nowrap; }
.service-tab:hover { color: var(--primary); border-color: var(--border-brand); }
.service-tab.active { color: var(--canvas); background: var(--primary); border-color: var(--primary); }
.services-panels { position: relative; }
.service-panel { display: none; grid-template-columns: 45% 1fr; gap: 0; min-height: 480px; border: 1px solid var(--border); background: var(--surface); }
.service-panel.active { display: grid; }
.service-panel-photo { position: relative; overflow: hidden; }
.service-panel-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none; }
.service-panel-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.service-panel-index { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(72px, 10vw, 120px); line-height: 1; letter-spacing: -0.04em; color: var(--primary); opacity: 0.2; line-height: 0.8; margin-bottom: -8px; }
.service-panel-body h3 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(24px, 3vw, 40px); line-height: 1.0; letter-spacing: -0.025em; color: var(--ink); }
.service-panel-copy { font-size: 16.5px; color: var(--ink-mid); line-height: 1.65; }
.service-panel-copy + .service-panel-copy { margin-top: -12px; }

/* Services page — feature blocks */
.services-page { max-width: 1280px; margin: 0 auto; padding: clamp(64px, 8vh, 120px) clamp(20px, 4vw, 56px); }
.services-intro { margin-bottom: clamp(56px, 8vh, 96px); }
.services-intro-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.services-intro h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.025em; }
.service-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; margin-bottom: 2px; border: 1px solid var(--border); background: var(--surface); }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.service-feature-photo { position: relative; overflow: hidden; }
.service-feature-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none; }
.service-feature-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--surface) 100%); z-index: 1; pointer-events: none; }
.service-feature.reverse .service-feature-photo-overlay { background: linear-gradient(to left, transparent 60%, var(--surface) 100%); }
.service-feature-index { position: absolute; bottom: 16px; left: 20px; z-index: 2; font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 72px; line-height: 1; letter-spacing: -0.04em; color: var(--primary); opacity: 0.35; }
.service-feature-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.service-feature-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); display: block; }
.service-feature-body h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(24px, 3vw, 44px); line-height: 1.0; letter-spacing: -0.025em; color: var(--ink); }
.service-feature-body p { font-size: 16.5px; color: var(--ink-mid); line-height: 1.65; }
.service-feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-feature-bullets li { font-size: 15px; color: var(--ink-mid); padding-left: 20px; position: relative; }
.service-feature-bullets li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 2px; background: var(--primary); }
.btn-service { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--primary); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; text-decoration: none; align-self: flex-start; transition: background 200ms; }
.btn-service:hover { background: var(--primary-dark); text-decoration: none; color: #fff; }
.btn-service svg { width: 16px; height: 16px; }

/* ─── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews { background: var(--surface); padding: clamp(96px, 12vh, 180px) 0; }
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.reviews-header { margin-bottom: 56px; }
.reviews-aggregate { display: grid; grid-template-columns: auto 1fr; gap: 48px 64px; align-items: start; }
.reviews-rating-block { display: flex; flex-direction: column; gap: 10px; padding: 32px; border: 1px solid var(--border-brand); background: var(--surface-2); min-width: 180px; align-items: center; }
.reviews-rating-num { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 72px; line-height: 1; letter-spacing: -0.04em; color: var(--primary); text-align: center; }
.reviews-stars { display: flex; gap: 4px; }
.reviews-stars svg { width: 20px; height: 20px; color: var(--primary); fill: var(--primary); flex-shrink: 0; }
.reviews-count { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.reviews-body { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.reviews-body-headline { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.0; letter-spacing: -0.025em; color: var(--ink); }
.reviews-body-copy { font-size: 17px; color: var(--ink-mid); line-height: 1.65; max-width: 56ch; }
.reviews-body-cta { display: flex; }
.reviews-google-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid var(--border); color: var(--ink-mid); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; transition: border-color 200ms, color 200ms; }
.reviews-google-badge:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.reviews-google-badge svg { width: 20px; height: 20px; }

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery,
.gallery-section { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.gallery-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.gallery-header { margin-bottom: 48px; }
.gallery-header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.gallery-count { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: 0; transition: all 200ms; }
.filter-pill:hover, .filter-pill.active { border-color: var(--primary); color: var(--primary); background: rgba(93,161,93,0.08); }
.pill-count { font-size: 10px; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none; transition: transform 400ms ease-out; filter: grayscale(20%); }
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0) 55%); z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 300ms; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--primary); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; }
.gallery-item-overlay h3 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 18px; line-height: 1.1; color: var(--ink); margin-bottom: 6px; }
.gallery-item-cat { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.gallery-item-location { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.gallery-item-location svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-item-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.gallery-item-stat { font-size: 11px; color: var(--ink-mid); font-family: 'Archivo', sans-serif; }
.gallery-item-title { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 16px; color: #fff; }

/* ─── SERVICE AREAS ───────────────────────────────────────────────────────── */
.service-areas { background: var(--surface); padding: clamp(96px, 12vh, 180px) 0; }
.service-areas-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.areas-header { margin-bottom: 48px; }
.service-areas-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.service-areas-grid,
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.area-chip { display: inline-flex; align-items: center; padding: 9px 16px; border: 1px solid var(--border-brand); background: rgba(93,161,93,0.06); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid); transition: all 200ms; border-radius: 0; }
.area-chip:hover { background: rgba(93,161,93,0.15); color: var(--primary); }
.areas-note { margin-top: 24px; font-size: 14px; color: var(--muted); font-style: italic; }
.areas-strip { background: var(--surface-2); padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.areas-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.areas-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); white-space: nowrap; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.faq-header { margin-bottom: 56px; }
.faq-list { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(15px, 1.8vw, 18px); line-height: 1.25; color: var(--ink); list-style: none; user-select: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); transition: transform 250ms; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 24px; font-size: 16.5px; color: var(--ink-mid); line-height: 1.7; max-width: 72ch; }
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ─── TEAM CTA ────────────────────────────────────────────────────────────── */
.team-cta { background: var(--primary); padding: clamp(56px, 8vh, 96px) 0; }
.team-cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.team-cta-copy { display: flex; flex-direction: column; gap: 8px; }
.team-cta-copy span { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(22px, 3vw, 36px); line-height: 1.05; letter-spacing: -0.02em; color: #fff; }
.team-cta a { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: #fff; color: var(--primary); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; text-decoration: none; transition: background 200ms; white-space: nowrap; }
.team-cta a:hover { background: var(--canvas); color: #fff; text-decoration: none; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact,
.contact-section { background: var(--surface); padding: clamp(96px, 12vh, 180px) 0; }
.contact-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.contact-header { margin-bottom: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 8px; }
.form-heading { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(24px, 3vw, 40px); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 8px; }
.form-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field,
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-field label,
.form-group label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea,
.form-group input,
.form-group select,
.form-group textarea { background: var(--surface-2); border: 1px solid var(--border); color: var(--ink); font-family: 'Inter Tight', sans-serif; font-size: 15px; padding: 14px 16px; border-radius: 0; outline: none; transition: border-color 200ms; width: 100%; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-field select,
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235DA15D' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field textarea,
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info,
.contact-info-wrap { display: flex; flex-direction: column; gap: 28px; padding: clamp(28px, 4vw, 48px); background: var(--surface-2); border: 1px solid var(--border); }
.info-card { display: flex; flex-direction: column; gap: 20px; }
.info-card-heading { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon { flex: 0 0 auto; width: 36px; height: 36px; background: rgba(93,161,93,0.12); display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.info-block-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.info-block-value { font-size: 15px; color: var(--ink-mid); line-height: 1.55; }
.info-block-value a { color: var(--ink); transition: color 150ms; }
.info-block-value a:hover { color: var(--primary); text-decoration: underline; }
.info-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.info-value { font-size: 15px; color: var(--ink-mid); }
.info-phone-big,
.cta-phone-big,
.contact-phone-link { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 28px; color: var(--ink); letter-spacing: -0.02em; text-decoration: none; }
.contact-phone-link:hover { color: var(--primary); text-decoration: none; }

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner { background: var(--accent); padding: clamp(80px, 10vh, 140px) 0; position: relative; overflow: hidden; }
.cta-banner-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(93,161,93,0.25) 0%, transparent 65%); pointer-events: none; }
.cta-banner-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-banner-text { display: flex; flex-direction: column; gap: 16px; }
.cta-banner-text-eyebrow,
.cta-banner-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 4px; display: block; }
.cta-banner-text h2,
.cta-banner-title { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(32px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.025em; color: #fff; }
.cta-banner-note,
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.70); line-height: 1.6; }
.cta-banner-phone { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(20px, 2.5vw, 28px); color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-pair { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── ABOUT — main index about section ───────────────────────────────────── */
.about-section { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.about-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-section-img { position: relative; overflow: hidden; }
.about-section-img img { width: 100%; height: 480px; object-fit: cover; max-height: 480px; filter: grayscale(15%); }
.about-section-text { display: flex; flex-direction: column; gap: 20px; }
.about-section-text .section-eyebrow { margin-bottom: 0; }
.about-section-text h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.0; letter-spacing: -0.025em; }
.about-section-text p { font-size: 16.5px; color: var(--ink-mid); line-height: 1.65; }

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-story { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.about-story-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.about-story-portrait { position: relative; }
.about-story-portrait img { width: 100%; max-height: 520px; object-fit: cover; filter: grayscale(15%); }
.about-story-portrait-caption { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.about-story-text { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.section-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; display: block; }
.about-story-text h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.0; letter-spacing: -0.025em; }
.about-story-text p { font-size: 16.5px; color: var(--ink-mid); line-height: 1.70; }
.pull-quote { border-left: 3px solid var(--primary); padding: 20px 28px; background: var(--surface); margin: 8px 0; }
.pull-quote p { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: clamp(19px, 2.2vw, 26px); line-height: 1.45; color: var(--ink); }

/* Values */
.values-cards { background: var(--surface); padding: clamp(96px, 12vh, 180px) 0; }
.values-cards-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.values-cards-inner > h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.value-card { background: var(--surface-2); padding: 36px 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; transition: border-color 250ms, background 250ms; }
.value-card:hover { border-color: var(--border-brand); background: var(--surface-3); }
.value-card-num { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 48px; line-height: 1; letter-spacing: -0.04em; color: var(--primary); opacity: 0.6; }
.value-card h3 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 18px; line-height: 1.1; color: var(--ink); }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Journey timeline */
.journey { background: var(--canvas); padding: clamp(96px, 12vh, 180px) 0; }
.journey-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.journey-inner h2 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 56px; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; }
.timeline-step { background: var(--surface); border: 1px solid var(--border); padding: 32px 24px; display: flex; flex-direction: column; gap: 12px; position: relative; transition: border-color 250ms; }
.timeline-step:hover { border-color: var(--border-brand); }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.timeline-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.timeline-year { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 32px; letter-spacing: -0.03em; color: var(--primary); line-height: 1; }
.timeline-step h3 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 17px; line-height: 1.2; color: var(--ink); }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Page header (sub-pages) */
.page-header { min-height: clamp(240px, 35vh, 400px); display: flex; align-items: flex-end; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.45) 60%, transparent 100%); z-index: 1; }
.page-header-inner { position: relative; z-index: 2; padding: clamp(36px, 5vh, 64px) clamp(24px, 5vw, 96px); max-width: 1440px; width: 100%; }
.page-header-eyebrow,
.page-eyebrow { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; display: block; }
.page-header-inner h1 { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(36px, 5.5vw, 80px); line-height: 1.0; letter-spacing: -0.03em; color: #fff; max-width: 18ch; margin-bottom: 12px; }
.page-header-sub { font-size: 16px; color: rgba(255,255,255,0.70); max-width: 52ch; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding-top: clamp(56px, 8vh, 96px); }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: clamp(48px, 6vh, 80px); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { margin-bottom: 4px; }
.footer-tagline,
.footer-brand-tagline { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 32ch; }
.footer-brand-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.footer-brand-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); text-decoration: none; transition: color 150ms; }
.footer-brand-contact a svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-brand-contact a:hover { color: var(--primary); text-decoration: none; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); color: var(--muted); transition: all 200ms; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-heading,
.footer-col-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.footer-col ul,
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col ul li a,
.footer-links li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 150ms; }
.footer-col ul li a:hover,
.footer-links li a:hover { color: var(--primary); text-decoration: none; }
.footer-col ul li span { font-size: 14px; color: var(--muted); }
.footer-address,
.footer-col-address { font-size: 14px; color: var(--muted); line-height: 1.8; font-style: normal; }
.footer-address a,
.footer-col-address a { color: var(--muted); text-decoration: none; }
.footer-address a:hover,
.footer-col-address a:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link,
.footer-email-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); text-decoration: none; transition: color 150ms; }
.footer-phone-link:hover, .footer-email-link:hover { color: var(--primary); text-decoration: none; }
.footer-info p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-info a { color: var(--muted); text-decoration: none; }
.footer-info a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-est,
.footer-certs { font-size: 13px; color: var(--muted); }
.footer-trust { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-trust span,
.footer-trust-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-trust-chip { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 4px 10px; border: 1px solid var(--border); }

/* ─── MOBILE CALL PILL ────────────────────────────────────────────────────── */
.mobile-call-pill,
.mobile-cta,
.mobile-sticky-cta { display: flex; position: fixed; bottom: 18px; right: 18px; z-index: 999; }
.mobile-call-pill a,
.mobile-cta a,
.mobile-sticky-cta a { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--primary); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; text-decoration: none; box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45); transition: background 200ms, transform 150ms; }
.mobile-call-pill a:hover,
.mobile-cta a:hover,
.mobile-sticky-cta a:hover { background: var(--primary-dark); transform: scale(1.04); text-decoration: none; }
.mobile-call-pill svg,
.mobile-cta svg,
.mobile-sticky-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 900px) {
  .mobile-call-pill,
  .mobile-cta,
  .mobile-sticky-cta { display: none; }
}

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

/* ─── REVIEW CARDS ────────────────────────────────────────────────────────── */
.review-card { padding: 28px; border-radius: 0; background: var(--surface-2); border: 1px solid var(--border); }
.review-card .review-stars svg { color: var(--primary); fill: var(--primary); width: 18px; height: 18px; }
.review-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; line-height: 1.55; margin: 14px 0; color: var(--ink-mid); }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ─── ANIMATION UTILITIES ─────────────────────────────────────────────────── */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
.fade-right{ opacity: 0; transform: translateX(28px); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
.scale-in  { opacity: 0; transform: scale(0.92); transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 500ms cubic-bezier(0.16,1,0.3,1), transform 500ms cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 560ms; }

/* ─── PROCESS / STATS (defensive, used on about page) ────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-family: 'Archivo Black', sans-serif; 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; font-family: 'Archivo', sans-serif; font-weight: 700; display: block; }
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; font-family: 'Archivo', sans-serif; }

/* ─── NOISE TEXTURE OVERLAY ───────────────────────────────────────────────── */
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; 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.025; mix-blend-mode: overlay; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-pages { position: absolute; top: 60px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 24px; gap: 0; display: none; flex-direction: column; z-index: 800; }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 0; }
  .nav-pages a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); display: block; }
  .nav-cta a span { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .hero-inner { padding: clamp(40px, 6vh, 72px) clamp(20px, 5vw, 48px); }
  .hero-title { font-size: clamp(48px, 11vw, 80px); }
  .services-header { flex-direction: column; gap: 28px; }
  .services-header .services-tabs { align-self: flex-start; }
  .service-panel { grid-template-columns: 1fr; grid-template-rows: 260px 1fr; }
  .service-panel-photo img { position: static; width: 100%; height: 260px; }
  .service-feature { grid-template-columns: 1fr; min-height: auto; }
  .service-feature .service-feature-photo { min-height: 280px; }
  .service-feature.reverse { direction: ltr; }
  .service-feature-photo img { position: static; width: 100%; height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-section-inner { grid-template-columns: 1fr; }
  .reviews-aggregate { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-cta-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn, .hero-ctas .btn-phone { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-tabs { gap: 6px; }
  .service-tab { padding: 8px 12px; font-size: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-aggregate { gap: 28px; }
  .hero-ribbon { display: none; }
  .cta-pair { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.reviews-rating-block { grid-column: 1 / -1; }
.reviews-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.trust-chip { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.pill-count { grid-column: 1 / -1; }
.gallery-item { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
