@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:        #046444;
  --primary-dark:   #034d34;
  --primary-light:  #e6f2ee;
  --accent:         #609E8C;
  --accent-light:   #d0e8e2;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2e3338;
  --muted:          #5C6068;
  --muted-light:    #8a9098;
  --border:         rgba(20,24,29,0.12);
  --border-strong:  rgba(20,24,29,0.22);
  --primary-border: rgba(4,100,68,0.22);
  --header-height:  72px;
}

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

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::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', sans-serif;
  font-weight: 400;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; 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; }

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

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

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow,
.section-label,
.services-section-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

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

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

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex: 0 0 auto; }
.nav-cta span { display: inline; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 10px 0; font-size: 17px; }
}

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

.btn-primary, .btn-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.92); color: #fff;
}

.btn-outline, .btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover, .btn-outline-ink:hover {
  background: var(--ink); color: #fff; text-decoration: none;
}

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

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { filter: brightness(0.96); color: var(--primary); text-decoration: none; }

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

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
}
.btn-submit svg { width: 16px; height: 16px; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(20,24,29,0.70) 0%,
    rgba(20,24,29,0.45) 60%,
    rgba(20,24,29,0.30) 100%
  );
}

/* Brand hairline along bottom of hero */
#hero.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  padding: clamp(64px, 10vh, 120px) clamp(24px, 5vw, 80px) clamp(72px, 10vh, 120px);
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title,
.hero-inner h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(96,158,140,0.5);
  padding: 7px 12px;
  border-radius: 4px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip-inner,
.trust-strip-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 8px 14px;
}

.trust-badge-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

/* ============================================================
   SERVICES SECTION (INDEX — homepage)
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}

.services-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-inner h2,
.services-inner > h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 20ch;
}

.service-list {
  list-style: none;
  padding: 0; margin: 0 0 48px;
  border-top: 1px solid var(--border);
}

.service-list > li { display: block; }
.service-list > li > a { display: block; text-decoration: none; }
.service-list > li > a:hover { text-decoration: none; }

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  cursor: pointer;
  transition: background 200ms;
  text-decoration: none;
}
.service-row:hover {
  background: rgba(4,100,68,0.03);
  text-decoration: none;
}

.service-index {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.service-arrow {
  width: 24px; height: 24px;
  color: var(--primary);
  flex: 0 0 auto;
  transition: transform 200ms;
}
.service-row:hover .service-arrow { transform: translateX(4px); }

.services-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding: clamp(64px, 8vh, 100px) 0;
}

.services-detail-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-feature {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(60px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.service-feature:last-child { border-bottom: none; }

.service-feature.reverse {
  grid-template-columns: 1fr 45%;
}
.service-feature.reverse .service-feature-photo { order: 2; }
.service-feature.reverse .service-feature-body  { order: 1; }

.service-feature-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-mid);
}

.service-feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  max-height: 520px;
}

.service-feature-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.service-feature-title,
.service-feature-body h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-feature-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

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

/* Services index strip */
.services-index-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}
.services-index-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-index-inner::-webkit-scrollbar { display: none; }

.service-index-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 16px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.service-index-link:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
.service-index-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted-light);
}

/* ============================================================
   GALLERY PREVIEW (homepage)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: clamp(80px, 10vh, 128px) 0;
}
.gallery-preview-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-preview-inner h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 20ch;
}

.gallery-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  min-height: 420px;
}
.gallery-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.gallery-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.75) 0%, rgba(20,24,29,0) 60%);
  display: flex;
  align-items: flex-end;
}
.gallery-frame-meta {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 24px;
}
.gallery-frame-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.gallery-frame-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 32px);
  color: #fff;
  line-height: 1.1;
}

/* ============================================================
   GALLERY SECTION (gallery page)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(60px, 8vh, 96px) 0;
}
.gallery-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 10px;
}
.gallery-section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-card {
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}
.gallery-card.featured {
  grid-column: span 2;
}

.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-mid);
}
.gallery-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
  max-height: none;
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.03); }

.gallery-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.08em;
  background: var(--primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
.gallery-card-category {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(20,24,29,0.75);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.gallery-card-body {
  padding: 18px 20px;
}
.gallery-card-body h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--ink);
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gallery-card-location svg { width: 12px; height: 12px; }
.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reviews-inner h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.reviews-aggregate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
  padding: 36px 40px;
}
.reviews-big-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.reviews-stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.reviews-stars-row svg { width: 20px; height: 20px; color: var(--primary); fill: var(--primary); }
.reviews-count-label {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 4px;
}
.reviews-platform-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.reviews-cta-block { display: flex; align-items: center; }

@media (max-width: 640px) {
  .reviews-aggregate {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: clamp(80px, 10vh, 128px) 0;
}
.service-areas-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.service-areas-grid h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service-areas-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.areas-chip-cloud,
.area-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.area-chip,
.area-pill {
  display: inline-flex;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 7px 13px;
  background: var(--surface);
}
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; }

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

/* ============================================================
   CREDENTIALS (about page — license registry)
   ============================================================ */
.cred-registry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.cred-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
  padding: 16px 18px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cred-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(4,100,68,0.18);
}
.cred-card-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}
.cred-card-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
}

/* Cred items (contact page) */
.cred-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}
.cred-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-portrait-col { display: flex; flex-direction: column; gap: 0; }
.about-portrait-frame {
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-mid);
  margin-bottom: 16px;
}
.about-portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  max-height: 480px;
  min-height: 320px;
}
.about-portrait-img { width: 100%; object-fit: cover; }

.about-portrait-caption {
  padding: 14px 0 8px;
  border-top: 2px solid var(--primary);
}
.about-portrait-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.1;
}
.about-portrait-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-top: 4px;
}

.about-body-col { display: flex; flex-direction: column; gap: 20px; }
.about-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.about-prose p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-frame img { max-height: 380px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact,
.contact-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 128px) 0;
}
.contact-inner,
.contact-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-inner > div:first-child,
.contact-form-wrap { display: flex; flex-direction: column; }

.contact-inner h2,
.contact-form-wrap h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.contact-form-sub,
.contact-form-heading {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label, label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.form-input, input[type="text"],
input[type="email"], input[type="tel"],
input[type="name"], select,
.form-textarea, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,100,68,0.12);
}
textarea, .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'IBM Plex Sans', sans-serif;
}
select { cursor: pointer; }

/* Contact info side */
.contact-info-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-info-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-detail-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 2px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-phone-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
}
.contact-phone-link:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.contact-cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.contact-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 7px 12px;
  background: var(--surface);
}
.contact-cert-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

/* Info cards (contact page alt layout) */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
}
.info-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.info-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-icon { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; margin-top: 2px; }
.info-text { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }
.info-email, .info-phone { font-size: 14px; color: var(--ink); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-top: 6px;
}
.hours-day {
  font-size: 13px;
  color: var(--muted);
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(64px, 8vh, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}
.cta-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative; z-index: 2;
}
.cta-banner-eyebrow {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.cta-banner-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
  max-width: 18ch;
}
.cta-banner-title span { color: var(--accent); }
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}
.cta-banner-actions,
.cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-banner-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.cta-phone-big { display: flex; flex-direction: column; gap: 4px; }
.cta-phone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.cta-phone-display {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 40px);
  color: #fff;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 40vh;
  max-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,24,29,0.72) 0%, rgba(20,24,29,0.45) 100%);
  z-index: 1;
}
.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 48px) clamp(40px, 5vh, 64px);
  width: 100%;
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-header-title,
.page-header-inner h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 14px;
}
.page-header-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.55;
}
.page-header-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin-top: 20px;
}
.header-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(96,158,140,0.5);
  border-radius: 4px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(56px, 7vh, 96px);
}
.footer-inner,
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 5vh, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.footer-tagline, .footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-brand-email, .footer-brand-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-contact-line svg { width: 14px; height: 14px; color: var(--accent); flex: 0 0 auto; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title, .footer-col-label, .footer-col-heading {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-style: normal;
}
.footer-address a { color: rgba(255,255,255,0.65); }
.footer-address a:hover { color: #fff; }

.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-certs, .footer-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-cert-badge, .footer-cert-chip, .footer-cred-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

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

/* Container variants */
.mobile-sticky-cta,
.mobile-cta-sticky {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: none;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}
.review-stars svg { color: var(--primary); fill: 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);
  opacity: 0.75;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  transition: transform 200ms;
  flex: 0 0 auto;
  color: var(--muted);
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details.faq p {
  margin-top: 12px;
  line-height: 1.65;
  color: var(--muted);
}

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

/* ============================================================
   TABLES
   ============================================================ */
.services-table { width: 100%; border-collapse: collapse; }
.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: var(--surface);
  color: var(--ink);
}
.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;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  text-align: left;
}
.services-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .cred-registry { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-feature-photo { order: 0; }
  .service-feature.reverse .service-feature-body  { order: 0; }
  .service-feature-photo img { min-height: 280px; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-actions, .cta-btn-group { flex-direction: column; }
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.featured { }

/* Nav-link uniform base — no rogue backgrounds */
#navLinks a {
  background: transparent;
  border: none;
  border-radius: 0;
}

/* Anchor rules for headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-index { grid-column: 1 / -1; }
.service-info { grid-column: 1 / -1; }
.service-arrow { grid-column: 1 / -1; }
.reviews-big-num { grid-column: 1 / -1; }
.reviews-cta-block { grid-column: 1 / -1; }
.contact-detail-label { grid-column: 1 / -1; }
.contact-detail-value { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cred-card { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.contact-info-wrap { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.hours-day { 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; }
