/* ------------------------------------------------------------------
   Winterton Hound Ground — styles.css
   ------------------------------------------------------------------ */

/* --- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
}
input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* --- Design tokens ------------------------------------------------ */
:root {
  /* Palette (solid colours only — no gradients) */
  --cream:       #faf2dc;
  --cream-warm:  #f5e9c8;
  --coral:       #e07a52;
  --coral-dark:  #b85a35;
  --field:       #2d5a3f;
  --sage:        #a8bd92;
  --choco:       #2a1a0e;
  --choco-2:     #5a3a1f;
  --sand:        #c9a96a;
  --ball:        #d8e34a;
  --white:       #ffffff;

  /* Type stacks */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat', 'Comic Sans MS', cursive;

  /* Type sizes (mobile-first) */
  --fs-body:    16px;
  --fs-body-lg: 17px;     /* desktop body */
  --fs-small:   13px;
  --fs-h1:      44px;     /* hero on mobile */
  --fs-h2:      32px;
  --fs-h3:      22px;
  --fs-h4:      18px;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  72px;
  --sp-9:  96px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-pill: 999px;

  /* Shadows (solid offsets + soft drops) */
  --shadow-button: 0 4px 0 var(--coral-dark);
  --shadow-card:   0 6px 0 var(--choco), 0 28px 60px rgba(74, 46, 21, 0.18);
  --shadow-photo:  0 16px 36px rgba(74, 46, 21, 0.16), 0 4px 0 rgba(74, 46, 21, 0.08);
  --shadow-stamp:  0 4px 0 rgba(0, 0, 0, 0.08);

  /* Section sizing */
  --container-max: 1180px;
  --container-pad: var(--sp-5);

  /* Misc */
  --hairline: 1px solid var(--cream-warm);
}

/* Bump sizes at tablet+ */
@media (min-width: 768px) {
  :root {
    --fs-body:    17px;
    --fs-h1:      64px;
    --fs-h2:      40px;
    --fs-h3:      26px;
    --container-pad: var(--sp-6);
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-h1: 72px;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--choco);
  background: var(--cream);
}

/* --- Typography --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--choco);
}
h1 { font-size: var(--fs-h1); line-height: 0.95; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { font-size: var(--fs-body); line-height: 1.55; color: var(--choco-2); }
p strong { color: var(--choco); font-weight: 700; }

.aside-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--field);
}
@media (min-width: 768px) {
  .aside-hand { font-size: 22px; }
}

/* --- Squiggle underline wrapper ----------------------------------- */
.squiggle-word {
  display: inline-block;
  position: relative;
  color: inherit;
}
.squiggle-word svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.18em;
  color: var(--coral);
}

/* --- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: transform 0.08s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(2px); }
.btn:focus-visible {
  outline: 3px solid var(--field);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-secondary {
  background: transparent;
  color: var(--choco);
  padding: 12px 22px;
  border: 2px solid var(--choco);
  font-size: 14px;
}
.btn-secondary:hover { background: var(--choco); color: var(--cream); }

.btn-block { width: 100%; justify-content: center; }

/* --- Stamp badge (Caveat pill, rotated -7deg) --------------------- */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  background: var(--field);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transform: rotate(-7deg);
  box-shadow: var(--shadow-stamp);
}
.stamp svg { color: var(--cream); }

/* --- Skip link ---------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--sp-2);
  top: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--choco);
  color: var(--cream);
  border-radius: var(--r-sm);
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform 0.15s ease;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

/* --- Top nav ------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--hairline);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-3) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--choco);
}
@media (min-width: 768px) {
  .nav__brand-text { font-size: 18px; }
}

.nav__links {
  display: none;
}
.nav__links a {
  color: var(--choco-2);
  font-weight: 500;
  font-size: 14px;
}
.nav__links a:hover { color: var(--choco); }

@media (min-width: 900px) {
  .nav__links {
    display: flex;
    gap: var(--sp-6);
    align-items: center;
  }
}

.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav__book {
  padding: 10px 18px;
  font-size: 13.5px;
}

.nav__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  color: var(--choco);
}
.nav__hamburger:hover { background: var(--cream-warm); }
@media (min-width: 900px) {
  .nav__hamburger { display: none; }
}

.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  padding: var(--sp-5);
  z-index: 100;
}
.nav__drawer[hidden] { display: none; }
.nav__drawer nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.nav__drawer nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--choco);
}
.nav__drawer nav a.btn { font-family: var(--font-body); font-size: 16px; margin-top: var(--sp-4); }
.nav__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--choco);
}
.nav__close:hover { background: var(--cream-warm); }

/* --- Hero --------------------------------------------------------- */
.hero { background: var(--cream); position: relative; }
.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-7) var(--container-pad) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  position: relative;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-8);
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-9);
    align-items: center;
  }
}

.hero__copy { position: relative; z-index: 2; }
.hero__title { margin: 8px 0 18px; }
.hero__lede {
  max-width: 480px;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  margin-top: var(--sp-6);
  font-size: 13px;
  color: var(--choco-2);
  flex-wrap: wrap;
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust-dot { opacity: 0.4; }

.hero__photos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hero__photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.hero__stamp {
  position: absolute;
  top: -16px;
  right: -12px;
  z-index: 3;
  font-size: 15px;
  padding: 8px 14px;
}

.photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sage);
  box-shadow: var(--shadow-photo);
  margin: 0;
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card--wide  { aspect-ratio: 16 / 9; }
.photo-card--square { aspect-ratio: 1 / 1; }

.photo-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--cream);
  color: var(--choco);
  padding: 5px 11px;
  border-radius: var(--r-sm);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.hero__paw {
  position: absolute;
  color: var(--sand);
  pointer-events: none;
}
.hero__paw--1 { top: 12%; left: 43%; opacity: 0.35; transform: rotate(-15deg); }
.hero__paw--2 { bottom: 10%; left: 5%; opacity: 0.30; transform: rotate(25deg); }
.hero__paw--3 { top: 52%; left: 36%; opacity: 0.28; transform: rotate(-40deg); }

/* --- Reassurance bar ---------------------------------------------- */
.reassure {
  background: var(--white);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.reassure__list {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-5) var(--container-pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .reassure__list {
    grid-template-columns: repeat(5, 1fr);
    padding-top: var(--sp-6);
    padding-bottom: var(--sp-6);
  }
}
.reassure__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--choco);
}

/* --- Booking section ---------------------------------------------- */
.book {
  background: var(--cream);
  padding: var(--sp-7) 0 var(--sp-8);
  position: relative;
}
.book__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.book__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sp-6);
}
.book__title { margin-top: var(--sp-1); }
.book__sub { margin-top: var(--sp-3); }

.book__card {
  background: var(--white);
  border: 3px solid var(--choco);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-6);
}
@media (min-width: 1024px) {
  .book__card {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: var(--sp-7);
    padding: var(--sp-6);
  }
}

.book__monthnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}
.book__month {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin: 0;
}
.book__monthbtns { display: flex; gap: var(--sp-2); }
.book__navbtn {
  background: var(--coral);
  border: 0;
  border-radius: var(--r-sm);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 3px 0 var(--coral-dark);
}
.book__navbtn:hover { background: var(--coral-dark); }
.book__navbtn:focus-visible { outline: 2px solid var(--field); outline-offset: 2px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-head-row { margin-bottom: var(--sp-1); }
.cal-head {
  font-size: 11px;
  font-weight: 700;
  color: #8a6f4a;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
}

.cal-day {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--choco);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not(:disabled) { background: var(--cream-warm); }
.cal-day:focus-visible { outline: 2px solid var(--field); outline-offset: 2px; }
.cal-day--muted { color: var(--sand); background: transparent; cursor: default; }
.cal-day--today { border-color: var(--field); }
.cal-day--selected {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 3px 0 var(--coral-dark);
}
.cal-day--full {
  color: var(--sand);
  background: var(--cream-warm);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-key {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-3);
  font-size: 11px;
  color: var(--choco-2);
  flex-wrap: wrap;
}
.cal-key-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}
.cal-key-dot--today    { border: 1.5px solid var(--field); }
.cal-key-dot--selected { background: var(--coral); }
.cal-key-dot--full     { background: var(--cream-warm); }

.book__divider {
  border: 0;
  border-top: 1.5px solid var(--cream-warm);
  margin: var(--sp-5) 0;
}

.book__slots-title {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 17px;
  margin-bottom: var(--sp-3);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
@media (min-width: 768px) {
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Time-of-day tabs (mobile only) -------------------------------- */
.slot-tabs {
  display: none; /* shown on mobile via media query */
}
@media (max-width: 767.98px) {
  .slot-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
  }
  .slot-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px var(--sp-2);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.1;
  }
  .slot-tab__icon { margin-bottom: 2px; }
  .slot-tab__label { font-weight: 700; font-size: 13px; }
  .slot-tab__range {
    font-family: var(--font-hand);
    font-weight: 700;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    margin-top: 1px;
  }

  /* Distinct inactive treatments so the two tabs read as DIFFERENT
     places, not "selected vs unselected" of the same thing. */
  .slot-tab--morning {
    background: #fff3d8;        /* warm cream-yellow for daytime */
    color: var(--choco);
    border-color: #e8c97a;
  }
  .slot-tab--morning .slot-tab__icon { color: #d39a1f; }
  .slot-tab--morning .slot-tab__range { color: #8a6f24; }

  .slot-tab--afternoon {
    background: #e0d8e8;        /* dusk lavender for after-noon */
    color: var(--choco);
    border-color: #b5a6c8;
  }
  .slot-tab--afternoon .slot-tab__icon { color: #5e3a8c; }
  .slot-tab--afternoon .slot-tab__range { color: #5e3a8c; }

  /* Active state: each tab gets its own filled colour, so the
     "you are here" feel is even stronger. */
  .slot-tab--morning[aria-selected="true"] {
    background: #d39a1f;
    color: #fff;
    border-color: #a37614;
    box-shadow: 0 3px 0 #a37614;
  }
  .slot-tab--morning[aria-selected="true"] .slot-tab__icon,
  .slot-tab--morning[aria-selected="true"] .slot-tab__range { color: #fff3d8; }

  .slot-tab--afternoon[aria-selected="true"] {
    background: #5e3a8c;
    color: #fff;
    border-color: #432966;
    box-shadow: 0 3px 0 #432966;
  }
  .slot-tab--afternoon[aria-selected="true"] .slot-tab__icon,
  .slot-tab--afternoon[aria-selected="true"] .slot-tab__range { color: #e0d8e8; }

  .slot-tab:focus-visible { outline: 2px solid var(--field); outline-offset: 2px; }

  /* Hide slots not in the active time-of-day on mobile. */
  .slot-grid--morning   .slot[data-period]:not([data-period="morning"]),
  .slot-grid--afternoon .slot[data-period]:not([data-period="afternoon"]) {
    display: none;
  }
}
.slot {
  background: var(--cream);
  border: 1.5px solid var(--cream-warm);
  border-radius: var(--r-pill);
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--choco);
  text-align: center;
  font-family: var(--font-body);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.slot:hover:not(:disabled) { background: var(--cream-warm); }
.slot:focus-visible { outline: 2px solid var(--field); outline-offset: 2px; }
.slot--selected {
  background: var(--coral);
  border-color: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 3px 0 var(--coral-dark);
}
/* Slot is reserved (by anyone) — faded, struck-through, NOT clickable.
   pointer-events: none is the belt; the button[disabled] attribute is
   the braces; the server-side conflict check is the parachute. */
.slot--gone {
  color: var(--sand);
  background: transparent;
  border-color: var(--cream-warm);
  border-style: dashed;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/* The user's own held slots render with the same .slot--gone treatment
   as slots reserved by others — the cross-out + fade reads as "not
   available" without needing a third colour. Differentiation lives in
   the aria-label for screen readers. */
.slot-helper { margin-top: var(--sp-3); font-size: 12px; color: var(--choco-2); }

.book__summary {
  border-top: 2px dashed var(--cream-warm);
  padding-top: var(--sp-5);
}
@media (min-width: 1024px) {
  .book__summary {
    border-top: 0;
    border-left: 2px dashed var(--cream-warm);
    padding-top: 0;
    padding-left: var(--sp-6);
    /* Stay in view while the user scrolls through 28 slots.
       Top offset = sticky nav height (~64px) + breathing room. */
    position: sticky;
    top: 88px;
    align-self: start;
  }
}
.book__date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--choco);
  line-height: 1.05;
  margin-top: var(--sp-1);
  margin-bottom: var(--sp-2);
}

.book__times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--sp-1);
}
.book__times--empty {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--choco-2);
  display: block;
}
.book__times-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-3);
  border-left: 3px solid var(--coral);
  padding-left: var(--sp-3);
}
.book__times-range {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--choco);
  line-height: 1.1;
}
.book__times-mins {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--choco-2);
  white-space: nowrap;
}
.book__total {
  font-size: 12.5px;
  color: var(--field);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  min-height: 1em;
}
.book__pay:disabled {
  background: var(--cream-warm);
  color: var(--choco-2);
  box-shadow: none;
  cursor: not-allowed;
}

.dog-count {
  margin-bottom: var(--sp-4);
}
.dog-count__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--choco);
  margin-bottom: 6px;
}
.dog-count__pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.dog-pill {
  background: var(--cream);
  border: 1.5px solid var(--cream-warm);
  border-radius: var(--r-md);
  padding: 9px 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--choco);
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  min-height: 40px;
}
.dog-pill:hover { background: var(--cream-warm); }
.dog-pill:focus-visible { outline: 2px solid var(--field); outline-offset: 2px; }
.dog-pill[aria-pressed="true"] {
  background: var(--coral);
  border-color: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 3px 0 var(--coral-dark);
}
.dog-count__hint {
  font-size: 11px;
  color: var(--choco-2);
  line-height: 1.4;
}
.dog-count__hint strong { color: var(--choco); font-weight: 700; }

.book__price {
  background: var(--cream);
  border: 1.5px solid var(--cream-warm);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: var(--sp-5);
}
.book__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.book__price-row span { font-size: 13px; color: var(--choco-2); }
.book__price-row strong { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--choco); }
.book__price-amount { color: var(--coral); }
.book__price-helper { font-size: 11.5px; color: #8a6f4a; font-style: italic; margin-top: 6px; }

.book__pay { padding: 16px 26px; font-size: 16px; }

.book__warning {
  background: var(--white);
  border: 1.5px dashed var(--sand);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-top: var(--sp-4);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.book__warning p { font-size: 11.5px; color: var(--choco-2); line-height: 1.4; }

.book__pay-methods {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  margin-top: var(--sp-4);
  font-size: 10.5px;
  color: #8a6f4a;
  flex-wrap: wrap;
}
.paymethod {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  padding: 3px 7px;
  border-radius: var(--r-sm);
  font-weight: 700;
  color: var(--choco);
  font-size: 10.5px;
}
.reassure__item svg { color: var(--field); }

/* --- Booking widget: mobile layout -------------------------------- */
@media (max-width: 767.98px) {
  .book__card { padding: var(--sp-4); }

  /* Mobile calendar stays as a 7-column grid so the Mon-Sun headers
     line up with the day cells. The horizontal-swipe pill row was less
     intuitive — users expected a normal calendar. */
  .cal-head {
    font-size: 10px;
    padding: 4px 0;
  }
  .cal-day {
    font-size: 14px;
    border-radius: var(--r-sm);
  }
  .cal-grid { gap: 4px; }

  /* Month nav buttons: bigger, coral, with labels so they read as
     primary actions instead of tiny decoration. */
  .book__monthnav {
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
  }
  .book__month { flex: 1 1 100%; justify-content: center; font-size: 22px; }
  .book__monthbtns {
    flex: 1 1 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }
  .book__navbtn {
    width: auto;
    height: 44px;
    padding: 0 var(--sp-3);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    gap: var(--sp-2);
  }
  .book__navbtn-text { display: inline; }
}

/* The "Prev month / Next month" text only appears on mobile; on desktop
   the buttons are compact 32×32 chevron pills. */
.book__navbtn-text { display: none; }

/* --- How it works ------------------------------------------------- */
.how { background: var(--cream); padding: var(--sp-7) 0; }
.how__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.how__title { text-align: center; margin-bottom: var(--sp-6); }

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px)  { .how__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how__steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--cream-warm);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  text-align: center;
}
.step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--choco);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.step__icon { color: var(--coral); margin: 0 auto var(--sp-2); }
.step__heading { font-size: 18px; margin-bottom: 4px; }
.step__text { font-size: 13px; color: var(--choco-2); }

/* --- "What you'll find" section ----------------------------------- */
.find-section { background: var(--white); padding: var(--sp-7) 0; }
.find-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.find-section__title { text-align: center; margin-bottom: var(--sp-6); }

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(4, 1fr); } }

.tile {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  font-weight: 700;
  color: var(--choco);
  font-size: 13px;
}
.tile__icon { color: var(--field); margin: 0 auto var(--sp-2); }

.find-section__band {
  background: var(--field);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  font-size: 14px;
}
.find-section__band strong { color: var(--cream); font-weight: 800; }

/* --- "Also at the Hound Ground" ----------------------------------- */
.also { background: var(--white); padding: var(--sp-7) 0; }
.also__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.also__title { text-align: center; margin-bottom: var(--sp-5); }

.also__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) { .also__cards { grid-template-columns: repeat(3, 1fr); } }

.also-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
}
.also-card__icon { color: var(--coral); margin: 0 auto var(--sp-3); }
.also-card h3 { font-size: 18px; margin-bottom: 4px; }
.also-card p { font-size: 13.5px; color: var(--choco-2); }

/* --- "From the field" gallery + review ---------------------------- */
.field-gallery { background: var(--cream); padding: var(--sp-7) 0; }
.field-gallery__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.field-gallery__title { text-align: center; margin-bottom: var(--sp-6); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .gallery__big {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

.photo-card--tall { aspect-ratio: 1 / 1; }
@media (min-width: 768px) { .photo-card--tall { aspect-ratio: auto; height: 100%; } }

.pullquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--cream-warm);
}
.pullquote__stars { display: inline-flex; gap: 4px; color: var(--coral); margin-bottom: var(--sp-3); }
.pullquote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--choco);
  margin-bottom: var(--sp-3);
}
@media (min-width: 768px) { .pullquote p { font-size: 26px; } }
.pullquote footer { font-size: 13px; color: var(--choco-2); }
.pullquote cite { font-style: italic; }

/* --- FAQs --------------------------------------------------------- */
.faqs { background: var(--white); padding: var(--sp-7) 0; }
.faqs__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.faqs__title { text-align: center; margin-bottom: var(--sp-5); }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.faq {
  background: var(--cream);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--choco);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--field); outline-offset: -2px; }

.faq__plus, .faq__minus { color: var(--coral); flex-shrink: 0; }
.faq__minus { display: none; }
.faq[open] .faq__plus  { display: none; }
.faq[open] .faq__minus { display: block; }

.faq__body {
  padding: 0 var(--sp-4) var(--sp-4);
}
.faq__body p {
  font-size: 15px;
  color: var(--choco-2);
}

/* --- "Find us" ---------------------------------------------------- */
.find { background: var(--cream); padding: var(--sp-7) 0; }
.find__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.find__title { text-align: center; margin-bottom: var(--sp-6); }

.find__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px) {
  .find__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--sp-6);
    align-items: stretch;
  }
}

.find__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 240px;
  background: #cdd8a7;
  box-shadow: var(--shadow-photo);
}
@media (min-width: 768px) { .find__map { height: auto; min-height: 280px; } }

.find__info {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
}
.find__info dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--choco);
  margin-bottom: 4px;
}
.find__info dd { font-size: 14px; color: var(--choco-2); margin: 0; }

/* --- Footer ------------------------------------------------------- */
.footer {
  background: var(--choco);
  color: var(--cream);
  padding: var(--sp-7) 0 var(--sp-5);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 2fr; }
}

.footer__brand { display: flex; gap: var(--sp-3); align-items: center; }
.footer__name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--cream); }
.footer__tag  { font-size: 13px; opacity: 0.8; color: var(--cream); }

.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 540px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }

.footer__cols h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}
.footer__cols ul { display: flex; flex-direction: column; gap: 6px; }
.footer__cols li { font-size: 14px; color: var(--cream); opacity: 0.85; }
.footer__cols a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer__cols a:hover { opacity: 1; }

.footer__legal {
  max-width: var(--container-max);
  margin: var(--sp-6) auto 0;
  padding: 0 var(--container-pad);
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}

/* --- Reduced motion ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Final focus polish ------------------------------------------- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--field);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Pending lock panel ----------------------------------------- */
.pending-panel {
  background: var(--cream);
  border: 2px solid var(--coral);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 4px 0 var(--coral-dark);
}
/* The display:flex above wins over the user-agent display:none that
   the [hidden] attribute applies, so be explicit. */
.pending-panel[hidden] { display: none; }
.pending-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--choco);
  margin: 0;
}
.pending-panel__sub {
  font-size: 13.5px;
  color: var(--choco-2);
  margin: 0;
}
.pending-panel__countdown {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 28px;
  color: var(--coral-dark);
  text-align: center;
  margin: 0;
  padding: var(--sp-2) 0;
  letter-spacing: 0.02em;
}
.pending-panel__cancel {
  font-size: 13px;
}

/* --- SSE status indicator --------------------------------------- */
.sse-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--choco-2);
  margin-top: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sse-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  display: inline-block;
}
.sse-status--live .sse-status__dot { background: #4caf50; }
.sse-status--connecting .sse-status__dot {
  background: var(--sand);
  animation: ssePulse 1s infinite alternate;
}
.sse-status--lost .sse-status__dot { background: #c8553d; }
@keyframes ssePulse { from { opacity: 0.4; } to { opacity: 1; } }

/* --- Toast notifications --------------------------------------- */
.toast-stack {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  z-index: 9999;
  pointer-events: none;
  max-width: 92vw;
}
@media (max-width: 640px) {
  .toast-stack {
    bottom: auto;
    top: var(--sp-3);
    right: var(--sp-3);
    left: var(--sp-3);
  }
}
.toast {
  background: var(--choco);
  color: var(--cream);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 360px;
}
.toast--in { opacity: 1; transform: translateY(0); }
.toast--success { background: var(--field); }
.toast--error   { background: #b3382a; }
.toast--info    { background: var(--choco); }
