/* ============================================================
   Pooledale Farm Pet Sitting — site.css
   Phone-first. No inline styles/scripts anywhere (CSP: 'self').
   Palette (locked): sky #38BDF8 / #0EA5E0 · sun #FACC15
                     navy #1E3A5F · near-white #F6FBFE
   ============================================================ */

:root {
  --navy: #1E3A5F;
  --sky: #38BDF8;
  --sky-deep: #0EA5E0;
  --sun: #FACC15;
  --paper: #F6FBFE;

  /* tints & neutrals derived from the palette */
  --ink: #1E3A5F;
  --ink-soft: #3D5B76;
  --ink-mute: #54708A;
  --ink-faint: #8AA3B8;
  --line: #D4E4EF;
  --line-soft: #EAF1F7;
  --wash: #E3F4FD;
  --wash-soft: #F1F9FE;
  --sun-wash: #FFF9E3;
  --sun-line: #F1DE8E;
  --sun-ink: #6B6234;
  --danger: #B4533A;
  --danger-wash: #FBEEE9;

  --font-display: 'Bricolage Grotesque', 'Avenir Next', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 3px rgba(30, 58, 95, .08);
  --maxw: 680px;
}

* { box-sizing: border-box; }
/* The UA [hidden]{display:none} rule loses to any later class that sets
   its own `display` (flex/grid rows, the price bar, etc.) — restore it
   globally so `el.hidden = true` always actually hides the element. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }

a { color: var(--sky-deep); }
a:hover { color: var(--navy); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* ---------- a11y helpers ---------- */
.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;
}
.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font: 700 14px var(--font-body); z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: grid; grid-template-columns: auto auto; column-gap: 12px; row-gap: 3px; align-items: start; text-decoration: none; color: var(--ink); min-width: 0; }
.brand-mark { grid-column: 1; grid-row: 1 / span 2; align-self: start; width: 48px; height: 48px; }
.brand-name { grid-column: 2; grid-row: 1; font: 800 24px/1 var(--font-display); }
.brand-subrow { grid-column: 2; grid-row: 2; display: flex; align-items: center; gap: 9px; }
.brand-tag {
  font: 700 11px var(--font-body);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky-deep);
}
.brand-sig {
  font: 700 18px/1 'Caveat', 'Bricolage Grotesque', cursive;
  color: var(--sun);
  transform: rotate(-8deg); transform-origin: left center;
}
.header-spacer { flex: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 15px var(--font-body);
  border: 0; cursor: pointer; text-decoration: none;
  border-radius: 14px; padding: 14px 20px;
  min-height: 48px;
  transition: filter .12s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sky-deep); color: #fff; }
.btn-primary:hover { filter: brightness(1.06); color: #fff; }
.btn-ghost {
  background: #fff; color: var(--sky-deep);
  border: 1.5px solid #B7DCF2;
}
.btn-ghost:hover { border-color: var(--sky-deep); color: var(--sky-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { filter: brightness(1.12); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 15px; min-height: 40px; font-size: 13px; border-radius: 12px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
/* The contact button. Navy so it never competes with the sky-blue "Book dates"
   (booking stays the loudest ask on the page); the sun dot ties it to the
   "by Kamryn" signature. */
.btn-contact {
  background: var(--navy); color: var(--paper);
  border: 2px solid var(--paper); border-radius: 16px;
  box-shadow: 0 2px 0 rgba(30, 58, 95, .18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-contact::before {
  content: ""; flex: 0 0 9px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--sun);
  transition: transform .15s ease;
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 4px 0 rgba(30, 58, 95, .18); color: var(--paper); }
.btn-contact:hover::before { transform: scale(1.35); }
.btn-contact:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(30, 58, 95, .18); }
.btn-contact:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
/* Header contact link: transparent with blue text, quieter than "Book dates".
   Below 560px the label shortens to "Message" so the sticky header stays one
   line next to the brand block. */
.btn-header-contact {
  background: transparent; color: var(--sky-deep);
  border: 0; padding: 9px 10px; white-space: nowrap;
}
.btn-header-contact:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.btn-header-contact .hc-short { display: none; }
.site-header .btn-primary { white-space: nowrap; }
@media (max-width: 560px) {
  .btn-header-contact .hc-long { display: none; }
  .btn-header-contact .hc-short { display: inline; }
}

/* ---------- hero ---------- */
.hero { padding: 30px 0 0; }
.bubble {
  display: inline-block;
  font: 700 13px var(--font-display);
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--sky);
  border-radius: 999px; padding: 7px 14px;
  transform: rotate(-2.5deg);
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(33px, 8.5vw, 44px);
  font-weight: 800; letter-spacing: -.01em;
  margin: 14px 0 10px;
}
.hero .lede { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.hl {
  background: linear-gradient(transparent 55%, var(--sun) 55%);
  padding: 0 2px; font-weight: 700; color: var(--ink);
}
.cta-row { display: flex; gap: 10px; }
.cta-row .btn-primary { flex: 1; }
.micro { font: 600 12px var(--font-body); color: var(--ink-mute); text-align: center; margin-top: 10px; }
.flyer-cue { margin-top: 6px; color: var(--sun-ink); }
.flyer-cue::before { content: "✓ "; color: var(--sky-deep); font-weight: 800; }

/* ---------- trust chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 18px 0 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11.5px var(--font-body);
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 11px;
}
.chip .dot { width: 7px; height: 7px; border-radius: 99px; }
.dot-sun { background: var(--sun); }
.dot-sky { background: var(--sky); }
.dot-navy { background: var(--navy); }
.dot-deep { background: var(--sky-deep); }

/* ---------- photo placeholder (until real photos exist) ---------- */
.photo-slot {
  height: 190px; border-radius: var(--radius);
  border: 1px dashed #A9CCE2;
  background: repeating-linear-gradient(45deg, #EAF4FB 0 10px, #F6FBFE 10px 20px);
  display: flex; align-items: center; justify-content: center;
  margin-top: 18px;
}
.photo-slot span {
  font: 11px ui-monospace, Menlo, monospace;
  color: var(--ink-mute);
  background: rgba(255, 255, 255, .85);
  padding: 5px 9px; border-radius: 7px;
}
.photo-slot-sm { height: 150px; }
.photo-slot-lead { margin: 0 0 16px; }

/* ---------- boarding vs home comparison ---------- */
.compare { display: grid; gap: 10px; }
.compare-col { border-radius: var(--radius); padding: 14px 16px; }
.compare-col h3 { font: 700 15px var(--font-display); margin-bottom: 9px; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.compare-col li { font: 400 13px/1.55 var(--font-body); display: flex; gap: 9px; }
.compare-col.away { background: #fff; border: 1px solid var(--line); color: var(--ink-mute); }
.compare-col.away h3 { color: var(--ink-mute); }
.compare-col.away li::before { content: "·"; color: var(--ink-faint); font-weight: 800; }
.compare-col.home { background: var(--sun-wash); border: 1.5px solid var(--sun-line); color: var(--ink-soft); }
.compare-col.home li::before { content: "✓"; color: var(--sky-deep); font-weight: 800; }
@media (min-width: 560px) { .compare { grid-template-columns: 1fr 1fr; } }

/* ---------- sections ---------- */
.section { padding-top: 40px; }
.section > h2 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
/* subtle sun accent under plain section titles (skips the .overline labels) */
.section > h2:not(.overline) { position: relative; }
.section > h2:not(.overline)::after {
  content: ""; display: block;
  width: 32px; height: 3px; margin-top: 8px;
  border-radius: 999px; background: var(--sun);
}
.overline {
  font: 600 10.5px var(--font-body);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 12px;
}

/* ---------- cards & tiles ---------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow);
}
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.tile .tick {
  width: 26px; height: 26px; border-radius: 9px;
  background: var(--wash); color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center;
  font: 800 13px var(--font-body); margin-bottom: 8px;
}
.tile b { font: 700 13.5px/1.35 var(--font-body); }

/* ---------- rate sheet (1c dotted-leader treatment) ---------- */
.rate-rows { display: flex; flex-direction: column; gap: 10px; }
.rate-group { font: 700 13px var(--font-body); color: var(--ink); margin: 0; }
.rate-rows .rate-group:not(:first-child) { margin-top: 12px; }
.rate-row { display: flex; align-items: baseline; font: 400 14px var(--font-body); gap: 0; }
.rate-row .lbl { min-width: 0; }
.rate-row .lead {
  flex: 1; border-bottom: 1.5px dotted #9DB4C4;
  margin: 0 8px 4px; min-width: 24px;
}
.rate-row .amt {
  font: 700 15.5px var(--font-display);
  white-space: nowrap;
}
.rate-row.sub { color: var(--ink-mute); font-size: 13px; }
.rate-row.sub .lbl { padding-left: 14px; }
.rate-row.sub .amt { font-size: 14px; color: var(--ink-mute); }
.rate-note { margin-top: 14px; font: 400 12px/1.7 var(--font-body); color: var(--ink-mute); }

/* ---------- rate "day" cards (2b) ---------- */
.day-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow); margin-bottom: 10px;
}
.day-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.day-head h3 { font: 700 16px var(--font-display); }
.day-price { font: 800 18px var(--font-display); white-space: nowrap; }
.day-price small { font: 700 12px var(--font-body); color: var(--ink-mute); }
.day-inc { font: 700 11.5px var(--font-body); color: var(--sky-deep); margin: 2px 0 8px; }
.day-what { font: 400 12.5px/1.7 var(--font-body); color: var(--ink-soft); }
.day-adds {
  border-top: 1px solid var(--line-soft); margin-top: 10px; padding-top: 10px;
  font: 400 12.5px/1.8 var(--font-body); color: var(--ink-soft);
}
.day-adds b { color: var(--ink); font-weight: 700; }
.day-foot { font: 400 11.5px/1.6 var(--font-body); color: var(--ink-mute); margin-top: 8px; }

/* ---------- free / included ---------- */
.free-card { background: var(--wash-soft); border: 1px solid #CBE7F8; border-radius: var(--radius); padding: 16px 18px; }
.free-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.free-card li { font: 600 13.5px/1.5 var(--font-body); display: flex; gap: 9px; }
.free-card li::before { content: "✓"; color: var(--sky-deep); font-weight: 800; }

/* ---------- how it works steps ---------- */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 14px; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 26px; height: 26px; flex: none; border-radius: 999px;
  background: var(--sky-deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 800 12.5px var(--font-body);
}
.step:last-child .step-num { background: var(--sun); color: var(--ink); }
.step-rail .rail { width: 2px; flex: 1; background: #CCE4F3; }
.step-body { padding: 2px 0 18px; font: 400 13.5px/1.55 var(--font-body); color: var(--ink-soft); }
.step:last-child .step-body { padding-bottom: 0; }
.step-body b { color: var(--ink); }

/* ---------- fine print / notices ---------- */
.fine { font: 400 13px/1.7 var(--font-body); color: var(--ink-soft); }
.fine b { color: var(--ink); }
.sun-note {
  background: var(--sun-wash); border: 1px solid var(--sun-line);
  border-radius: var(--radius); padding: 14px 16px;
}
.sun-note b { font: 700 13px var(--font-body); display: block; margin-bottom: 4px; color: var(--ink); }
.sun-note p { font: 400 12px/1.6 var(--font-body); color: var(--sun-ink); }

.notice {
  border-radius: var(--radius-sm); padding: 11px 14px;
  font: 600 12.5px/1.5 var(--font-body);
  background: var(--wash); color: var(--ink-soft);
}
.notice-warn { background: var(--sun-wash); color: var(--sun-ink); border: 1px solid var(--sun-line); }
.notice-error { background: var(--danger-wash); color: var(--danger); }

/* ---------- footer ---------- */
/* A navy sign-off slab: paw prints wander in from the left toward the logo,
   with Kamryn's signature underneath. No text, no links — the "Questions
   first?" card above the fine print carries the contact ask, and the header
   holds the everyday link, so the footer doesn't repeat the same button. */
.site-footer {
  background: var(--navy);
  border-radius: 28px 28px 0 0; /* echoes the rounded-square logo tile */
  margin-top: 56px;
  padding: 40px 24px 44px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-walk { display: flex; align-items: center; justify-content: center; gap: 16px; }
.paw {
  position: relative; width: 13px; height: 11px;
  background: var(--sun);
  border-radius: 50% 50% 60% 60% / 55% 55% 70% 70%;
}
.paw::before {
  content: ""; position: absolute; top: -5px; left: -1.5px;
  width: 4.5px; height: 4.5px; border-radius: 50%;
  background: var(--sun);
  box-shadow: 5.2px -2px 0 var(--sun), 10.4px 0 0 var(--sun);
}
.footer-walk .paw:nth-child(1) { transform: rotate(-14deg) translateY(5px) scale(.78); opacity: .38; }
.footer-walk .paw:nth-child(2) { transform: rotate(11deg) translateY(-4px) scale(.9); opacity: .58; }
.footer-walk .paw:nth-child(3) { transform: rotate(-7deg) translateY(3px); opacity: .8; }
.footer-home {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin-left: 6px;
}
.footer-home .brand-mark { width: 44px; height: 44px; }
.footer-sig {
  margin: 10px 0 0;
  font: 700 26px/1 'Caveat', cursive;
  color: var(--sun);
  transform: rotate(-3deg);
}
.contact-cta p {
  font: 400 14.5px/1.75 var(--font-body);
  color: var(--ink-mute);
  margin: 0 0 16px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */

.book-header .wrap { padding-top: 12px; padding-bottom: 12px; }
.back-link {
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); text-decoration: none;
  font: 700 17px var(--font-body); background: #fff;
}
.book-title { flex: 1; min-width: 0; }
.book-title b { display: block; font: 700 16px var(--font-display); }
.book-title span { font: 600 11px var(--font-body); color: var(--ink-mute); }
.time-pill {
  font: 700 11px var(--font-body); color: var(--sky-deep);
  background: var(--wash); border-radius: 999px; padding: 5px 10px;
  white-space: nowrap;
}

.book-main { padding-bottom: 130px; /* room for sticky bar */ }

/* wizard progress + steps */
.wiz-progress { display: flex; gap: 5px; margin: 14px 0 8px; }
.wiz-progress span { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: background .2s ease; }
.wiz-progress span.done { background: var(--sky); }
.wiz-progress span.active { background: var(--sky-deep); }
.wiz-stepline { font: 600 12px var(--font-body); color: var(--ink-mute); margin-bottom: 4px; }
.wiz-stepline b { font: 800 12px var(--font-body); color: var(--sky-deep); }
.wiz-fineprint { margin-top: 12px; }

.fieldcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
  margin-top: 14px; box-shadow: var(--shadow);
}
fieldset.fieldcard { margin-inline: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-inline-size: 0; }
legend, .fieldcard-title { font: 700 15px var(--font-display); padding: 0; margin-bottom: 4px; }
/* keep legends in normal flow instead of the fieldset border notch */
fieldset.fieldcard legend { float: left; width: 100%; margin-bottom: 4px; }
fieldset.fieldcard legend + * { clear: both; }
.fieldcard-sub { font: 600 11.5px var(--font-body); color: var(--ink-mute); margin-bottom: 10px; }
.crew-photo { display: block; width: 100%; height: auto; border-radius: 12px; margin: 2px 0 12px; }

/* pet stepper rows */
.pet-rows { display: flex; flex-direction: column; }
.pet-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft);
}
.pet-rows .pet-row:last-child { border-bottom: 0; }
.pet-row .pet-name { flex: 1; font: 700 14px var(--font-body); min-width: 0; }
.pet-row .pet-name small { display: block; font: 600 11px var(--font-body); color: var(--ink-mute); }
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper output { font: 800 16px var(--font-body); width: 22px; text-align: center; }
.step-btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font: 700 20px var(--font-body); cursor: pointer;
  border: 1.5px solid #B7DCF2; background: #fff; color: var(--sky-deep);
}
.step-btn.plus { background: var(--sky-deep); border-color: var(--sky-deep); color: #fff; }
.step-btn[disabled] { opacity: .35; cursor: not-allowed; }

/* care checklists */
.care-block { border: 1px solid var(--line-soft); border-radius: 14px; padding: 11px 12px; margin-top: 8px; }
.care-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.care-block-head b { font: 800 13px var(--font-body); }
.care-block-head small { font: 600 11px var(--font-body); color: var(--ink-mute); }
.pill-checks { display: flex; gap: 6px; flex-wrap: wrap; }
.pill-check { position: relative; }
.pill-check input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.pill-check span {
  display: inline-flex; align-items: center; min-height: 40px;
  font: 700 12px var(--font-body); color: var(--ink-mute);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 6px 13px;
  background: #fff; transition: all .12s ease;
}
.pill-check input:checked + span { background: var(--sky-deep); border-color: var(--sky-deep); color: #fff; }
.pill-check input:focus-visible + span { outline: 3px solid var(--sky-deep); outline-offset: 2px; }
.pill-check input:checked + span::before { content: "✓ "; white-space: pre; }

/* text inputs */
.field { margin-top: 10px; }
.field label { display: block; font: 700 12px var(--font-body); color: var(--ink-soft); margin-bottom: 5px; }
.input, textarea.input {
  width: 100%; font: 600 16px var(--font-body); color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px; min-height: 48px;
}
textarea.input { resize: vertical; line-height: 1.5; }
.input::placeholder { color: var(--ink-faint); font-weight: 400; }
.input:focus { border-color: var(--sky-deep); outline: 2px solid var(--sky-deep); outline-offset: 0; }
.input[aria-invalid="true"] { border-color: var(--danger); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 420px) { .grid-2 { grid-template-columns: 1fr; } }

/* calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.cal-title { font: 700 14.5px var(--font-display); }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 40px; height: 40px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--line); background: #fff;
  font: 700 15px var(--font-body); color: var(--ink);
}
.cal-nav button[disabled] { opacity: .35; cursor: not-allowed; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { font: 700 10px var(--font-body); color: var(--ink-faint); text-align: center; margin-bottom: 4px; }
.cal-grid button {
  height: 42px; border: 0; background: transparent; border-radius: 10px;
  font: 600 13px var(--font-body); color: var(--ink); cursor: pointer;
  position: relative;
}
.cal-grid button:hover:not([disabled]) { background: var(--wash); }
.cal-grid button[disabled] { color: #C3D4E1; cursor: default; }
.cal-grid button.busy { color: #AEC4D5; text-decoration: line-through; }
.cal-grid button.sel { background: var(--sky-deep); color: #fff; font-weight: 700; }
.cal-grid button.holiday::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 5px; height: 5px; border-radius: 99px; background: var(--sun);
  transform: translateX(-50%);
}
/* Scarcity nudge: a subtle amber ring + corner count on days with 1 slot left. */
.cal-grid button.low { box-shadow: inset 0 0 0 1.5px var(--sun-line); }
.cal-grid button .day-badge {
  position: absolute; top: 3px; right: 3px;
  min-width: 13px; height: 13px; padding: 0 3px; box-sizing: border-box;
  border-radius: 99px; background: var(--sun); color: var(--sun-ink);
  font: 800 9px/13px var(--font-body); text-align: center;
}
.cal-grid button.sel .day-badge { background: #fff; color: var(--sky-deep); }
.cal-legend { display: flex; gap: 12px; margin-top: 10px; font: 600 10.5px var(--font-body); color: var(--ink-mute); flex-wrap: wrap; }
.cal-legend i { width: 10px; height: 10px; border-radius: 4px; display: inline-block; font-style: normal; vertical-align: -1px; margin-right: 5px; }
.cal-legend .i-sel { background: var(--sky-deep); }
.cal-legend .i-hol { background: var(--sun); }
.cal-legend .i-low { background: var(--sun); box-shadow: inset 0 0 0 1.5px var(--sun-line); }
.cal-legend .i-busy { background: #DFE9F1; }
.date-readout { margin-top: 10px; font: 700 13px var(--font-body); color: var(--sky-deep); min-height: 20px; }
.date-readout.is-error { color: var(--danger); }

/* segmented control */
.seg { display: flex; background: #EAF2F8; border-radius: 13px; padding: 3px; gap: 3px; }
.seg label { flex: 1; position: relative; }
.seg input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.seg span {
  display: flex; align-items: center; justify-content: center;
  min-height: 42px; border-radius: 10px;
  font: 700 14px var(--font-body); color: var(--ink-mute);
}
.seg input:checked + span { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(30,58,95,.15); }
.seg input:focus-visible + span { outline: 3px solid var(--sky-deep); outline-offset: 2px; }
.seg input:disabled + span { opacity: .35; }
.seg-note { font: 600 11px var(--font-body); color: var(--ink-mute); margin-top: 7px; }
.seg-note.is-review {
  color: var(--sun-ink); background: var(--sun-wash);
  border: 1px solid var(--sun-line); border-radius: var(--radius-sm);
  padding: 8px 10px;
}
/* date-mode chooser (a stretch of days vs. specific days) */
.seg-datemode { margin-bottom: 2px; }
.seg-datemode span { font-size: 13px; }

/* toggle switch */
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.toggle-row:last-child { border-bottom: 0; }
.toggle-row .t-label { font: 700 13px/1.4 var(--font-body); min-width: 0; }
.toggle-row .t-label small { display: block; font: 600 11px var(--font-body); color: var(--ink-mute); }
.switch { position: relative; width: 46px; height: 27px; flex: none; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.switch i {
  position: absolute; inset: 0; border-radius: 999px; background: #CBD9E4;
  transition: background .15s ease;
  pointer-events: none; /* let clicks pass through the decorative knob to the input beneath */
}
.switch i::after {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: 21px; height: 21px; border-radius: 999px; background: #fff;
  transition: transform .15s ease;
}
.switch input:checked + i { background: var(--sky-deep); }
.switch input:checked + i::after { transform: translateX(19px); }
.switch input:focus-visible + i { outline: 3px solid var(--sky-deep); outline-offset: 2px; }
.switch-labeled { display: flex; align-items: center; gap: 8px; flex: none; }
.switch-labeled .switch-word { font: 700 11.5px var(--font-body); color: var(--ink-mute); }

/* inline mini-stepper (plants, extended walks) */
.mini-step { display: flex; align-items: center; gap: 8px; }
.mini-step output { font: 800 14px var(--font-body); min-width: 20px; text-align: center; }
.mini-step .step-btn { width: 40px; height: 40px; font-size: 17px; }

/* ---------- review / summary ---------- */
.summary-rows { display: flex; flex-direction: column; gap: 7px; font: 400 13px var(--font-body); color: var(--ink-soft); }
.summary-rows:not(:empty) { margin-top: 12px; }
.summary-rows .srow { display: flex; align-items: baseline; }
.summary-rows .srow .lead { flex: 1; border-bottom: 1px dotted #C9DAE6; margin: 0 7px 3px; min-width: 16px; }
.summary-rows .srow .amt { font-weight: 700; color: var(--ink); white-space: nowrap; }
.summary-rows .srow.total { border-top: 1.5px solid var(--navy); padding-top: 9px; margin-top: 5px; }
.summary-rows .srow.total .lbl, .summary-rows .srow.total .amt { font: 700 16px var(--font-display); color: var(--ink); }
.summary-plain { font: 400 13px/1.75 var(--font-body); color: var(--ink-soft); }
.summary-plain b { color: var(--ink); font-weight: 700; }

/* ---------- sticky price bar ---------- */
.price-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  padding: 10px 0 max(12px, env(safe-area-inset-bottom));
}
.price-bar .wrap { display: flex; align-items: center; gap: 12px; }
.price-bar .totals { flex: 1; min-width: 0; }
.price-bar .total-line { font: 800 20px var(--font-display); }
.price-bar .total-line small { font: 600 12px var(--font-body); color: var(--ink-mute); }
.price-bar .deposit-line { font: 600 11.5px var(--font-body); color: var(--ink-mute); }
.price-bar .deposit-line b { color: var(--ink); }

/* ---------- confirmation / status views ---------- */
.status-view { padding-top: 26px; }
.status-view .big-mark { width: 64px; height: 64px; margin-bottom: 16px; }
.status-view h1 { font-size: 27px; font-weight: 800; margin-bottom: 10px; }
.status-view .fine { margin-top: 12px; }
/* ---------- honeypot: visually removed, present for bots ---------- */
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- wider screens: keep the friendly column, add air ---------- */
@media (min-width: 720px) {
  .hero { padding-top: 46px; }
  .section { padding-top: 52px; }
  .tiles { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .photo-slot { height: 240px; }
  .photo-slot-sm { height: 170px; }
}
