/* ============================================================
   TOUR BOOKER (book.html) — loads after home.css (reuses tokens)
   ============================================================ */
.book-wrap{max-width:820px;margin:0 auto}
.booker{background:var(--card);border:1px solid var(--line);border-radius:26px;box-shadow:var(--shadow-lg);padding:34px 34px 30px}

/* step indicator */
.steps{display:flex;align-items:center;gap:10px;margin-bottom:26px}
.step-pill{display:inline-flex;align-items:center;gap:9px;font-family:'Hanken Grotesk';font-weight:700;font-size:.9rem;color:var(--ink-soft);white-space:nowrap}
.step-pill .n{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;background:#ece2d2;color:var(--ink-soft);font-size:.85rem;transition:all .2s ease}
.step-pill.active{color:var(--teal)}
.step-pill.active .n{background:var(--teal);color:#fff}
.step-pill.done .n{background:var(--coral);color:#fff}
.step-sep{flex:1;height:2px;background:var(--line);border-radius:2px;min-width:14px}

.bstep{margin-top:4px}
.bstep[hidden]{display:none}
.bstep h2{font-size:1.4rem;margin-bottom:4px}
.bstep .hint{color:var(--ink-soft);font-size:.98rem;margin:4px 0 18px}

/* day picker */
.daygrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(116px,1fr));gap:10px}
.daychip{border:1.6px solid var(--line);background:#fff;border-radius:14px;padding:12px 8px;text-align:center;cursor:pointer;
  font-family:'Hanken Grotesk';transition:transform .15s ease,border-color .15s ease,background .15s ease}
.daychip .dow{display:block;font-weight:800;color:var(--teal);font-size:.98rem}
.daychip .date{display:block;color:var(--ink-soft);font-size:.84rem;margin-top:2px}
.daychip:hover{border-color:var(--teal);transform:translateY(-2px)}
.daychip.sel{border-color:var(--coral);background:#FCEEE5}
.daychip.sel .dow{color:var(--coral)}
.daychip:focus-visible{outline:3px solid var(--teal);outline-offset:2px}

/* time slots */
.slotgroup{margin-bottom:20px}
.slotgroup h3{font-size:.8rem;letter-spacing:.11em;text-transform:uppercase;color:var(--gold);margin-bottom:10px}
.slots{display:grid;grid-template-columns:repeat(auto-fill,minmax(132px,1fr));gap:10px}
.slot{border:1.6px solid var(--line);background:#fff;border-radius:12px;padding:13px 10px;font-family:'Hanken Grotesk';
  font-weight:700;font-size:1rem;color:var(--ink);cursor:pointer;transition:transform .15s ease,border-color .15s ease,background .15s ease}
.slot:hover:not(:disabled){border-color:var(--teal);transform:translateY(-2px)}
.slot.sel{border-color:var(--coral);background:var(--coral);color:#fff}
.slot:disabled{opacity:.5;cursor:not-allowed}
.slot:focus-visible{outline:3px solid var(--teal);outline-offset:2px}
.slot .taken{display:block;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--ink-soft);margin-top:2px}

/* children repeater */
.kidrow{display:flex;gap:8px;align-items:center;margin-bottom:8px}
/* ---------- Custom dropdown (replaces native <select> so the option list is
   large, anchored under the field, and consistent on mobile) ---------- */
.dd{position:relative;flex:1;min-width:0}
.dd-btn{width:100%;display:flex;align-items:center;justify-content:space-between;gap:10px;
  min-height:52px;padding:13px 15px;border:1.6px solid var(--line);border-radius:13px;background:#FDFBF7;
  font-family:'Hanken Grotesk';font-weight:600;font-size:1rem;color:var(--ink);cursor:pointer;text-align:left}
.dd-btn:focus-visible{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(28,110,100,.2)}
.dd-btn[aria-expanded="true"]{border-color:var(--teal)}
.dd-val{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.dd-val.is-placeholder{color:var(--ink-soft);font-weight:500}
.dd-chev{width:18px;height:18px;color:var(--teal);flex-shrink:0;transition:transform .18s}
.dd-btn[aria-expanded="true"] .dd-chev{transform:rotate(180deg)}
.dd-list{position:absolute;z-index:50;top:calc(100% + 6px);left:0;right:0;margin:0;padding:6px;list-style:none;
  background:#fff;border:1.6px solid var(--line);border-radius:14px;box-shadow:0 16px 36px rgba(60,45,30,.18);
  max-height:288px;overflow-y:auto}
.dd-opt{padding:13px 14px;border-radius:9px;font-size:1rem;font-weight:600;color:var(--ink);cursor:pointer;line-height:1.3}
.dd-opt:hover,.dd-opt.hl{background:var(--tile)}
.dd-opt[aria-selected="true"]{background:var(--tile);color:var(--teal)}
.dd-invalid .dd-btn{border-color:var(--coral)}
.kid-remove{flex:0 0 auto;width:42px;height:46px;border:1.6px solid var(--line);background:#fff;border-radius:12px;
  color:var(--ink-soft);cursor:pointer;display:grid;place-items:center;transition:border-color .15s ease,color .15s ease}
.kid-remove svg{width:18px;height:18px}
.kid-remove:hover{border-color:var(--coral);color:var(--coral)}
.kid-remove:focus-visible{outline:3px solid var(--teal);outline-offset:2px}
.addkid{background:none;border:0;color:var(--coral);font-family:'Hanken Grotesk';font-weight:800;font-size:.96rem;
  cursor:pointer;padding:6px 2px;margin-top:2px}
.addkid:hover{text-decoration:underline}
.addkid:focus-visible{outline:3px solid var(--teal);outline-offset:2px;border-radius:4px}

/* summary + nav */
.book-summary{background:var(--paper-warm);border-radius:14px;padding:14px 18px;margin-bottom:20px;font-weight:700;color:var(--teal);
  display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.book-summary svg{width:18px;height:18px;color:var(--coral)}
.book-back{background:none;border:0;color:var(--ink-soft);font-family:'Hanken Grotesk';font-weight:700;font-size:.96rem;
  cursor:pointer;padding:4px 2px 14px}
.book-back:hover{color:var(--teal)}
.book-back:focus-visible{outline:3px solid var(--teal);outline-offset:2px;border-radius:4px}
.book-err{color:#a8321c;font-weight:700;margin-top:12px;font-size:.96rem}

/* success */
.booked{text-align:center;padding:16px 6px 8px}
.booked .ic{width:72px;height:72px;border-radius:50%;background:var(--tile);color:var(--teal);display:grid;place-items:center;margin:0 auto 18px}
.booked .ic svg{width:38px;height:38px}
.booked h2{font-size:1.85rem}
.booked .lead{color:var(--ink-soft);font-size:1.08rem;max-width:46ch;margin:12px auto 0;line-height:1.6}
.booked .det{background:var(--paper-warm);border-radius:16px;padding:18px 22px;margin:24px auto 0;max-width:380px;
  font-family:'Hanken Grotesk';font-weight:800;color:var(--ink);font-size:1.1rem;line-height:1.4}
.booked .det span{display:block;font-weight:500;color:var(--ink-soft);font-size:.92rem;margin-top:4px}

/* thank-you page: confirmation card */
.tk-card{background:var(--card);border:1px solid var(--line);border-radius:26px;box-shadow:var(--shadow-lg);
  padding:36px 34px 32px;max-width:620px;margin:0 auto;text-align:center}
.tk-card .ic{width:74px;height:74px;border-radius:50%;background:var(--tile);color:var(--teal);display:grid;place-items:center;margin:0 auto 18px}
.tk-card .ic svg{width:38px;height:38px}
.tk-card h1{font-size:2rem;line-height:1.1}
.tk-card .lead{color:var(--ink-soft);font-size:1.08rem;max-width:46ch;margin:12px auto 0;line-height:1.6}
.tk-card .det{background:var(--paper-warm);border-radius:16px;padding:18px 22px;margin:24px auto 0;max-width:400px;
  font-family:'Hanken Grotesk';font-weight:800;color:var(--ink);font-size:1.15rem;line-height:1.4}
.tk-card .det span{display:block;font-weight:500;color:var(--ink-soft);font-size:.92rem;margin-top:5px}
.tk-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-top:26px}

/* what to expect on your tour */
.expect{display:grid;gap:18px;max-width:640px;margin:26px auto 0;padding:0}
.expect li{display:grid;grid-template-columns:46px 1fr;gap:16px;align-items:start;list-style:none}
.expect .ei{width:46px;height:46px;border-radius:13px;background:var(--tile);color:var(--teal);display:grid;place-items:center;margin-top:2px}
.expect .ei svg{width:22px;height:22px}
.expect h3{font-size:1.1rem;margin-bottom:3px}
.expect p{color:var(--ink-soft);margin:0;font-size:1rem;line-height:1.55}

@media(max-width:560px){
  .tk-card{padding:28px 20px}
  .tk-card h1{font-size:1.65rem}
}

/* reassurance strip */
.reassure{display:flex;gap:26px;flex-wrap:wrap;justify-content:center;margin-top:26px;color:var(--ink-soft);font-weight:600;font-size:.92rem}
.reassure span{display:inline-flex;align-items:center;gap:8px}
.reassure svg{width:18px;height:18px;color:var(--teal-mid)}

@media(max-width:560px){
  .booker{padding:24px 18px}
  .steps{gap:6px}
  .step-pill span:not(.n){display:none}
}
