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

/* ─── TOKENS ─── */
:root {
  --primary:        #0CB45C;
  --primary-dark:   #099b4e;
  --primary-deep:   #077a3d;
  --accent:         #54AA75;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2e;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-solid:   #0C0C0F;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 500;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a { color: inherit; text-decoration: none; border-bottom: 0; }
h1 a:hover, h2 a:hover, h3 a:hover { color: inherit; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
address { font-style: normal; }

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

/* ─── LAYOUT ─── */
.container { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ─── SCROLL PROGRESS ─── */
#progress-bar, #scrollProgress, .scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ─── SITE HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(12,12,15,0.10);
}
.top-nav {
  height: var(--header-height);
  max-width: 1360px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-pages { flex: 1; display: flex; justify-content: center; }
.nav-pages ul, ul#navLinks { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-pages a, #navLinks a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 600; font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); text-decoration: none;
}
.nav-pages a:hover, #navLinks a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"], #navLinks a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }
.nav-cta {
  flex: 0 0 auto;
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700; font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; text-decoration: none;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none;
  font-size: 26px; color: var(--ink);
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px 28px; gap: 8px;
    border-bottom: 1px solid rgba(12,12,15,0.10);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul, ul#navLinks { flex-direction: column; gap: 4px; align-items: flex-start; }
  .nav-cta span:not(:first-child) { display: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 18px 32px;
  border-radius: 0; cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none; white-space: nowrap;
}
.btn-primary, .btn-primary-lg {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-primary-lg:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: #fff; text-decoration: none;
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--canvas); text-decoration: none; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--ink); text-decoration: none; }
.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 2px solid #fff;
  padding: 18px 36px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-outline-lg:hover { background: #fff; color: var(--ink); text-decoration: none; }
.btn-outline-lg svg { width: 20px; height: 20px; }
.btn-service {
  display: inline-block;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 14px 28px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none;
  transition: background 150ms;
}
.btn-service:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 18px 32px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 0; text-decoration: none;
  transition: border-color 150ms, background 150ms;
}
.btn-phone:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 36px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; cursor: pointer; width: 100%;
  justify-content: center;
  transition: background 150ms;
}
.btn-submit:hover { background: var(--primary-dark); text-decoration: none; }
.btn-submit svg { width: 20px; height: 20px; }
.btn-form-submit {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 40px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; cursor: pointer; width: 100%;
  transition: background 150ms;
}
.btn-form-submit:hover { background: var(--primary-dark); }

/* ─── HERO ─── */
#hero.hero {
  min-height: 92vh;
  display: flex; flex-direction: column;
}
.hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.72) 45%,
    rgba(12,12,15,0.30) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(60px, 8vh, 100px);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 92vh;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 20px;
}
.hero-title, h1.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8.5vw, 132px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 52ch; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 44px;
}
.hero-ctas a:first-child {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 36px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none;
  transition: background 150ms;
}
.hero-ctas a:first-child:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; }
.hero-ctas a:last-child {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 18px 36px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none;
  transition: border-color 150ms, background 150ms;
}
.hero-ctas a:last-child:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  width: fit-content;
}
.trust-chip, li.trust-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.90);
  border-right: 1px solid rgba(255,255,255,0.20);
}
.trust-chip:last-child { border-right: none; }
.trust-chip-dot, .trust-badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 0;
  display: inline-block; flex-shrink: 0;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}
.trust-strip-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-wrap: wrap; align-items: stretch;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-right: 1px solid var(--border-solid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.trust-badge:last-child { border-right: none; }
.trust-badge-dot { background: var(--primary); }

/* ─── BRAND BAND ─── */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 5vw, 72px) 28px;
  overflow: hidden;
}
.brand-band-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap;
}
.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  flex: 1; min-width: 280px;
}
section.brand-band .brand-band-claim { font-size: clamp(36px, 5.5vw, 80px); }
.brand-band-right {
  flex: 0 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.brand-band-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.80);
}
.brand-band-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 14px 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none;
  transition: background 150ms;
}
.brand-band-cta:hover { background: var(--surface); text-decoration: none; color: var(--ink); }
.brand-band-cta svg { width: 18px; height: 18px; }
div.brand-band > p.brand-band-claim, div.brand-band > p.brand-band-text {
  max-width: 1360px; margin: 0 auto;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
}

/* ─── SECTION COMMON ─── */
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px;
  display: block;
}
.section-header { margin-bottom: 56px; }
.section-title, h2.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}

/* ─── SERVICES ─── */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
}
.services-bento {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
}
.service-flagship {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--border-solid);
  margin-bottom: 2px;
}
.service-flagship > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  max-height: none;
}
.service-flagship::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.90) 0%, rgba(12,12,15,0.20) 100%);
}
.service-flagship-body {
  position: relative; z-index: 2;
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: flex-end;
  align-self: end;
}
.service-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 12px;
}
.service-flagship-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(28px, 4vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 20px; max-width: 22ch;
}
.service-flagship-body p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 56ch; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  overflow: hidden; position: relative;
  text-decoration: none; color: var(--ink);
  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.24);
  text-decoration: none;
}
.service-card > img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: center;
  display: block; max-height: 200px; flex-shrink: 0;
}
.service-card-body {
  padding: 20px 20px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 8px;
}
.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.05; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--muted); flex: 1; margin-bottom: 12px;
}
.service-card-arrow {
  font-size: 18px; color: var(--primary);
  font-weight: 700; margin-top: auto;
}

/* ─── GALLERY (index.html) ─── */
.gallery {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
}
.gallery-feature {
  position: relative; overflow: hidden;
  min-height: 480px; border: 1px solid var(--border-solid);
}
.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  max-height: none;
}
.gallery-feature-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, rgba(12,12,15,0.15) 60%);
}
.gallery-feature-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end;
  padding: 40px;
}
.gallery-feature-content > div {
  display: flex; flex-direction: column; gap: 12px;
}
.gallery-feature-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(24px, 3vw, 40px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
}
.gallery-feature-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.72);
}
.gallery-feature-content a {
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: 14px 28px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none; margin-top: 8px;
  transition: background 150ms;
}
.gallery-feature-content a:hover { background: var(--primary-dark); text-decoration: none; }

/* ─── FULL GALLERY PAGE ─── */
.gallery-section { background: var(--canvas); padding: clamp(72px, 9vh, 112px) 0; }
.gallery-section-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.gallery-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-heading-block {}
.gallery-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px;
}
.gallery-heading, h2.gallery-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.filter-pills { 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: 10px 18px;
  border: 2px solid var(--border-solid);
  background: transparent; color: var(--ink);
  border-radius: 0; cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active { background: var(--ink); color: #fff; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  overflow: hidden; display: flex; flex-direction: column;
}
.case-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.case-card-photo > img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.case-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 5px 10px; z-index: 2;
}
.case-card-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(12,12,15,0.75); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 5px 10px; z-index: 2;
}
.case-card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.case-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px;
}
.case-card-location {
  display: flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); margin-bottom: 10px;
}
.case-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.case-card-desc { font-size: 14px; line-height: 1.55; color: var(--muted); flex: 1; margin-bottom: 16px; }
.case-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--primary); text-decoration: none;
  transition: gap 150ms;
}
.case-card-arrow:hover { gap: 10px; text-decoration: none; color: var(--primary); }
.case-card-arrow svg { width: 16px; height: 16px; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--ink);
  padding: 56px 0;
}
.stats-strip-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0; color: var(--primary); letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.60); margin-top: 8px;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.reviews-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.reviews-header { margin-bottom: 56px; }
.reviews-header h2 {}
.reviews-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); margin-top: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border-solid);
}
.review-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }
.review-quote {
  font-size: 17px; font-style: italic; line-height: 1.55;
  color: var(--ink-mid); margin-bottom: 20px;
}
.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}

/* ─── SERVICE AREAS ─── */
.service-areas {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}
.service-areas-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.areas-left {}
.areas-left h2, .service-areas-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px;
}
.areas-tagline {
  font-size: 16px; line-height: 1.6; color: var(--muted);
  margin-top: 16px; max-width: 36ch;
}
.areas-list {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.area-chip, li.area-chip {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 10px 16px;
  border: 2px solid var(--border-solid);
  color: var(--ink); background: transparent;
}
.area-pill {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 14px;
  border: 2px solid var(--border-solid);
  color: var(--ink); background: transparent;
}
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-guarantee {
  border-top: 1px solid var(--border-solid);
  padding-top: 20px; margin-top: 20px;
}
.contact-guarantee-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 6px;
}
.contact-guarantee p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.service-areas-strip {
  background: var(--ink); padding: 18px 28px;
}
.service-areas-strip .service-areas-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.service-areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); flex-shrink: 0;
}
.service-areas-strip .area-chip {
  border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.80);
}

/* ─── FAQ ─── */
.faq {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-solid);
}
.faq-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.faq-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px;
  display: block;
}
.faq-inner h2, .faq-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 56px;
}
.faq-list { border-top: 1px solid var(--border-solid); }
details.faq, details {
  border-bottom: 1px solid var(--border-solid);
}
details summary {
  cursor: pointer; font-weight: 600;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 18px; line-height: 1.3;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; color: var(--ink); flex-shrink: 0; transition: transform 200ms; }
details[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }
details summary::after { display: none; }
.faq-answer {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); padding-bottom: 24px;
  max-width: 80ch;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-form-col, .contact-form-side {
  display: flex; flex-direction: column;
}
.contact-form-col h2, .contact-form-side h2, .contact-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 36px;
}
.contact-section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); display: block; margin-bottom: 16px;
}
.contact-info-col, .contact-info-side {
  display: flex; flex-direction: column; gap: 0;
}
.contact-info-side > img { margin-bottom: 28px; max-height: 280px; }
.contact-info-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.1; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 24px;
}
.contact-info-block { margin-bottom: 16px; }
.contact-info-block h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.05; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.contact-detail-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.contact-detail-group:last-child { border-bottom: none; }
.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.contact-detail-value a { color: var(--ink); }
.contact-detail-value a:hover { color: var(--primary); }
.contact-detail-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.info-block { padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); display: block; margin-bottom: 8px;
}
.info-block a { font-size: 16px; font-weight: 600; color: var(--ink); }
.info-block a:hover { color: var(--primary); }
.info-block p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.info-block-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink);
}
.info-guarantees { display: flex; flex-wrap: wrap; gap: 8px; }
.guarantee-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 14px;
  border: 2px solid var(--border-solid);
  color: var(--ink); background: transparent;
}
.contact-tagline { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 20px; }
.contact-guarantee { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }

/* ─── CONTACT SECTION (contact.html) ─── */
.contact-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.cta-banner-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 16px; display: block;
}
.cta-banner-heading, .cta-banner-headline, h2.cta-banner-heading, h2.cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 20px;
}
.cta-banner-heading span, .cta-banner-headline span { color: var(--primary); }
.cta-banner-sub {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.cta-banner-text h2 { color: #fff; }
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.cta-banner-actions a:first-child {
  display: inline-block;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 36px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none; transition: background 150ms;
}
.cta-banner-actions a:first-child:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; }
.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff; margin-bottom: 16px;
}
.cta-banner-form {
  background: var(--canvas);
  padding: 40px; border: 1px solid rgba(255,255,255,0.08);
}
.cta-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 24px;
}

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group, .form-field {
  display: flex; flex-direction: column; margin-bottom: 16px;
}
.form-group label, .form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 2px solid var(--border-solid);
  border-radius: 0;
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: border-color 150ms;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea, .form-field textarea { min-height: 120px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }
.form-submit { margin-top: 8px; }
.form-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.70); display: block; margin-top: 10px;
}

/* ─── PAGE HEADER ─── */
.page-header {
  min-height: 54vh; max-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.40) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  padding-bottom: clamp(48px, 6vh, 80px);
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.page-header-inner h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  max-width: 18ch;
}
.page-header-sub {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 52ch;
}

/* ─── SERVICES DETAIL (services.html) ─── */
.services-detail {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-detail-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.services-detail-header { margin-bottom: 72px; }
.services-detail-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.services-detail-title, h2.services-detail-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-solid);
  margin-bottom: 2px;
  min-height: 480px;
}
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.service-feature-img {
  position: relative; overflow: hidden;
  background: var(--surface);
  min-height: 360px;
}
.service-feature-img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.service-feature-index {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; background: var(--primary);
  padding: 6px 12px;
}
.service-feature-body {
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
}
.service-feature-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.service-feature-name, h2.service-feature-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 20px;
}
.service-feature-desc {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); margin-bottom: 24px; max-width: 52ch;
}
.service-feature-bullets {
  list-style: none; margin-bottom: 32px;
}
.service-feature-bullets li {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
}
.service-feature-bullets li::before {
  content: '';
  width: 6px; height: 6px; background: var(--primary);
  flex-shrink: 0; margin-top: 8px;
}
.service-feature-body a {
  display: inline-block;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 16px 32px; font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 0; text-decoration: none; width: fit-content;
  transition: background 150ms;
}
.service-feature-body a:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; }

/* ─── ABOUT ─── */
.about {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.about-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 40% 1fr; gap: 0; align-items: start;
}
.about-photo-col {
  position: sticky; top: calc(var(--header-height) + 24px);
  padding-right: 60px;
}
.about-portrait {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover; object-position: center top;
  display: block; max-height: none;
  border: 1px solid var(--border-solid);
  filter: grayscale(20%);
}
.about-photo-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); padding: 14px 0;
  border-bottom: 1px solid var(--border-solid);
}
.about-text-col {
  padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 72px) 60px;
  border-left: 1px solid var(--border-solid);
}
.about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 16px; display: block;
}
.about-headline, h2.about-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 32px;
}
.about-divider {
  width: 80px; height: 4px;
  background: var(--primary);
  margin-bottom: 28px;
}
.about-body {
  font-size: 16px; line-height: 1.75;
  color: var(--muted); margin-bottom: 20px; max-width: 60ch;
}
.about-trust-chips {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 36px;
}
.about-trust-chip {
  padding: 20px 20px;
  border: 2px solid var(--border-solid);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 4px;
}
.about-chip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
}
.about-chip-value {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.0; letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─── SPECIALTIES ─── */
.specialties {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-solid);
}
.specialties-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.specialties-header { margin-bottom: 56px; }
.specialties-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.specialties-headline, h2.specialties-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.specialties-grid { display: flex; flex-direction: column; gap: 0; }
.specialty-row {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-solid);
}
.specialty-row:first-child { border-top: 1px solid var(--border-solid); }
.specialty-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--primary);
}
.specialty-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─── FOOTER ─── */
.site-footer, footer.site-footer, footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: 1360px; margin: 0 auto; padding: 72px 28px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-grid {
  max-width: 1360px; margin: 0 auto; padding: 72px 28px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: 18px; letter-spacing: -0.01em;
  text-transform: uppercase; color: #fff;
}
.footer-tagline, .footer-brand-tagline {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55);
}
.footer-phone-lg, .footer-brand-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--primary); margin-top: 8px;
}
.footer-phone-lg a, .footer-brand-phone a { color: var(--primary); }
.footer-phone-lg a:hover, .footer-brand-phone a:hover { color: var(--accent); text-decoration: none; }
.footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45); margin-bottom: 20px; display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a, .footer-contact-link {
  font-size: 14px; color: rgba(255,255,255,0.70); text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-contact-link:hover { color: var(--primary); text-decoration: none; }
.footer-links li { font-size: 14px; color: rgba(255,255,255,0.70); }
.footer-links span { font-size: 14px; color: rgba(255,255,255,0.70); display: block; margin-bottom: 6px; }
.footer-info-item { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.70); margin-bottom: 8px; }
.footer-info-item a { color: rgba(255,255,255,0.70); }
.footer-info-item a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom {
  max-width: 1360px; margin: 0 auto; padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); font-family: 'IBM Plex Mono', monospace; }
.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.footer-trust-chips li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.40); padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.10);
}
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cert {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.40); padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.10);
}

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

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

/* ─── MARQUEE (not used in this brief's band-variant) ─── */
.marquee {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  max-height: 64px; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ─── TABLE CELLS ─── */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink); color: #fff;
}

/* ─── MISC / UTILITY ─── */
.full { grid-column: 1 / -1; }
.active { }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { min-height: 80vh; padding-top: 48px; }
  .hero-title { font-size: clamp(48px, 10vw, 80px); }
  .service-areas-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-col { position: static; padding-right: 0; margin-bottom: 40px; }
  .about-text-col { padding: 0; border-left: none; }
  .about-portrait { aspect-ratio: 16 / 9; max-height: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-feature { grid-template-columns: 1fr; min-height: auto; }
  .service-feature.reverse { direction: ltr; }
  .service-feature-img { min-height: 300px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .top-nav { padding: 0 16px; }
  .hero-inner { padding: 0 16px; padding-bottom: 48px; min-height: 80vh; }
  .hero-trust-chips { flex-direction: column; width: 100%; }
  .trust-chip, li.trust-chip { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.20); }
  .trust-chip:last-child { border-bottom: none; }
  .trust-strip-inner { flex-direction: column; }
  .trust-badge { border-right: none; border-bottom: 1px solid var(--border-solid); width: 100%; }
  .trust-badge:last-child { border-bottom: none; }
  .services-inner, .gallery-inner, .reviews-inner, .faq-inner,
  .contact-inner, .about-inner, .specialties-inner, .gallery-section-inner { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner, .footer-grid { grid-template-columns: 1fr; padding: 40px 16px 24px; }
  .footer-bottom { padding: 16px; flex-direction: column; gap: 8px; text-align: center; }
  .about-trust-chips { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; text-align: center; }
  .brand-band { padding: clamp(32px, 5vw, 56px) 16px; }
  .cta-banner-inner { padding: 0 16px; }
  .services-detail-inner { padding: 0 16px; }
  .page-header-inner { padding: 0 16px 32px; }
  .contact-inner { padding: 0 16px; }
  .service-areas-inner { padding: 0 16px; }
  .specialties-inner { padding: 0 16px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-flagship-body { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.service-areas-label { grid-column: 1 / -1; }
.area-chip { grid-column: 1 / -1; }
.service-feature-img { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.case-card { grid-column: 1 / -1; }
.stat-block { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.about-text-col { grid-column: 1 / -1; }
.about-trust-chip { grid-column: 1 / -1; }
.specialty-num { grid-column: 1 / -1; }
.specialty-name { 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; }
