/* WESBMR public design system — Plus Jakarta Sans + emerald palette.
   Implements the design language from WESBMR-System-Design.md §2 and the
   landing / booking-form / room-picker / verify-step specs. */

:root {
  --accent: oklch(0.47 0.082 162);
  --accent-d: oklch(0.41 0.082 162);
  --accent-soft: oklch(0.955 0.02 162);
  --accent-t: oklch(0.45 0.08 162);
  --accent-tint: oklch(0.74 0.09 162);

  --ink: oklch(0.24 0.012 220);
  --heading: oklch(0.24 0.012 220);
  --label: oklch(0.32 0.012 220);
  --muted: oklch(0.52 0.012 220);
  --line: oklch(0.92 0.005 220);
  --field: oklch(0.9 0.006 220);
  --page: oklch(0.975 0.004 220);
  --hero: oklch(0.3 0.02 162);

  --amber: oklch(0.62 0.12 65);
  --amber-soft: oklch(0.96 0.05 78);
  --amber-text: oklch(0.5 0.1 65);
  --danger: oklch(0.55 0.17 25);

  --pad: 72px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body.wesbmr {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wesbmr a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------- buttons ---------- */
.wb {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; text-decoration: none;
  font-family: inherit; font-weight: 700; font-size: 14.5px;
  padding: 13px 24px; border-radius: 9px;
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 12px rgba(10, 40, 28, .22);
  transition: background .16s ease, box-shadow .16s ease, transform .05s ease, opacity .16s ease;
}
.wb:hover { background: var(--accent-d); }
.wb:active { transform: translateY(1px); }
.wb.ghost { background: rgba(255, 255, 255, .06); border: 1.5px solid rgba(255, 255, 255, .55); box-shadow: none; }
.wb.ghost:hover { background: rgba(255, 255, 255, .14); }
.wb.outline { background: #fff; color: var(--ink); border: 1px solid var(--field); box-shadow: none; }
.wb.outline:hover { background: var(--page); }
.wb[disabled], .wb.is-locked { cursor: not-allowed; background: oklch(0.96 0.004 220); color: var(--muted); border: 1px solid oklch(0.91 0.005 220); box-shadow: none; }
.wlink { text-decoration: none; font-weight: 700; color: var(--accent-t); transition: color .14s ease, opacity .14s ease; }
.wlink:hover { opacity: .78; }

/* ---------- fields ---------- */
.wfield {
  font-family: inherit; width: 100%; padding: 12px 14px;
  border: 1px solid var(--field); border-radius: 10px;
  font-size: 14px; color: var(--ink); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wfield::placeholder { color: oklch(0.65 0.01 220); }
.wfield:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
select.wfield {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8a82' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px;
}
textarea.wfield { min-height: 78px; resize: vertical; }
.flabel { display: flex; flex-direction: column; gap: 7px; }
.flabel > span { font-size: 13px; font-weight: 600; color: var(--label); }
.req { color: var(--accent-t); }
.attendee-field > span { font-size: 14.5px; font-weight: 800; color: var(--heading); }
.attendee-control { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto 52px; align-items: center; gap: 10px; min-height: 64px; padding: 6px; border: 1.5px solid oklch(0.8 0.06 162); border-radius: 16px; background: var(--accent-soft); box-shadow: 0 0 0 4px rgba(31, 138, 91, .08); }
.attendee-control:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft), 0 10px 28px -22px rgba(10, 40, 28, .42); }
.attendee-input.wfield { height: 50px; min-width: 0; padding: 0 10px; border: 0; border-radius: 10px; background: transparent; box-shadow: none; font-size: 24px; font-weight: 800; color: var(--heading); text-align: center; }
.attendee-input.wfield:focus { box-shadow: none; border-color: transparent; }
.attendee-input::-webkit-outer-spin-button,
.attendee-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.attendee-input[type="number"] { -moz-appearance: textfield; }
.attendee-unit { color: var(--accent-d); font-size: 13px; font-weight: 800; white-space: nowrap; }
.attendee-step { width: 52px; height: 52px; border: 1px solid oklch(0.88 0.03 162); border-radius: 13px; background: #fff; color: var(--accent-d); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(18,40,30,.08); transition: background .15s ease, border-color .15s ease, transform .05s ease; }
.attendee-step:hover { background: #fafffc; border-color: var(--accent); }
.attendee-step:active { transform: translateY(1px); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--hero); }
.hero-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(16,34,26,.94) 0%, rgba(16,34,26,.74) 34%, rgba(16,34,26,.3) 62%, rgba(16,34,26,.12) 100%); }
.hero-inner { position: relative; z-index: 2; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 30px; height: 30px; }
.brand b { display: block; font-weight: 800; font-size: 19px; color: #fff; line-height: 1.05; }
.brand small { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.72); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.navlink { text-decoration: none; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .14s ease; }
.nav-links a.navlink:hover { color: #fff; }
.admin-signin { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.4); color: #fff; font-weight: 700; font-size: 13.5px; padding: 9px 15px; border-radius: 8px; cursor: pointer; }
.admin-signin:hover { background: rgba(255,255,255,.2); }

.hero-copy { padding: 54px 0 76px; max-width: 520px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow span.bar { width: 28px; height: 2px; background: var(--accent-tint); border-radius: 2px; }
.eyebrow span.txt { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-tint); }
.hero-copy h1 { font-size: 54px; line-height: 1.02; letter-spacing: -.03em; font-weight: 800; color: #fff; }
.hero-copy p { margin-top: 18px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.86); max-width: 380px; }
.hero-btns { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- sections ---------- */
.section { padding: var(--pad) 0; }
.section.tint { background: var(--page); border-top: 1px solid var(--line); }
.section h2.center { text-align: center; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.sec-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }

/* how it works */
.steps-card { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 24px 28px 28px; box-shadow: 0 1px 3px rgba(18,40,30,.05), 0 22px 48px -38px rgba(18,40,30,.28); }
.steps-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.steps-card-head h2 { font-size: 30px; line-height: 1.18; font-weight: 800; letter-spacing: 0; color: var(--heading); }
.steps-toggle { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--field); border-radius: 10px; background: #fff; color: var(--accent-d); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.steps-toggle:hover { background: var(--accent-soft); border-color: oklch(0.86 0.035 162); }
.steps-toggle svg { transition: transform .18s ease; }
.steps-card.is-collapsed .steps-toggle svg { transform: rotate(-90deg); }
.steps-collapse { display: grid; grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows .2s ease, opacity .16s ease; }
.steps-collapse-inner { overflow: hidden; }
.steps-card.is-collapsed .steps-collapse { grid-template-rows: 0fr; opacity: 0; }
.steps { max-width: 840px; margin: 34px auto 0; }
.steps-rail { display: flex; align-items: center; justify-content: space-between; padding: 0 60px; }
.steps-rail .dot { width: 62px; height: 62px; flex-shrink: 0; border-radius: 99px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; }
.steps-rail .line { flex: 1; border-top: 2px dashed oklch(0.85 0.01 220); margin: 0 8px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 22px; text-align: center; }
.steps-grid h3 { font-size: 16px; font-weight: 700; color: oklch(0.26 0.012 220); }
.steps-grid p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--muted); }

/* room gallery */
.spaces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.wcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.wcard:hover { box-shadow: 0 2px 6px rgba(18,40,30,.05), 0 22px 44px -24px rgba(18,40,30,.32); transform: translateY(-3px); }
.wcard .photo { height: 128px; background: oklch(0.9 0.008 220); }
.wcard .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wcard .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.wcard .body h3 { font-size: 16.5px; font-weight: 700; }
.wcard .body p { margin-top: 8px; font-size: 13.5px; line-height: 1.5; color: var(--muted); flex: 1; }
.chips { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.chip { font-size: 12px; font-weight: 600; color: oklch(0.42 0.012 220); background: oklch(0.95 0.005 220); padding: 5px 10px; border-radius: 7px; }
.room-detail-link { align-self: flex-start; margin-top: 16px; border: 0; background: transparent; padding: 0; font-family: inherit; font-size: inherit; font-weight: 700; cursor: pointer; }
body.room-modal-open { overflow: hidden; }
.room-modal-backdrop { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(9, 24, 18, .52); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .18s ease; }
.room-modal-backdrop[hidden] { display: none; }
.room-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.room-modal { position: relative; width: min(820px, 100%); max-height: min(86vh, 760px); overflow: auto; background: #fff; border: 1px solid rgba(255,255,255,.36); border-radius: 18px; display: grid; grid-template-columns: 310px 1fr; box-shadow: 0 30px 90px -30px rgba(5, 18, 12, .55); transform: translateY(10px) scale(.98); transition: transform .18s ease; }
.room-modal-backdrop.open .room-modal { transform: none; }
.room-modal-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid rgba(12, 24, 18, .12); border-radius: 10px; background: rgba(255,255,255,.92); color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(8, 24, 16, .12); }
.room-modal-close:hover { background: #fff; color: var(--accent-d); }
.room-modal-media { position: relative; min-height: 342px; background: oklch(0.9 0.008 220); }
.room-modal-media img { width: 100%; height: 100%; min-height: 342px; object-fit: cover; display: block; }
.room-modal-cap { position: absolute; left: 18px; bottom: 18px; padding: 7px 12px; border-radius: 999px; background: rgba(14, 31, 24, .84); color: #fff; font-size: 12px; font-weight: 800; }
.room-modal-body { padding: 34px 34px 30px; display: flex; flex-direction: column; }
.room-modal-kicker { font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--accent-t); }
.room-modal-body h3 { margin-top: 8px; font-size: 28px; line-height: 1.16; font-weight: 800; letter-spacing: 0; color: var(--heading); }
.room-modal-body p { margin-top: 14px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.room-modal-facilities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.room-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 28px; }

/* ---------- booking form ---------- */
.book-card { max-width: var(--maxw); margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 1px 3px rgba(18,40,30,.05), 0 30px 60px -40px rgba(18,40,30,.25); overflow: hidden; }
.book-grid { display: grid; grid-template-columns: 1fr 318px; }
.book-form { padding: 38px 40px; }
.book-form h2 { font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.book-form .lede { margin-top: 9px; font-size: 14.5px; line-height: 1.55; color: var(--muted); max-width: 440px; }
.form-stack { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.row { display: grid; gap: 16px; }
.row.c2 { grid-template-columns: 1fr 1fr; }
.row.c3 { grid-template-columns: 1fr 1fr 1fr; }

/* room picker (booking-room-picker.md) */
.picker { display: grid; gap: 10px; }
.pick-any { display: grid; grid-template-columns: 38px 1fr 22px; align-items: center; gap: 12px; width: 100%;
  background: #fff; border: 1px solid var(--field); border-radius: 12px; padding: 12px; cursor: pointer; text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease; }
.pick-zap { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-d);
  display: inline-flex; align-items: center; justify-content: center; }
.pick-any b { font-size: 13.5px; font-weight: 700; display: block; }
.pick-any small { font-size: 11.5px; color: var(--muted); }
.pick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pick-card { display: flex; flex-direction: column; position: relative; border: 1px solid var(--field); border-radius: 12px; overflow: hidden; background: #fff;
  cursor: pointer; text-align: left; padding: 0; transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease; }
.pick-card:active, .pick-any:active { transform: translateY(1px); }
.pick-card .pc-media { position: relative; display: block; flex-shrink: 0; height: 96px; background: oklch(0.9 0.008 220); }
.pick-card .pc-body { display: block; }
.pick-card .pc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cap-pill { position: absolute; right: 7px; bottom: 7px; background: rgba(16,32,26,.82); color: #fff; font-size: 9.5px; font-weight: 700;
  padding: 3px 7px; border-radius: 999px; }
.pick-card .pc-body { padding: 9px 11px; }
.pick-card .pc-body b { font-size: 13px; font-weight: 700; display: block; }
.pick-card .pc-body small { font-size: 11px; color: var(--muted); }
.pick-card.is-unavailable { cursor: not-allowed; opacity: .62; }
.pick-card.is-unavailable img { filter: grayscale(.55); }
.pick-unavailable { position: absolute; right: 8px; top: 8px; display: none; background: rgba(28, 36, 33, .86); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 7px; border-radius: 999px; z-index: 3; }
.pick-card.is-unavailable .pick-unavailable { display: inline-flex; }
.picker-msg { min-height: 18px; font-size: 12.5px; color: var(--muted); }
.picker-msg.warn { color: var(--danger); font-weight: 700; }
.pick-check { position: absolute; display: none; align-items: center; justify-content: center; width: 22px; height: 22px;
  border-radius: 999px; background: var(--accent-d); color: #fff; top: 8px; left: 8px; z-index: 2; }
.pick-any .pick-check { position: static; }
.pick-card.is-selected, .pick-any.is-selected { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.pick-card.is-selected .pick-check, .pick-any.is-selected .pick-check { display: inline-flex; }

/* verify gate (booking-verify-step.md) */
.verify-box { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--page); display: grid; gap: 14px; }
.verify-box h3 { font-size: 16px; font-weight: 700; }
.verify-box .vsub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.otp-row { display: flex; gap: 10px; }
.otp-box { width: 46px; height: 56px; text-align: center; font-size: 24px; font-weight: 700; border: 1.5px solid oklch(0.86 0.008 220);
  border-radius: 12px; color: var(--ink); font-family: inherit; }
.otp-box:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.otp-box.filled { border-color: var(--accent); background: var(--accent-soft); }
.field-help-inline { display: block; margin-top: -2px; font-size: 11.5px; line-height: 1.35; color: var(--muted); }
.chip-sent { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--accent-d); background: var(--accent-soft);
  border: 1px solid oklch(0.9 0.03 162); padding: 8px 12px; border-radius: 999px; }
.verified-card { display: flex; align-items: center; gap: 12px; background: var(--accent-soft); border: 1px solid oklch(0.9 0.03 162);
  border-radius: 12px; padding: 14px 16px; }
.verified-card .vc-icon { width: 34px; height: 34px; border-radius: 999px; background: var(--accent-d); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.verified-card b { font-size: 14px; color: var(--accent-d); }
.verified-card small { font-size: 12.5px; color: var(--muted); display: block; }
.verify-change { margin-left: auto; border: 0; background: transparent; color: var(--accent-d); cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; padding: 4px 0; }
.resend-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 12px; color: var(--muted); }
.resend-row button { border: 0; background: transparent; color: var(--accent-d); cursor: pointer; font: inherit; font-weight: 800; padding: 0; }
.resend-row button:disabled { color: var(--muted); cursor: not-allowed; }
.vmsg { font-size: 12.5px; font-weight: 600; min-height: 1em; }
.vmsg.err { color: var(--danger); }
.vmsg.ok { color: var(--accent-d); }

.submit-row { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.submit-note { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }

/* aside */
.book-aside { background: var(--accent-soft); border-left: 1px solid oklch(0.92 0.012 162); padding: 38px 30px; display: flex; flex-direction: column; }
.aside-icon { width: 54px; height: 54px; border-radius: 99px; background: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 2px 8px rgba(18,40,30,.08); }
.book-aside h3 { text-align: center; margin-top: 14px; font-size: 16px; font-weight: 700; color: oklch(0.26 0.04 162); }
.aside-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.aside-list .li { display: flex; gap: 11px; }
.aside-list .li svg { flex-shrink: 0; margin-top: 1px; }
.aside-list .li span { font-size: 13.5px; line-height: 1.5; color: oklch(0.36 0.02 162); }
.aside-help { margin-top: auto; padding-top: 24px; border-top: 1px solid oklch(0.9 0.014 162); }
.aside-help .t { font-size: 14px; font-weight: 700; color: oklch(0.28 0.03 162); }
.aside-help .s { margin-top: 6px; font-size: 13px; color: oklch(0.42 0.02 162); }

/* footer */
.foot { border-top: 1px solid var(--line); background: #fff; }
.foot .wrap { padding: 24px 40px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.foot span { font-size: 13px; color: var(--muted); }

/* ---------- admin modal ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 1000; background: rgba(12,24,19,.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { width: min(760px, 100%); background: #fff; border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 300px 1fr;
  box-shadow: 0 30px 80px -20px rgba(10,30,22,.5); }
.modal-brand { background: var(--hero); color: #fff; padding: 32px 28px; position: relative; }
.modal-brand h3 { font-size: 20px; font-weight: 800; }
.modal-brand p { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.5; }
.modal-brand ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.modal-brand li { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,.9); }
.modal-form { padding: 30px 30px 34px; position: relative; }
.modal-form h3 { font-size: 20px; font-weight: 800; }
.modal-form .msub { margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; cursor: pointer; font-size: 22px; line-height: 1; color: var(--muted); }
.modal-fields { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.modal-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.checkline { display: inline-flex; align-items: center; gap: 8px; color: var(--label); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) { .spaces, .pick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .wrap, .foot .wrap { padding-left: 20px; padding-right: 20px; }
  .nav-links { gap: 14px; }
  .nav-links .navlink { display: none; }
  .hero-copy { padding: 34px 0 50px; max-width: 100%; }
  .hero-copy h1 { font-size: 40px; }
  .steps-card { padding: 20px; border-radius: 14px; }
  .steps-card-head h2 { font-size: 23px; }
  .steps-toggle { width: 38px; height: 38px; }
  .steps-rail { padding: 0 22px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-form { padding: 28px 22px; }
  .book-aside { border-left: none; border-top: 1px solid oklch(0.9 0.014 162); }
  .room-modal { grid-template-columns: 1fr; max-height: 90vh; }
  .room-modal-media { min-height: 220px; height: 220px; }
  .room-modal-media img { min-height: 220px; }
  .room-modal-body { padding: 26px 22px 24px; }
  .room-modal-body h3 { font-size: 23px; }
  .row.c2, .row.c3 { grid-template-columns: 1fr; }
  .modal { grid-template-columns: 1fr; }
  .modal-brand { display: none; }
  .foot .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .spaces, .pick-grid { grid-template-columns: 1fr; }
  .room-modal-backdrop { padding: 14px; }
  .room-modal-actions .wb { width: 100%; }
}

/* ============================================================
   BOOKING WIZARD — 4-step responsive stepper (unify-booking-responsive.md)
   One template; layout reflows by width. Shares tokens above.
   ============================================================ */
.bwiz { display: flex; flex-direction: column; }
.bwiz-step { display: grid; grid-template-columns: 30px 1fr; gap: 14px; }
.bwiz-rail { display: flex; flex-direction: column; align-items: center; }
.bwiz-badge {
  position: relative; width: 30px; height: 30px; flex-shrink: 0; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 2px solid var(--field); color: var(--muted); font-weight: 800; font-size: 13.5px;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.bwiz-tick { display: none; }
.bwiz-step.is-done .bwiz-badge { background: var(--accent-d); border-color: var(--accent-d); color: #fff; box-shadow: 0 0 0 4px var(--accent-soft); }
.bwiz-step.is-done .bwiz-num { display: none; }
.bwiz-step.is-done .bwiz-tick { display: block; }
.bwiz-line { flex: 1; width: 2px; background: var(--line); margin: 6px 0; min-height: 14px; }
.bwiz-main { min-width: 0; padding-bottom: 22px; }
.bwiz-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: none; padding: 3px 0; cursor: pointer; text-align: left; color: inherit; font-family: inherit;
}
.bwiz-titles { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bwiz-titles strong { font-size: 15.5px; font-weight: 700; color: var(--heading); }
.bwiz-titles small { font-size: 12.5px; color: var(--muted); }
.bwiz-status { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bwiz-chip { display: none; font-size: 11.5px; font-weight: 700; color: var(--accent-d); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; }
.bwiz-step.is-done .bwiz-chip { display: inline-block; }
.bwiz-chev { color: var(--muted); transition: transform .2s ease; }
.bwiz-step.open .bwiz-chev { transform: rotate(180deg); }
.bwiz-body { display: none; flex-direction: column; gap: 16px; margin-top: 16px; }
.bwiz-step.open .bwiz-body { display: flex; }
.time-end-preview {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page);
  color: var(--muted);
}
.time-end-preview.has-value {
  border-color: oklch(0.9 0.03 162);
  background: var(--accent-soft);
  color: var(--accent-d);
}
.time-end-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: currentColor;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(18,40,30,.07);
}
.time-end-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.time-end-text b {
  color: var(--heading);
  font-size: 12.5px;
  font-weight: 800;
}
.time-end-text small {
  color: currentColor;
  font-size: 13.5px;
  font-weight: 700;
}

/* datetime-local: value left-aligned, calendar icon right (web + mobile) */
input[type="datetime-local"].wfield { -webkit-appearance: none; appearance: none; text-align: left; }
input[type="datetime-local"].wfield::-webkit-date-and-time-value { text-align: left; }
input[type="datetime-local"].wfield::-webkit-calendar-picker-indicator { margin-left: auto; }

/* keep room cards a 2-col grid on phones (spec: 2 columns on mobile), smaller image */
@media (max-width: 640px) {
  .pick-grid { grid-template-columns: 1fr 1fr; }
  .pick-card .pc-media { height: 66px; }
}
@media (max-width: 380px) { .pick-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PUBLIC LANDING REDESIGN — white top bar, flat hero,
   guided-form pill, live booking summary panel
   ============================================================ */
.site-topbar { background: #fff; border-top: 3px solid var(--accent-d); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.stb-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; }
.stb-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.stb-logo { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-d); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stb-brand-txt b { display: block; font-size: 16px; font-weight: 800; color: var(--heading); line-height: 1.12; }
.stb-brand-txt small { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--accent-d); text-transform: uppercase; }
.stb-nav { display: flex; align-items: center; gap: 26px; }
.stb-link { text-decoration: none; font-size: 14.5px; font-weight: 600; color: var(--label); transition: color .14s ease; }
.stb-link:hover { color: var(--accent-d); }
.stb-admin { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--field); color: var(--ink);
  font-family: inherit; font-weight: 700; font-size: 13.5px; padding: 9px 15px; border-radius: 9px; cursor: pointer; text-decoration: none;
  transition: border-color .14s ease, background .14s ease; }
.stb-admin:hover { border-color: var(--accent); background: var(--page); }

/* flat hero (no photo) */
.hero-flat { background: var(--hero); }
.hero-flat .hero-copy { padding: 46px 0 52px; max-width: 640px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 420px; margin-top: 24px; }
.hero-stats span { display: block; padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.08); }
.hero-stats b { display: block; color: #fff; font-size: 19px; font-weight: 800; line-height: 1; }
.hero-stats small { display: block; margin-top: 5px; color: rgba(255,255,255,.72); font-size: 11px; }

/* booking card head + guided pill */
.book-form-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.guided-pill { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--accent-d); background: var(--accent-soft); padding: 6px 13px; border-radius: 999px; white-space: nowrap; }

/* live booking summary panel */
.bsummary { background: var(--accent-soft); border-left: 1px solid oklch(0.92 0.012 162); padding: 32px 28px; display: flex; flex-direction: column; }
.bsum-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-t); }
.bsum-room { margin-top: 8px; font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: oklch(0.26 0.04 162); line-height: 1.2; }
.bsum-rows { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.bsum-row { display: flex; gap: 12px; align-items: flex-start; }
.bsum-ic { width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--accent-d); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 1px 3px rgba(18,40,30,.07); }
.bsum-row > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bsum-k { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-t); }
.bsum-v { font-size: 14.5px; font-weight: 600; color: oklch(0.28 0.03 162); word-break: break-word; }
.bsum-help { margin-top: auto; padding-top: 24px; border-top: 1px solid oklch(0.9 0.014 162); }
.bsum-help .t { font-size: 13px; font-weight: 700; color: oklch(0.28 0.03 162); margin-bottom: 6px; }

@media (max-width: 820px) {
  .stb-inner { min-height: 60px; }
  .stb-nav .stb-link { display: none; }
  .stb-brand-txt small { display: none; }
  .hero-flat .hero-copy { padding: 34px 0 40px; max-width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; max-width: none; }
  .bsummary { border-left: none; border-top: 1px solid oklch(0.9 0.014 162); }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .otp-row { gap: 6px; }
  .otp-box { width: 40px; height: 52px; }
}

/* Weststar logo image in the top bar */
.stb-logo-img { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; display: block; }

/* ============================================================
   MOBILE TIDY-UP — tighter spacing, lighter form framing so the
   booking form uses the width instead of nested borders/padding.
   ============================================================ */
@media (max-width: 820px) {
  .section { padding: 40px 0; }
  .book-card { border-radius: 14px; box-shadow: 0 1px 3px rgba(18,40,30,.06); }
  .book-form { padding: 24px 18px; }
  .book-form h2 { font-size: 22px; }
  .book-form .lede { font-size: 13.5px; }
  .bsummary { padding: 22px 18px; }
  .book-form-head { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .section { padding: 26px 0; }
  .wrap, .foot .wrap { padding-left: 16px; padding-right: 16px; }
  .book-card { border-radius: 12px; }
  .book-form { padding: 20px 15px; }
  .bsummary { padding: 18px 15px; }
  .form-stack, .bwiz { gap: 16px; }
  /* slim the stepper rail so fields get more width */
  .bwiz-step { grid-template-columns: 26px 1fr; gap: 11px; }
  .bwiz-badge { width: 26px; height: 26px; font-size: 12px; }
  .bwiz-titles strong { font-size: 14.5px; }
  .bwiz-titles small { font-size: 12px; }
  .bwiz-main { padding-bottom: 18px; }
  /* keep the hero stats compact 3-across instead of stacking tall */
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .hero-stats span { padding: 10px 8px; }
  .hero-stats b { font-size: 16px; }
  .hero-copy h1 { font-size: 34px; }
  .otp-box { width: 38px; height: 50px; font-size: 21px; }
}
@media (max-width: 360px) {
  .otp-box { width: 34px; height: 46px; }
  .otp-row { gap: 5px; }
}

/* Room detail modal redesign */
.room-modal-backdrop {
  padding: 24px;
  background: rgba(9, 24, 18, .54);
  backdrop-filter: blur(9px);
}
.room-modal {
  width: min(940px, 100%);
  max-height: min(86vh, 760px);
  min-height: 520px;
  overflow: hidden;
  grid-template-columns: 44% minmax(0, 1fr);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.room-modal-media {
  position: relative;
  min-height: 100%;
  height: auto;
  overflow: hidden;
}
.room-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.room-modal-availability {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(80, 87, 84, .86);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.room-modal-availability.is-free {
  background: oklch(0.47 0.082 162);
}
.room-modal-availability.is-busy {
  background: rgba(53, 60, 57, .86);
}
.room-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}
.room-modal-availability.is-free .room-modal-dot {
  animation: roomModalPulse 1.5s ease-in-out infinite;
}
@keyframes roomModalPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.44); }
  50% { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}
.room-modal-cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(16,24,20,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.room-modal-cap svg {
  flex-shrink: 0;
}
.room-modal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: auto;
  padding: 36px 36px 30px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}
.room-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-color: oklch(0.91 0.005 220);
  border-radius: 12px;
  background: #fff;
  color: oklch(0.5 0.012 220);
  box-shadow: 0 1px 3px rgba(16,32,26,.08);
}
.room-modal-close:hover {
  background: oklch(0.955 0.02 162);
  color: oklch(0.40 0.082 162);
}
.room-modal-kicker {
  padding-right: 54px;
  color: oklch(0.47 0.082 162);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.room-modal-body h3 {
  margin-top: 9px;
  color: oklch(0.22 0.012 220);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.16;
}
.room-modal-body p {
  margin-top: 10px;
  color: oklch(0.5 0.012 220);
  font-size: 14.5px;
  line-height: 1.55;
}
.room-modal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 22px;
}
.room-modal-fact {
  min-width: 0;
  padding: 12px;
  border: 1px solid oklch(0.91 0.005 220);
  border-radius: 12px;
  background: oklch(0.975 0.004 220);
}
.room-modal-fact span,
.room-modal-fact strong {
  display: block;
}
.room-modal-fact span {
  color: oklch(0.55 0.012 220);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.room-modal-fact strong {
  margin-top: 4px;
  overflow: hidden;
  color: oklch(0.24 0.012 220);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.room-modal-section-label {
  margin-top: 24px;
  color: oklch(0.55 0.012 220);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.room-modal-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.room-modal-amenity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid oklch(0.90 0.03 162);
  border-radius: 999px;
  background: oklch(0.955 0.02 162);
  color: oklch(0.34 0.05 162);
  font-size: 12px;
  font-weight: 800;
}
.room-modal-amenity svg {
  flex-shrink: 0;
}
.room-modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}
.room-modal-actions .wb {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  background: oklch(0.47 0.082 162);
}
.room-modal-actions .wb:hover {
  background: oklch(0.40 0.082 162);
}
.room-modal-actions .wb:disabled {
  background: oklch(0.93 0.004 220);
  color: oklch(0.55 0.012 220);
  box-shadow: none;
}
.room-modal-text-button {
  border: 0;
  background: transparent;
  color: oklch(0.5 0.012 220);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 4px;
}
.room-modal-text-button:hover {
  color: oklch(0.40 0.082 162);
}

@media (max-width: 720px) {
  .room-modal-backdrop {
    padding: 14px;
  }
  .room-modal {
    max-height: 92vh;
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .room-modal-media {
    height: 200px;
    min-height: 200px;
  }
  .room-modal-media img {
    min-height: 200px;
  }
  .room-modal-body {
    min-height: 0;
    overflow: visible;
    padding: 25px 20px 22px;
  }
  .room-modal-close {
    top: 12px;
    right: 12px;
  }
  .room-modal-body h3 {
    font-size: 24px;
  }
  .room-modal-facts {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .room-modal-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .room-modal-text-button {
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .room-modal-facts {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .room-modal-fact strong {
    white-space: normal;
  }
}
