/* ==========================================================================
   Encompass Counselling Canterbury — Option A "Classic"
   A calm, editorial, multi-page site.
   Palette sampled directly from the Encompass logo.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — sampled from the logo artwork */
  --cream:        #fbf7ec;
  --cream-deep:   #f3eede;
  --paper:        #ffffff;
  --sage-pale:    #dfe3d0;
  --sage-light:   #c4c8aa;
  --sage:         #8b9772;
  --sage-deep:    #5f6e4a;   /* small text on cream: 5.0:1 */
  --forest:       #415439;
  --forest-dark:  #2c3b27;

  /* Text */
  --ink:          #2b3128;
  --ink-soft:     #59604f;
  --ink-muted:    #676e5d;   /* small text on cream: 4.8:1 */

  /* Lines & shadows */
  --line:         #e4ded0;
  --line-strong:  #cfc9b8;
  --shadow-sm:    0 1px 2px rgba(44, 59, 39, .05), 0 2px 8px rgba(44, 59, 39, .04);
  --shadow-md:    0 2px 4px rgba(44, 59, 39, .05), 0 12px 28px rgba(44, 59, 39, .08);
  --shadow-lg:    0 4px 8px rgba(44, 59, 39, .06), 0 24px 56px rgba(44, 59, 39, .10);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --radius:       14px;
  --radius-lg:    22px;
  --container:    1140px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-y:    clamp(3.75rem, 9vw, 7rem);

  --header-h:     76px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.0125rem, .4vw + .94rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--forest-dark);
  margin: 0 0 .6em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.6rem); letter-spacing: -0.025em; text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); letter-spacing: -0.02em; text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); text-decoration-color: var(--sage-light); text-underline-offset: .18em; }
a:hover { color: var(--sage-deep); text-decoration-color: currentColor; }

img, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
li::marker { color: var(--sage); }

strong { font-weight: 600; color: var(--forest-dark); }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

::selection { background: var(--sage-light); color: var(--forest-dark); }

:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--cream-deep { background: var(--cream-deep); }
.section--paper { background: var(--paper); }

.section--forest {
  background: var(--forest-dark);
  color: var(--sage-pale);
}
.section--forest h2,
.section--forest h3 { color: var(--cream); }
.section--forest a { color: var(--sage-light); }
.section--forest a:hover { color: #fff; }

.prose { max-width: 68ch; }
.prose--center { margin-inline: auto; text-align: center; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--forest-dark);
  color: var(--cream);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: var(--cream); }

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

/* --------------------------------------------------------------------------
   4. Shared bits: eyebrow, rule, buttons
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage);
  flex: none;
}
.prose--center .eyebrow::before { display: none; }
.section--forest .eyebrow { color: var(--sage-light); }
.section--forest .eyebrow::before { background: var(--sage); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease,
              transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--forest);
}
.btn--ghost:hover {
  border-color: var(--sage-deep);
  background: rgba(139, 151, 114, .1);
  color: var(--forest-dark);
}

.section--forest .btn--primary {
  background: var(--sage-light);
  border-color: var(--sage-light);
  color: var(--forest-dark);
}
.section--forest .btn--primary:hover { background: var(--cream); border-color: var(--cream); }
.section--forest .btn--ghost { border-color: rgba(223, 227, 208, .4); color: var(--sage-pale); }
.section--forest .btn--ghost:hover { border-color: var(--sage-light); background: rgba(223, 227, 208, .1); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.75rem;
}
.prose--center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 236, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(44, 59, 39, .05);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  flex: none;
}
.brand img { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--forest-dark);
  letter-spacing: -.015em;
}
.brand__sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: .18em;
}

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 1.4vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: .45rem .25rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .25rem; right: .25rem; bottom: .15rem;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--forest-dark); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--forest-dark); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: .4rem; padding: .62rem 1.25rem; font-size: .9rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  color: var(--forest-dark);
  flex: none;
}
.nav-toggle:hover { background: rgba(139, 151, 114, .1); }
.nav-toggle__bars { position: relative; width: 19px; height: 13px; display: block; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s ease, opacity .18s ease, top .28s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5.6px; }
.nav-toggle__bars span:nth-child(3) { top: 11.2px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 5.6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 5.6px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1.5rem;
    /* Hidden by default on small screens; `hidden` attr is removed by JS */
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: .95rem .25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.15rem 0 0; align-self: flex-start; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.75rem, 7vw, 5.5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% 55%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(196, 200, 170, .30), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title { margin-bottom: .45em; }
.hero__lede {
  font-size: clamp(1.075rem, 1.1vw + .85rem, 1.28rem);
  color: var(--ink-soft);
  max-width: 34ch;
  text-wrap: pretty;
}

/* Keeps ranges like 16-18 from splitting across lines */
.nowrap { white-space: nowrap; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-position: center 22%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 116px;
  height: 116px;
  background: var(--paper);
  border-radius: 50%;
  padding: 11px;
  box-shadow: var(--shadow-md);
}
.hero__badge img { width: 100%; height: 100%; border-radius: 50%; aspect-ratio: auto; box-shadow: none; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .65rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .4rem .85rem .4rem .7rem;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero__meta svg { width: 15px; height: 15px; color: var(--sage-deep); flex: none; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  /* The hero image is a portrait of Delia, so keep it upright on a phone
     rather than cropping a landscape band out of the middle of her. */
  .hero__media img { aspect-ratio: 4 / 5; }
  .hero__lede { max-width: 60ch; }
  .hero__badge { width: 92px; height: 92px; left: auto; right: -12px; bottom: -18px; }
}

/* --------------------------------------------------------------------------
   7. Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
}
.page-head__lede {
  font-size: clamp(1.05rem, .8vw + .88rem, 1.2rem);
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. Pull quote
   -------------------------------------------------------------------------- */
.pullquote {
  margin: 0;
  max-width: 30ch;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.34;
  letter-spacing: -.015em;
  color: var(--forest-dark);
  font-weight: 400;
  text-wrap: balance;
}
.pullquote--wide { max-width: 22ch; }
.section--forest .pullquote { color: var(--cream); }

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .quote-grid { grid-template-columns: 1fr; gap: 1.5rem; } .pullquote, .pullquote--wide { max-width: 34ch; } }

/* --------------------------------------------------------------------------
   9. Feature rows (image + text, alternating)
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 5vw, 4.25rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(3rem, 7vw, 5.5rem); }
.feature__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature--reverse .feature__media { order: 2; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
}

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .975rem; }
.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sage-pale);
  color: var(--forest);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 23px; height: 23px; }

/* Session cards carry a price and a feature list */
.card--session { position: relative; }
.card--session .card__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  margin: 0 0 .15rem;
}
.card--session .card__price span {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: .01em;
}
.card--session ul {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.card--session li {
  display: flex;
  gap: .6rem;
  font-size: .925rem;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.card--session li svg { width: 16px; height: 16px; flex: none; margin-top: .3rem; color: var(--sage-deep); }
.card--session .card__body { flex: 1; }

.card__tag {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage-pale);
  padding: .3rem .6rem;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   11. Credentials strip
   -------------------------------------------------------------------------- */
.credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}
.credentials img { flex: none; }
.credentials__bacp { height: 66px; width: auto; }
.credentials__walk { height: 92px; width: 92px; }

.credential-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .55rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}
.credential-list li {
  margin: 0;
  padding: .38rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: .845rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
}

/* --------------------------------------------------------------------------
   12. Fees table / list
   -------------------------------------------------------------------------- */
.fee-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--sage-pale);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.4vw, 1.6rem) clamp(1.25rem, 2.6vw, 1.85rem);
}
.fee-note svg { width: 22px; height: 22px; flex: none; color: var(--forest); margin-top: .22rem; }
.fee-note p { font-size: .975rem; color: var(--forest-dark); }
.fee-note strong { display: block; margin-bottom: .2rem; }

/* --------------------------------------------------------------------------
   13. Room tour video
   -------------------------------------------------------------------------- */
.room-tour {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
}
.room-tour__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest-dark);
  aspect-ratio: 9 / 16;
}
.room-tour__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-tour__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(44, 59, 39, .28);
  border: 0;
  cursor: pointer;
  color: #fff;
  transition: background-color .2s ease, opacity .2s ease;
}
.room-tour__play:hover { background: rgba(44, 59, 39, .42); }
.room-tour__play[hidden] { display: none; }
.room-tour__play span {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(251, 247, 236, .94);
  color: var(--forest-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.room-tour__play svg { width: 26px; height: 26px; margin-left: 3px; }
@media (max-width: 760px) {
  .room-tour { grid-template-columns: 1fr; }
  .room-tour__frame { max-width: 280px; margin-inline: auto; width: 100%; }
}

/* --------------------------------------------------------------------------
   14. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-list li {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.contact-list li:first-child { padding-top: 0; }
.contact-list svg { width: 20px; height: 20px; flex: none; color: var(--sage-deep); margin-top: .28rem; }
.contact-list__label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .15rem;
}
.contact-list a { font-weight: 500; }

/* Form */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.2vw, 2.35rem);
  box-shadow: var(--shadow-sm);
}
.form__row { margin-bottom: 1.15rem; }
.form__row--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}
.form__row--split .form__row { margin-bottom: 0; }

.form label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: .4rem;
}
.form label .req { color: var(--sage-deep); font-weight: 400; }

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .78rem .95rem;
  font-family: inherit;
  font-size: .975rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236c7c54' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  padding-right: 2.5rem;
}
.form textarea { resize: vertical; min-height: 130px; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--sage); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(139, 151, 114, .22);
}
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] { border-color: #a8493c; background: #fdf5f3; }
.form input[aria-invalid="true"]:focus,
.form textarea[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(168, 73, 60, .18); }

.form__error {
  display: block;
  min-height: 0;
  font-size: .82rem;
  font-weight: 500;
  color: #a8493c;
  margin-top: .32rem;
}
.form__error:empty { margin-top: 0; }

.form__consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 1.35rem;
}
.form__consent input {
  width: 19px; height: 19px;
  flex: none;
  margin-top: .12rem;
  accent-color: var(--forest);
  -webkit-appearance: auto;
  appearance: auto;
  padding: 0;
}

/* Honeypot — hidden from people, visible to naive bots */
.form__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__status {
  margin-top: 1.1rem;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.55;
}
.form__status[hidden] { display: none; }
.form__status--ok { background: var(--sage-pale); color: var(--forest-dark); }
.form__status--err { background: #fbeeeb; color: #8d3e33; }
.form__status--info { background: var(--cream-deep); color: var(--ink-soft); }

.btn[aria-busy="true"] { opacity: .72; pointer-events: none; }

/* --------------------------------------------------------------------------
   15. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 500;
  color: var(--forest-dark);
  line-height: 1.4;
}
.faq__q:hover { color: var(--sage-deep); }
.faq__icon {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
  margin-top: .22rem;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--sage-deep);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__a {
  overflow: hidden;
  height: 0;
  transition: height .32s ease;
}
.faq__a-inner { padding: 0 0 1.5rem; max-width: 62ch; color: var(--ink-soft); }
.faq__a-inner p { font-size: .975rem; }

/* --------------------------------------------------------------------------
   16. CTA band
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; color: var(--sage-pale); }
/* The button row is a flex container, so text-align on the band does not
   move it. It needs centring in its own right. */
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4rem) 1.75rem;
  font-size: .925rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2.25rem;
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 440px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer h3 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--forest); text-decoration: underline; }
.site-footer__brand p { color: var(--ink-soft); max-width: 34ch; font-size: .925rem; }
.site-footer__brand .brand { margin-bottom: 1rem; }

.site-footer__bottom {
  border-top: 1px solid var(--line-strong);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--ink-muted);
}
.site-footer__bottom p { margin: 0; }

.crisis-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin-bottom: 2.25rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.crisis-note strong { display: block; margin-bottom: .3rem; color: var(--forest-dark); }

/* --------------------------------------------------------------------------
   18. Reveal-on-scroll (progressive enhancement)
   JS adds `.js` to <html>, so without JS everything is simply visible.
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .faq__a { transition: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .btn, .room-tour__frame, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #555; }
}

/* ==========================================================================
   20. Mobile refinements
   Bigger targets, no iOS zoom on focus, and a fixed action bar on phones so
   "get in touch" is always one tap away.
   ========================================================================== */
:root { --actionbar-h: 0px; }
body { padding-bottom: var(--actionbar-h); }

/* 44px minimum on everything you tap */
.btn { min-height: 50px; }
.nav__link { display: inline-flex; align-items: center; min-height: 44px; }
.faq__q { min-height: 58px; }
.site-footer a { display: inline-flex; align-items: center; min-height: 44px; }
.site-footer__brand .brand { min-height: 0; }
.contact-list a { min-height: 34px; display: inline-flex; align-items: center; }

/* 16px stops iOS zooming the page when a field gets focus */
.form input, .form select, .form textarea { font-size: 16px; min-height: 50px; }
.form textarea { min-height: 130px; }
.form__consent { cursor: pointer; }
.form__consent input { width: 22px; height: 22px; min-height: 0; }

@media (max-width: 560px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .prose--center .btn-row { align-items: stretch; }
  .hero__meta li { font-size: .82rem; }
  .card { padding: 1.35rem 1.25rem; }
  .credential-list li { font-size: .8rem; }
}

/* Long email addresses must not push the layout sideways */
.contact-list a, .site-footer a { word-break: break-word; }

/* ---- Fixed action bar (phones only) ---- */
.actionbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  gap: .6rem;
  /* The home indicator inset already leaves room. Adding our own padding
     on top of it stacked two gaps and left a dead band under the button. */
  padding: .6rem var(--gutter) max(.6rem, env(safe-area-inset-bottom, 0px));
  background: rgba(251, 247, 236, .97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(115%);
  transition: transform .4s ease;
}
.actionbar.is-visible { transform: translateY(0); }
.actionbar .btn { flex: 1; min-height: 48px; padding: .7rem 1rem; font-size: .88rem; }
.actionbar__icon {
  flex: none !important;
  width: 48px;
  padding: 0 !important;
  display: inline-flex; align-items: center; justify-content: center;
}
.actionbar__icon svg { width: 19px; height: 19px; }

@media (max-width: 720px) {
  :root { --actionbar-h: 68px; }
  .actionbar { display: flex; }
  .nav.is-open ~ .actionbar { transform: translateY(115%); }
}

/* ==========================================================================
   21. "What does that mean?" definition popover
   Hover for mouse, tap for touch, focus for keyboard. The dotted underline
   plus the (i) makes it obvious that it can be tapped.
   ========================================================================== */
.define { position: relative; display: inline-block; }

.define__term {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1.5px;
  text-underline-offset: .2em;
  text-decoration-color: var(--sage-deep);
  transition: text-decoration-color .2s ease;
}
.define__term:hover { text-decoration-color: currentColor; }

.define__icon {
  display: inline-block;
  vertical-align: baseline;
  width: .8em; height: .8em;
  margin-left: .25em;
  transform: translateY(.03em);
  color: var(--sage-deep);
  flex: none;
  transition: color .2s ease;
}
.define__term:hover .define__icon, .define.is-open .define__icon { color: currentColor; }

.define__pop {
  position: fixed;          /* never widens the page, never clipped by a parent */
  left: 0;
  top: 0;
  z-index: 300;
  width: max-content;
  max-width: min(320px, calc(100vw - 2rem));
  padding: .95rem 1.1rem;
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.define.is-open .define__pop { opacity: 1; visibility: visible; transform: translateY(0); }
.define--below .define__pop { transform: translateY(-5px); }
.define--below.is-open .define__pop { transform: translateY(0); }

/* Arrow tracks the term even when the bubble is nudged off the screen edge */
.define__pop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: var(--arrow-x, 50%);
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--forest-dark);
}
.define--below .define__pop::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--forest-dark);
}

@media (prefers-reduced-motion: reduce) {
  .actionbar, .define__pop { transition: none !important; }
}

@media print {
  .actionbar { display: none !important; }
  .define__pop { display: none !important; }
  .define__term { text-decoration: none; }
}

/* ==========================================================================
   22. Narrow phones (320px and below)
   The brand lockup plus the menu button were wider than the screen, which
   pushed the whole page sideways. Let the brand shrink, and never let the
   page scroll horizontally.
   ========================================================================== */
.site-header__inner { gap: .75rem; }
.brand { min-width: 0; flex: 0 1 auto; }
.brand__text { min-width: 0; }
.brand__name, .brand__sub { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 400px) {
  .brand img { width: 36px; height: 36px; }
  .brand__name { font-size: 1.15rem; }
  .brand__sub { font-size: .56rem; letter-spacing: .14em; }
}

@media (max-width: 340px) {
  .brand__name { font-size: 1.05rem; }
  .brand__sub { letter-spacing: .1em; }
  .hero__meta li { font-size: .78rem; padding: .35rem .7rem .35rem .6rem; }
  .actionbar .btn { font-size: .82rem; padding: .7rem .6rem; }
}

/* ==========================================================================
   Online booking dialog
   One question at a time. Full screen on a phone, a centred card on a laptop.
   Colours come from the site tokens, so it matches whichever design it is in.
   ========================================================================== */
.bk {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 3vw, 2rem);
}
.bk[hidden] { display: none; }
body.bk-open { overflow: hidden; }

.bk__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 20, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: bkFade .25s ease both;
}
@keyframes bkFade { from { opacity: 0 } to { opacity: 1 } }

.bk__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  max-height: min(680px, 100%);
  background: var(--cream);
  border-radius: var(--bk-radius, 16px);
  box-shadow: 0 30px 80px rgba(24, 33, 20, .35);
  overflow: hidden;
  animation: bkIn .3s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes bkIn { from { opacity: 0; transform: translateY(14px) scale(.985) } to { opacity: 1; transform: none } }

/* Progress */
.bk__bar { height: 3px; background: var(--line); flex: none; }
.bk__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--sage, #8b9772);
  transition: width .35s cubic-bezier(.22, .61, .36, 1);
}

/* Head */
.bk__head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 4vw, 1.9rem) .35rem;
}
.bk__count {
  margin: 0;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.bk__close {
  flex: none;
  width: 42px; height: 42px;
  margin-right: -8px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-soft);
}
.bk__close:hover { background: rgba(0, 0, 0, .06); color: var(--forest-dark); }
.bk__close svg { width: 19px; height: 19px; }

/* Body */
.bk__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: .35rem clamp(1.1rem, 4vw, 1.9rem) 1.25rem;
}
.bk__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--forest-dark);
  margin: .2rem 0 .5rem;
  text-wrap: balance;
}
.bk__hint {
  margin: 0 0 1.35rem;
  font-size: .94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.bk__hint[hidden] { display: none; }

/* Text fields */
.bk__input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;                 /* stops iOS zooming on focus */
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper, #fff);
  border: 1px solid var(--line-mid, var(--line-strong, #cec6b0));
  border-radius: var(--bk-input-radius, 10px);
  padding: .9rem 1rem;
  min-height: 54px;
  transition: border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
textarea.bk__input { min-height: 130px; resize: vertical; }
.bk__input:hover { border-color: var(--sage, #8b9772); }
.bk__input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(139, 151, 114, .22);
}

/* Single choice cards */
.bk__options { display: grid; gap: .6rem; }
.bk__opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  width: 100%;
  min-height: 62px;
  padding: .9rem 3rem .9rem 1.1rem;
  text-align: left;
  background: var(--paper, #fff);
  border: 1px solid var(--line-mid, var(--line-strong, #cec6b0));
  border-radius: var(--bk-input-radius, 10px);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s ease, background-color .2s ease, transform .15s ease;
}
.bk__opt:hover { border-color: var(--sage, #8b9772); }
.bk__opt:active { transform: scale(.995); }
.bk__opt.is-on { border-color: var(--forest); background: var(--sage-pale, #dfe3d0); }
.bk__opt-label { font-size: 1rem; font-weight: 600; color: var(--forest-dark); }
.bk__opt-note { font-size: .86rem; color: var(--ink-soft); line-height: 1.45; }
.bk__tick {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 21px; height: 21px;
  border: 1.5px solid var(--line-mid, #cec6b0);
  border-radius: 50%;
  background: #fff;
}
.bk__opt.is-on .bk__tick { border-color: var(--forest); background: var(--forest); }
.bk__opt.is-on .bk__tick::after {
  content: "";
  position: absolute;
  left: 6px; top: 4px;
  width: 6px; height: 11px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

/* Multi select chips */
.bk__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.bk__chip {
  min-height: 44px;
  padding: .55rem 1rem;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper, #fff);
  border: 1px solid var(--line-mid, var(--line-strong, #cec6b0));
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.bk__chip:hover { border-color: var(--sage, #8b9772); }
.bk__chip.is-on {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* Review */
.bk__review { margin: 0 0 1.25rem; }
.bk__review > div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: .25rem 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.bk__review dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: .15rem;
}
.bk__review dd { margin: 0; font-size: .96rem; color: var(--ink); overflow-wrap: anywhere; }
@media (max-width: 460px) {
  .bk__review > div { grid-template-columns: 1fr; gap: .1rem; }
}

.bk__consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  cursor: pointer;
  /* Tinted and boxed, so it reads as something to do rather than more small
     print. It is the one thing standing between them and sending. */
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--bk-input-radius);
  padding: .85rem 1rem;
  margin-top: .5rem;
}
.bk__consent input {
  width: 22px; height: 22px;
  flex: none;
  margin-top: .1rem;
  accent-color: var(--forest);
}

/* Error */
.bk__error {
  margin: .85rem 0 0;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.5;
  color: #a8493c;
}
.bk__error[hidden] { display: none; }

/* Foot */
.bk__foot {
  flex: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem clamp(1.1rem, 4vw, 1.9rem) max(1.1rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.bk__foot[hidden] { display: none; }

/* While there is more of the review list below the fold, the footer casts a
   shadow, so it reads as content carrying on underneath rather than ending.
   Without it the consent box looked like it was not there at all. */
.bk__dialog.has-more .bk__foot {
  box-shadow: 0 -14px 20px -14px rgba(44, 59, 39, .3);
}

.bk__back {
  min-height: 50px;
  padding: .8rem 1.25rem;
  background: none;
  border: 1px solid var(--line-mid, var(--line-strong, #cec6b0));
  border-radius: var(--bk-btn-radius, 100px);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.bk__back:hover { border-color: var(--forest); color: var(--forest-dark); }
.bk__back[hidden] { display: none; }

.bk__next {
  flex: 1;
  min-height: 50px;
  padding: .8rem 1.5rem;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: var(--bk-btn-radius, 100px);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}
.bk__next:hover { background: var(--forest-dark); border-color: var(--forest-dark); }
.bk__next:disabled { opacity: .6; cursor: default; }

/* Finished / under age screens */
.bk__done { padding: .5rem 0 1rem; }
.bk__done p { font-size: .98rem; line-height: 1.65; color: var(--ink-soft); }
.bk__done .bk__next { width: 100%; margin-top: 1.5rem; flex: none; }
.bk__list { margin: 1rem 0 0; padding-left: 1.15rem; color: var(--ink-soft); font-size: .95rem; }
.bk__list li { margin-bottom: .55rem; }
.bk__check {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-pale, #dfe3d0);
  color: var(--forest);
  margin-bottom: 1.1rem;
}
.bk__check svg { width: 27px; height: 27px; }

/* Phones: a full screen sheet */
@media (max-width: 620px) {
  .bk { padding: 0; align-items: stretch; }
  .bk__dialog {
    width: 100%;
    max-height: none;
    height: 100%;
    height: 100dvh;
    border-radius: 0;
  }
  .bk__head { padding-top: calc(.9rem + env(safe-area-inset-top, 0px)); }
}

@media (prefers-reduced-motion: reduce) {
  .bk__backdrop, .bk__dialog { animation: none; }
  .bk__bar-fill { transition: none; }
}

/* Option A is the softer of the two designs */
.bk { --bk-radius: 18px; --bk-input-radius: 10px; --bk-btn-radius: 100px; }
