/* =============================================================
   Beacon Valley Housekeeping — styles.css
   One shared stylesheet. No build step, no framework.
   Palette drawn from the Swansea Valley: bone, slate, moss.
   ============================================================= */

/* ---- 1. Design tokens ------------------------------------- */
:root {
  /* Colour */
  --bg:          #f6f3ed;   /* warm bone background            */
  --surface:     #ffffff;   /* cards, form panels              */
  --surface-alt: #efeae0;   /* banded sections                 */
  --ink:         #23241f;   /* headings, near-black warm       */
  --text:        #34352d;   /* body copy                       */
  --muted:       #62655a;   /* secondary text                  */
  --accent:      #4b5a42;   /* moss green — primary accent     */
  --accent-deep: #384631;   /* moss, darker (hover)            */
  --accent-tint: #e7ebe0;   /* pale moss wash                  */
  --line:        #e2ddd2;   /* hairline borders                */
  --line-strong: #cfc9bb;
  --gold:        #9a7b3f;   /* rare, for tiny detail accents   */
  --danger:      #8a3a2f;
  --focus:       #1f6feb;   /* accessible focus ring           */

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
           Arial, sans-serif;

  /* Rhythm */
  --measure: 68ch;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgba(35,36,31,.05), 0 8px 28px rgba(35,36,31,.06);
  --shadow-soft: 0 1px 2px rgba(35,36,31,.04), 0 4px 14px rgba(35,36,31,.05);
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1140px;
  --container-narrow: 780px;
}

/* ---- 2. Reset / base -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.8vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.22rem, 1.05rem + .7vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1.1rem; max-width: var(--measure); }
a  { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent); }
strong { color: var(--ink); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .4rem; max-width: var(--measure); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 .9rem;
}
.lead { font-size: 1.2em; color: var(--muted); line-height: 1.55; }
.cy { font-style: italic; color: var(--accent-deep); } /* Welsh accents */

/* ---- 3. Skip link & focus --------------------------------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- 4. Layout -------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--alt { background: var(--surface-alt); }
.section--ink { background: var(--ink); color: #e9e7df; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--moss { background: var(--accent); color: #f2f4ee; }
.section--moss h2, .section--moss h3, .section--moss .eyebrow { color: #fff; }
.section--moss p, .section--moss .lead { color: #eef2e8; }
.section--moss a:not(.btn) { color: #fff; }
.section--moss .btn--ghost { color: #fff; border-color: #fff; }
.section--moss .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.center { text-align: center; }
.center p, .center li { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--form { grid-template-columns: 1fr minmax(340px, 460px); align-items: start; }
@media (max-width: 880px) { .split, .split--form { grid-template-columns: 1fr; } }

/* ---- 5. Buttons ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.5rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600; line-height: 1;
  border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: background .2s var(--ease), color .2s, border-color .2s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color:#fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(0,0,0,.02); }
.btn--onink { background: #fff; color: var(--ink); border-color:#fff; }
.btn--onink:hover { background: transparent; color:#fff; border-color:#fff; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---- 6. Header / nav -------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,243,237,.88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; line-height: 1; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--serif); font-size: 1.28rem; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.brand:hover .brand__name { color: var(--accent-deep); }
@media (max-width: 400px) { .brand__name { font-size: 1.08rem; } }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a { position: relative; color: var(--text); text-decoration: none; font-size: .96rem; font-weight: 500; padding: .55rem .7rem; border-radius: var(--radius); }
.nav a:hover { color: var(--accent-deep); background: rgba(75,90,66,.07); }
.nav a[aria-current="page"] { color: var(--accent-deep); }
.nav a[aria-current="page"]::after { content:""; position:absolute; left:.7rem; right:.7rem; bottom:.28rem; height:2px; background: var(--accent); border-radius:2px; }
.header-cta { display: flex; align-items: center; gap: .6rem; margin-left: .4rem; }

/* dropdown — disclosure pattern: the link navigates, the chevron toggles */
.has-sub { position: relative; display: flex; align-items: center; }
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: .5rem; display: none; flex-direction: column;
}
.sub-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 34px; padding: 0; background: transparent; border: 0;
  border-radius: var(--radius); color: var(--muted); cursor: pointer;
}
.sub-toggle:hover { color: var(--accent-deep); background: rgba(75,90,66,.07); }
.sub-toggle svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.has-sub.is-open > .sub-toggle svg { transform: rotate(180deg); }
.has-sub.is-open .subnav { display: flex; }
/* Desktop hover preview — never on touch, never below the mobile breakpoint */
@media (min-width: 941px) and (hover: hover) and (pointer: fine) {
  .has-sub:hover .subnav { display: flex; }
}
/* JS adds .no-hover on page load and on nav clicks, removing it on the first
   mouse move or key press — stops a hover dropdown "sticking" open after a
   click when the cursor is still parked over the menu on the next page.
   Desktop-scoped so it can never hide the always-visible mobile submenu. */
@media (min-width: 941px) {
  .site-header.no-hover .has-sub:not(.is-open) .subnav { display: none !important; }
}
.subnav a { padding: .6rem .7rem; border-radius: var(--radius); }

/* mobile toggle */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width:20px; height:2px; background: var(--ink); position: relative; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle span::before { position:absolute; top:-6px; }
.nav-toggle span::after  { position:absolute; top:6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.1rem,5vw,2.5rem) 1.4rem;
    max-height: calc(100dvh - 74px); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
    box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display:none; }
  .sub-toggle { display: none; }
  .has-sub { flex-direction: column; align-items: stretch; }
  .subnav { position: static; display: flex; box-shadow: none; border: 0; padding: 0 0 .4rem 1rem; min-width: 0; }
  .subnav a { border-bottom: 1px dotted var(--line); font-size: .98rem; }
  .header-cta .btn--ghost { display: none; }
}

/* ---- 7. Hero ---------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: .4em; }
.hero__welsh { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--accent-deep); margin-bottom: 1rem; }
.hero__media { position: relative; }

/* Image placeholder blocks (until Sarah's photos land) */
.ph {
  position: relative; display: flex; align-items: flex-end;
  background:
    linear-gradient(135deg, #dfe4d7 0%, #cdd3c2 45%, #b9c1ad 100%);
  border-radius: var(--radius-lg); overflow: hidden; color: #33402c;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.ph::before {
  content: "◲"; position: absolute; top: 12px; left: 14px; font-size: 1.1rem; opacity: .5;
}
.ph__cap { font-family: var(--sans); font-size: .78rem; line-height: 1.4; padding: .8rem 1rem; background: linear-gradient(0deg, rgba(255,255,255,.82), rgba(255,255,255,0)); width: 100%; }
.ph__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 3 / 4; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--sq { aspect-ratio: 1 / 1; }

/* ---- 8. Trust bar ----------------------------------------- */
.trustbar { background: var(--ink); color: #e9e7df; }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem,4vw,3rem); padding-block: 1.1rem; }
.trustbar__item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; }
.trustbar__item svg { width: 20px; height: 20px; flex: none; color: #b9c8a8; }

/* ---- 9. Cards --------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); }
.card__link { margin-top: auto; padding-top: .8rem; font-weight: 600; text-decoration: none; }
.card__link::after { content: " →"; }
.card--link { text-decoration: none; color: inherit; transition: transform .18s var(--ease), box-shadow .2s, border-color .2s; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card--feature { border-top: 3px solid var(--accent); }
.icon-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 1rem; }
.icon-badge svg { width: 22px; height: 22px; }

/* pill / tag */
.pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; letter-spacing: .02em; padding: .3rem .7rem; border-radius: 100px; background: var(--accent-tint); color: var(--accent-deep); }
.pill--zoneA { background:#e3ecdd; color:#3a5230; }
.pill--zoneB { background:#e7ecdf; color:#4a5a34; }
.pill--zoneC { background:#f0ead9; color:#7a6326; }
.pill--zoneD { background:#eee7df; color:#6a5340; }

/* ---- 10. Checklist / included list ------------------------ */
.ticklist { list-style: none; padding: 0; }
.ticklist li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px;
  background: var(--accent-tint); border-radius: 50%;
}
.ticklist li::after {
  content: ""; position: absolute; left: 6px; top: .45em; width: 8px; height: 4px;
  border-left: 2px solid var(--accent-deep); border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}
.ticklist--cols { column-count: 2; column-gap: 2.5rem; }
@media (max-width: 620px) { .ticklist--cols { column-count: 1; } }
.checklist-group h3 { margin-top: 1.6rem; }

/* ---- 11. Steps -------------------------------------------- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1.4rem; }
.steps li { position: relative; padding-left: 3.4rem; max-width: var(--measure); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--serif); font-size: 1.1rem;
  display: grid; place-items: center;
}
.steps h3 { font-size: 1.15rem; margin-bottom: .2rem; }

/* ---- 12. Zone map / coverage ------------------------------ */
.zones { display: grid; gap: 1.2rem; }
.zone {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg); padding: 1.3rem 1.5rem;
}
.zone--A { border-left-color:#4f7a3c; }
.zone--B { border-left-color:#6f8a3c; }
.zone--C { border-left-color:#b28a2f; }
.zone--D { border-left-color:#8a7358; }
.zone__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.zone__head h3 { margin: 0; }
.zone__towns { color: var(--muted); margin: .5rem 0 0; }
.zone__price { font-weight: 600; color: var(--ink); font-size: .92rem; white-space: nowrap; }

/* simple SVG-ish concentric zone diagram */
.zonemap { display: grid; place-items: center; aspect-ratio: 1/1; max-width: 420px; margin-inline: auto; border-radius: 50%;
  background:
    radial-gradient(circle at 42% 45%,
      #cfe0c2 0 28%, #dbe6cf 28% 50%, #ede4c9 50% 72%, #e6ddd0 72% 100%);
  border: 1px solid var(--line); position: relative; }
.zonemap span { position: absolute; font-size: .74rem; font-weight: 700; color: #34402b; letter-spacing:.03em; }

/* ---- 13. Forms -------------------------------------------- */
.quote-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.3rem, 3vw, 2rem); }
.quote-panel h2, .quote-panel h3 { margin-top: 0; }
/* Panel heading is an h2 for heading order, but sized like an h3 */
.quote-panel__title { font-size: clamp(1.22rem, 1.05rem + .7vw, 1.55rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: .7rem .8rem; min-height: 48px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(75,90,66,.18);
}
.field--postcode input { text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hint { font-size: .8rem; color: var(--muted); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; }
.form-status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius); font-size: .92rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--accent-tint); color: var(--accent-deep); border: 1px solid #c6d3b8; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- 14. FAQ accordion ------------------------------------ */
.faq { border-top: 1px solid var(--line); max-width: var(--measure); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2.4rem 1.1rem 0; position: relative;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink); font-weight: 600; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:focus-visible { outline-offset: 4px; }
.faq__answer { padding: 0 0 1.2rem; color: var(--text); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---- 15. Testimonial / quote block (ready for real reviews)- */
.pullquote { font-family: var(--serif); font-size: clamp(1.3rem,1.1rem+1vw,1.8rem); line-height: 1.4; color: var(--ink); border-left: 3px solid var(--accent); padding-left: 1.4rem; max-width: 30ch; }
.review-slot { border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; color: var(--muted); background: var(--surface); }

/* ---- 16. Breadcrumbs -------------------------------------- */
.crumbs { font-size: .84rem; color: var(--muted); padding-top: 1.3rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumbs li::after { content: "›"; margin-left: .4rem; color: var(--line-strong); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); text-decoration: underline; }

/* ---- 17. Prose helper ------------------------------------- */
.prose > * { max-width: var(--measure); }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { margin-bottom: 1.2rem; }

/* related links */
.related { display: grid; gap: .8rem; }
.related a { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); font-weight: 500; transition: border-color .2s, transform .15s; }
.related a:hover { border-color: var(--accent); transform: translateX(3px); }
.related a span { color: var(--muted); font-weight: 400; font-size: .9rem; }

/* ---- 18. Footer ------------------------------------------- */
.site-footer { background: var(--ink); color: #c9c7bd; margin-top: 0; }
.site-footer a { color: #dcdad0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; padding-block: clamp(2.5rem,5vw,3.5rem); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__name { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
/* Footer column headings are h2 for heading order, styled as small caps labels */
.footer-col h2, .footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.nap { font-style: normal; line-height: 1.7; font-size: .95rem; }
.nap strong { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.3rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .82rem; }
.footer-bottom a { color: #b6b4aa; }

/* ---- 19. Sticky mobile call bar --------------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  box-shadow: 0 -4px 20px rgba(35,36,31,.14);
}
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 56px; font-weight: 600; text-decoration: none; font-size: 1rem; }
.mobile-cta a svg { width: 18px; height: 18px; }
.mobile-cta .m-call { background: var(--surface); color: var(--ink); }
.mobile-cta .m-quote { background: var(--accent); color: #fff; }
@media (max-width: 760px) { .mobile-cta { display: grid; } body { padding-bottom: 56px; } }

/* ---- 20. Motion: fade-in on scroll ------------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- 21. Utilities ---------------------------------------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}
.mb-1{margin-bottom:1rem}.mb-2{margin-bottom:2rem}
.maxw{max-width:var(--container-narrow);margin-inline:auto}
.text-muted{color:var(--muted)}
.divider-band { height: 1px; background: var(--line); }
.visually-hidden { position:absolute!important; width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap; }
.tag-row { display:flex; flex-wrap:wrap; gap:.5rem; }
