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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #3C642C;
  --primary-dark:   #2d4d21;
  --primary-light:  #4e7a38;
  --accent:         #D3C9BA;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-ink:     #0C0C0F;

  --font-display:   'Archivo Black', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --header-height:  72px;
  --section-py:     clamp(72px, 9vh, 112px);
  --content-max:    1360px;
  --radius:         0;
}
@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: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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 { list-style: none; }
svg { display: inline-block; }

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

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
p { line-height: 1.65; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-secondary, .btn-outline, .btn-outline-white,
.btn-estimate, .btn-submit, .btn-contact-link, .btn-primary-dark, .form-submit, .cta-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms, filter 180ms;
  white-space: nowrap;
}
.btn-primary, .btn-estimate, .btn-submit, .form-submit, .cta-form-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-estimate:hover, .btn-submit:hover, .form-submit:hover, .cta-form-submit:hover {
  filter: brightness(0.88);
  color: #fff;
  text-decoration: none;
}
.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-ink);
}
.btn-secondary:hover, .btn-outline:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}
.btn-primary-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary-dark:hover { filter: brightness(1.2); color: #fff; text-decoration: none; }
.btn-contact-link {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-contact-link:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 2px solid var(--border-ink);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 150ms;
  width: 100%;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full-width { grid-column: 1 / -1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(32px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 600ms ease, transform 600ms ease; }
.scale-in   { opacity: 0; transform: scale(0.95); transition: opacity 500ms ease, transform 500ms ease; }
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }

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

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}
.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-logo:hover { text-decoration: none; }

.nav-pages { flex: 1; display: flex; justify-content: center; }
.nav-pages ul,
ul#navLinks { display: flex; align-items: center; gap: 28px; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  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-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 800;
  }
  .nav-pages ul, ul#navLinks { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta span { display: none; }
  .site-header { position: sticky; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}
.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; z-index: 0;
  filter: grayscale(20%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(12,12,15,0.82) 0%,
    rgba(60,100,44,0.45) 55%,
    rgba(12,12,15,0.20) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) clamp(20px, 4vw, 48px) clamp(64px, 10vh, 100px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 92vh;
  justify-content: flex-end;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-inner h1,
.hero-title {
  font-size: clamp(64px, 8.5vw, 132px);
  color: #fff;
  max-width: 16ch;
  text-shadow: none;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.trust-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 8px 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-inner { justify-content: flex-end; min-height: 85vh; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas a { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}
.trust-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  border-right: 1px solid var(--border-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
}
.trust-badge:first-child { border-left: 1px solid var(--border-ink); }
.trust-star { color: var(--primary); font-size: 14px; }

@media (max-width: 900px) {
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-badge { flex: 0 0 50%; border-right: 1px solid var(--border-ink); }
  .trust-badge:nth-child(even) { border-right: none; }
}
@media (max-width: 640px) {
  .trust-badge { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--border-ink); }
  .trust-badge:first-child { border-left: none; }
}

/* ============================================================
   BRAND BAND (type-band unique move)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vh, 72px) 0;
  overflow: hidden;
}
.brand-band-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.brand-band-claim {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 20ch;
}
.brand-band-sub {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
}
.brand-band-sep {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  margin: 0 16px;
  vertical-align: middle;
}
.brand-band-tel {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-decoration: none;
}
.brand-band-tel:hover { color: #fff; text-decoration: none; }

/* contact.html brand-band variant */
.brand-band-inner > span.brand-band-claim {
  display: block;
}

/* ============================================================
   SERVICES (index.html grid)
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.services-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 8px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--border-ink);
  margin-top: 40px;
}
.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--canvas);
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  overflow: hidden;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) { border-bottom: none; }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 100%;
  transition: transform 400ms ease;
  filter: grayscale(15%);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}
.service-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.0;
}
.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.service-card-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-top: 8px;
}
.services-all-cta {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border-ink); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: 1px solid var(--border-ink); }
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:not(:last-child) { border-bottom: 1px solid var(--border-ink) !important; }
  .service-card:last-child { border-bottom: none !important; }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-detail-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.services-detail-header {
  margin-bottom: 64px;
}
.services-detail-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 12px;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border: 2px solid var(--border-ink);
  margin-bottom: 32px;
  overflow: hidden;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 100%;
  filter: grayscale(15%);
  transition: transform 500ms ease;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }
.service-block-index {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  text-transform: uppercase;
}
.service-block-body {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  background: var(--canvas);
}
.service-block-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}
.service-block-body h3 {
  font-size: clamp(24px, 3vw, 42px);
}
.service-block-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 46ch;
}
.service-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color 150ms;
}
.service-block-cta svg { width: 16px; height: 16px; }
.service-block-cta:hover { color: var(--primary-dark); text-decoration: none; }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block.reverse { direction: ltr; }
  .service-block-photo { min-height: 280px; }
  .service-block-photo img { position: absolute; }
}

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
.about-section {
  background: var(--surface);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
}
.about-supergraphic {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.07;
  position: absolute;
  top: -40px; left: -20px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-text-col { display: flex; flex-direction: column; gap: 20px; }
.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}
.about-text-col h2 {
  font-size: clamp(32px, 4vw, 60px);
}
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.about-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.about-photo-col { display: flex; flex-direction: column; gap: 0; }
.about-photo-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-ink);
}
.about-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  display: block;
  max-height: 480px;
}
.about-photo-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--primary);
  padding: 12px 20px;
}

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

/* ============================================================
   CREDENTIALS STRIP (about.html)
   ============================================================ */
.credentials-strip {
  background: var(--ink);
  padding: clamp(40px, 5vh, 64px) 0;
}
.credentials-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cred-item {
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cred-item:last-child { border-right: none; }
.cred-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.cred-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
}
.cred-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .credentials-inner { grid-template-columns: 1fr; }
  .cred-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .cred-item:last-child { border-bottom: none; }
}

/* ============================================================
   GALLERY (index.html simple split)
   ============================================================ */
.gallery {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.gallery-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 12px;
  margin-bottom: 32px;
}
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--border-ink);
  min-height: 400px;
}
.gallery-photo {
  overflow: hidden;
  background: var(--surface);
}
.gallery-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 520px;
  filter: grayscale(15%);
  display: block;
}
.gallery-info {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5vw, 56px);
  gap: 24px;
  border-left: 2px solid var(--border-ink);
}
.gallery-info > div { display: flex; flex-direction: column; gap: 16px; }
.gallery-info h3 {
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
}
.gallery-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.gallery-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.gallery-info a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border-bottom: 1px solid rgba(211,201,186,0.4);
  padding-bottom: 2px;
  align-self: flex-start;
}
.gallery-info a:hover { color: #fff; text-decoration: none; }

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

/* ============================================================
   GALLERY FULL (gallery.html)
   ============================================================ */
.gallery-section { background: var(--canvas); padding: var(--section-py) 0; }
.gallery-section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.gallery-count {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  flex-shrink: 0;
}
.gallery-filters {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border: 2px solid var(--border-ink);
  align-self: flex-start;
  overflow: hidden;
}
.filter-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  border: none;
  border-right: 1px solid var(--border-ink);
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:last-child { border-right: none; }
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-ink);
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  display: block;
  text-decoration: none;
}
.gallery-tile.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 100%;
  filter: grayscale(15%);
  transition: transform 500ms ease, filter 400ms ease;
  display: block;
}
.gallery-tile:hover > img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.72) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.gallery-tile:hover .gallery-tile-info { opacity: 1; transform: translateY(0); }
.tile-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 4px;
}
.tile-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.tile-location {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.tile-location svg { width: 12px; height: 12px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-tile.tall { aspect-ratio: 4/3; grid-row: auto; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq, .faq-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.faq-section { background: var(--surface); }
.faq-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.faq-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 12px;
  margin-bottom: 40px;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.faq-col { display: flex; flex-direction: column; }
.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.faq-numeral {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  flex-shrink: 0;
}
.faq-title-block { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; }
.faq-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}
.faq-title-block h2 { font-size: clamp(32px, 4vw, 56px); }
.faq-list { display: flex; flex-direction: column; }
.faq-title { font-size: clamp(24px, 3vw, 40px); margin-bottom: 32px; }

details {
  border-bottom: 1px solid var(--border-ink);
}
details summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
  line-height: 1;
}
details[open] summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.faq-chevron { display: none; }
.faq-chevron svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .faq-cols { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
.contact {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.contact-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 12px;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-block:first-child { border-top: 1px solid var(--border-ink); }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.contact-info-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); }
.contact-phone-big {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
}

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

/* ============================================================
   CONTACT SECTION (contact.html)
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.contact-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.contact-form-col {
  display: flex;
  flex-direction: column;
}
.contact-info-col { display: flex; flex-direction: column; }
.info-block {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.info-block a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.info-block a:hover { color: var(--primary); }
.info-block-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.body-value { font-weight: 500; }
.info-divider { height: 1px; background: var(--border-ink); }
.hours-grid { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; }
.hours-day { font-weight: 600; color: var(--ink); }
.hours-time { color: var(--muted); }
.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.area-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border: 2px solid var(--border-ink);
  padding: 6px 12px;
  color: var(--ink);
}

/* contact.html two-col layout */
.contact-inner.fade-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner.fade-up { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: var(--section-py) 0;
}
.cta-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-banner-left { display: flex; flex-direction: column; gap: 24px; }
.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  display: block;
}
.cta-banner-left h2,
.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 20px; }
.cta-banner-text h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
}
.cta-banner-title { font-size: clamp(14px, 1.5vw, 18px); color: rgba(255,255,255,0.65); line-height: 1.6; }
.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent);
}
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.cta-banner-form {
  background: var(--surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-banner-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
}
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form input,
.cta-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 16px;
  border-radius: 0;
  width: 100%;
  outline: none;
  transition: border-color 150ms;
}
.cta-form input:focus,
.cta-form textarea:focus { border-color: rgba(255,255,255,0.6); }
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-form textarea { min-height: 100px; resize: vertical; }
.cta-form-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: filter 180ms;
}
.cta-form-submit svg { width: 18px; height: 18px; }
.cta-form-submit:hover { filter: brightness(0.88); }
.cta-phone-link, .cta-email-link {
  color: var(--accent);
  text-decoration: none;
}
.cta-phone-link:hover, .cta-email-link:hover { color: #fff; text-decoration: none; }
.cta-banner-right { display: flex; flex-direction: column; gap: 24px; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-form { padding: 28px; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.72) 0%, rgba(12,12,15,0.35) 60%, rgba(12,12,15,0.2) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 48px);
  width: 100%;
}
.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  max-width: 18ch;
}
.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 12px;
}
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 12px;
}
.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 52ch;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 7vh, 88px) 0 0;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(48px, 6vh, 72px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { flex: 0 0 auto; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
}
.footer-col-title, .footer-col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.footer-hours-day { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-hours-time { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-hours-item { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 6px; }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-contact-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-contact-val { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-contact-list li a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-list li a:hover { color: #fff; text-decoration: none; }
.footer-phone, .footer-email { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); }

@media (max-width: 1200px) {
  .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; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-sticky-cta,
.mobile-cta,
.mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms, transform 150ms;
}
.mobile-call-pill svg,
.mobile-sticky-cta svg,
.mobile-cta svg,
.mobile-call svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-call-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover,
.mobile-call:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.mobile-call-pill a,
.mobile-sticky-cta a,
.mobile-cta a,
.mobile-call a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 900px) {
  .mobile-call-pill,
  .mobile-sticky-cta,
  .mobile-cta,
  .mobile-call { display: none; }
}

/* ============================================================
   STAT / PROCESS / REVIEW (generic — required patterns)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
}
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }
.review-card { padding: 28px; background: var(--surface-2, rgba(0,0,0,0.02)); }
.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; }

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

/* ============================================================
   MISC SAFEGUARDS
   ============================================================ */
.flip { order: -1; }
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* Heading anchors never look like links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* SVG size caps */
.faq-chevron svg,
.service-block-cta svg,
.cta-form-submit svg,
.footer-contact-item svg,
.tile-location svg,
.mobile-call-pill svg,
.mobile-sticky-cta > a svg,
.mobile-cta > a svg { width: 20px; height: 20px; }

/* Noise texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.brand-band-claim { grid-column: 1 / -1; }
.brand-band-sub { grid-column: 1 / -1; }
.service-card-img { grid-column: 1 / -1; }
.service-card-body { grid-column: 1 / -1; }
.btn-outline { grid-column: 1 / -1; }
.gallery-photo { grid-column: 1 / -1; }
.gallery-info { grid-column: 1 / -1; }
.faq-col { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.section-title { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.gallery-count { grid-column: 1 / -1; }
.active { grid-column: 1 / -1; }
.filter-pill { grid-column: 1 / -1; }
.gallery-tile-overlay { grid-column: 1 / -1; }
.gallery-tile-info { grid-column: 1 / -1; }
.cta-eyebrow { grid-column: 1 / -1; }
.cta-heading { grid-column: 1 / -1; }
.cta-phone-link { grid-column: 1 / -1; }
.cta-email-link { grid-column: 1 / -1; }
.cta-form { grid-column: 1 / -1; }
.page-eyebrow { grid-column: 1 / -1; }
.page-header-title { grid-column: 1 / -1; }
.cred-label { grid-column: 1 / -1; }
.cred-value { grid-column: 1 / -1; }
.cred-sub { grid-column: 1 / -1; }
.about-eyebrow { grid-column: 1 / -1; }
.about-headline { grid-column: 1 / -1; }
.about-body { grid-column: 1 / -1; }
.about-photo-frame { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.btn-estimate { grid-column: 1 / -1; }
.btn-contact-link { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.faq-numeral { grid-column: 1 / -1; }
.faq-title-block { grid-column: 1 / -1; }
.footer-col { 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; }
