/* ═══════════════════════════════════════════════════════
   Gerhard & Sons — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --gold:        #C8952A;
  --gold-light:  #E8B84B;
  --gold-pale:   #F3DFA0;
  --red:         #BB1A1A;
  --red-mid:     #D02020;
  --charcoal:    #0D0D0D;
  --charcoal-2:  #171717;
  --charcoal-3:  #212121;
  --cream:       #FAFAFA;
  --cream-2:     #F0F0F0;
  --text-body:   #1A1A1A;
  --text-muted:  #6B6B6B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-label:   'Barlow Condensed', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(5rem, 10vw, 8rem);
  --side-pad: clamp(1.5rem, 6vw, 5rem);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Skip Link (WCAG 2.4.1) ────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--side-pad);
  background: transparent;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.nav.solid {
  background: var(--charcoal);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold-light); }
.nav-links a.active:not(.nav-cta) { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-cta {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  opacity: 1 !important;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-phone a {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250,250,248,0.7) !important;
  opacity: 1 !important;
  transition: color 0.2s !important;
}
.nav-phone a:hover { color: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── Page Header (interior pages) ──────────────────── */
.page-header {
  background: var(--charcoal);
  padding: clamp(7rem, 14vw, 10rem) var(--side-pad) clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(187,26,26,0.14) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.7) 100%);
  pointer-events: none;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.page-header-inner {
  position: relative;
  z-index: 2;
}
.page-header-label {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-header-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  max-width: 18ch;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-header-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,248,0.65);
  max-width: 52ch;
  margin-top: 1.25rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(250,250,248,0.6); }

/* ─── Section Utilities ──────────────────────────────── */
.section-label {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

/* Override: section-label text color on light (cream) backgrounds */
.county-communities .section-label,
.service-intro .section-label,
.related-services .section-label,
.areas-landing .section-label,
.story .section-label,
.areas .section-label,
.contact-info .section-label,
.testimonials .section-label {
  color: var(--text-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--charcoal);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold-light); }

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 1.1rem 2.5rem;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: gap 0.2s;
}
.btn-secondary::after { content: '→'; font-size: 1rem; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }
.btn-secondary--light { color: var(--cream); }

/* ─── Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CTA Band ───────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: clamp(4rem, 7vw, 6rem) var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text {}
.cta-band-label {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  margin-bottom: 0.75rem;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.cta-band-title em { font-style: italic; color: var(--gold-pale); }
.cta-band .btn-primary {
  flex-shrink: 0;
  background: var(--cream);
  color: var(--red);
}
.cta-band .btn-primary:hover { background: var(--gold-pale); }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(200,149,42,0.12);
  padding: clamp(2.5rem, 5vw, 4rem) var(--side-pad);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(200,149,42,0.1);
  margin-bottom: 2rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-info a {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,250,248,0.65);
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--gold-light); }
.footer-col-title {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col-links a {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ─── Trust Bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--cream-2);
  padding: 1.25rem var(--side-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(20,20,20,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── Testimonials ───────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.testimonial-card {
  background: var(--cream-2);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.testimonial-attribution {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial-attribution strong { color: var(--charcoal); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* ─── Service Areas Landing Page ────────────────────── */
.areas-landing {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad);
}
.county-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.county-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-2);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}
.county-card:hover { transform: translateY(-4px); }
.county-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.county-card:hover .county-card-img { opacity: 0.4; }
.county-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.5) 55%, rgba(13,13,13,0.2) 100%);
}
.county-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2rem;
}
.county-card-region {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.county-card-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.county-card-towns {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.county-card-link {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.county-card:hover .county-card-link { gap: 0.85rem; }
.county-card-link::after { content: '→'; }
.county-card--note {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  z-index: 2;
}

/* ─── County Page Styles ─────────────────────────────── */
.county-services {
  background: var(--charcoal-2);
  padding: var(--section-pad) var(--side-pad);
}
.county-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,149,42,0.12);
  border: 1px solid rgba(200,149,42,0.12);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 680px) {
  .county-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .county-services-grid { grid-template-columns: 1fr; }
}
.county-service-card {
  background: var(--charcoal-2);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: background 0.3s;
  text-decoration: none;
  display: block;
}
.county-service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.county-service-card:hover { background: var(--charcoal-3); }
.county-service-card:hover::before { transform: scaleX(1); }
.county-service-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.county-service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.county-service-link {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  transition: gap 0.2s;
}
.county-service-card:hover .county-service-link { gap: 0.7rem; }
.county-service-link::after { content: '→'; }

.county-communities {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.communities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin-top: 2rem;
}
.community-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-2);
}
.community-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.county-about-text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.county-about-text strong { font-weight: 600; color: var(--charcoal); }

@media (max-width: 860px) {
  .county-communities { grid-template-columns: 1fr; }
  .communities-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .communities-list { grid-template-columns: 1fr; }
}

/* ─── Individual Service Page Styles ────────────────── */
.service-intro {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.service-intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.service-intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}
.service-intro-text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.service-intro-text strong { font-weight: 600; color: var(--charcoal); }
.service-intro-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-includes {
  background: var(--charcoal-2);
  padding: var(--section-pad) var(--side-pad);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.include-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(200,149,42,0.1);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, background 0.3s;
}
.include-card:hover {
  background: rgba(25,25,25,0.8);
  border-color: rgba(200,149,42,0.5);
}
.include-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(200,149,42,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.include-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.include-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250,250,248,0.5);
}

.service-areas-mention {
  background: var(--cream-2);
  padding: clamp(3rem, 5vw, 4rem) var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(20,20,20,0.1);
  border-bottom: 1px solid rgba(20,20,20,0.1);
}
.areas-mention-text {}
.areas-mention-label {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}
.areas-mention-counties {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.areas-mention-counties em { font-style: italic; color: var(--red); }
.areas-mention-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-pill {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  background: var(--cream);
  border: 1px solid rgba(20,20,20,0.15);
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.area-pill:hover { border-color: var(--gold); background: #fff; }

.related-services {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.related-card {
  display: block;
  background: var(--cream-2);
  border-bottom: 3px solid var(--charcoal-3);
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.related-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-3px);
}
.related-card-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.related-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.related-card-hint {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.related-card-link {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.related-card:hover .related-card-link { gap: 0.7rem; }
.related-card-link::after { content: '→'; }

@media (max-width: 860px) {
  .service-intro { grid-template-columns: 1fr; }
  .service-intro-img { aspect-ratio: 16/9; }
  .service-areas-mention { flex-direction: column; align-items: flex-start; }
}

/* ─── Focus Styles (WCAG 2.4.7) ─────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* ─── Reduced Motion (WCAG 2.3.3) ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */
.gallery-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-intro {
  max-width: 60ch;
  margin-bottom: 3rem;
}
.gallery-intro p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Filter bar */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid #D0D0D0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.gallery-filter-btn:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.gallery-filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold);
}

/* Masonry grid */
.gallery-masonry {
  columns: 3 260px;
  column-gap: 0.875rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.875rem;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-2);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-caption {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}
.gallery-item.hidden {
  display: none;
}
.gallery-count {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(250,250,250,0.6);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.25rem;
  z-index: 10;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-caption {
  position: fixed;
  bottom: 1.75rem;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
}
.lightbox-counter {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(250,250,250,0.35);
}
.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(250,250,250,0.5);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-btn:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media (max-width: 600px) {
  .gallery-masonry { columns: 1; }
  .gallery-filter-btn { font-size: 0.72rem; padding: 0.5rem 0.9rem; }
  .lightbox-btn { display: none; }
  .lightbox-img { max-width: 96vw; max-height: 80vh; }
}
@media (min-width: 601px) and (max-width: 860px) {
  .gallery-masonry { columns: 2; }
}

/* ════════════════════════════════════════
   PAGE-SPECIFIC STYLES
════════════════════════════════════════ */
/* ── 404 Page ── */
body.page-404 {
  min-height: 100svh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
}
    .error-page {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6rem var(--side-pad) 4rem;
      position: relative;
      overflow: hidden;
    }
    .error-page::before {
      content: '404';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(14rem, 35vw, 28rem);
      font-weight: 700;
      color: rgba(200,149,42,0.05);
      white-space: nowrap;
      pointer-events: none;
      line-height: 1;
    }
    .error-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 600px;
    }
    .error-label {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }
    .error-label::before,
    .error-label::after {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }
    .error-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .error-title em { font-style: italic; color: var(--gold-light); }
    .error-body {
      font-size: clamp(0.95rem, 1.4vw, 1.1rem);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(250,250,248,0.55);
      margin-bottom: 3rem;
    }
    .error-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .error-nav {
      margin-top: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(200,149,42,0.12);
    }
    .error-nav-label {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.3);
      margin-bottom: 1.25rem;
    }
    .error-nav-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .error-nav-links a {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.45);
      transition: color 0.2s;
    }
    .error-nav-links a:hover { color: var(--gold-light); }

/* ── About Page ── */
/* ── Story Section ── */
    .story {
      background: var(--cream);
      padding: var(--section-pad) var(--side-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 7vw, 7rem);
      align-items: start;
    }
    .story-img-stack {
      position: relative;
    }
    .story-img-main {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }
    .story-img-secondary {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 5px solid var(--cream);
      z-index: 2;
    }
    .story-img-accent {
      position: absolute;
      top: -1.25rem;
      left: -1.25rem;
      width: 45%;
      aspect-ratio: 1;
      background: var(--gold);
      opacity: 0.18;
      z-index: 0;
    }

    .story-content {}
    .story-lead {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.65rem);
      font-weight: 600;
      font-style: italic;
      line-height: 1.45;
      color: var(--charcoal);
      margin-bottom: 2rem;
      padding-left: 1.5rem;
      border-left: 3px solid var(--gold);
    }
    .story-body {
      font-size: clamp(0.95rem, 1.3vw, 1.05rem);
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-body);
      margin-bottom: 1.5rem;
    }
    .story-body strong { font-weight: 600; color: var(--charcoal); }

    /* ── Values ── */
    .values {
      background: var(--charcoal-2);
      padding: var(--section-pad) var(--side-pad);
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: clamp(2.5rem, 5vw, 4rem);
    }
    .value-card {
      background: var(--charcoal-3);
      border: 1px solid rgba(200,149,42,0.1);
      padding: 2.25rem 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .value-card:hover { border-color: rgba(200,149,42,0.4); }
    .value-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.35s var(--ease-out);
    }
    .value-card:hover::before { transform: scaleY(1); }
    .value-icon {
      width: 2.25rem;
      height: 2.25rem;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .value-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }
    .value-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(250,250,248,0.55);
    }

    /* ── Areas ── */
    .areas {
      background: var(--cream);
      padding: var(--section-pad) var(--side-pad);
    }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: clamp(2.5rem, 5vw, 4rem);
    }
    .area-card {
      display: block;
      background: var(--cream-2);
      border-bottom: 3px solid var(--charcoal-3);
      padding: 2rem;
      transition: border-color 0.25s, background 0.25s;
      text-decoration: none;
    }
    .area-card:hover {
      border-color: var(--gold);
      background: #fff;
    }
    .area-name {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
    }
    .area-detail {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .area-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-muted);
    }
    .area-note {
      margin-top: clamp(1.5rem, 3vw, 2rem);
      font-size: 1rem;
      font-style: italic;
      color: var(--text-muted);
      padding-left: 1rem;
      border-left: 2px solid var(--gold);
    }

    /* ── Credentials ── */
    .story-credentials {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(20,20,20,0.12);
    }
    .credentials-list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 0.75rem;
    }
    .credential-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .credential-item dt {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-body);
    }
    .credential-item dd {
      font-size: 1rem;
      font-weight: 400;
      color: var(--charcoal);
    }

    @media (max-width: 900px) {
      .story { grid-template-columns: 1fr; }
      .story-img-stack { max-width: 480px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .values-grid { grid-template-columns: 1fr; }
    }

/* ── Contact Page ── */
.contact-body {
      background: var(--cream);
      padding: var(--section-pad) var(--side-pad);
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(3rem, 7vw, 7rem);
      align-items: start;
    }

    /* Info column */
    .contact-info {}
    .contact-info .section-title { margin-bottom: 2rem; }
    .contact-intro {
      font-size: clamp(0.95rem, 1.3vw, 1.05rem);
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-body);
      margin-bottom: 2.5rem;
    }
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin-bottom: 3rem;
    }
    .contact-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }
    .contact-item-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--cream-2);
      border: 1px solid rgba(200,149,42,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }
    .contact-item-label {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-body);
      margin-bottom: 0.35rem;
    }
    .contact-item-value {
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.5;
    }
    .contact-item-value a { transition: color 0.2s; }
    .contact-item-value a:hover { color: var(--red); }
    .contact-item-value small {
      display: block;
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    .contact-area-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .contact-county {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-body);
      background: var(--cream-2);
      padding: 0.4rem 0.85rem;
      border: 1px solid rgba(20,20,20,0.12);
    }

    /* Form column */
    .contact-form-wrap {
      background: var(--charcoal);
      padding: clamp(2.5rem, 4vw, 3.5rem);
    }
    .form-heading {
      font-family: var(--font-display);
      font-size: 1.65rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }
    .form-subhead {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(250,250,248,0.5);
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1rem;
    }
    .form-group label {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.65);
    }
    .field-error {
      font-size: 1rem;
      color: #f87171;
      margin-top: -0.25rem;
      min-height: 1.1em;
    }
    .form-success {
      display: none;
      background: rgba(200,149,42,0.12);
      border: 1px solid var(--gold);
      padding: 1.5rem;
      text-align: center;
      color: var(--cream);
      font-size: 1rem;
      line-height: 1.6;
      margin-top: 1rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--charcoal-3);
      border: 1px solid rgba(200,149,42,0.18);
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 300;
      padding: 0.85rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(250,250,248,0.45); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C8952A' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }
    .form-group select option { background: var(--charcoal-3); }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-submit {
      font-family: var(--font-label);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      border: none;
      padding: 1.15rem 2rem;
      cursor: pointer;
      width: 100%;
      margin-top: 0.5rem;
      transition: background 0.25s, transform 0.25s;
    }
    .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .form-note {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(250,250,248,0.3);
      margin-top: 1rem;
      text-align: center;
      line-height: 1.5;
    }

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

/* ── Homepage ── */
/* ── Hero ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--charcoal);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(160deg, rgba(139,26,26,0.2) 0%, transparent 55%),
        linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.25) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover no-repeat;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: clamp(6rem, 12vw, 9rem) var(--side-pad) clamp(4rem, 8vw, 6rem);
    }
    .hero-label {
      font-family: var(--font-label);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
    }
    .hero-label::before {
      content: '';
      display: block;
      width: 2.5rem;
      height: 1px;
      background: var(--gold);
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 8vw, 7.5rem);
      font-weight: 700;
      line-height: 0.93;
      color: var(--cream);
      max-width: 14ch;
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
    }
    .hero-headline em { font-style: italic; color: var(--gold-light); }
    .hero-sub {
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(250,250,248,0.7);
      max-width: 46ch;
      margin-bottom: 2.75rem;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
    }
    .hero-phone {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(250,250,248,0.55);
      margin-top: 1.25rem;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
    }
    .hero-phone a {
      color: var(--gold-light);
      font-weight: 400;
      transition: color 0.2s;
    }
    .hero-phone a:hover { color: var(--cream); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: var(--side-pad);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-label);
      font-size: 1rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.35);
      writing-mode: vertical-lr;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 1s forwards;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 3rem;
      background: rgba(250,250,248,0.2);
    }

    /* ── Services Strip ── */
    .services-strip {
      background: var(--charcoal-2);
      padding: var(--section-pad) var(--side-pad);
    }
    .services-strip-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
      flex-wrap: wrap;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(200,149,42,0.12);
      border: 1px solid rgba(200,149,42,0.12);
    }
    .service-card {
      background: var(--charcoal-2);
      padding: 2.25rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s var(--ease-out);
    }
    .service-card:hover { background: var(--charcoal-3); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 2.25rem;
      height: 2.25rem;
      margin-bottom: 1.25rem;
      color: var(--gold);
    }
    .service-name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.15;
      margin-bottom: 0.65rem;
    }
    .service-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(250,250,248,0.5);
    }

    /* ── About Strip ── */
    .about-strip {
      background: var(--cream);
      padding: var(--section-pad) var(--side-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 7vw, 6rem);
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }
    .about-img-accent {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 50%;
      aspect-ratio: 1;
      background: var(--gold);
      z-index: -1;
    }
    .about-pull {
      position: absolute;
      top: 2rem;
      left: -1.75rem;
      background: var(--red);
      color: var(--cream);
      padding: 1rem 1.25rem;
      font-family: var(--font-display);
      font-size: 1rem;
      font-style: italic;
      font-weight: 600;
      line-height: 1.3;
      max-width: 170px;
    }
    .about-body {
      font-size: clamp(0.95rem, 1.3vw, 1.05rem);
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-body);
      margin-bottom: 1.25rem;
    }
    .about-body strong { font-weight: 600; color: var(--charcoal); }
    .about-actions { display: flex; gap: 1.5rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }

    /* ── Areas Band ── */
    .areas-band {
      background: var(--red);
      padding: clamp(3.5rem, 6vw, 5rem) var(--side-pad);
      position: relative;
      overflow: hidden;
    }
    .areas-band::before {
      content: 'MICHIGAN';
      position: absolute;
      right: -3rem;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      font-family: var(--font-display);
      font-size: clamp(6rem, 18vw, 16rem);
      font-weight: 700;
      color: rgba(255,255,255,0.04);
      white-space: nowrap;
      pointer-events: none;
    }
    .areas-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(3rem, 8vw, 7rem);
      align-items: center;
    }
    .areas-counties {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .county-tag {
      display: inline-block;
      font-family: var(--font-label);
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--cream);
      border: 1px solid rgba(250,250,248,0.3);
      padding: 0.65rem 1.25rem;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .county-tag:hover {
      background: rgba(250,250,248,0.15);
      border-color: rgba(250,250,248,0.7);
    }
    .county-note {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(250,250,248,0.55);
      margin-top: 1rem;
      font-style: italic;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .about-strip { grid-template-columns: 1fr; }
      .about-img-wrap { max-width: 440px; }
      .about-pull { left: 0; }
      .areas-inner { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 560px) {
      .services-grid { grid-template-columns: 1fr; }
    }

/* ── Services Page ── */
.services-list {
      padding: var(--section-pad) var(--side-pad);
      background: var(--cream);
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .service-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      border-bottom: 1px solid var(--cream-2);
    }
    .service-row:last-child { border-bottom: none; }
    .service-row--flip .service-row-img { order: 2; }
    .service-row--flip .service-row-content { order: 1; }

    .service-row-img {
      overflow: hidden;
      background: var(--charcoal-3);
    }
    .service-row-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease-out);
    }
    .service-row:hover .service-row-img img { transform: scale(1.03); }

    .service-row-content {
      padding: clamp(3rem, 5vw, 5rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--cream);
    }
    .service-row--dark .service-row-content {
      background: var(--charcoal-2);
    }
    .service-number {
      font-family: var(--font-display);
      font-size: 5rem;
      font-weight: 700;
      line-height: 1;
      color: rgba(200,149,42,0.12);
      margin-bottom: -1.5rem;
    }
    .service-row-content .section-label { margin-bottom: 0.75rem; }
    .service-row-content h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--charcoal);
      margin-bottom: 1.25rem;
    }
    .service-row--dark .service-row-content h2 { color: var(--cream); }
    .service-row-content p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .service-row--dark .service-row-content p { color: rgba(250,250,248,0.55); }
    .service-bullets {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0.75rem 0 1.5rem;
    }
    .service-bullet {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-body);
      line-height: 1.5;
    }
    .service-row--dark .service-bullet { color: rgba(250,250,248,0.7); }
    .service-bullet::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 0.45em;
    }

    @media (max-width: 860px) {
      .service-row {
        grid-template-columns: 1fr;
        min-height: unset;
      }
      .service-row-img { aspect-ratio: 16/9; }
      .service-row--flip .service-row-img { order: 0; }
      .service-row--flip .service-row-content { order: 0; }
    }

/* ════════════════════════════════════════
   FAQ PAGE
════════════════════════════════════════ */
.faq-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: 860px;
  margin: 0 auto;
}
.faq-group {
  margin-bottom: 3rem;
}
.faq-group-title {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-group-title::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.faq-item {
  border-bottom: 1px solid var(--cream-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-body);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--charcoal);
}
.faq-answer {
  padding: 0 0 1.25rem 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 70ch;
}
.faq-answer p + p { margin-top: 0.75rem; }
.faq-answer a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer strong { color: var(--text-body); font-weight: 600; }

/* ════════════════════════════════════════
   REVIEWS PAGE
════════════════════════════════════════ */
.reviews-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-intro {
  max-width: 56ch;
  margin-bottom: 3.5rem;
}
.reviews-intro p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--charcoal);
  color: var(--cream);
  max-width: 420px;
}
.reviews-aggregate-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.reviews-aggregate-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.reviews-aggregate-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  margin-top: 0.25rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
  flex: 1;
}
.review-quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 0.5;
  vertical-align: -0.5rem;
  margin-right: 0.15rem;
  font-style: normal;
}
.review-meta {
  border-top: 1px solid var(--cream-2);
  padding-top: 1rem;
}
.review-name {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
}
.review-location {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.review-service {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--charcoal);
  padding: 0.25rem 0.6rem;
}
.reviews-cta-note {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-2);
  max-width: 560px;
}
.reviews-cta-note p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.reviews-cta-note a {
  color: var(--red);
  font-weight: 600;
}

/* ════════════════════════════════════════
   PRIVACY PAGE
════════════════════════════════════════ */
.privacy-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: 740px;
  margin: 0 auto;
}
.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--charcoal);
}
.privacy-section h2:first-of-type { margin-top: 0; }
.privacy-section p,
.privacy-section li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.privacy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.privacy-section li + li { margin-top: 0.4rem; }
.privacy-section p + p { margin-top: 0.75rem; }
.privacy-section a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.privacy-updated {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
