/* ==========================================================================
   Feather Touch Grooming — design system
   Mobile-first. No framework, no JS dependency for layout.
   All colour pairs used for text have been checked for WCAG 2.2 AA contrast.
   ========================================================================== */

:root {
  /* Colour */
  --ink:          #241F1B;   /* headings — 15.4:1 on cream */
  --body:         #4A423B;   /* body text — 9.3:1 on cream */
  --muted:        #6B6058;   /* secondary text — 5.8:1 on cream */
  --green:        #2E4F3E;   /* brand — 8.6:1 on cream */
  --green-dk:     #223B2E;
  --green-lt:     #A8C9B4;
  --clay:         #B25A30;   /* CTA fill — white on it is 4.8:1 */
  --clay-dk:      #A44E27;   /* CTA text on cream — 5.4:1 */
  --clay-hover:   #93441F;
  --cream:        #FBF8F3;
  --surface:      #F3EDE3;
  --surface-2:    #EBE3D5;
  --border:       #E3D9C9;
  --white:        #FFFFFF;

  /* Type */
  --font-head: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --gap: 1rem;
  --sec: clamp(3rem, 7vw, 5.5rem);
  --wrap: 1140px;
  --narrow: 720px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(36,31,27,.05), 0 8px 24px -12px rgba(36,31,27,.18);

  /* Height of the sticky mobile action bar, used for body padding */
  --bar-h: 60px;
  /* Total sticky header height (utility bar + logo row). The mobile drawer
     hangs off the bottom of this, so the two must stay in step. Verified
     against the rendered header in the browser. */
  --hdr-h: 111px;   /* 36 utility bar + 74 logo row + 1 border */
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor jumps (the skip link, any future #target) must clear the sticky
     header rather than landing underneath it. */
  scroll-padding-top: calc(var(--hdr-h) + 8px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
/* <picture> wraps <img> purely to offer formats; it should not affect layout. */
picture { display: contents; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; margin: 0 0 .6em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.4rem); }
h4 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 700; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a  { color: var(--clay-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-hover); }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sec) 0; }

/* --- Accessibility ----------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--clay-dk);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green); color: var(--white);
  padding: .8rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout ------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: var(--narrow); }
.section { padding-block: var(--sec); }
.section--surface { background: var(--surface); }
.section--green { background: var(--green); color: #E8EFE9; }
.section--green h2, .section--green h3 { color: var(--white); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.25rem); }
.section-head { max-width: 640px; margin-bottom: 2.25rem; }
.section-head p { color: var(--muted); font-size: 1.09rem; }
.section--green .section-head p { color: var(--green-lt); }

.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .85rem 1.35rem;
  font: inherit; font-weight: 650; font-size: 1.0625rem;
  border: 2px solid transparent; border-radius: 10px;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--clay); color: var(--white); }
.btn--primary:hover { background: var(--clay-hover); color: var(--white); }
.btn--secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn--secondary:hover { background: var(--green); color: var(--white); }
.btn--onGreen { background: var(--white); color: var(--green-dk); }
.btn--onGreen:hover { background: var(--surface); color: var(--green-dk); }
.btn--ghostOnGreen { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghostOnGreen:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row .btn { flex: 1 1 auto; min-width: 0; }
@media (min-width: 560px) { .btn-row .btn { flex: 0 1 auto; } }
.btn svg { width: 19px; height: 19px; flex: none; }

/* --- Header ------------------------------------------------------------ */
/* Utility bar. Lives inside the sticky header so the phone number is on screen
   at every scroll position, on every page. */
.topbar { background: var(--green); color: var(--green-lt); font-size: .84rem; }
.topbar__in {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; min-height: 36px;
}
.topbar__hours { display: none; }
.topbar a {
  color: var(--white); text-decoration: none; font-weight: 650;
  display: inline-flex; align-items: center; gap: .42rem; padding: .4rem 0;
}
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar a:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.topbar svg { width: 15px; height: 15px; flex: none; }
@media (min-width: 720px) {
  .topbar__in { justify-content: space-between; }
  .topbar__hours { display: block; }
}

.hdr {
  position: sticky; top: 0; z-index: 60;
  /* NOTE: no backdrop-filter/transform here — either would make .hdr a
     containing block for the position:fixed drawer and clip it to the header. */
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
/* Height-driven so the lockup's own aspect ratio decides the width. */
.brand__logo { height: 42px; width: auto; max-width: 100%; }
@media (min-width: 480px) { .brand__logo { height: 48px; } }
@media (min-width: 1000px) { .brand__logo { height: 54px; } }
.brand__name { font-family: var(--font-head); font-size: 1.16rem; font-weight: 600; line-height: 1.1; letter-spacing: -.01em; }
.brand__sub { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--green); margin-top: 1px; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a { color: var(--body); text-decoration: none; font-weight: 550; font-size: .97rem; padding: .4rem 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--green); border-bottom-color: var(--green-lt); }
.nav a[aria-current="page"] { color: var(--green); border-bottom-color: var(--green); }
.hdr__cta { display: none; }

/* Mobile menu: <details>/<summary>, natively keyboard accessible, no JS */
.mnav { position: relative; }
.navtoggle {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 46px; padding: .5rem .85rem;
  background: transparent; border: 1.5px solid var(--border); border-radius: 9px;
  font: inherit; font-weight: 600; font-size: .95rem; color: var(--ink);
  cursor: pointer; list-style: none; user-select: none;
}
.navtoggle::-webkit-details-marker { display: none; }
.navtoggle svg { width: 18px; height: 18px; }
.mnav[open] .navtoggle { background: var(--green); color: var(--white); border-color: var(--green); }

.drawer {
  position: fixed; inset: var(--hdr-h) 0 0; z-index: 55;
  background: var(--cream); overflow-y: auto;
  padding: 1.25rem 1.25rem calc(2rem + var(--bar-h));
  border-top: 1px solid var(--border);
}
.drawer ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.drawer li { margin: 0; border-bottom: 1px solid var(--border); }
.drawer a { display: block; padding: .95rem .25rem; color: var(--ink); text-decoration: none; font-size: 1.09rem; font-weight: 600; }
.drawer a:hover { color: var(--green); }
.drawer .drawer__sub a { padding-left: 1.1rem; font-size: 1rem; font-weight: 500; color: var(--body); }
.drawer .btn-row li, .drawer .btn-row { border: 0; }
.drawer__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 1.25rem .25rem .4rem; margin: 0; }

@media (min-width: 1000px) {
  .nav { display: block; }
  .hdr__cta { display: inline-flex; }
  .hdr__cta.btn { min-height: 44px; padding: .55rem 1.15rem; font-size: .97rem; }
  .mnav { display: none; }
}

/* --- Hero -------------------------------------------------------------- */
.hero { background: var(--surface); border-bottom: 1px solid var(--border); }
.hero__in { display: grid; gap: 2rem; padding-block: clamp(2.25rem, 6vw, 4rem); align-items: center; }
@media (min-width: 900px) { .hero__in { grid-template-columns: 1.15fr .85fr; gap: 3rem; } }
.hero h1 { margin-bottom: .5rem; }
.hero__sub { font-size: clamp(1.06rem, 2.2vw, 1.2rem); color: var(--body); max-width: 34em; margin-bottom: 1.6rem; }
.hero__media img, .hero__media svg { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Hero media (video or still) --------------------------------------- */
.heromedia {
  position: relative;
  aspect-ratio: var(--hero-aspect, 4 / 3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
/* object-fit means any source aspect ratio fills the box without distortion,
   and the fixed aspect-ratio above means zero layout shift while it loads. */
.heromedia__el {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: 0; box-shadow: none;
}

.heromedia__btn {
  position: absolute; right: .7rem; bottom: .7rem;
  width: 44px; height: 44px; padding: 0;
  display: grid; place-items: center;
  background: rgba(36,31,27,.62); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%;
  cursor: pointer; transition: background-color .15s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.heromedia__btn:hover { background: rgba(36,31,27,.85); }
.heromedia__btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

/* Pause bars and play triangle, drawn in CSS so there is no extra markup. */
.heromedia__ico { display: none; }
.heromedia__ico--pause { width: 12px; height: 13px; border-left: 4px solid currentColor; border-right: 4px solid currentColor; }
.heromedia__ico--play  { width: 0; height: 0; margin-left: 3px;
  border-left: 12px solid currentColor; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.heromedia__btn[data-state="paused"] .heromedia__ico--play,
.heromedia__btn:not([data-state="paused"]) .heromedia__ico--pause { display: block; }
/* Before the script runs, assume playing and show the pause icon. */
.heromedia__btn:not([data-state]) .heromedia__ico--pause { display: block; }

@media (prefers-reduced-motion: reduce) {
  .heromedia__el { animation: none; }
}
.hero__areas { margin-top: 1.5rem; font-size: .95rem; color: var(--muted); }
.hero__areas strong { color: var(--green); font-weight: 650; }

.trustline {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  font-size: .92rem; color: var(--muted);
}
.trustline li { display: inline-flex; align-items: center; gap: .38rem; margin: 0; }
.trustline svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* --- Cards ------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; height: 100%;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.card--link:hover { border-color: var(--green-lt); transform: translateY(-2px); color: inherit; }
.card__more { margin-top: auto; padding-top: 1rem; color: var(--clay-dk); font-weight: 650; font-size: .97rem; }
.card__icon { width: 38px; height: 38px; color: var(--green); margin-bottom: .85rem; }
.card__price { font-family: var(--font-head); font-size: 1.5rem; color: var(--green); font-weight: 600; margin: .1rem 0 .6rem; }
.card__price span { font-family: var(--font-body); font-size: .82rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* --- Steps ------------------------------------------------------------- */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 42px 1fr; gap: 1rem; align-items: start; margin: 0; }
.steps li::before {
  content: counter(s);
  display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--green); color: var(--white); border-radius: 50%;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
}
.section--green .steps li::before { background: var(--white); color: var(--green-dk); }
.steps h3 { font-size: 1.09rem; margin-bottom: .2rem; font-family: var(--font-body); font-weight: 700; }
.steps p { color: var(--muted); font-size: .99rem; }
.section--green .steps p { color: var(--green-lt); }

/* --- Pricing ----------------------------------------------------------- */
.ptable { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.ptable caption { text-align: left; font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); margin-bottom: .75rem; font-weight: 600; }
.ptable th, .ptable td { text-align: left; padding: .85rem .75rem; border-bottom: 1px solid var(--border); }
.ptable thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; border-bottom-width: 2px; }
.ptable td:first-child { font-weight: 650; color: var(--ink); }
.ptable .price { font-family: var(--font-head); font-size: 1.32rem; color: var(--green); font-weight: 600; white-space: nowrap; }
.ptable .dur { color: var(--muted); font-size: .93rem; white-space: nowrap; }
/* The table needs ~423px plus the card's 48px padding, so two side-by-side
   columns only work past roughly 1020px of viewport. Below that it renders as
   stacked cards, which reads fine and never overflows. Measured, not guessed. */
@media (max-width: 1059px) {
  .ptable, .ptable tbody, .ptable tr, .ptable td { display: block; width: 100%; }
  .ptable thead { display: none; }
  .ptable tr { border: 1px solid var(--border); border-radius: 12px; background: var(--white); padding: .9rem 1rem; margin-bottom: .8rem; }
  .ptable td { border: 0; padding: .18rem 0; }
  .ptable td:first-child { font-size: 1.06rem; }
  .ptable td[data-l]::before { content: attr(data-l) " "; color: var(--muted); font-size: .87rem; }
}
.pcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.pcard--feature { border-color: var(--green); border-width: 2px; }
.includes { list-style: none; padding: 0; margin: 0; }
.includes li { display: grid; grid-template-columns: 20px 1fr; gap: .6rem; align-items: start; margin-bottom: .5rem; font-size: .99rem; }
.includes svg { width: 18px; height: 18px; color: var(--green); margin-top: .28em; }
.section--green .includes svg { color: var(--green-lt); }

.note {
  background: var(--surface); border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0; padding: 1.1rem 1.25rem; margin: 1.5rem 0;
  font-size: .99rem;
}
.note--white { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--green); }
.note h2, .note h2, .note h3 { font-size: 1.03rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .3rem; }

/* --- FAQ (CSS-only accordion) ------------------------------------------ */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem .5rem 1.15rem 0;
  font-weight: 650; color: var(--ink); font-size: 1.05rem;
  display: grid; grid-template-columns: 1fr 24px; gap: 1rem; align-items: start;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 13px; height: 13px; margin-top: .42em; justify-self: end;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--green); }
.faq__a { padding: 0 2.5rem 1.35rem 0; color: var(--body); }
.faq__a p { font-size: 1rem; }
.faq__cat { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 2.25rem 0 .35rem; }
.faq__cat:first-child { margin-top: 0; }

/* --- Areas ------------------------------------------------------------- */
.chiplist { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.chiplist li { margin: 0; }
.chip {
  display: inline-block; padding: .38rem .8rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  font-size: .9rem; color: var(--body); text-decoration: none;
}
a.chip:hover { border-color: var(--green); color: var(--green); }
.section--green .chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: var(--white); }
.arealinks { display: grid; gap: .6rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .arealinks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .arealinks { grid-template-columns: repeat(3, 1fr); } }
.arealinks li { margin: 0; }
.arealinks a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .95rem 1.1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; text-decoration: none; color: var(--ink); font-weight: 600;
  min-height: 54px;
}
.arealinks a:hover { border-color: var(--green); color: var(--green); }
.arealinks a::after { content: "→"; color: var(--clay-dk); font-weight: 400; }

/* --- Gallery ----------------------------------------------------------- */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; }
.gallery img, .gallery svg { width: 100%; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); }
.gallery figcaption { font-size: .85rem; color: var(--muted); margin-top: .4rem; }

/* --- Reviews ----------------------------------------------------------- */
.rating {
  display: grid; gap: 1.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
@media (min-width: 720px) { .rating { grid-template-columns: auto 1fr; gap: 2.5rem; } }
.rating__score { text-align: center; }
@media (min-width: 720px) {
  .rating__score { border-right: 1px solid var(--border); padding-right: 2.5rem; }
}
.rating__num {
  display: block; font-family: var(--font-head); font-size: 3.4rem;
  line-height: 1; color: var(--green); font-weight: 600;
}
.rating__score .stars { justify-content: center; margin: .6rem 0 .4rem; }
.rating__count { font-size: .92rem; color: var(--muted); font-weight: 600; }
.rating__body p { color: var(--body); margin-bottom: 1.1rem; }
.rating__body .btn svg { color: #D99A2B; }

/* Half star: two overlaid stars, the lower one clipped to its left half. */
.star-half { position: relative; display: inline-flex; width: 17px; height: 17px; }
.star-half svg { position: absolute; inset: 0; }
.star-half svg:first-child { color: var(--border); }
.star-half svg:last-child { clip-path: inset(0 50% 0 0); }
.reviewgrid { columns: 1; column-gap: 1.25rem; }
@media (min-width: 700px)  { .reviewgrid { columns: 2; } }
@media (min-width: 1040px) { .reviewgrid { columns: 3; } }
.review {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; margin: 0 0 1.25rem;
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
  display: inline-block; width: 100%;
}
.review p + p { margin-top: .85rem; }
.stars { display: flex; gap: 2px; margin-bottom: .7rem; }
.stars svg { width: 17px; height: 17px; color: #D99A2B; }
.review p { font-size: 1rem; color: var(--body); }
.review__who { margin-top: .9rem; font-size: .9rem; color: var(--muted); font-weight: 600; }

.booker {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.booker iframe { display: block; width: 100%; border: 0; min-height: 900px; }
@media (max-width: 640px) { .booker iframe { min-height: 1100px; } }

/* --- Breadcrumbs ------------------------------------------------------- */
.crumbs { padding-block: .9rem; border-bottom: 1px solid var(--border); background: var(--cream); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; font-size: .87rem; color: var(--muted); }
.crumbs li { margin: 0; display: inline-flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--border); }
.crumbs a { color: var(--muted); text-decoration: none; display: inline-block; padding-block: 4px; }
.crumbs a:hover { color: var(--green); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* --- Prose ------------------------------------------------------------- */
.prose { max-width: 68ch; }
.privacy__date { color: var(--muted); font-size: .95rem; margin-top: .35rem; }
.prose p a { text-decoration: underline; text-underline-offset: 2px; }
.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9rem; }
.prose ul li { margin-bottom: .6rem; }

/* Standalone "→" call-to-action paragraphs: inline-block padding lifts the
   link to the 24px WCAG 2.2 target-size minimum without affecting prose links. */
.more { margin-top: 1.5rem; }
.more a { display: inline-block; padding-block: 4px; }
.more--sm { margin-top: .75rem; font-size: .95rem; }

/* --- CTA band ---------------------------------------------------------- */
.cta { background: var(--green); color: #E8EFE9; }
.cta h2 { color: var(--white); }
.cta p { color: var(--green-lt); font-size: 1.09rem; max-width: 46ch; }
.cta__meta { margin-top: 1.75rem; font-size: .95rem; color: var(--green-lt); display: grid; gap: .3rem; }
.cta__meta a { display: inline-block; padding-block: 4px; }
.cta__meta a { color: var(--white); }

/* --- Footer ------------------------------------------------------------ */
.ftr { background: var(--green-dk); color: #C3D3C8; padding-block: 3rem 2rem; font-size: .95rem; }
.ftr a { color: #E4EDE6; text-decoration: none; }
.ftr a:hover { color: var(--white); text-decoration: underline; }
.ftr__grid { display: grid; gap: 2rem; margin-bottom: 2.25rem; }
@media (min-width: 700px)  { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.ftr h2 { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green-lt); font-family: var(--font-body); font-weight: 700; margin-bottom: .9rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: .3rem; }
.ftr li a { display: inline-block; padding-block: 4px; }
.ftr__brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.ftr__brand p { color: #A9BFB0; max-width: 32ch; }
.ftr__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; color: #9DB3A4; font-size: .87rem; }
.ftr__social { display: flex; gap: .8rem; margin-top: 1rem; }
.ftr__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; }
.ftr__social svg { width: 19px; height: 19px; }

/* --- Sticky mobile action bar ------------------------------------------ */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -2px 16px rgba(36,31,27,.10);
  padding-bottom: env(safe-area-inset-bottom);
}
.bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: var(--bar-h); padding: .45rem .3rem;
  text-decoration: none; color: var(--green); font-size: .76rem; font-weight: 650;
  border-right: 1px solid var(--border);
}
.bar a:last-child { border-right: 0; }
.bar a.bar--book { background: var(--clay); color: var(--white); }
.bar a.bar--book:hover { background: var(--clay-hover); }
.bar svg { width: 21px; height: 21px; }
body { padding-bottom: var(--bar-h); }
@media (min-width: 1000px) {
  .bar { display: none; }
  body { padding-bottom: 0; }
}
@media print { .bar, .hdr, .drawer { display: none !important; } }
