@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital,wght@0,400;1,400&family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:       #FC5C04;
  --accent:        #7F8949;
  --canvas:        #0F120B;
  --surface:       #181D13;
  --ink:           #EDE8DC;
  --muted:         #8A9080;
  --border:        rgba(127,137,73,0.20);
  --border-primary: rgba(252,92,4,0.30);
  --primary-dim:   rgba(252,92,4,0.10);
  --accent-dim:    rgba(127,137,73,0.08);
  --header-height: 72px;
  --radius:        4px;
  --section-py:    clamp(72px, 9vh, 120px);
  --content-max:   1240px;
}

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

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--canvas);
  color: var(--ink);
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--canvas);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

/* Anchors in 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 { list-style: none; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow,
.section-eyebrow,
.hero-eyebrow,
.about-feature-eyebrow {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container,
.section-inner,
.trust-strip-inner,
.service-areas-inner,
.faq-inner,
.about-story-inner,
.credentials-inner,
.contact-cta-inner,
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--border-primary);
  margin: 0;
}

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

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

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

/* Fallback text logo */
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--primary); }

.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-family: 'IBM Plex Sans', sans-serif;
  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);
  padding-bottom: 4px;
}

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

.nav-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta-label { display: inline; }

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

@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: 4px;
    border-bottom: 1px solid rgba(252,92,4,0.15);
    z-index: 899;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms, transform 200ms;
  letter-spacing: 0.01em;
}
.btn:hover, .btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--canvas);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: var(--radius);
  border: 1px solid rgba(237,232,220,0.25);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 200ms, color 200ms, transform 200ms;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: var(--radius);
  border: 1px solid rgba(237,232,220,0.25);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms, color 150ms;
}
.btn-phone:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

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

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  background: var(--surface);
  white-space: nowrap;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  background: transparent;
  white-space: nowrap;
}

.emergency-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  background: var(--canvas);
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vh, 140px) 0 clamp(64px, 8vh, 100px);
}

.hero-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 8vw, 96px);
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 28px;
}

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

.hero-trust-chips .trust-chip { font-size: 10px; }

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

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-rings { width: 300px; height: 300px; right: -60px; top: auto; bottom: -40px; transform: none; opacity: 0.04; }
  .hero-title { font-size: clamp(56px, 14vw, 88px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
  padding: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar { display: none; }

.trust-strip-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services {
  background: var(--surface);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.services-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  flex-shrink: 0;
}

.services .section-inner { position: relative; z-index: 1; }

.services .section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(127,137,73,0.30);
  margin-bottom: 0;
}

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 18px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: -1px;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 44% 56%;
  min-height: 480px;
  background: var(--surface);
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--canvas);
}

.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

/* Gradient placeholder for service tabs without photos */
.service-panel-img:not(:has(img)),
.service-panel-img.placeholder {
  background: linear-gradient(135deg, var(--canvas) 0%, var(--surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-panel-body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.service-panel-body a.btn,
.service-panel-body a.btn-primary {
  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; border-radius: var(--radius) var(--radius) 0 0; }
  .service-panel-img img { position: relative; height: 240px; }
}

@media (max-width: 640px) {
  .service-tab { font-size: 10px; padding: 10px 12px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.reviews-banner {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-banner a { text-decoration: none; }

.reviews-rating-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.reviews-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-top: 12px;
  margin-bottom: 20px;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.reviews-stars svg { width: 36px; height: 36px; color: var(--primary); fill: var(--primary); }

.reviews-google-link {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.reviews-google-link:hover { color: var(--primary); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--canvas);
  border: 1px solid rgba(127,137,73,0.15);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.40); }

.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; color: var(--primary); fill: var(--primary); }

.review-quote {
  font-size: 17px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}

.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.75;
}

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

/* ============================================================
   REVIEWS MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--border-primary);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--ink);
  opacity: 0.75;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-left: 32px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--canvas);
  padding: clamp(48px, 7vh, 80px) 0;
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}

.service-areas-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-areas-left .eyebrow,
.service-areas-left .section-eyebrow {
  margin-bottom: 16px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-areas-copy p,
.service-areas-right p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44ch;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.faq-watermark {
  position: absolute;
  right: -60px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  flex-shrink: 0;
}

.faq-inner { position: relative; z-index: 1; }

.faq-inner h2,
.faq .section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}

details.fade-up {
  border-bottom: 1px solid rgba(127,137,73,0.20);
}

details.fade-up > summary {
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 16px 0;
  gap: 16px;
  user-select: none;
}
details.fade-up > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}
details.fade-up[open] .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 24px;
  max-width: 72ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.contact .section-inner { max-width: var(--content-max); }

.contact-grid {
  display: grid;
  grid-template-columns: 55% 1px 45%;
  gap: 0 48px;
  align-items: start;
}

.contact-divider {
  width: 1px;
  background: rgba(127,137,73,0.30);
  align-self: stretch;
  min-height: 400px;
}

.contact-form-col { padding-right: 16px; }
.contact-info-col { padding-left: 16px; }

.contact-form-col .section-eyebrow { margin-bottom: 10px; }

.contact-hook {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 44ch;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid rgba(127,137,73,0.25);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 150ms;
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-field textarea { min-height: 120px; }

.contact-phone {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  display: block;
  text-decoration: none;
}
.contact-phone:hover { color: var(--primary); text-decoration: none; }

.contact-detail {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-detail strong {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-email-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--muted);
  word-break: break-all;
}
.contact-email-link:hover { color: var(--primary); }

.contact-info-col .emergency-chip { margin: 16px 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-divider { display: none; }
  .contact-form-col { padding-right: 0; }
  .contact-info-col { padding-left: 0; }
}

/* ============================================================
   CONTACT CTA (about.html)
   ============================================================ */
.contact-cta {
  background: var(--surface);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-cta-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  flex-shrink: 0;
}

.contact-cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.contact-cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-inner p {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.contact-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT FEATURE (about.html hero)
   ============================================================ */
.about-feature {
  min-height: 72vh;
  background: var(--canvas);
  padding: clamp(80px, 10vh, 120px) 0 clamp(64px, 8vh, 96px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-feature-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.about-feature-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 8vw, 96px);
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-feature-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.about-feature-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 24px;
}
.about-feature-title span { color: var(--primary); }

.about-feature-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 36px;
}

.about-feature-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   ABOUT STORY (about.html)
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.about-story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 64px;
  align-items: center;
}

.about-story-left .eyebrow { margin-bottom: 16px; }

.about-story-left h2 {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.about-story-left blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
}
.about-story-left blockquote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 8px;
}
.about-story-left blockquote cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  font-style: normal;
}

.about-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-story-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-supergraphic {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(80px, 11vw, 130px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0.09;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-right { justify-content: flex-start; height: 120px; overflow: hidden; }
  .about-supergraphic { writing-mode: horizontal-tb; transform: none; font-size: clamp(60px, 12vw, 96px); }
}

/* ============================================================
   CREDENTIALS (about.html)
   ============================================================ */
.credentials {
  background: var(--surface);
  padding: var(--section-py) 0;
}

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

.credentials-left .eyebrow { margin-bottom: 24px; }

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cred-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(127,137,73,0.15);
  align-items: start;
}
.cred-item:first-child { border-top: 1px solid rgba(127,137,73,0.15); }

.cred-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  padding-top: 2px;
}

.cred-value {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
}
.cred-value strong { color: var(--primary); font-weight: 600; }

.credentials-right .eyebrow { margin-bottom: 20px; }

.credentials-pull {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin-bottom: 24px;
}

.credentials-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 900px) {
  .credentials-inner { grid-template-columns: 1fr; gap: 48px; }
  .cred-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid rgba(252,92,4,0.25);
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 20px clamp(20px, 4vw, 48px);
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-nav a:hover { color: var(--primary); text-decoration: none; }

.footer-location {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
}

/* footer on about.html — slightly different structure */
footer.site-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.footer-inner > div.footer-brand a {
  display: block;
  text-decoration: none;
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-location { text-align: center; }
  .footer-nav { justify-content: center; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

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

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

/* ============================================================
   SECTION-LEVEL HAIRLINES (between sections)
   ============================================================ */
.services { border-top: 1px solid var(--border-primary); }
.reviews  { border-top: 1px solid var(--border-primary); }
.faq      { border-top: 1px solid var(--border-primary); }
.contact  { border-top: 1px solid var(--border-primary); }
.credentials { border-top: 1px solid var(--border-primary); }
.contact-cta { border-top: 1px solid var(--border-primary); }

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* SVG size caps on unsized icons within layouts */
.review-stars svg,
.reviews-stars svg { width: 18px; height: 18px; }
.reviews-stars svg { width: 36px; height: 36px; }
.faq-chevron { width: 20px; height: 20px; }
svg.hero-rings,
svg.services-rings,
svg.about-feature-rings,
svg.contact-cta-rings,
svg.faq-watermark { display: block; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Service card hover (already on .review-card above; add for generic cards) */
.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); }

/* Process strip (included per spec even if not in plan) */
.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; }

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

/* form success */
.form-success {
  display: none;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
  margin-top: 16px;
}
.form-success.visible { display: block; }

/* Remove default details open triangle on all browsers */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-areas-left { grid-column: 1 / -1; }
.service-areas-copy { grid-column: 1 / -1; }
.contact-divider { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-nav { grid-column: 1 / -1; }
.footer-location { grid-column: 1 / -1; }
.cred-label { grid-column: 1 / -1; }
.cred-value { grid-column: 1 / -1; }
