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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #0e6c29;
  --primary-dark:   #0a5220;
  --primary-light:  #e8f5ec;
  --accent:         #0e6c29;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2c3038;
  --muted:          #5C6068;
  --muted-light:    #8a9099;
  --border:         rgba(14,108,41,0.18);
  --border-neutral: rgba(20,24,29,0.10);
  --shadow-sm:      0 2px 8px rgba(20,24,29,0.08);
  --shadow-md:      0 8px 28px rgba(20,24,29,0.12);
  --shadow-lg:      0 18px 48px rgba(20,24,29,0.16);
  --radius:         4px;
  --radius-md:      8px;
  --section-py:     clamp(80px, 10vh, 128px);
  --container:      1320px;
  --header-height:  72px;
  --font-display:   'Archivo', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET + GLOBALS ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* 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; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) { max-height: 64vh; object-fit: cover; }
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) { max-height: 720px; }
[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure { grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0; }
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Anchors inside headings render as the heading, NOT as links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 96px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.8vw, 22px); }
p { line-height: 1.72; }

.eyebrow,
.section-eyebrow,
.service-eyebrow,
.page-header-eyebrow,
.page-eyebrow,
.feature-eyebrow,
.cta-banner-label,
.cta-banner-eyebrow,
.contact-form-eyebrow,
.info-card-eyebrow,
.services-intro-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* ─── LAYOUT CONTAINERS ──────────────────────────────────────────────────── */
.container,
.section-inner,
.trust-strip-inner,
.gallery-inner,
.footer-inner,
.cta-banner-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.wide-container { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }

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

/* ─── SITE HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(20,24,29,0.08);
}
.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; }
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  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-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; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--ink);
  padding: 8px;
  line-height: 1;
  margin-left: auto;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: 24px clamp(20px,4vw,48px);
    gap: 6px;
    border-bottom: 1px solid rgba(20,24,29,0.08);
    justify-content: flex-start;
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-cta span { display: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 14px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: filter 180ms, transform 180ms, box-shadow 180ms;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-banner-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-banner-primary:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }
.btn-secondary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-secondary:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }
.btn-outline, .btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: filter 180ms;
}
.btn-submit:hover { filter: brightness(0.9); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── CHIPS ──────────────────────────────────────────────────────────────── */
.chip, .trust-chip, .cred-chip, .filter-pill, .service-area-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--surface);
  white-space: nowrap;
}
.cred-chip {
  display: block;
  padding: 14px 16px;
  border-top: 4px solid var(--primary);
  border-left: 1px solid var(--border-neutral);
  border-right: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero > img, .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(20,24,29,0.55);
  z-index: 1;
}
.hero-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: clamp(100px, 18vh, 160px);
  padding-bottom: clamp(64px, 10vh, 96px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-title, .hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(14,108,41,0.55);
  color: rgba(255,255,255,0.88);
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  background: var(--ink);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-item span {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
.section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-header { margin-bottom: clamp(40px, 6vh, 64px); }
.section-title { font-size: clamp(36px, 5vw, 64px); margin-top: 8px; }
.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  margin-top: 16px;
  line-height: 1.65;
}

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
#services.services {
  background: var(--canvas);
}
#services .section-inner {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border-neutral);
  padding-bottom: 0;
}
.service-tab {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  margin-bottom: -2px;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.services-panels { margin-top: 0; }
.service-panel { display: none; }
.service-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-top: none;
}
.service-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-panel-body {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.service-panel-body h3 { font-size: clamp(24px, 3vw, 36px); }
.service-panel-body p { color: var(--muted); line-height: 1.7; }
.service-panel-body .service-eyebrow { margin-bottom: 4px; }
.service-panel-body a.btn { align-self: flex-start; margin-top: 12px; }
@media (max-width: 768px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 240px; }
}

/* ─── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews-section { background: var(--surface); }
.reviews-section .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: var(--primary); }
.review-quote { font-size: 16px; line-height: 1.62; color: var(--ink-mid); margin-bottom: 16px; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.85; }
.review-attribution strong { display: block; font-weight: 600; color: var(--ink); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── GALLERY SECTION (index.html) ────────────────────────────────────────── */
.gallery-section { background: var(--canvas); }
.gallery-section .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.gallery-preview-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 40px;
  aspect-ratio: 16 / 7;
}
.gallery-preview-wrap img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.72) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.gallery-overlay p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.gallery-overlay h3 { font-size: clamp(24px, 3vw, 40px); color: #fff; }
.gallery-overlay a { color: #fff; }

/* ─── GALLERY PAGE (gallery.html) ─────────────────────────────────────────── */
.gallery-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px,4vw,48px); }
.gallery-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.gallery-header-left h2 { font-size: clamp(32px, 5vw, 60px); }
.section-eyebrow { display: block; margin-bottom: 10px; }
.gallery-count { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-pill {
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-neutral);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; transition: transform 400ms ease; }
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }
.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-weight: 600;
}
.gallery-card-cat {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(20,24,29,0.65);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.gallery-card-body { padding: 20px; }
.gallery-card-body h3 { font-size: 16px; margin-bottom: 8px; letter-spacing: -0.01em; }
.gallery-card-location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.gallery-card-body > p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.gallery-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-meta-item { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--canvas); padding: 3px 8px; border-radius: var(--radius); }
.gallery-empty { display: none; text-align: center; padding: 64px 24px; color: var(--muted); grid-column: 1 / -1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--surface); }
.faq-section .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.faq-list { margin-top: 48px; }
details.faq-item { border-bottom: 1px solid var(--border-neutral); padding: 0; }
details.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  color: var(--ink);
  user-select: none;
  transition: color 150ms;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
  margin-left: 16px;
}
details.faq-item[open] > summary { color: var(--primary); }
details.faq-item[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-answer { padding: 0 4px 22px; color: var(--muted); line-height: 1.72; font-size: 15px; max-width: 72ch; }

/* ─── TEAM CTA STRIP ──────────────────────────────────────────────────────── */
.team-cta-strip {
  background: var(--ink);
  padding: clamp(40px, 6vh, 64px) 0;
}
.team-cta-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.team-cta-text { flex: 1; }
.team-cta-text .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.team-cta-text h3 { font-size: clamp(24px, 3vw, 40px); color: #fff; }
.team-cta-photo {
  flex: 0 0 auto;
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}
.team-cta-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.team-cta-inner a.btn { flex-shrink: 0; }
@media (max-width: 640px) { .team-cta-inner { flex-wrap: wrap; } .team-cta-photo { width: 72px; height: 72px; } }

/* ─── CONTACT (index.html) ────────────────────────────────────────────────── */
.contact { background: var(--canvas); }
.contact .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
  align-items: start;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 8px; }
.form-discount, .form-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label, .contact-form label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input, .form-field select, .form-field textarea,
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius);
  padding: 11px 14px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,108,41,0.12);
}
.form-field textarea, .contact-form textarea { min-height: 110px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { padding-bottom: 24px; border-bottom: 1px solid var(--border-neutral); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.contact-info-value { font-size: 17px; font-weight: 500; color: var(--ink); }
.contact-info-value a { font-weight: 500; }
.contact-info-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.contact-discount-card {
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.disc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ─── CONTACT PAGE (contact.html) ─────────────────────────────────────────── */
.contact-section {
  background: var(--canvas);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.contact-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.contact-form-col {
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form-col h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 8px; }
.contact-form-sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.contact-form.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--border-neutral);
  border-radius: var(--radius); padding: 11px 14px; width: 100%;
  transition: border-color 150ms, box-shadow 150ms; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,108,41,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }
.form-submit { display: flex; flex-direction: column; gap: 8px; }
.form-submit button { background: var(--primary); color: #fff; border: none; border-radius: var(--radius); padding: 14px 28px; font-weight: 700; font-size: 15px; font-family: var(--font-body); cursor: pointer; transition: filter 180ms; }
.form-submit button:hover { filter: brightness(0.9); }
.form-note { font-size: 12px; color: var(--muted); }
.contact-info-col {
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.info-card-eyebrow { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.info-block { padding: 16px 0; }
.info-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.info-phone-big a { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--primary); text-decoration: none; }
.info-phone-big a:hover { text-decoration: underline; }
.info-value { font-size: 16px; color: var(--ink); font-weight: 500; }
.info-value a { font-weight: 500; }
.info-divider { height: 1px; background: var(--border-neutral); }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.service-area-pill { font-size: 11px; padding: 4px 10px; }
.rating-line { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.stars-svg { display: flex; gap: 3px; }
.stars-svg svg { width: 16px; height: 16px; color: var(--primary); }
.rating-text { font-size: 14px; font-weight: 600; color: var(--ink); }

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vh, 100px) 0;
}
.cta-banner > img, .cta-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.2; z-index: 0;
}
.cta-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-label, .cta-banner-eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.cta-banner-inner h2 { font-size: clamp(32px, 5vw, 60px); color: #fff; margin-bottom: 12px; }
.cta-banner-sub { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.cta-banner-actions .btn, .cta-banner-btn { padding: 14px 26px; }
.cta-banner-phone { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius); padding: 14px 26px; font-weight: 700; text-decoration: none; transition: border-color 150ms; }
.cta-banner-phone:hover { border-color: #fff; color: #fff; text-decoration: none; }
.btn-banner-phone { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius); padding: 14px 26px; font-weight: 700; text-decoration: none; transition: border-color 150ms; }
.btn-banner-phone:hover { border-color: #fff; color: #fff; text-decoration: none; }
.btn-banner-phone svg, .cta-banner-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-discount { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 10px; }
@media (max-width: 768px) { .cta-banner-inner { flex-direction: column; align-items: flex-start; } }

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-header > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; max-height: none; }
.page-header-overlay { position: absolute; inset: 0; background: rgba(20,24,29,0.58); z-index: 1; }
.page-header-hairline { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary); z-index: 3; }
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: clamp(60px, 10vh, 100px);
  padding-bottom: clamp(36px, 5vh, 56px);
}
.page-header-inner h1 { font-size: clamp(36px, 6vw, 80px); color: #fff; margin-top: 12px; }
.page-header-eyebrow, .page-eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.page-header-sub { color: rgba(255,255,255,0.65); font-size: 16px; margin-top: 10px; }

/* ─── SERVICES PAGE — FEATURE BLOCKS ─────────────────────────────────────── */
.services-intro {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: 0;
}
.services-intro-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.services-intro h2 { font-size: clamp(32px, 5vw, 60px); margin-bottom: 16px; }
.services-intro > p { font-size: 16px; color: var(--muted); max-width: 60ch; margin-top: 12px; margin-bottom: 0; }
.feature-blocks {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: clamp(40px, 6vh, 64px);
  padding-bottom: var(--section-py);
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vh, 64px) 0;
}
.feature-block.reverse .feature-photo { order: 2; }
.feature-block.reverse .feature-body { order: 1; }
.feature-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.feature-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius);
}
.feature-body { display: flex; flex-direction: column; gap: 14px; }
.feature-eyebrow { margin-bottom: 0; }
.feature-body h2 { font-size: clamp(24px, 3.5vw, 44px); margin-top: 0; }
.feature-body > p { color: var(--muted); line-height: 1.7; font-size: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-mid); }
.feature-list li::before { content: ""; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.feature-body > div > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.feature-divider { padding: 0; }
.feature-divider-line { height: 1px; background: var(--border-neutral); }
@media (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse .feature-photo { order: 0; }
  .feature-block.reverse .feature-body { order: 0; }
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-story { background: var(--canvas); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.about-story-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-story-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.about-photo-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}
.about-story-content { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.about-story-content .eyebrow { margin-bottom: 0; }
.about-story-content h2 { font-size: clamp(28px, 4vw, 52px); }
.about-story-body { display: flex; flex-direction: column; gap: 14px; }
.about-story-body p { color: var(--muted); font-size: 16px; line-height: 1.72; }
.about-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
@media (max-width: 768px) { .about-story-grid { grid-template-columns: 1fr; } .about-story-photo { aspect-ratio: 16 / 9; } }

/* VALUES ─────────────────────────────────────────────────────────────────── */
.values-cards { background: var(--surface); }
.values-cards .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-top: 4px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card-index {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.value-card h3 { font-size: clamp(17px, 2vw, 22px); margin-bottom: 10px; letter-spacing: -0.015em; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* JOURNEY ─────────────────────────────────────────────────────────────────── */
.journey { background: var(--canvas); }
.journey .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.journey-step { position: relative; z-index: 1; }
.journey-dot {
  width: 32px; height: 32px;
  background: var(--surface);
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin-bottom: 16px;
}
.journey-step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.journey-step h3 { font-size: 18px; margin-bottom: 8px; }
.journey-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .journey-track { grid-template-columns: repeat(2, 1fr); } .journey-track::before { display: none; } }
@media (max-width: 480px) { .journey-track { grid-template-columns: 1fr; } }

/* ABOUT CTA BANNER ─────────────────────────────────────────────────────────── */
#cta.cta-banner .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
#cta .cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
#cta .cta-banner-text h2 { color: #fff; }
#cta .eyebrow { color: rgba(255,255,255,0.55); }

/* ABOUT CREDENTIALS ──────────────────────────────────────────────────────── */
.about-panel { background: var(--canvas); }
.about-panel .section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.about-panel-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-panel-left { position: sticky; top: calc(var(--header-height) + 32px); }
.about-panel-left .eyebrow { margin-bottom: 12px; }
.about-panel-left h2 { font-size: clamp(28px, 4vw, 48px); }
.about-panel-right > p { color: var(--muted); font-size: 15px; line-height: 1.72; margin-bottom: 20px; }
.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.cred-chip { border-radius: var(--radius); }
@media (max-width: 768px) { .about-panel-grid { grid-template-columns: 1fr; } .about-panel-left { position: static; } }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}
.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: clamp(56px, 8vh, 80px);
  padding-bottom: clamp(40px, 6vh, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
  width: 100%;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { max-height: 40px !important; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-logo img { max-height: 40px !important; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; }
.footer-brand-tagline, .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 28ch; }
.footer-phone { margin-top: 6px; }
.footer-phone a, .footer-phone-link { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-phone a:hover, .footer-phone-link:hover { color: #fff; text-decoration: underline; }
.footer-col-title, .footer-col-heading { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 150ms; display: block; }
.footer-links a:hover, .footer-links li a:hover { color: #fff; text-decoration: none; }
.footer-links li { list-style: none; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-line, .footer-contact-item { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-line a, .footer-contact-item a, .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; display: block; }
.footer-contact-line a:hover, .footer-contact-item a:hover { color: #fff; }
.footer-address { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; font-style: normal; }
.footer-address a { color: rgba(255,255,255,0.65); }
.footer-address a:hover { color: #fff; text-decoration: none; }
.footer-email-link, .footer-email { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.footer-stars { display: flex; gap: 2px; }
.footer-rating-text { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(32px, 4vh, 48px);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.footer-bottom p, .footer-copy, .footer-license, .footer-trust { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-certs { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-cert { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner, .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ─── MOBILE CTA PILL ─────────────────────────────────────────────────────── */
.mobile-cta-pill,
.mobile-cta,
.mobile-pill,
.mobile-sticky-cta,
.mobile-call-btn {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}
.mobile-cta-pill a,
.mobile-cta a,
.mobile-pill a,
.mobile-sticky-cta,
.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  white-space: nowrap;
  transition: filter 150ms, transform 150ms;
}
.mobile-cta-pill a:hover,
.mobile-cta a:hover,
.mobile-pill a:hover,
.mobile-sticky-cta:hover,
.mobile-call-btn:hover { filter: brightness(0.9); transform: translateY(-2px); color: #fff; text-decoration: none; }
.mobile-cta-pill svg,
.mobile-cta svg,
.mobile-pill svg,
.mobile-sticky-cta svg,
.mobile-call-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 900px) {
  .mobile-cta-pill,
  .mobile-cta,
  .mobile-pill,
  .mobile-sticky-cta,
  .mobile-call-btn { display: none; }
}

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

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

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

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

/* ─── MISC UTILITY ────────────────────────────────────────────────────────── */
.full { grid-column: 1 / -1; }
.reverse { }
address { font-style: normal; }
svg { display: inline-block; vertical-align: middle; }
button { font-family: var(--font-body); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235C6068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px !important; cursor: pointer; }

/* ─── RESPONSIVE MISC ─────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn, .cta-banner-phone, .btn-banner-phone { width: 100%; justify-content: center; }
  .services-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.feature-photo { grid-column: 1 / -1; }
.feature-body { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cred-chip { 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; }
