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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:        #313313;
  --primary-dark:   #222209;
  --primary-mid:    #4a4d1e;
  --accent:         #3A3A3A;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2a2f36;
  --muted:          #5C6068;
  --border:         rgba(49,51,19,0.18);
  --border-light:   rgba(49,51,19,0.10);
  --hairline:       rgba(49,51,19,0.14);
  --primary-alpha:  rgba(49,51,19,0.08);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET + GLOBAL ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.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: 64px !important; max-width: 220px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important; max-width: 200px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}
.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; 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; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) { max-height: 64vh; object-fit: cover; }
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) { max-height: 720px; }

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

/* Heading anchors render as heading, not link */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Anchor base */
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; }

/* ─── LAYOUT CONTAINERS ───────────────────────────────────────── */
.inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

/* ─── TYPOGRAPHY SCALE ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
p { line-height: 1.7; }

.section-eyebrow,
.page-header-eyebrow,
.service-panel-eyebrow,
.service-body-eyebrow,
.service-areas-eyebrow,
.credentials-eyebrow,
.cta-banner-eyebrow,
.about-eyebrow,
.services-intro-eyebrow,
.awards-strip-eyebrow,
.gallery-eyebrow,
.footer-col-title,
.footer-col-heading,
.contact-form-eyebrow,
.info-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-sub,
.hero-sub,
.page-header-sub,
.cta-banner-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 58ch;
}

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

/* ─── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.top-nav {
  display: flex; align-items: center; gap: 24px;
  max-width: 1320px; margin-inline: auto;
  padding: 0 clamp(16px, 3vw, 40px);
  height: var(--header-height);
}
.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 180px; width: auto; object-fit: contain; }
.nav-pages {
  display: flex; flex: 1; justify-content: center;
  list-style: none; gap: 28px; align-items: center;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 14px; font-weight: 500; font-family: 'IBM Plex Sans', sans-serif;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid transparent; transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }
.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  padding: 10px 20px; border-radius: 4px;
  font-size: 14px; font-weight: 700; font-family: 'IBM Plex Sans', sans-serif;
  text-decoration: none; white-space: nowrap; transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(1.15); color: var(--canvas); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); font-size: 24px; padding: 8px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--canvas); padding: 20px clamp(16px, 3vw, 40px);
    gap: 4px; border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; font-size: 16px; }
  .nav-cta span { display: none; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn,
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  padding: 14px 26px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 150ms, transform 150ms;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover { filter: brightness(1.2); transform: translateY(-1px); color: var(--canvas); text-decoration: none; }

.btn-outline,
.btn-canvas,
.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--canvas);
  padding: 14px 26px; border-radius: 4px;
  border: 2px solid rgba(247,246,242,0.55);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.btn-outline:hover { background: rgba(247,246,242,0.12); color: var(--canvas); text-decoration: none; }
.btn-canvas { color: var(--ink); border-color: var(--border); background: var(--canvas); }
.btn-canvas:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

.btn-cta-estimate,
.btn-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer; transition: all 150ms;
}
.btn-cta-estimate { background: var(--primary); color: var(--canvas); border: 2px solid var(--primary); }
.btn-cta-estimate:hover { filter: brightness(1.2); color: var(--canvas); text-decoration: none; }
.btn-cta-phone { background: transparent; color: var(--canvas); border: 2px solid rgba(247,246,242,0.55); }
.btn-cta-phone:hover { background: rgba(247,246,242,0.12); color: var(--canvas); text-decoration: none; }
.btn-cta-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-submit {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--canvas);
  padding: 14px 32px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; transition: filter 150ms;
}
.btn-submit:hover { filter: brightness(1.2); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(15%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(20,24,29,0.72) 0%,
    rgba(20,24,29,0.45) 60%,
    rgba(20,24,29,0.55) 100%
  );
}
.hero::after {
  content: '';
  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: 1320px; margin-inline: auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 56px) clamp(64px, 10vh, 112px);
  display: flex; flex-direction: column; gap: 0;
  min-height: 92vh; justify-content: flex-end;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(247,246,242,0.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(247,246,242,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.hero-trust-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-inner { min-height: 88vh; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-ctas { flex-direction: column; }
  .btn-cta-estimate, .btn-cta-phone { text-align: center; justify-content: center; }
}

/* ─── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  padding: 40px 0;
}
.trust-strip-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: stretch; justify-content: center;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 16px 24px;
  min-width: 120px; flex: 1 1 120px; max-width: 180px;
  text-align: center;
  gap: 4px;
}
.trust-badge-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: clamp(22px, 2.5vw, 30px);
  color: var(--primary); line-height: 1.1;
}
.trust-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); line-height: 1.3;
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--primary);
  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: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: clamp(11px, 1.2vw, 14px);
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--canvas); line-height: 1.2;
  display: flex; align-items: center; gap: 16px;
  white-space: nowrap;
}
.marquee-item span::before {
  content: '·'; color: rgba(247,246,242,0.4); margin-right: 16px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES ────────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.services-head {
  margin-bottom: 56px;
}
.services-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.section-sub { margin-top: 12px; }

.services-registry {
  border-top: 1px solid var(--hairline);
  margin-bottom: 64px;
}
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: var(--ink);
  transition: background 150ms;
  cursor: pointer;
}
.service-row:hover { background: var(--primary-alpha); text-decoration: none; }
.service-row:hover .service-row-arrow { color: var(--primary); }
.service-index {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--muted); line-height: 1;
}
.service-row-content { min-width: 0; }
.service-row-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.1; color: var(--ink); margin-bottom: 4px;
}
.service-row-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.5; max-width: 60ch;
}
.service-row-arrow {
  font-size: 22px; color: var(--muted);
  transition: color 150ms, transform 150ms;
  flex-shrink: 0;
}
.service-row:hover .service-row-arrow { transform: translateX(4px); }

/* Service panels */
.services-detail-panels { display: flex; flex-direction: column; gap: 0; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 48px; align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
}
.service-panel.active { display: grid; }
.service-panel > img {
  border-radius: 4px;
  width: 100%; max-height: 400px; object-fit: cover;
}
.service-panel-body { padding-top: 8px; }
.service-panel-body h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 16px;
}
.service-panel-copy {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-bottom: 24px;
}
.service-panel-body a { display: inline-flex; }

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr auto; gap: 16px; }
}

/* ─── SERVICES DETAIL PAGE ────────────────────────────────────── */
.services-intro {
  max-width: 1320px; margin-inline: auto;
  padding: 64px clamp(20px, 4vw, 56px) 32px;
}
.services-intro h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 12px; }
.services-intro-eyebrow { margin-bottom: 12px; }
.services-detail { background: var(--canvas); }

.services-detail .service-row {
  display: block;
  padding: clamp(60px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--hairline);
  border-top: none;
}
.services-detail .service-row:hover { background: none; }
.service-row-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.service-row.reverse .service-row-inner {
  direction: rtl;
}
.service-row.reverse .service-row-inner > * { direction: ltr; }

.service-row-photo {
  position: relative; border-radius: 4px; overflow: hidden;
}
.service-row-photo img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 4px; max-height: 480px;
}
.service-row-photo-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--canvas);
  background: var(--primary); padding: 4px 10px; border-radius: 2px;
}
.service-row-no-photo {
  background: var(--primary); border-radius: 4px;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 32px;
}
.service-row-no-photo-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(247,246,242,0.6); margin-bottom: 8px;
}
.service-row-no-photo-title {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(24px, 3vw, 40px); color: var(--canvas); line-height: 1.05;
}

.service-body { padding-top: 12px; }
.service-body-eyebrow { margin-bottom: 12px; }
.service-body h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 16px; }
.service-body > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.service-bullets {
  list-style: none; margin: 20px 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  font-size: 15px; color: var(--ink-mid);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.service-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; background: var(--primary);
}
.service-body a { display: inline-flex; }

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

/* ─── PAGE HEADER ─────────────────────────────────────────────── */
.page-header {
  min-height: clamp(320px, 45vh, 500px);
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,24,29,0.5) 0%, rgba(20,24,29,0.72) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin-inline: auto;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 56px) clamp(32px, 5vh, 56px);
}
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--canvas); margin-bottom: 12px;
}
.page-header-inner .page-header-eyebrow { color: rgba(247,246,242,0.65); margin-bottom: 16px; }
.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: rgba(247,246,242,0.7); max-width: 52ch;
}
.page-header-hairline {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary); z-index: 3;
}

/* ─── GALLERY (homepage preview) ─────────────────────────────── */
.gallery-preview {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.gallery-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-head h2 { font-size: clamp(32px, 4vw, 56px); }
.gallery-head a { flex-shrink: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 4/3; border-radius: 4px; overflow: hidden;
  display: block; position: relative;
  background: var(--accent);
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease, filter 300ms;
  filter: grayscale(10%);
}
.gallery-tile:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-tile-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.gallery-tile-placeholder span {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(247,246,242,0.4);
}
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ─── GALLERY FULL PAGE ───────────────────────────────────────── */
.gallery-section { background: var(--canvas); padding: clamp(60px, 8vh, 100px) 0; }
.gallery-inner { max-width: 1320px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.gallery-header-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.gallery-title-block h2 { font-size: clamp(28px, 3.5vw, 52px); }
.gallery-eyebrow { margin-bottom: 8px; }
.gallery-count {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); background: var(--primary-alpha);
  border: 1px solid var(--border-light); padding: 6px 14px; border-radius: 4px;
}

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 16px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--ink); cursor: pointer; transition: all 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); color: var(--canvas); border-color: var(--primary);
}

/* Case grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--surface); border-radius: 4px; overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.case-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }
.case-card-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--accent);
}
.case-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.case-card-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  background: var(--primary); color: var(--canvas);
  padding: 4px 10px; border-radius: 2px;
}
.case-card-num {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 13px; color: rgba(247,246,242,0.7);
}
.case-card-body { padding: 20px; }
.case-card-body h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.case-card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted); margin-bottom: 8px;
}
.case-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.case-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.case-card-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.case-meta-item {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; color: var(--primary); text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-meta-label { font-weight: 400; color: var(--muted); }
.case-meta-val { font-weight: 600; color: var(--primary); }
.no-results {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}

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

/* ─── REVIEWS ─────────────────────────────────────────────────── */
.reviews {
  background: var(--surface);
  padding: clamp(80px, 10vh, 128px) 0;
  border-top: 1px solid var(--hairline);
}
.reviews .inner > .section-eyebrow { display: block; margin-bottom: 16px; }
.reviews .inner > h2 { margin-bottom: 8px; }
.reviews .inner > .section-sub { margin-bottom: 48px; }

.reviews-no-data {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 32px; align-items: start;
}

.rating-callout {
  display: flex; flex-direction: column; align-items: center;
  background: var(--canvas); border: 1px solid var(--primary);
  border-radius: 4px; padding: 36px 32px; text-align: center;
  min-width: 180px;
}
.rating-big {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(56px, 7vw, 80px); line-height: 1;
  color: var(--primary);
}
.rating-stars-row {
  display: flex; gap: 4px; margin: 12px 0 8px;
}
.rating-stars-row svg { width: 20px; height: 20px; color: var(--primary); }
.rating-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}

.award-card {
  background: var(--surface); border: 1px solid var(--primary);
  border-top-width: 4px; border-radius: 4px; padding: 28px;
}
.award-card-title {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 16px; color: var(--ink); margin-bottom: 16px;
}
.award-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.award-list li {
  font-size: 14px; color: var(--ink-mid); padding-left: 16px; position: relative; line-height: 1.4;
}
.award-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 2px; background: var(--primary);
}

.review-card {
  padding: 28px; border-radius: 4px;
  background: var(--canvas); border: 1px solid var(--primary);
  border-top-width: 4px;
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; font-style: italic; }
.review-attribution { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .reviews-no-data { grid-template-columns: 1fr 1fr; }
  .rating-callout { grid-column: 1/-1; flex-direction: row; gap: 24px; justify-content: center; }
}
@media (max-width: 560px) {
  .reviews-no-data { grid-template-columns: 1fr; }
  .rating-callout { flex-direction: column; }
}

/* ─── SERVICE AREAS ───────────────────────────────────────────── */
.service-areas {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
  border-top: 1px solid var(--hairline);
}
.service-areas-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.areas-intro {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: start;
}
.areas-left h2 { font-size: clamp(28px, 3.5vw, 52px); }
.areas-left .section-eyebrow { margin-bottom: 12px; }
.areas-left .section-sub { margin-top: 12px; font-size: 15px; }
.areas-right {}
.pill-cloud, .service-areas-pills {
  display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px;
}
.area-pill {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 14px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--primary);
  color: var(--ink);
}
.area-chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 4px;
  background: var(--primary-alpha); border: 1px solid var(--border);
  color: var(--ink);
}

.service-areas-heading { margin-bottom: 32px; }
.service-areas-heading h2 { font-size: clamp(28px, 3.5vw, 52px); }
.service-areas-heading .service-areas-eyebrow { margin-bottom: 12px; }

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

/* ─── CREDENTIALS ─────────────────────────────────────────────── */
.credentials {
  background: var(--surface);
  padding: clamp(80px, 10vh, 128px) 0;
  border-top: 2px solid var(--primary);
}
.credentials-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.credentials-inner > h2,
.credentials > .inner > h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 48px;
}
.credentials-eyebrow { margin-bottom: 12px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.credential-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-top: 4px solid var(--primary);
  border-radius: 4px; padding: 28px;
}
.credential-num,
.credential-card-value {
  font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px); color: var(--primary);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.credential-label,
.credential-card-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 6px; display: block;
}
.credential-card-sub {
  font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 8px;
}

/* About page cred-registry */
.cred-registry {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 32px 0;
}
.cred-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-top: 4px solid var(--primary);
  border-radius: 4px; padding: 24px;
}
.cred-type {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 8px;
}
.cred-number {
  font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px); color: var(--primary); margin-bottom: 6px;
}
.cred-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-registry { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* Awards */
.awards-strip {
  background: var(--primary-alpha);
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
}
.awards-strip-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.awards-strip-eyebrow { margin-bottom: 24px; }
.awards-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.award-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--primary);
  border-radius: 4px; padding: 10px 16px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.award-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.award-icon svg { width: 16px; height: 16px; }
.award-label { font-size: 11px; }

/* ─── TEAM CTA ────────────────────────────────────────────────── */
.team-cta {
  background: var(--primary);
  padding: clamp(56px, 8vh, 96px) 0;
}
.team-cta-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.team-cta-text {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(24px, 3vw, 44px); color: var(--canvas);
  line-height: 1.1; max-width: 22ch;
}

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  padding: clamp(64px, 9vh, 112px) 0;
  position: relative; overflow: hidden;
}
.cta-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.18;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.18; }
.cta-banner-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 32px;
}
.cta-banner-eyebrow { color: rgba(247,246,242,0.65); }
.cta-banner-title, .cta-banner-inner h2 {
  font-size: clamp(32px, 4.5vw, 64px); color: var(--canvas);
}
.cta-banner-sub { font-size: clamp(15px, 1.5vw, 18px); color: rgba(247,246,242,0.75); max-width: 52ch; }
.cta-banner-actions, .cta-banner-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cta-banner-phone {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(247,246,242,0.7);
}
.cta-banner-btns a, .cta-banner-actions a { display: inline-flex; align-items: center; gap: 8px; }
.cta-banner-actions .btn-cta-phone, .cta-banner-btns .btn-cta-phone {
  background: transparent; color: var(--canvas);
  border: 2px solid rgba(247,246,242,0.45);
  padding: 14px 26px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: background 150ms;
}
.cta-banner-actions .btn-cta-phone:hover { background: rgba(247,246,242,0.12); text-decoration: none; color: var(--canvas); }
.cta-banner-actions .btn-cta-estimate, .cta-banner-btns .btn-cta-estimate {
  background: var(--canvas); color: var(--primary);
  border: 2px solid var(--canvas); padding: 14px 26px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: filter 150ms;
}
.cta-banner-actions .btn-cta-estimate:hover { filter: brightness(0.94); text-decoration: none; color: var(--primary); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
  border-top: 1px solid var(--hairline);
}
.faq-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.faq-inner > h2,
.faq > .inner > h2 {
  font-size: clamp(32px, 4vw, 56px); margin-bottom: 48px;
}
.faq-list, .faq-grid {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
  margin-top: 40px;
}
.faq-item, details.faq-item, details {
  border-bottom: 1px solid var(--hairline);
}
details summary,
.faq-item summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-family: 'IBM Plex Sans', sans-serif; font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--muted); transition: transform 220ms, color 150ms;
}
details[open] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
details summary::after { display: none; }
.faq-body, .faq-answer {
  padding: 0 0 20px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 72ch;
}
details p { padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about-story {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.about-story-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-portrait-col { position: relative; }
.about-portrait-col img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; max-height: 560px;
  filter: grayscale(15%);
}
.about-portrait-caption {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); margin-top: 12px;
}
.about-text-col { padding-top: 8px; }
.about-eyebrow { margin-bottom: 12px; }
.about-text-col h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 24px; }
.about-body { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; }
.about-pull-quote {
  border-left: 3px solid var(--primary); padding-left: 20px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(18px, 2vw, 24px); color: var(--ink); line-height: 1.3;
  font-style: normal;
}
.about-headline {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(22px, 2.5vw, 34px); margin-bottom: 16px;
}
.about-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.about-chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 14px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--primary);
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-portrait-col img { aspect-ratio: 16/9; max-height: 360px; }
}

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact, .contact-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
  border-top: 1px solid var(--hairline);
}
.contact > .inner > h2,
.contact-section .contact-inner > h2 {
  font-size: clamp(32px, 4vw, 56px); margin-bottom: 48px;
}
.contact-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.contact-form-wrap { padding-top: 8px; }
.contact-form-eyebrow { margin-bottom: 12px; }
.contact-form-heading { font-size: clamp(24px, 2.8vw, 40px); margin-bottom: 12px; }
.contact-form-intro { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-field, .form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-group.full-width { grid-column: 1/-1; }
.form-field label, .form-group label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted);
}
.form-field input, .form-group input,
.form-field textarea, .form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 4px;
  background: var(--surface); color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif; font-size: 15px;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus, .form-group input:focus,
.form-field textarea:focus, .form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(49,51,19,0.12);
}
.form-field textarea, .form-group textarea {
  min-height: 120px; resize: vertical;
}
.form-submit { margin-top: 8px; }

.contact-info { padding-top: 8px; }
.contact-info > h3 { font-size: clamp(20px, 2.2vw, 30px); margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {}
.contact-info-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px; color: var(--ink); font-weight: 500;
}
.contact-info-value a { color: var(--ink); font-weight: 600; }
.contact-info-value a:hover { color: var(--primary); }
.contact-socials {
  display: flex; gap: 12px; margin-top: 24px;
}
.contact-info-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-top: 4px solid var(--primary); border-radius: 4px; padding: 32px;
}
.info-eyebrow { margin-bottom: 24px; }
.info-block { margin-bottom: 24px; }
.info-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 6px;
}
.info-value { font-size: 16px; font-weight: 500; color: var(--ink); }
.info-value a { color: var(--primary); font-weight: 600; }
.info-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hours-grid { display: flex; flex-direction: column; gap: 4px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; }
.hours-day { font-size: 14px; color: var(--ink-mid); }
.hours-time { font-size: 14px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; }

.service-areas-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--primary-alpha); border: 1px solid var(--border);
  color: var(--ink); transition: background 150ms, color 150ms;
}
.social-link:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

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

/* ─── CONTACT SOCIALS (in contact section) ────────────────────── */
.contact-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--primary-alpha); border: 1px solid var(--border);
  color: var(--ink); transition: all 150ms;
}
.contact-socials a:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.contact-socials svg { width: 18px; height: 18px; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer, .site-footer, footer {
  background: var(--ink);
  color: var(--canvas);
  padding-top: clamp(56px, 8vh, 96px);
}
.footer-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid rgba(247,246,242,0.10);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 40px; max-width: 160px; filter: brightness(0) invert(1); }
.footer-brand-name, .footer-brand-logo {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 18px; color: var(--canvas);
}
.footer-tagline { font-size: 14px; color: rgba(247,246,242,0.55); line-height: 1.5; max-width: 26ch; }
.footer-logo { max-height: 40px; }
.footer-col {}
.footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(247,246,242,0.45); margin-bottom: 16px; display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-links li a {
  font-size: 14px; color: rgba(247,246,242,0.75);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: var(--canvas); text-decoration: none; }
.footer-links li span { font-size: 14px; color: rgba(247,246,242,0.55); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(247,246,242,0.7); margin-bottom: 8px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: rgba(247,246,242,0.45); }
.footer-contact-item a { color: rgba(247,246,242,0.7); }
.footer-contact-item a:hover { color: var(--canvas); text-decoration: none; }
.footer-social, .footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a, .footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(247,246,242,0.08); border: 1px solid rgba(247,246,242,0.12);
  color: rgba(247,246,242,0.6); transition: all 150ms;
}
.footer-social a:hover, .footer-socials a:hover {
  background: rgba(247,246,242,0.15); color: var(--canvas); text-decoration: none;
}
.footer-social svg, .footer-socials svg { width: 16px; height: 16px; }
.footer-phone-link, .footer-email-link {
  color: rgba(247,246,242,0.75); font-size: 14px;
}
.footer-phone-link:hover, .footer-email-link:hover { color: var(--canvas); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px; flex-wrap: wrap;
}
.footer-copy, .footer-bottom-copy, .footer-bottom-text, .footer-legal {
  font-size: 12px; color: rgba(247,246,242,0.35);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-license, .footer-license-row, .footer-lic, .footer-lic {
  font-size: 12px; color: rgba(247,246,242,0.35);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin: 8px 0 16px; }
.footer-contact a { font-size: 14px; color: rgba(247,246,242,0.7); }
.footer-contact a:hover { color: var(--canvas); text-decoration: none; }
.footer-phone { font-size: 14px; color: rgba(247,246,242,0.7); }
.footer-lic { display: block; }

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

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

@media (min-width: 900px) {
  .mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta, .mobile-cta, .mobile-call { 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); }

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

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

/* ─── SVG CAPS ────────────────────────────────────────────────── */
svg { display: block; }
.nav-pages svg, .top-nav svg { width: 20px; height: 20px; }
.faq-chevron { width: 20px; height: 20px; }
.rating-stars-row svg { width: 20px; height: 20px; }
.case-card-location svg { width: 14px; height: 14px; }
.contact-info-item svg { width: 20px; height: 20px; }
.footer-contact-item svg { width: 16px; height: 16px; }

/* ─── TABLE CELLS (thead only for dark bg) ────────────────────── */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary); color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.10em; padding: 12px 16px;
}
.services-table tbody td { background: var(--surface); color: var(--ink); padding: 14px 16px; }

/* ─── SECTION PADDING ─────────────────────────────────────────── */
section { padding: clamp(80px, 10vh, 128px) 0; }
section.hero, section.trust-strip, section.page-header,
.marquee-strip, .team-cta, .cta-banner, .awards-strip { padding: 0; }
.gallery-preview { padding: clamp(80px, 10vh, 128px) 0; }

/* ─── MISCELLANEOUS ───────────────────────────────────────────── */
::selection { background: var(--primary); color: var(--canvas); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.full-width { grid-column: 1/-1; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-index { grid-column: 1 / -1; }
.service-row-arrow { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-row-inner { 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; }
