/* ============================================================
   Charlotte Deck Staining Co. — styles.css
   Vanilla CSS, mobile-first. No framework, no build step.
   Palette: espresso / honey / sage / cream.
   ============================================================ */

:root {
  --espresso:   #241C15;   /* headings, footer, dark text */
  --espresso-2: #2E241B;   /* dark section surface */
  --honey:      #BE6E2D;   /* primary CTA + key accents (use sparingly) */
  --honey-hover:#A65C22;
  --honey-soft: #E8B074;   /* light honey for dark backgrounds */
  --sage:       #4C5D45;   /* secondary accent */
  --sage-soft:  #7E8E73;
  --cream:      #FAF5EE;   /* page background */
  --surface:    #FFFFFF;   /* cards */
  --surface-2:  #F1E8DC;   /* alt section background */
  --text:       #2E2820;   /* body text */
  --muted:      #6E6253;   /* secondary text */
  --border:     #E6DCCC;   /* hairlines */
  --error:      #B23B2E;

  --shadow-sm:  0 2px 10px rgba(36,28,21,.07);
  --shadow:     0 14px 36px rgba(36,28,21,.12);
  --radius:     14px;
  --radius-sm:  10px;

  --maxw: 1180px;
  --header-h: 70px;
}

/* ----------------------------- Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--honey-hover); }

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  color: var(--espresso);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(1.6rem, 4.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }

/* Visually-hidden honeypot */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Eyebrow */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--honey-soft); margin: 0 0 .6rem;
}
.eyebrow--dark { color: var(--honey-hover); }

/* ----------------------------- Icons ----------------------------- */
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: middle; }
.btn .icon { fill: currentColor; stroke: none; }
.header-phone .icon, .mobile-bar__btn .icon { fill: currentColor; stroke: none; }
.trust-chip .icon { width: 1rem; height: 1rem; fill: none; stroke: var(--honey-soft); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer;
  padding: 14px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  min-height: 50px;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn--cta { background: var(--honey); color: #fff; }
.btn--cta:hover { background: var(--honey-hover); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(190,110,45,.34); }
.btn--ghost { background: transparent; color: var(--espresso); border-color: rgba(36,28,21,.25); }
.btn--ghost:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--espresso); border-color: #fff; }
.btn--lg { padding: 17px 30px; font-size: 1.0625rem; min-height: 56px; }
.btn--block { width: 100%; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--honey); outline-offset: 2px; border-radius: 6px;
}

/* ----------------------------- Header / nav ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,245,238,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { background: rgba(250,245,238,.98); box-shadow: 0 2px 16px rgba(36,28,21,.08); border-bottom-color: var(--border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 12px; }

.wordmark { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.wordmark__main { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; color: var(--espresso); font-size: 1.12rem; letter-spacing: .005em; }
.wordmark__sub { font-family: "Inter", sans-serif; font-weight: 600; color: var(--honey-hover); font-size: .58rem; letter-spacing: .18em; margin-top: 4px; text-transform: uppercase; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle__bar { display: block; height: 2px; width: 100%; background: var(--espresso); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav__list { display: flex; align-items: center; gap: 22px; list-style: none; padding: 0; margin: 0; }
.site-nav__list a { color: var(--espresso); text-decoration: none; font-weight: 500; font-size: .98rem; }
.site-nav__list a:hover { color: var(--honey-hover); }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--espresso); text-decoration: none; }
.header-phone:hover { color: var(--honey-hover); }
.header-cta { min-height: 44px; padding: 11px 18px; }

/* Mobile nav: collapsed panel toggled by aria-expanded on the button */
@media (max-width: 899px) {
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); padding: 8px 20px 20px;
    display: none;
  }
  .nav-toggle[aria-expanded="true"] ~ .site-nav { display: flex; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--border); }
  .site-nav__list a { display: block; padding: 14px 4px; font-size: 1.05rem; }
  .header-phone { padding: 14px 4px; }
  .header-cta { margin-top: 14px; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  background-color: var(--espresso);
  background-image: url('../images/charlotte-deck-staining-hero.jpg');
  background-size: cover; background-position: center;
}
/* Per-page hero background overrides (markup adds the modifier class) */
.hero--fence { background-image: url('../images/stained-wood-privacy-fence.jpg'); }
.hero--ballantyne   { background-image: url('../images/stained-wood-deck-modern-home.jpg'); }
.hero--southpark    { background-image: url('../images/stained-deck-covered-porch.jpg'); }
.hero--matthews     { background-image: url('../images/stained-deck-railing-garden.jpg'); }
.hero--huntersville { background-image: url('../images/stained-wood-deck-pergola.jpg'); }
.hero--fortmill     { background-image: url('../images/new-construction-deck-porch.jpg'); }
.hero--indian-trail { background-image: url('../images/stained-backyard-deck-railing.jpg'); }
.hero--mint-hill    { background-image: url('../images/large-stained-deck-loungers.jpg'); }
.hero--waxhaw       { background-image: url('../images/wood-deck-open-view.jpg'); }
.hero--pineville    { background-image: url('../images/stained-deck-platform-backyard.jpg'); }
.hero--cornelius    { background-image: url('../images/stained-deck-poolside.jpg'); }
.hero--davidson     { background-image: url('../images/warm-stained-deck-porch.jpg'); }
.hero--concord      { background-image: url('../images/wood-deck-screened-porch.jpg'); }
.hero--harrisburg   { background-image: url('../images/stained-backyard-deck-railing.jpg'); }
.hero--areas        { background-image: url('../images/stained-deck-firepit-lounge.jpg'); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,28,21,.82) 0%, rgba(36,28,21,.62) 42%, rgba(36,28,21,.80) 100%);
}
.hero__inner { position: relative; display: grid; gap: 30px; padding: 48px 20px 56px; }
.hero__copy { color: #fff; max-width: 620px; }
.hero__title { color: #fff; font-size: clamp(2.1rem, 6.4vw, 3.6rem); margin-bottom: .35em; }
.hero__sub { color: rgba(255,255,255,.92); font-size: 1.12rem; max-width: 36em; }

.trust-chips { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .92rem; font-weight: 500; }

.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__btns .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero__btns .btn--ghost:hover { background: #fff; color: var(--espresso); border-color: #fff; }

/* ----------------------------- Lead form ----------------------------- */
.lead-form__card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 22px;
}
.lead-form__title { font-size: 1.5rem; margin-bottom: .2em; }
.lead-form__sub { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--espresso); }
.req { color: var(--honey-hover); }
.opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 12px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a99c8a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(190,110,45,.18);
}
.field textarea { resize: vertical; min-height: 76px; }
.field[data-invalid] input, .field[data-invalid] select, .field[data-invalid] textarea { border-color: var(--error); }
.field[data-error]::after { content: attr(data-error); display: block; color: var(--error); font-size: .8rem; margin-top: 5px; }
.consent { font-size: .8rem; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }

.lead-form__error {
  background: #FBEAE7; border: 1px solid #E8B5AD; color: #8A2D22;
  border-radius: var(--radius-sm); padding: 11px 13px; margin-top: 12px; font-size: .92rem;
}
.lead-form__error a { color: #8A2D22; font-weight: 700; }
.lead-form__success { text-align: center; padding: 22px 6px; }
.lead-form__success .check {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--sage); display: grid; place-items: center;
}
.lead-form__success .check svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.lead-form__success h3 { margin-bottom: .25em; }
.lead-form__success p { color: var(--muted); margin: 0; }

/* ----------------------------- Sections ----------------------------- */
.section { padding: 64px 0; }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--espresso-2); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__sub { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section__sub--light { color: rgba(255,255,255,.82); }

/* Intro */
.intro__grid { display: grid; gap: 30px; align-items: center; }
.intro__copy h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.intro__img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }

/* ----------------------------- Cards / services ----------------------------- */
.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 14px;
  border-radius: 12px; background: rgba(190,110,45,.12);
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--honey-hover); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card--cta { background: var(--sage); border-color: var(--sage); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.card--cta h3, .card--cta p { color: #fff; }
.card--cta p { color: rgba(255,255,255,.85); margin-bottom: 16px; }

/* ----------------------------- Why staining ----------------------------- */
.why__grid { display: grid; gap: 34px; align-items: center; }
.why__list { list-style: none; padding: 0; display: grid; gap: 22px; }
.why__list h3 { margin-bottom: .2em; display: flex; align-items: baseline; gap: 10px; }
.why__list h3::before { content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-radius: 3px; background: var(--honey); transform: translateY(-1px); }
.why__list p { color: var(--muted); margin: 0; }
.why__img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }

/* ----------------------------- Climate (why Charlotte) ----------------------------- */
.climate { display: grid; gap: 18px; grid-template-columns: 1fr; }
.climate__item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px 22px;
}
.climate__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 12px; border-radius: 11px; background: rgba(190,110,45,.18); }
.climate__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--honey-soft); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.climate__item h3 { color: #fff; margin-bottom: .3em; }
.climate__item p { color: rgba(255,255,255,.8); margin: 0; font-size: .98rem; }
.climate__item--note { background: var(--honey); border-color: var(--honey); }
.climate__item--note h3 { color: #fff; }
.climate__item--note p { color: rgba(255,255,255,.92); }

/* ----------------------------- Before / after slider ----------------------------- */
.ba-slider {
  position: relative; --pos: 50%;
  max-width: 560px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
}
.ba-slider__img { width: 100%; display: block; pointer-events: none; }
.ba-slider__reveal { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider__reveal .ba-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider__tag {
  position: absolute; top: 14px; z-index: 3; font-size: .76rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #fff; background: rgba(36,28,21,.66); padding: 5px 10px; border-radius: 999px;
}
.ba-slider__tag--before { left: 14px; }
.ba-slider__tag--after { right: 14px; }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 4;
  width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none;
}
.ba-slider__handle svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; padding: 9px; background: #fff; border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,.3); fill: none; stroke: var(--honey-hover); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.ba-slider__range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-slider__range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; cursor: ew-resize; }
.ba-slider__range::-moz-range-thumb { width: 46px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }

/* ----------------------------- Process ----------------------------- */
.process__grid { display: grid; gap: 30px; align-items: start; }
.process__img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }
.steps { list-style: none; padding: 0; display: grid; gap: 16px; counter-reset: step; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--honey); color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  display: grid; place-items: center; font-size: 1.1rem;
}
.step h3 { margin-bottom: .15em; }
.step p { color: var(--muted); margin: 0; }

/* ----------------------------- Choosing stain ----------------------------- */
.stain-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
.stain-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.stain-card h3 { margin-bottom: .35em; }
.stain-card p { color: var(--muted); font-size: .98rem; }
.stain-card__best { color: var(--text); font-size: .94rem; margin-bottom: 0; }
.stain-card--featured { border-color: var(--honey); border-width: 2px; box-shadow: var(--shadow); }
.stain-card__flag {
  position: absolute; top: -12px; left: 24px; background: var(--honey); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.stain-note { max-width: 760px; margin: 26px auto 0; text-align: center; color: var(--muted); }

/* ----------------------------- Signs ----------------------------- */
.signs { list-style: none; padding: 0; display: grid; gap: 16px; grid-template-columns: 1fr; }
.sign { display: flex; gap: 15px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 20px; box-shadow: var(--shadow-sm); }
.sign__icon { flex: 0 0 auto; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: rgba(76,93,69,.13); }
.sign__icon svg { width: 23px; height: 23px; fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sign h3 { margin-bottom: .15em; font-size: 1.12rem; }
.sign p { color: var(--muted); margin: 0; font-size: .96rem; }
.sign--note { background: var(--sage); border-color: var(--sage); }
.sign--note h3 { color: #fff; }
.sign--note p { color: rgba(255,255,255,.9); }
.sign--note a { color: #fff; font-weight: 700; }

/* ----------------------------- Areas ----------------------------- */
.area-chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chips li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; font-weight: 500; font-size: .96rem; color: var(--espresso); box-shadow: var(--shadow-sm);
}

/* ----------------------------- FAQ ----------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__q { margin: 0; }
.faq__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--espresso);
  padding: 18px 20px; line-height: 1.4;
}
.faq__icon { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--honey-hover); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2.5px; }
.faq__icon::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a { padding: 0 20px 18px; }
.faq__a p { color: var(--muted); margin: 0; }

/* ----------------------------- Final CTA ----------------------------- */
.final-cta { background: var(--espresso); color: #fff; padding: 66px 0; text-align: center; }
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.84); font-size: 1.1rem; margin-bottom: 28px; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--espresso); color: rgba(255,255,255,.78); padding: 52px 0 0; }
.site-footer__inner { display: grid; gap: 30px; grid-template-columns: 1fr; }
.site-footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: .7em; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--honey-soft); }
.wordmark--footer .wordmark__main { color: #fff; }
.wordmark--footer .wordmark__sub { color: var(--honey-soft); }
.site-footer__brand p { margin: 12px 0 0; color: rgba(255,255,255,.7); }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer__areas { font-size: .94rem; line-height: 1.7; color: rgba(255,255,255,.7); margin: 0; }
.site-footer__links { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer__legal { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.site-footer__legal p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ----------------------------- Mobile sticky call bar ----------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 1px; background: var(--border);
  box-shadow: 0 -4px 18px rgba(36,28,21,.16);
}
.mobile-bar__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; font-weight: 700; font-size: 1rem; text-decoration: none; min-height: 56px;
}
.mobile-bar__btn--call { background: var(--sage); color: #fff; }
.mobile-bar__btn--quote { background: var(--honey); color: #fff; }
body { padding-bottom: 64px; }   /* room for the fixed bar on mobile */

@media (min-width: 700px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .climate { grid-template-columns: repeat(2, 1fr); }
  .stain-cards { grid-template-columns: repeat(3, 1fr); }
  .signs { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .section { padding: 84px 0; }
  .hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; padding: 72px 20px 84px; gap: 48px; }
  .lead-form { align-self: center; }
  .intro__grid { grid-template-columns: 1.1fr .9fr; }
  .why__grid { grid-template-columns: 1.05fr .95fr; }
  .why__list { grid-template-columns: repeat(2, 1fr); gap: 26px 30px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .climate { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: .95fr 1.05fr; gap: 44px; }
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.3fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .card:hover, .btn--cta:hover { transform: none; }
}

/* ----------------------------- Services dropdown (nav) ----------------------------- */
.site-nav__drop-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; margin: 0; cursor: pointer;
  font-family: "Inter", sans-serif; font-weight: 500; font-size: .98rem; color: var(--espresso);
}
.site-nav__drop-toggle:hover { color: var(--honey-hover); }
.site-nav__drop-toggle .caret {
  width: .9em; height: .9em; fill: none; stroke: currentColor; stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease;
}
.site-nav__drop-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.site-nav__dropdown { list-style: none; margin: 0; padding: 0; }
.site-nav__dropdown a[aria-current="page"] { color: var(--honey-hover); }

@media (min-width: 900px) {
  .has-dropdown { position: relative; }
  .site-nav__dropdown {
    position: absolute; top: 100%; left: -10px; min-width: 210px; margin-top: 10px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); padding: 8px; display: none; z-index: 80;
  }
  .has-dropdown:hover .site-nav__dropdown,
  .has-dropdown:focus-within .site-nav__dropdown,
  .has-dropdown.is-open .site-nav__dropdown { display: block; }
  /* invisible hover bridge so the gap under the toggle doesn't drop the menu */
  .has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
  .site-nav__dropdown a {
    display: block; padding: 10px 12px; border-radius: 8px; white-space: nowrap;
    color: var(--espresso); text-decoration: none; font-weight: 500; font-size: .96rem;
  }
  .site-nav__dropdown a:hover { background: var(--surface-2); color: var(--honey-hover); }
}

@media (max-width: 899px) {
  .has-dropdown { display: block; }
  .site-nav__drop-toggle { width: 100%; justify-content: space-between; padding: 14px 4px; font-size: 1.05rem; }
  .site-nav__dropdown { display: none; padding: 2px 0 8px 14px; }
  .has-dropdown.is-open .site-nav__dropdown { display: block; }
  .site-nav__dropdown a { display: block; padding: 12px 4px; font-size: 1rem; color: var(--espresso); text-decoration: none; }
}

/* ----------------------------- Breadcrumb (interior pages) ----------------------------- */
.breadcrumb { padding: 16px 0 0; }
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  padding: 0; margin: 0; font-size: .9rem; color: var(--muted);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "/"; color: var(--border); }
.breadcrumb a { color: var(--honey-hover); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* Active top-level nav item (set at runtime by initActiveNav) */
.site-nav a[aria-current="page"] { color: var(--honey-hover); }

/* Linked area chips (towns with their own Service Areas page) */
.area-chips a { color: var(--honey-hover); text-decoration: none; font-weight: 600; }
.area-chips a:hover { text-decoration: underline; }
