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

/* ─── Custom Properties ─────────────────────────────────────────── */
:root {
  --primary:        #83E31E;
  --primary-dark:   #6abf18;
  --accent:         #BDA0AE;
  --canvas:         #F4F1EA;
  --surface:        #EAE6DD;
  --ink:            #1C1F10;
  --muted:          #4F5531;
  --ink-mid:        rgba(28,31,16,0.55);
  --ink-subtle:     rgba(28,31,16,0.12);
  --ink-10:         rgba(28,31,16,0.10);
  --ink-08:         rgba(28,31,16,0.08);
  --white:          #ffffff;
  --border:         rgba(28,31,16,0.12);

  --font-display:   'Bricolage Grotesque', sans-serif;
  --font-body:      'Inter Tight', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --radius:         4px;
  --section-py:     clamp(72px, 9vh, 120px);
  --content-max:    1240px;
  --wide-max:       1400px;
  --header-height:  72px;

  --spine-x:        56px;
}

@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 {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Universal Image Cap ───────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not(.about-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, .about-hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; max-height: none !important;
}
.hero-inner, .about-hero-inner,
.hero > :not(img):not(.hero-bg):not(.about-hero-bg):not(.hero-overlay):not(.about-hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay, .about-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,
.about-hero-title a, .about-hero-eyebrow a, .about-hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── Global Link ───────────────────────────────────────────────── */
a { color: var(--ink); transition: color 150ms ease; }
a:hover { color: var(--primary); text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ─── Layout Utilities ──────────────────────────────────────────── */
.container       { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wide-container  { max-width: var(--wide-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section-inner   { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ─── Typography Scale ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-eyebrow,
.gallery-eyebrow,
.credentials-eyebrow,
.contact-cta-eyebrow,
.about-hero-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(11px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-heading,
.faq-heading,
.reviews-heading,
.gallery-heading,
.credentials-heading,
.service-areas-heading,
.contact-heading,
.areas-heading,
.story-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 48px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: var(--radius); padding: 14px 28px;
  cursor: pointer; border: none; text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary); color: var(--ink);
  box-shadow: 0 4px 20px -6px rgba(131,227,30,0.40);
}
.btn-primary:hover { filter: brightness(0.92); color: var(--ink); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--white); border-color: var(--white); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--canvas); }

.btn-service {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--ink);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 160ms, transform 160ms;
}
.btn-service:hover { filter: brightness(0.92); transform: translateY(-1px); color: var(--ink); text-decoration: none; }

/* ─── Page Spine (Fixed Vertical Hairline) ──────────────────────── */
.spine-line, .page-spine {
  position: fixed;
  left: var(--spine-x);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--primary);
  z-index: 1;
  pointer-events: none;
}

footer ~ .spine-line,
.site-footer ~ .spine-line { display: none; }

/* Stop spine at footer */
.spine-line::after, .page-spine::after { display: none; }

/* ─── Site Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--ink-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;
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

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

.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  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;
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  transition: filter 160ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px; gap: 8px;
    border-bottom: 1px solid var(--ink-08);
    z-index: 800; justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { padding: 10px 0; font-size: 17px; width: 100%; display: block; }

  .nav-cta span { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────────── */
#hero.hero, section.about-hero {
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
}

.hero-overlay, .about-hero-overlay {
  background: linear-gradient(
    to right,
    rgba(28,31,16,0.82) 0%,
    rgba(28,31,16,0.48) 60%,
    transparent 100%
  );
}

.hero-inner {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  padding-bottom: clamp(60px, 8vh, 100px);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 48ch; margin-bottom: 28px;
}

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

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

.trust-chip {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.85);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 5px 12px;
  background: rgba(28,31,16,0.35);
}

@media (max-width: 900px) {
  #hero.hero, section.about-hero { height: 90vh; }
  .hero-title { font-size: clamp(40px, 10vw, 72px); max-width: 16ch; }
}

/* ─── Trust Strip ───────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--ink-10);
  padding: 24px 0;
}

.trust-strip-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  align-items: center;
}

.trust-badge {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}

/* ─── Marquee ───────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  max-height: 64px; position: relative; z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 500; font-size: clamp(12px, 1.2vw, 15px);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); line-height: 1.2;
  display: inline-flex; align-items: center; gap: 12px;
}

.marquee-accent { color: var(--primary); }

.marquee:hover .marquee-track { animation-play-state: paused; }

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

/* ─── Services ──────────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

.services-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin-bottom: 40px;
}

.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: var(--muted); background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 10px 18px;
  cursor: pointer; transition: color 160ms, border-color 160ms, border-bottom-color 160ms;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.service-tab:hover { color: var(--ink); border-color: var(--ink-subtle); }

.service-tab.active {
  color: var(--ink); font-weight: 600;
  border-color: transparent;
  border-bottom: 3px solid var(--primary);
  background: var(--surface);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}

.service-panel.active {
  display: grid;
  grid-template-columns: 44% 56%;
}

.service-panel-img {
  width: 100%; height: 100%; min-height: 400px;
  object-fit: cover; display: block;
  border-radius: 0; max-height: none !important;
}

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

.service-panel-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-panel-desc {
  font-size: 15px; line-height: 1.70; color: var(--muted);
}
.service-panel-desc + .service-panel-desc { margin-top: 10px; }

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

/* ─── Reviews ───────────────────────────────────────────────────── */
#reviews.reviews {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.reviews-agg {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  margin-bottom: 48px;
}

.reviews-big-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--ink);
}

.reviews-stars {
  display: flex; gap: 4px; align-items: center;
}
.reviews-stars svg { width: 20px; height: 20px; color: var(--primary); fill: var(--primary); }

.reviews-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}

.reviews-google-link {
  color: var(--primary); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 1px solid var(--ink-10);
  display: flex; flex-direction: column; gap: 14px;
}

.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

.review-quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 19px; line-height: 1.35;
  color: var(--ink); flex: 1;
}

.review-attribution {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); opacity: 0.75;
}

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

/* ─── Gallery ───────────────────────────────────────────────────── */
#gallery.gallery {
  background: var(--ink);
  padding: 0;
}

.gallery-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 56px);
}

.gallery-eyebrow { color: var(--muted); }
.gallery-inner h2 { color: var(--white); margin-bottom: 40px; }
.gallery-inner h2 .gallery-eyebrow { color: var(--primary); }

.gallery-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-feature img {
  width: 100%; object-fit: cover; display: block;
  border-radius: var(--radius);
  max-height: none !important;
  filter: grayscale(15%);
  transition: filter 300ms ease;
}

.gallery-feature img:hover { filter: grayscale(0%); }

/* Stagger heights across columns */
.gallery-feature img:nth-child(odd)  { height: 340px; }
.gallery-feature img:nth-child(even) { height: 220px; }
.gallery-feature img:nth-child(4n+1) { height: 340px; }
.gallery-feature img:nth-child(4n+2) { height: 220px; }
.gallery-feature img:nth-child(4n+3) { height: 220px; }
.gallery-feature img:nth-child(4n+4) { height: 340px; }

.gallery-note {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

.gallery-note a { color: var(--primary); }

@media (max-width: 640px) {
  .gallery-feature { grid-template-columns: repeat(2, 1fr); }
  .gallery-feature img:nth-child(n) { height: 200px; }
  .gallery-feature img:nth-child(2n+1) { height: 240px; }
}

/* ─── About / Our Story ─────────────────────────────────────────── */
.our-story {
  background: var(--surface);
  padding: var(--section-py) 0;
  overflow: hidden;
}

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

.story-left { position: relative; }

.story-watermark {
  position: absolute;
  left: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 280px; line-height: 1.0;
  color: var(--primary); opacity: 0.10;
  z-index: 0; pointer-events: none;
  user-select: none; white-space: nowrap;
}

.story-content {
  position: relative; z-index: 1;
}

.story-heading {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 28px;
}

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

.story-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin-top: 28px;
}

.story-chip {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); background: var(--canvas);
  border: 1px solid var(--primary);
  border-radius: var(--radius); padding: 5px 12px;
}

.story-photo {
  border-radius: var(--radius); overflow: hidden;
}

.story-photo img {
  width: 100%; height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 540px !important;
}

@media (max-width: 900px) {
  .our-story-inner { grid-template-columns: 1fr; }
  .story-watermark { font-size: 140px; left: 0; }
  .story-photo img { height: 340px; max-height: 340px !important; }
}

/* ─── Credentials ───────────────────────────────────────────────── */
.credentials, section.credentials {
  background: var(--ink);
  padding: 80px 0;
}

.credentials-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.credentials-eyebrow, .cred-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--primary); margin-bottom: 16px;
  display: block;
}

.credentials-heading, .cred-heading {
  font-size: clamp(32px, 4vw, 60px);
  color: var(--white); margin-bottom: 56px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.credential-cell, .cred-cell {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.credential-icon, .cred-icon {
  display: flex; align-items: center;
  width: 36px; height: 36px;
  color: var(--primary);
}

.credential-icon svg, .cred-icon svg {
  width: 32px; height: 32px;
  color: var(--primary); fill: none;
  stroke: var(--primary); stroke-width: 1.5;
}

.credential-label, .cred-label {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  color: var(--white); line-height: 1.1;
}

.credential-desc, .cred-desc {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.52);
}

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

/* ─── Service Areas ─────────────────────────────────────────────── */
.service-areas, #service-areas {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.service-areas-inner, #service-areas .section-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.areas-grid, .service-areas-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

.areas-col-heading {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); margin-bottom: 20px;
}

.county-list {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px;
}

.county-item {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink); line-height: 1.1;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
}

.areas-note {
  font-size: 13px; color: var(--muted);
  margin-top: 20px; line-height: 1.6;
}

.city-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.city-chip {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius); padding: 8px 16px;
  text-decoration: none; display: inline-block;
  transition: border-color 160ms, background 160ms;
}

.city-chip:hover {
  border-color: var(--primary); background: var(--canvas);
  text-decoration: none; color: var(--ink);
}

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

/* ─── Team CTA ──────────────────────────────────────────────────── */
.team-cta {
  background: var(--surface);
  padding: clamp(48px, 6vh, 80px) 0;
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
}

.team-cta-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
}

.team-cta-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); max-width: 22ch;
}

/* ─── Contact ───────────────────────────────────────────────────── */
#contact.contact {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.contact-grid {
  display: grid; grid-template-columns: 55% 45%;
  gap: 64px; align-items: start;
  margin-top: 8px;
}

.contact-form-col { display: flex; flex-direction: column; gap: 0; }

form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}

.form-field,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="name"],
input[type="phone"] {
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  transition: border-color 160ms;
  width: 100%; outline: none;
}

.form-field:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(131,227,30,0.12);
}

.form-textarea, textarea {
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  resize: vertical; min-height: 120px;
  transition: border-color 160ms; width: 100%; outline: none;
}

.form-textarea:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(131,227,30,0.12);
}

.contact-info-col {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 4px;
}

.contact-phone {
  display: block;
}

.contact-phone-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.contact-phone-link:hover { color: var(--primary); text-decoration: none; }

.contact-sub-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); display: block;
}

.contact-info-line {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  display: block;
}

.contact-info-line-link {
  color: var(--muted);
}
.contact-info-line-link:hover { color: var(--primary); }

.hours-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; color: var(--muted);
}

.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--ink-08); }
.hours-table td:first-child { font-weight: 500; color: var(--ink); }
.hours-table tr:last-child td { border-bottom: none; }

.contact-footer-note {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); display: block;
}

.contact-cta {
  background: var(--surface);
  padding: clamp(48px, 6vh, 80px) 0;
}

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

.contact-cta-left { display: flex; flex-direction: column; gap: 12px; }

.contact-cta-heading {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.0; max-width: 20ch;
}

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

.contact-hours {
  font-size: 13px; color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 8px;
}

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

/* ─── FAQ ───────────────────────────────────────────────────────── */
#faq.faq {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.faq-cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 56px; align-items: start;
}

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

details.faq-item > summary {
  cursor: pointer; font-family: var(--font-body);
  font-weight: 500; font-size: 17px;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; gap: 16px;
  line-height: 1.4;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--muted); stroke: currentColor;
  transition: transform 200ms ease, color 200ms;
}

details.faq-item[open] > summary .faq-chevron {
  transform: rotate(180deg); color: var(--primary);
}

.faq-answer {
  font-size: 15px; line-height: 1.70; color: var(--muted);
  padding-bottom: 20px; margin: 0;
}

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

/* ─── About Hero ────────────────────────────────────────────────── */
section.about-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}

.about-hero-inner {
  max-width: var(--content-max); width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  padding-bottom: clamp(60px, 8vh, 100px);
  position: relative; z-index: 2;
}

.about-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.93; letter-spacing: -0.025em;
  color: var(--white); max-width: 16ch;
  margin: 12px 0 18px;
}

.about-hero-sub {
  font-size: clamp(15px, 1.8vw, 20px); line-height: 1.55;
  color: rgba(255,255,255,0.80); max-width: 46ch; margin-bottom: 28px;
}

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

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer, footer {
  background: var(--ink);
  color: rgba(255,255,255,0.70);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 48px; padding-bottom: 56px;
}

.footer-biz-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  color: var(--white); margin: 16px 0 8px;
}

.footer-tagline, footer p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.50);
}

.footer-col-head {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.40); margin-bottom: 20px;
}

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

.footer-links a, footer ul a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover, footer ul a:hover {
  color: var(--primary); text-decoration: none;
}

.footer-contact-row {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
}

.footer-primary-accent {
  color: var(--primary) !important;
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
}

.footer-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
}

.footer-copy, .footer-creds-line {
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
}

.footer-brand {
  display: flex; flex-direction: column; gap: 4px;
}

.footer-creds {
  display: flex; flex-wrap: wrap; gap: 16px;
}

.footer-cred {
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Stats ─────────────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; padding: 80px 0; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 8vw, 96px); 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;
}

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

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

/* ─── Animation Utilities ───────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms ease;
}
.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.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 CTA Pill ───────────────────────────────────────────── */
.mobile-call-pill {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none; white-space: nowrap;
  transition: filter 160ms, transform 160ms;
}
.mobile-call-pill:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.mobile-call-pill svg { width: 18px; height: 18px; }

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

/* ─── Misc Fixes ────────────────────────────────────────────────── */

/* SVG caps */
svg { max-width: 100%; }
.faq-chevron { width: 20px !important; height: 20px !important; }
.review-stars svg, .reviews-stars svg { width: 20px !important; height: 20px !important; }
.credential-icon svg, .cred-icon svg { width: 32px !important; height: 32px !important; }

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

/* No outline on summary */
summary { outline: none; }
summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Active in services */
.services-tabs .service-tab.active { font-weight: 600; }

/* Table cells */
.hours-table thead .col-service,
.hours-table thead .col-desc,
.hours-table thead .col-timeline,
.hours-table thead .col-price { background: var(--ink); color: var(--white); }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.story-left { grid-column: 1 / -1; }
