/* Option A stylesheet — re-skin via the :root palette block and the two @font-face slots */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --green-deep: #1d3b2a;
  --green-leaf: #6a9c4a;
  --gold: #b9762a;
  --gold-dark: #96591b;
  --cream: #faf6ee;
  --cream-dark: #efe8da;
  --ink: #2a2b26;
  --ink-soft: #5c5f54;
  --white: #ffffff;
  --radius: 14px;
  --display: 'Fraunces', Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--cream); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--green-deep); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--green-deep); line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.18rem; margin-bottom: .4rem; }

.kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  font-weight: 700; color: var(--gold-dark); margin-bottom: .6rem;
}
.kicker-light { color: #e9c46a; }

.seed-divider { display: flex; gap: 6px; align-items: flex-end; margin: 14px 0 10px; }
.seed-divider i { width: 7px; height: 20px; background: var(--green-leaf); border-radius: 2px 2px 0 0; display: inline-block; }
.seed-divider i:nth-child(2) { background: var(--gold); }

.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1.02rem; text-decoration: none;
  border: 0; cursor: pointer; font-family: var(--body);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(201,143,27,.35); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 2px solid rgba(255,255,255,.75); }
.btn-ghost:hover { background: rgba(255,255,255,.26); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,239,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 12px 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 58px; height: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--display); font-size: 1.12rem; color: var(--green-deep); }
.brand-text span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink); }
.site-nav a:hover { color: var(--gold-dark); }
.header-phone {
  font-weight: 800; text-decoration: none; color: var(--green-deep);
  background: var(--cream-dark); padding: 10px 18px; border-radius: 999px; white-space: nowrap;
}
.header-phone:hover { background: var(--green-leaf); color: #fff; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; }
.phone-icon { display: none; width: 20px; height: 20px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--green-deep); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: clamp(560px, 88vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-a.webp') center 58% / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,34,22,.88) 0%, rgba(18,34,22,.66) 48%, rgba(18,34,22,.18) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-top: 70px; padding-bottom: 90px; }
.hero-kicker {
  color: #dce8b9; text-transform: uppercase; letter-spacing: .2em;
  font-size: .8rem; font-weight: 700; margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4rem); max-width: 15ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-sub { color: #f2f0e4; font-size: 1.15rem; max-width: 46ch; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Services */
.services { padding: 90px 0 80px; }
.service-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px; margin-top: 36px;
}
.service-card { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 3px 14px rgba(38,48,31,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(38,48,31,.14); }
.service-card img { height: 170px; width: 100%; object-fit: cover; }
.service-card h3, .service-card p { padding: 0 20px; }
.service-card h3 { margin-top: 18px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; padding-bottom: 22px; }

/* Trust strip */
.trust { background: var(--green-deep); color: #fff; padding: 44px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.trust-item strong { display: block; font-family: var(--display); font-size: 1.5rem; color: #cfe89b; margin-bottom: 4px; }
.trust-item span { font-size: .9rem; color: #dfe7d2; }

/* Work / before-after */
.work { padding: 90px 0 80px; }
.section-sub { color: var(--ink-soft); max-width: 55ch; margin-top: 4px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.work-grid figure { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 3px 14px rgba(38,48,31,.08); }
.work-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.work-grid figcaption { padding: 16px 20px 20px; font-size: .92rem; color: var(--ink-soft); }

/* About */
.about { background: var(--cream-dark); padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }
.about-photo img { border-radius: 50%; border: 6px solid var(--white); box-shadow: 0 10px 34px rgba(38,48,31,.18); }
.about-text p { margin-bottom: 1em; color: var(--ink-soft); }
.about-text h2 { margin-bottom: .6em; }
.about-text blockquote { border-left: 4px solid var(--gold); padding: 6px 0 6px 20px; margin-top: 1.4em; }
.about-text blockquote p { font-family: var(--display); color: var(--green-deep); font-size: 1.12rem; margin-bottom: .3em; }
.about-text cite { font-style: normal; font-weight: 700; font-size: .85rem; color: var(--gold-dark); letter-spacing: .08em; }

/* Reviews */
.reviews { padding: 90px 0; text-align: center; }
.reviews .seed-divider { justify-content: center; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 34px; align-items: start; text-align: left; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 46px 34px 30px;
  box-shadow: 0 3px 14px rgba(38,48,31,.08); position: relative;
}
.review-card::before {
  content: '\201C'; font-family: var(--display); font-size: 5rem; color: var(--green-leaf);
  position: absolute; top: 4px; left: 24px; line-height: 1;
}
.review-quote { font-size: 1.04rem; color: var(--ink); }
.review-name { margin-top: 18px; font-weight: 700; color: var(--gold-dark); }
.review-note { margin-top: 22px; color: var(--ink-soft); font-size: .95rem; }

/* Contact */
.contact { background: var(--green-deep); color: #fff; padding: 90px 0; }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info > p { color: #dfe7d2; margin-top: .6em; }
.contact-list { list-style: none; margin-top: 28px; }
.contact-list li { margin-bottom: 16px; color: #f0f3e8; }
.contact-list li span { display: block; text-transform: uppercase; font-size: .72rem; letter-spacing: .16em; color: #a9c17e; font-weight: 700; }
.contact-list a { color: #fff; font-weight: 700; text-decoration: none; font-size: 1.25rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.contact-form label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; font-family: var(--body); font-size: 1rem;
  border: 1.5px solid #d8d2c0; border-radius: 8px; background: var(--cream);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--green-leaf); border-color: transparent; }
.contact-form .btn { width: 100%; }
.form-success { margin-top: 14px; color: var(--green-deep); font-weight: 600; font-size: .95rem; }

/* Footer */
.site-footer { background: #142d18; color: #cfd8c4; padding: 36px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-inner strong { color: #fff; font-family: var(--display); }
.footer-inner p { font-size: .9rem; }
.footer-inner a { color: #cfe89b; text-decoration: none; font-weight: 700; }
.footer-verse { font-family: var(--display); color: #8fae6b; font-size: 1rem; }

/* Responsive */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 2; }
  .service-card:nth-child(5) { grid-column: 2 / span 2; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid figure:nth-child(3) { grid-column: span 2; }
  .work-grid figure:nth-child(3) img { aspect-ratio: 21 / 9; }
  .review-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .about-text blockquote { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 720px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px 24px; gap: 16px;
    border-bottom: 1px solid var(--cream-dark); box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { gap: 12px; }
  .header-inner { padding: 12px 18px; }
  .brand-mark { width: 44px; height: 33px; }
  .brand-text strong { font-size: .88rem; white-space: nowrap; }
  .header-phone { margin-left: auto; padding: 8px 14px; font-size: .85rem; }
  .hero h1 br { display: none; }
  .brand-text span { display: none; }
  .hero { min-height: clamp(520px, 78vh, 700px); }
  .hero-bg::after { background: linear-gradient(180deg, rgba(20,40,22,.78) 0%, rgba(20,40,22,.5) 100%); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid figure:nth-child(3) { grid-column: span 1; }
  .work-grid figure:nth-child(3) img { aspect-ratio: 4 / 3; }
  .services, .work, .about, .reviews, .contact { padding: 64px 0; }
  .review-card { padding: 36px 24px 28px; }
}

@media (max-width: 560px) {
  .header-phone span { display: none; }
  .header-phone { padding: 10px; border-radius: 50%; }
  .phone-icon { display: block; }
}

/* ==================== full-site components ==================== */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-deep); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Preserve shouted source text, render it civilly */
.tc { display: inline-block; text-transform: lowercase; }
.tc::first-letter { text-transform: uppercase; }

/* Breadcrumbs */
.crumbs { background: var(--cream-dark); font-size: .86rem; }
.crumbs .wrap { padding-top: 10px; padding-bottom: 10px; }
.crumbs a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--gold-dark); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--green-deep); font-weight: 700; }
.crumb-sep { margin: 0 10px; color: #b7b09c; }

/* Interior page hero */
.page-hero { background: var(--green-deep); color: #fff; padding: 66px 0 70px; position: relative; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 20ch; }
.page-hero .kicker { color: #e9c46a; }
.page-lead { color: #e4ecdb; font-size: 1.12rem; max-width: 58ch; margin: 20px 0 30px; }
.page-hero.has-photo { background-size: cover; background-position: center 55%; }
.page-hero.has-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,34,22,.93) 0%, rgba(18,34,22,.78) 55%, rgba(18,34,22,.42) 100%);
}

/* Prose */
.prose { padding: 72px 24px 20px; max-width: 800px; }
.prose-block { margin-bottom: 46px; }
.prose-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .55em; }
.prose-block p { margin-bottom: 1em; color: var(--ink-soft); }
.prose-block strong { color: var(--ink); }
.prose-block a { color: var(--gold-dark); font-weight: 600; }

/* FAQ */
.faq-section { background: var(--cream-dark); padding: 72px 0; }
.faq-list { margin-top: 30px; max-width: 800px; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(38,48,31,.06); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--display); font-size: 1.6rem; color: var(--gold); line-height: 1; flex: none;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary h3 { margin: 0; font-size: 1.04rem; }
.faq-item p { padding: 0 22px 20px; color: var(--ink-soft); }

/* Related / city cards */
.related { padding: 72px 0; }
.related.alt { background: var(--cream-dark); }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.rel-card {
  background: var(--white); border-radius: var(--radius); padding: 22px 24px; text-decoration: none;
  box-shadow: 0 3px 14px rgba(38,48,31,.08); transition: transform .18s ease, box-shadow .18s ease;
}
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(38,48,31,.14); }
.rel-card strong { display: block; font-family: var(--display); font-size: 1.12rem; color: var(--green-deep); margin-bottom: 6px; }
.rel-card span { font-size: .9rem; color: var(--ink-soft); }

.cities { padding: 72px 0; }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.city-card {
  background: var(--white); border-radius: var(--radius); padding: 20px; text-decoration: none;
  box-shadow: 0 3px 12px rgba(38,48,31,.08); transition: transform .18s ease, box-shadow .18s ease;
  border-left: 4px solid var(--green-leaf);
}
.city-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(38,48,31,.14); }
.city-card strong { display: block; font-family: var(--display); font-size: 1.1rem; color: var(--green-deep); }
.city-card span { font-size: .84rem; color: var(--ink-soft); }

/* Area chips */
.areas-band { padding: 72px 0; background: var(--cream-dark); }
.areas-band .section-sub { margin-bottom: 22px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips a {
  background: var(--white); border: 1px solid #ded7c5; border-radius: 999px;
  padding: 9px 18px; font-size: .92rem; font-weight: 600; text-decoration: none; color: var(--green-deep);
}
.area-chips a:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }

/* CTA band */
.cta-band { background: var(--gold); color: #fff; padding: 60px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff5e6; margin: 10px 0 26px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-gold { background: var(--green-deep); box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.cta-band .btn-gold:hover { background: #142d18; }

/* Service card link wrapper */
.service-card a { text-decoration: none; display: block; color: inherit; }
.card-link { display: block; padding: 0 20px 22px; font-weight: 700; color: var(--gold-dark); font-size: .92rem; }

/* Gallery */
.gallery { padding: 60px 0 72px; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { display: block; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 12px rgba(38,48,31,.1); }
.gal-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gal-item:hover img { transform: scale(1.05); }
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,20,12,.94);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
/* display:flex above would otherwise beat the UA [hidden] rule */
.lightbox[hidden] { display: none; }
[hidden] { display: none !important; }
.lightbox img { max-width: 94vw; max-height: 90vh; width: auto; border-radius: 8px; }
.lb-close {
  position: absolute; top: 16px; right: 22px; background: none; border: 0;
  color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer;
}

/* About split */
.about-split { padding: 72px 0; }
.about-split .about-text h2 { margin-top: 1.2em; margin-bottom: .5em; }
.about-split .about-text h2:first-child { margin-top: 0; }
.about-photo img { aspect-ratio: 1; object-fit: cover; }

.review-detail { font-size: .86rem; color: var(--ink-soft); margin-top: 2px; }
.form-heading { font-size: 1.35rem; margin-bottom: 18px; }
.contact-note { margin-top: 24px; color: #dfe7d2; font-size: .95rem; display: flex; gap: 10px; align-items: flex-start; }
.contact-note svg { width: 20px; height: 20px; flex: none; color: #a9c17e; margin-top: 2px; }
.contact-note a { color: #cfe89b; font-weight: 700; }

/* Footer */
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1fr; gap: 36px; padding-bottom: 30px; }
.footer-col h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: #8fae6b; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cfd8c4; text-decoration: none; font-size: .93rem; font-weight: 500; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-areas { columns: 2; column-gap: 20px; }
.footer-brand strong { font-family: var(--display); color: #fff; font-size: 1.16rem; display: block; margin-bottom: 12px; }
.footer-brand address { font-style: normal; font-size: .95rem; line-height: 1.9; }
.footer-brand address a { color: #cfe89b; font-weight: 700; }
.footer-hours { font-size: .88rem; color: #9fae94; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid #24452a; padding-top: 20px; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem;
}
.footer-bottom a { color: #cfe89b; text-decoration: none; font-weight: 700; }

/* Sticky mobile call bar */
.call-bar { display: none; }

@media (max-width: 1000px) {
  .rel-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .rel-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-areas { columns: 2; }
  .page-hero { padding: 46px 0 52px; }
  .prose { padding-top: 52px; }
  .faq-section, .related, .areas-band, .cities, .about-split { padding: 52px 0; }
  .prose-block h2 { font-size: 1.4rem; }
  body { padding-bottom: 62px; }
  .call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    align-items: center; justify-content: center; gap: 10px;
    background: var(--gold); color: #fff; text-decoration: none;
    font-weight: 800; padding: 15px 16px; box-shadow: 0 -4px 18px rgba(0,0,0,.22);
  }
  .call-bar svg { display: block; width: 20px; height: 20px; }
}

@media (max-width: 420px) {
  .city-grid { grid-template-columns: 1fr; }
  .footer-areas { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Nav has to collapse before the header phone pill runs off the edge (~900px) */
@media (max-width: 900px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px 24px; gap: 16px;
    border-bottom: 1px solid var(--cream-dark); box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { gap: 12px; }
  .brand-text span { display: none; }
}

/* The preserved homepage H1 is long; give it room rather than five mobile lines */
.hero h1 { max-width: 20ch; }
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(1.95rem, 7.4vw, 2.6rem); }
  .page-hero h1 { font-size: clamp(1.75rem, 6.6vw, 2.4rem); }
}

/* ---- Accessibility corrections ---------------------------------------
   1. .contact h2 was painting the in-form heading white on a white card.
   2. White text on --gold (#b9762a) is 3.69:1 - below WCAG AA for the
      button text size we use. --gold-cta is the darkest step that keeps the
      approved cedar look while clearing 4.5:1.                           */
:root { --gold-cta: #a4631f; }

.contact .contact-form h2,
.form-heading { color: var(--green-deep); }

.btn-gold { background: var(--gold-cta); }
.btn-gold:hover { background: var(--gold-dark); }
.call-bar { background: var(--gold-cta); }
.cta-band { background: #9c5d1c; }
.cta-band p { color: #fdf3e4; }

/* Legal pages */
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #9fae94; text-decoration: none; font-size: .86rem; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.legal-prose { padding-bottom: 72px; }
.legal-prose .effective { color: var(--ink-soft); font-size: .9rem; margin-bottom: 34px; }
.legal-prose ul { margin: 0 0 1em 1.2em; color: var(--ink-soft); }
.legal-prose li { margin-bottom: .5em; }
.legal-prose h2 { font-size: 1.35rem; }

/* Coraline form mount */
.coraline-form { min-height: 260px; }
.coraline-form iframe { display: block; width: 100%; border: 0; background: transparent; }
.coraline-form__placeholder { text-align: center; padding: 26px 8px; }
.coraline-form__placeholder p { color: var(--ink-soft); margin-bottom: 18px; font-size: .96rem; }
.form-legal { margin-top: 14px; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.form-legal a { color: var(--gold-dark); font-weight: 600; }

/* ==================== stacked-card deck ====================
   Mechanic from a supplied template: each card is a sticky full-height
   section, the next slides over while the previous shrinks into the deck.
   Transform values are the template's. Palette, type and imagery are ours. */

.scroll-cue { margin-top: 28px; }
.scroll-cue span {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: #dce8b9;
}
.scroll-cue span::after {
  content: ''; display: inline-block; width: 1px; height: 22px;
  background: currentColor; opacity: .55; margin-left: 14px;
  vertical-align: middle;
}

.deck-wrap { background: var(--cream-dark); padding: 84px 0 0; }
.deck-lead { padding-bottom: 8px; }
.deck-lead .section-sub { margin-top: 6px; }

.stack { position: relative; }
.cardSec {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.card {
  width: min(1060px, 92vw); height: 76vh; border-radius: 22px; overflow: hidden;
  position: relative; display: flex; align-items: flex-end;
  will-change: transform, filter;
  box-shadow: 0 -20px 60px -30px rgba(20, 45, 24, .6);
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 28%, rgba(20, 45, 24, .88));
}
.card .body {
  position: relative; z-index: 2; padding: 44px; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
}
.card .body-text { max-width: 46ch; }
.card h2 {
  font-family: var(--display); font-weight: 600; color: #fff;
  font-size: clamp(30px, 4.6vw, 64px); letter-spacing: -.02em; line-height: 1;
}
.card p {
  font-family: var(--body); font-size: .95rem; line-height: 1.7;
  color: rgba(255, 255, 255, .82); margin-top: 12px;
}
.card .num {
  position: absolute; top: 34px; right: 40px;
  font-size: .72rem; letter-spacing: .24em; font-weight: 700;
  color: rgba(255, 255, 255, .82);
}
.card-cta {
  flex: none; background: var(--gold-cta); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .98rem; padding: 14px 26px; border-radius: 999px;
  white-space: nowrap; transition: background .18s ease;
}
.card-cta:hover { background: var(--gold-dark); }

@media (max-width: 820px) {
  .deck-wrap { padding-top: 56px; }
  .card { height: 72vh; }
  .card .body { padding: 26px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .card .num { top: 22px; right: 24px; }
  .card p { font-size: .9rem; }
  .card-cta { width: 100%; text-align: center; }
}

/* Sticky 100vh cards trap a keyboard or reduced-motion visitor in a long
   scroll with no way to skim. Fall back to a plain stacked list. */
@media (prefers-reduced-motion: reduce) {
  .cardSec { position: static; height: auto; padding: 10px 0; }
  .card { height: auto; min-height: 380px; transform: none !important; filter: none !important; }
}

/* Review / directory profiles in the footer (carried over from the old site,
   where Yelp and Google sat in the header and footer). */
.footer-profiles { list-style: none; margin-bottom: 22px; }
.footer-profiles li { margin-bottom: 8px; }
.footer-col h2.stacked { margin-top: 4px; }

/* Hero is the LCP element. Mobile takes the 900px file, and both are preloaded
   in the head with fetchpriority=high - a CSS background alone is invisible to
   the browser's preload scanner and loads late. */
@media (max-width: 820px) {
  .hero-bg { background-image: url('../images/hero-a-900.webp'); }
}

/* A town we serve but have not published a page for yet: same look, no link. */
.area-chip-flat { display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--cream-dark); color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
