@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter+Tight:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #4A9B8E;
  --primary-dark:   #3a7d72;
  --accent:         #8B5E3C;
  --accent-dark:    #6f4b2f;
  --canvas:         #FAF7F2;
  --surface:        #F0EBE3;
  --ink:            #1A1814;
  --muted:          #6B6158;
  --border:         rgba(26,24,20,0.10);
  --border-primary: rgba(74,155,142,0.30);
  --shadow-md:      0 8px 32px -8px rgba(26,24,20,0.12);
  --shadow-lg:      0 18px 48px -12px rgba(26,24,20,0.18);
  --radius:         6px;
  --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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

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; }

ul, ol { list-style: none; }

svg { display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section-inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(72px, 9vh, 128px);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 36px); }

p { line-height: 1.68; }

/* ============================================================
   EYEBROW SYSTEM (6px accent rule — the site's visual thread)
   ============================================================ */
.section-eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-rule {
  display: inline-block;
  width: 6px;
  height: 32px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 1px;
}

.eyebrow-text,
.section-eyebrow > span:last-child,
.eyebrow > span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(11px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  line-height: 1.2;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: filter 150ms, transform 120ms, box-shadow 150ms;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 18px -4px rgba(74,155,142,0.40);
}
.btn-primary:hover { filter: brightness(0.92); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { filter: brightness(0.92); color: #fff; }

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

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   CHIPS
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 6px 14px;
  white-space: nowrap;
  line-height: 1.2;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.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(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: none; }

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta-icon { width: 16px; height: 16px; }

.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-shrink: 0;
}

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 899;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 8px 0; }

  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; }

  .nav-toggle { display: flex; }

  .top-nav { position: relative; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  background: var(--canvas);
  min-height: clamp(520px, 80vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(72px, 9vh, 128px) clamp(20px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 11vw, 130px);
  line-height: 0.90;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}
.hero-ctas a { font-size: 15px; }

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

.hero-supergraphic {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(160px, 22vw, 340px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-supergraphic { font-size: 120px; opacity: 0.06; right: -5%; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-strip-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 7px 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .trust-strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
  }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
}

/* ============================================================
   SERVICES SECTION (tabbed panel)
   ============================================================ */
.services {
  background: var(--canvas);
}

.services .section-inner {
  padding-block: clamp(72px, 9vh, 128px);
}

.section-heading,
.services .section-inner > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Tab strip */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
  margin-bottom: -1px;
  border-radius: 4px 4px 0 0;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--ink);
  border-bottom-color: var(--primary);
}

/* Panel area */
.services-panels {
  position: relative;
  min-height: 480px;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 55%;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-panel.active { display: grid; }

.service-panel > img,
.service-panel-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.service-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: none;
  object-fit: cover;
  flex-shrink: 0;
}

.service-panel-body {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-panel-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-panel-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.service-panel-body a.btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel > img {
    min-height: 240px;
    max-height: 280px;
  }
  .service-panel img {
    min-height: 240px;
    max-height: 280px;
  }
}

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: transparent;
}

.gallery-header {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px) 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
}

.gallery-grid img {
  width: 100%;
  height: clamp(220px, 28vw, 420px);
  max-height: none;
  object-fit: cover;
  display: block;
  transition: opacity 200ms;
}
.gallery-grid img:hover { opacity: 0.88; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 58vw; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
}

.service-areas .section-inner {
  padding-block: clamp(72px, 9vh, 128px);
}

.service-areas .section-inner > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.areas-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 56ch;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 18px;
  transition: border-color 150ms, color 150ms;
}
.area-chip:hover { border-color: var(--primary); color: var(--primary); }

.areas-descriptions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.area-blurb {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.area-blurb strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.area-blurb p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.areas-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
}

/* City chips (about page) */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 16px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); }

.faq .section-inner { padding-block: clamp(72px, 9vh, 128px); }

.faq .section-inner > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 22ch;
}

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  min-height: 56px;
  gap: 16px;
  transition: color 150ms;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-item[open] > .faq-question { color: var(--primary); }

.faq-answer {
  padding: 0 0 20px;
  background: var(--surface);
  padding: 20px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 4px;
}
.faq-answer p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
}
.faq-answer a { color: var(--primary); }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  text-align: center;
}
.team-cta .section-inner {
  padding-block: clamp(48px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.team-cta-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 22ch;
  text-align: center;
}
.team-cta a.btn { margin-top: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--surface); }

.contact .section-inner { padding-block: clamp(72px, 9vh, 128px); }

.contact .section-inner > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}

.contact-split {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74,155,142,0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button[type="submit"],
.contact-form .btn-primary {
  align-self: flex-start;
}

/* Info col */
.contact-phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  transition: color 150ms;
}
.contact-phone:hover { color: var(--primary-dark); text-decoration: none; }

.contact-emergency {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #c0392b;
  margin-bottom: 24px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-meta-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.contact-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 70px;
}

.contact-meta-value {
  font-size: 15px;
  color: var(--ink);
}

.contact-meta-row a {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

.contact-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.contact-cta,
.contact-cta-band {
  background: var(--primary);
}

.contact-cta-inner,
.contact-cta-band-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.contact-cta-band-heading,
.contact-cta-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}

.contact-cta-band-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

.contact-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.contact-emergency-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
  text-align: center;
}

.contact-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-cta-inner,
  .contact-cta-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-cta-panel { align-items: center; }
  .contact-cta-actions { justify-content: center; }
}

/* ============================================================
   OUR STORY (about page)
   ============================================================ */
.our-story {
  background: var(--surface);
  padding-block: clamp(72px, 9vh, 128px);
}

.our-story-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-text > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.story-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.story-text .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 6px 14px;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-supergraphic {
  text-align: center;
  background: var(--canvas);
  border-radius: 12px;
  padding: 40px 48px;
  border: 1px solid var(--border-primary);
}

.story-supergraphic-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(100px, 16vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.story-supergraphic-label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .our-story-inner { grid-template-columns: 1fr; }
  .story-visual { margin-top: 32px; }
}

/* ============================================================
   CREDENTIALS (about page)
   ============================================================ */
.credentials {
  background: var(--canvas);
  padding-block: clamp(72px, 9vh, 128px);
}

.credentials-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 40px;
}

.cred-col > h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.cred-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.cred-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.guarantee-list li {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
}

.guarantee-note {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 640px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS (about page)
   ============================================================ */
.service-areas-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(72px, 9vh, 128px) clamp(20px, 5vw, 60px);
}

.service-areas-inner > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.areas-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}

/* ============================================================
   CONTACT CTA BAND
   ============================================================ */
.contact-cta-band {
  background: var(--primary);
}

.contact-cta-band .section-eyebrow .eyebrow-text,
.contact-cta-band .eyebrow-text {
  color: rgba(255,255,255,0.70);
}
.contact-cta-band .eyebrow-rule { background: rgba(255,255,255,0.50); }

/* ============================================================
   ABOUT FEATURE (about.html hero)
   ============================================================ */
.about-feature {
  position: relative;
  min-height: clamp(340px, 50vh, 600px);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 0;
}

.about-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.70) 30%, rgba(26,24,20,0.20) 100%);
  z-index: 1;
}

.about-feature-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 60px);
}

.about-feature-inner .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.about-feature-inner .eyebrow-rule { background: var(--accent); }
.about-feature-inner .eyebrow span { color: rgba(255,255,255,0.72); }

.about-feature-bg { /* alias */ }

.about-feature h1,
.about-feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.about-feature-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  max-width: 52ch;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ============================================================
   SERVICES PAGE HERO
   ============================================================ */
.services-page-hero {
  background: var(--canvas);
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 45vh, 560px);
  display: flex;
  align-items: center;
}

.services-page-hero-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(64px, 9vh, 112px) clamp(20px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.services-page-hero-title,
.services-page-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 20px;
}

.services-page-hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.5;
  margin-bottom: 32px;
}

.services-hero-supergraphic {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding-block: clamp(48px, 6vh, 80px);
}

.services-detail-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 7vh, 96px);
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }

.service-row.is-reversed {
  direction: rtl;
}
.service-row.is-reversed > * {
  direction: ltr;
}

.service-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.service-visual-teal { background: var(--primary); }
.service-visual-sand { background: var(--surface); }

.service-visual-index {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.service-visual-sand .service-visual-index { color: var(--muted); }

.service-visual-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.service-visual-sand .service-visual-name { color: var(--ink); }

.service-visual-bar {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.service-visual-sand .service-visual-bar { background: var(--primary); }

.service-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-text-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.service-text-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.70;
  margin-bottom: 12px;
}

.service-text-name {
  /* rendered in HTML but not separately styled — inherits h2 */
}

.service-cta-wrap {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .service-row,
  .service-row.is-reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-visual { aspect-ratio: 16/9; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}

/* index.html footer layout */
.footer-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(56px, 7vh, 96px) clamp(20px, 5vw, 60px) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.footer-brand { grid-column: 1; }

.footer-brand-col { grid-column: 1; }
.footer-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 32ch;
}

.footer-logo img {
  max-height: 44px !important;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 32ch;
}

.footer-credentials {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav,
.footer-services,
.footer-col {
  min-width: 0;
}

.footer-nav strong,
.footer-services strong,
.footer-col h4,
.footer-col-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-services ul,
.footer-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a,
.footer-services a,
.footer-links-list a,
.footer-email-link,
.footer-phone-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-nav a:hover,
.footer-services a:hover,
.footer-links-list a:hover,
.footer-email-link:hover,
.footer-phone-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact strong { /* same as above nav */
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 150ms; }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }

.footer-emergency-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,160,100,0.85);
  display: block;
  margin-bottom: 8px;
}

.footer-meta-item {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 6px;
}

.footer-areas {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.footer-socials a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 24px clamp(20px, 5vw, 60px);
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
}

/* services.html footer uses .footer-grid */
.footer-grid {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(56px, 7vh, 96px) clamp(20px, 5vw, 60px) 0;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 120ms;
}
.mobile-call-pill:hover { filter: brightness(0.92); color: #fff; text-decoration: none; transform: translateY(-2px); }
.mobile-call-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (min-width: 900px) {
  .mobile-call-pill { display: none; }
}

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

/* ============================================================
   PROCESS STRIP (defensive — may appear)
   ============================================================ */
.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: 8px;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

/* ============================================================
   REVIEW CARDS (defensive)
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   MARQUEE (defensive — if HTML uses it)
   ============================================================ */
.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-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TABLE (defensive)
   ============================================================ */
.services-table { width: 100%; border-collapse: collapse; }
.services-table th, .services-table td { padding: 12px 16px; text-align: left; }
.services-table tbody tr { border-bottom: 1px solid var(--border); }
.services-table tbody td { background: var(--canvas); color: var(--ink); }
thead .col-service, thead .col-desc, thead .col-timeline, thead .col-price {
  background: var(--ink); color: #fff;
}

/* ============================================================
   UTILITY: no mirror on .is-reversed
   ============================================================ */
.flip, .is-reversed { transform: none; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { padding-block: clamp(56px, 8vh, 96px); }
  .service-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .btn-row { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .contact-cta-inner,
  .contact-cta-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-cta-panel { align-items: stretch; }
  .areas-chips { gap: 8px; }
  .trust-strip-inner {
    gap: 8px;
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-full { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.footer-nav { grid-column: 1 / -1; }
.footer-services { grid-column: 1 / -1; }
.footer-contact { grid-column: 1 / -1; }
.footer-top { grid-column: 1 / -1; }
.footer-bottom { 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; }
