/* ============================================================
   Chamber KTV by Bad Boys Wingz — shared stylesheet
   Dark, cinematic, editorial. Speakeasy luxe.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Dark (default) — speakeasy luxe */
  --bg: #0a0807;          /* Deep black background */
  --bg-alt: #13100d;      /* Slightly lighter card surface */
  --ink: #f4ead7;         /* Primary text — warm off-white */
  --ink-dim: #b5a888;     /* Secondary text */
  --gold: #d4a548;        /* Brand gold (also gold text) */
  --gold-bright: #f0c474; /* Hover/accent gold */
  --line: rgba(212, 165, 72, .18);
  --line-strong: rgba(212, 165, 72, .35);
  --danger: #c4503a;      /* Booked / error red */
  --danger-dim: rgba(196, 80, 58, .25);
  --ok: #6aa775;          /* Availability "open" green */

  /* Theme-dependent surfaces & effects (tokenised so light can override) */
  --on-gold: var(--on-gold);     /* text on gold fills (both modes) */
  --dim-2: #8a7f68;       /* muted / booked text */
  --hot: #e08a76;         /* spicy chip */
  --placeholder: #6f6651;
  --badge-bg: rgba(10, 8, 7, .8);
  --nav-bg: rgba(10, 8, 7, .55);
  --nav-bg-scrolled: rgba(10, 8, 7, .9);
  --nav-menu-bg: rgba(10, 8, 7, .98);
  --sticky-bg: rgba(10, 8, 7, .92);
  --book-bg: linear-gradient(180deg, var(--bg), #0c0a08);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, .5);
  --hero-bg:
    radial-gradient(1200px 600px at 70% -10%, rgba(212, 165, 72, .14), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(212, 165, 72, .08), transparent 55%),
    linear-gradient(180deg, #0a0807, #0d0a08 60%, #0a0807);
  color-scheme: dark;

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --maxw: 1200px;
  --nav-h: 72px;
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Focus rings — accessible & on-brand */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 10vw, 130px) 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.muted { color: var(--ink-dim); }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; }
h2 { font-size: clamp(30px, 4.5vw, 52px); letter-spacing: -.01em; }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
em, .em { font-style: italic; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  background: transparent;
  color: var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--on-gold);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(212, 165, 72, .18);
}
.btn--gold:hover { box-shadow: 0 12px 40px rgba(212, 165, 72, .32); }
.btn--ghost { background: transparent; }
.btn--sm { padding: 9px 16px; font-size: 12.5px; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled { background: var(--nav-bg-scrolled); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; }
.nav__links a { font-size: 14px; color: var(--ink-dim); transition: color .2s var(--ease); position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--nav-menu-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 24px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: 16px 4px; font-size: 16px; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--hero-bg); }
.hero__grain { position: absolute; inset: 0; z-index: 1; opacity: .5; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 920px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  margin: 22px 0 24px;
  letter-spacing: -.015em;
}
.hero__sub { font-size: clamp(16px, 1.6vw, 20px); color: var(--ink-dim); max-width: 620px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Section heading block */
.head { max-width: 680px; margin-bottom: 48px; }
.head .eyebrow { display: block; margin-bottom: 14px; }
.head p { color: var(--ink-dim); margin-top: 14px; font-size: 17px; }

/* ============================================================
   ROOM CARDS (preview grid + rooms page)
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rooms-grid { grid-template-columns: 1fr; } }

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.room-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.room-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.05); }
.room-card__badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  background: var(--badge-bg); border: 1px solid var(--line-strong);
  color: var(--gold); padding: 5px 10px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.room-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.room-card__body h3 { font-size: 24px; }
.room-card__tag { color: var(--ink-dim); font-size: 14px; flex: 1; }
.room-card__price {
  font-family: var(--font-mono); font-size: 13px; color: var(--gold);
  padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.room-card__price small { color: var(--ink-dim); font-size: 11px; }

/* ============================================================
   BOOKING
   ============================================================ */
.book { background: var(--book-bg); }
.book__layout { display: grid; grid-template-columns: 220px 1fr 320px; gap: 32px; align-items: start; }
@media (max-width: 1080px) { .book__layout { grid-template-columns: 1fr; } }

/* Step tracker */
.steps { display: flex; flex-direction: column; gap: 4px; position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 1080px) { .steps { flex-direction: row; flex-wrap: wrap; position: static; } }
.step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px; border: 1px solid transparent;
  color: var(--ink-dim); transition: all .3s var(--ease);
}
.step__num {
  flex: 0 0 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-strong);
  font-family: var(--font-mono); font-size: 13px;
}
.step__label { font-size: 14px; }
.step__label small { display: block; font-size: 11px; color: var(--ink-dim); font-family: var(--font-mono); }
.step.active { background: var(--bg-alt); border-color: var(--line); color: var(--ink); }
.step.active .step__num { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
.step.done .step__num { background: transparent; border-color: var(--gold); color: var(--gold); }
.step.done .step__num::after { content: '✓'; }
.step.done .step__num span { display: none; }

/* Panel (center steps) */
.panel { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); }
.step-pane { display: none; animation: fade .35s var(--ease); }
.step-pane.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 22px; }
.field > label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px; }
.field.invalid > label { color: var(--danger); }

.input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease);
}
.input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: none; }
.field.invalid .input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
textarea { resize: vertical; min-height: 88px; }
::placeholder { color: var(--placeholder); }

/* Multi-room picker */
.picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .picker { grid-template-columns: repeat(2, 1fr); } }
.pick {
  position: relative; text-align: left; padding: 14px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); transition: border-color .25s var(--ease), background .25s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.pick.sel { border-color: var(--gold); background: rgba(212, 165, 72, .07); }
.pick.full { opacity: .55; }
.pick__top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.pick__name { font-family: var(--font-display); font-size: 17px; }
.pick__avail { font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: var(--gold); white-space: nowrap; }
.pick__avail.full { color: var(--danger); }
.pick__meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim); }
.pick__qty { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.pick__qty button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); font-size: 16px; line-height: 1;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pick__qty button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.pick__qty button:disabled { opacity: .35; cursor: not-allowed; }
.pick__n { font-family: var(--font-mono); font-size: 16px; min-width: 18px; text-align: center; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; padding: 6px 8px 6px 14px; border-radius: 100px;
  background: rgba(212, 165, 72, .1); border: 1px solid var(--line-strong); color: var(--ink);
}
.pill button { background: none; border: 0; color: var(--ink-dim); font-size: 16px; line-height: 1; padding: 0 4px; }
.pill button:hover { color: var(--danger); }
.hint {
  margin-top: 12px; font-size: 13px; color: var(--gold-bright);
  background: rgba(212, 165, 72, .08); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 14px;
}

/* Calendar (date picker) */
.cal { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.cal__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal__title { font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.cal__nav {
  width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); font-size: 18px; line-height: 1;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.cal__nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { margin-bottom: 6px; }
.cal__dow span { text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--ink-dim); }
.cal__day {
  position: relative; aspect-ratio: 1 / 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font-size: 14px; font-variant-numeric: tabular-nums;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.cal__day:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-2px); }
.cal__day .dot { width: 6px; height: 6px; border-radius: 50%; background: transparent; }
.cal__day.open .dot { background: var(--ok); }
.cal__day.limited .dot { background: var(--gold-bright); }
.cal__day.full .dot { background: var(--danger); }
.cal__day.full {
  cursor: not-allowed; color: var(--dim-2); border-color: var(--danger-dim);
  background-image: repeating-linear-gradient(45deg,
      transparent, transparent 6px, rgba(196, 80, 58, .18) 6px, rgba(196, 80, 58, .18) 8px);
}
.cal__day.blank { background: transparent; border-color: transparent; pointer-events: none; }
.cal__day:disabled:not(.full) { opacity: .28; cursor: not-allowed; }
.cal__day.today { box-shadow: inset 0 0 0 1px var(--line-strong); }
.cal__day.sel { background: var(--gold); border-color: var(--gold); color: var(--on-gold); font-weight: 600; }
.cal__day.sel .dot { background: var(--on-gold); }
.cal__legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-size: 12px; color: var(--ink-dim); font-family: var(--font-mono); }
.cal__legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal__legend i { width: 9px; height: 9px; border-radius: 50%; }
.cal__legend i.open { background: var(--ok); }
.cal__legend i.limited { background: var(--gold-bright); }
.cal__legend i.full { background: var(--danger); }
.cal__empty { grid-column: 1 / -1; text-align: center; color: var(--ink-dim); font-size: 13px; font-style: italic; line-height: 1.5; padding: 30px 12px; }

/* Time grid */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.slots-hint { color: var(--ink-dim); font-size: 13px; padding: 14px 2px; font-style: italic; }
.slot {
  position: relative; padding: 12px 6px; text-align: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-size: 14px; transition: all .2s var(--ease); overflow: hidden;
}
.slot:hover:not(.booked):not(:disabled) { border-color: var(--gold); transform: translateY(-2px); }
.slot.sel { background: var(--gold); border-color: var(--gold); color: var(--on-gold); font-weight: 600; }
.slot.booked {
  cursor: not-allowed; color: var(--dim-2); border-color: var(--danger-dim);
  background-image: repeating-linear-gradient(45deg,
      transparent, transparent 7px,
      rgba(196, 80, 58, .22) 7px, rgba(196, 80, 58, .22) 9px);
}
.slot.booked .slot__x { display: block; }
.slot__x {
  display: none; position: absolute; inset: 0; place-items: center; display: none;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: var(--danger);
}
.slot.booked .slot__x { display: grid; }
.slot.booked .slot__t { opacity: .25; }

.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 12px; color: var(--ink-dim); font-family: var(--font-mono); }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 14px; height: 14px; border-radius: 4px; border: 1px solid var(--line); }
.legend i.av { background: var(--bg); }
.legend i.se { background: var(--gold); border-color: var(--gold); }
.legend i.bk { background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(196,80,58,.35) 4px, rgba(196,80,58,.35) 6px); border-color: var(--danger-dim); }

/* Duration counter */
.counter { display: inline-flex; align-items: center; gap: 18px; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 8px 10px; }
.counter button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); font-size: 18px; line-height: 1; transition: all .2s var(--ease); }
.counter button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.counter__val { font-family: var(--font-mono); font-size: 18px; min-width: 84px; text-align: center; }
.counter__val small { display: block; font-size: 10px; color: var(--ink-dim); }

.pane-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }

/* Summary rail */
.summary { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 1080px) { .summary { position: static; } }
.summary h3 { font-size: 20px; margin-bottom: 4px; }
.summary__eye { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.summary__rows { margin: 18px 0; display: flex; flex-direction: column; gap: 12px; }
.srow { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.srow .k { color: var(--ink-dim); }
.srow .v { text-align: right; }
.summary__rooms { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.summary__rooms .empty { color: var(--ink-dim); font-style: italic; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.summary__total .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
.summary__total .amt { font-family: var(--font-display); font-size: 30px; color: var(--gold); }
.summary__note { font-size: 11.5px; color: var(--ink-dim); margin-top: 14px; line-height: 1.5; }

/* Pre-order menu (step 2) */
.menu-block { margin-bottom: 28px; }
.menu-block > h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 4px; }
.menu-block > p { font-size: 12.5px; color: var(--ink-dim); margin-bottom: 14px; }
.order-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.order-item:last-child { border-bottom: 0; }
.order-item__info { flex: 1; }
.order-item__name { font-size: 15px; }
.order-item__desc { font-size: 12px; color: var(--ink-dim); }
.order-item__price { font-family: var(--font-mono); font-size: 13px; color: var(--gold); white-space: nowrap; }
.order-item.sold-out { opacity: .5; }
.soldout-badge { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: var(--danger); border: 1px solid var(--danger-dim); padding: 2px 7px; border-radius: 100px; margin-left: 8px; }
.qty { display: inline-flex; align-items: center; gap: 10px; }
.qty button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); font-size: 16px; line-height: 1; transition: all .2s; }
.qty button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.qty__n { font-family: var(--font-mono); min-width: 22px; text-align: center; }
.order-total { display: flex; justify-content: space-between; align-items: baseline; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin: 8px 0 4px; }
.order-total .amt { font-family: var(--font-display); font-size: 26px; color: var(--gold); }
.skip-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--ink-dim); border-bottom: 1px solid var(--line); }
.skip-link:hover { color: var(--gold); }

/* Confirmation */
.confirm { text-align: center; padding: 12px 0; }
.confirm__ref { font-family: var(--font-mono); font-size: 30px; letter-spacing: .1em; color: var(--gold); margin: 10px 0 6px; }
.confirm__check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); font-size: 30px; }
.confirm__card { text-align: left; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin: 22px 0; }
.confirm__msg { color: var(--ink-dim); font-size: 14px; }

/* validation toast */
.form-error { color: var(--danger); font-size: 13px; margin-top: 12px; min-height: 18px; }

/* ============================================================
   HOURS & CONTACT
   ============================================================ */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--ink-dim); }
.hours-row .time { font-family: var(--font-mono); font-size: 13px; }
.contact-line { display: flex; gap: 14px; padding: 12px 0; align-items: baseline; }
.contact-line .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); min-width: 70px; }
.contact-line a, .contact-line span { font-size: 15px; }
.contact-line a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__logo { height: 34px; margin-bottom: 16px; }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer p, .footer a { font-size: 14px; color: var(--ink-dim); line-height: 1.9; }
.footer a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.footer__social a:hover { border-color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--ink-dim); }

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.subhero { min-height: 60vh; display: flex; align-items: center; position: relative; padding-top: var(--nav-h); overflow: hidden; }
.subhero h1 { font-size: clamp(36px, 5.5vw, 68px); margin: 20px 0 18px; }
.subhero p { color: var(--ink-dim); max-width: 560px; font-size: 18px; }

.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp-table th, .cmp-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.cmp-table thead th { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: var(--bg-alt); }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table tbody tr:hover { background: rgba(212, 165, 72, .04); }
.cmp-table .room-name { font-family: var(--font-display); font-size: 17px; color: var(--ink); }
.cmp-table .price { font-family: var(--font-mono); color: var(--gold); }

.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }
.detail:nth-child(even) .detail__media { order: 2; }
@media (max-width: 800px) { .detail { grid-template-columns: 1fr; } .detail:nth-child(even) .detail__media { order: 0; } }
.detail__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.detail__media img { width: 100%; height: 100%; object-fit: cover; }
.detail__body h3 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 14px; }
.detail__specs { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.detail__specs li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail__specs .k { color: var(--ink-dim); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.detail__specs .v { color: var(--ink); text-align: right; }
.detail__specs .v.price { color: var(--gold); font-family: var(--font-mono); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.hh-banner {
  background: linear-gradient(90deg, rgba(212,165,72,.16), rgba(212,165,72,.06));
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 14px 26px; display: inline-flex; align-items: center; gap: 12px; margin-top: 24px;
  font-size: 14px;
}
.hh-banner strong { color: var(--gold-bright); }
.hh-banner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: var(--sticky-bg); backdrop-filter: blur(12px);
  border-block: 1px solid var(--line); padding: 12px 0;
}
.menu-nav__inner { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; white-space: nowrap; padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-dim); transition: all .2s; }
.menu-nav a:hover, .menu-nav a.active { color: var(--gold); border-color: var(--line-strong); background: rgba(212,165,72,.06); }

.menu-sec { display: grid; grid-template-columns: 320px 1fr; gap: 48px; padding: clamp(48px, 7vw, 84px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 60px); }
@media (max-width: 800px) { .menu-sec { grid-template-columns: 1fr; gap: 24px; } }
.menu-sec__head { position: sticky; top: calc(var(--nav-h) + 80px); height: max-content; }
@media (max-width: 800px) { .menu-sec__head { position: static; } }
.menu-sec__head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0; }
.menu-sec__head p { color: var(--ink-dim); font-size: 15px; }

.menu-list { display: flex; flex-direction: column; }
.menu-row { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-row:last-child { border-bottom: 0; }
.menu-row__name { font-size: 16px; white-space: nowrap; }
.menu-row__desc { font-size: 12.5px; color: var(--ink-dim); }
.menu-row__lead { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); min-width: 20px; }
.menu-row__price { font-family: var(--font-mono); font-size: 14px; color: var(--gold); white-space: nowrap; text-align: right; }
.menu-row.sold .menu-row__name { color: var(--ink-dim); }

/* flavor chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 20px; }
.chip { font-family: var(--font-mono); font-size: 12px; padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink); background: var(--bg-alt); }
.chip.hot { border-color: var(--danger-dim); color: var(--hot); }
.chip.hot::after { content: ' 🌶'; }

/* pricing matrix */
.matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 4px 0 16px; }
@media (max-width: 520px) { .matrix { grid-template-columns: repeat(2, 1fr); } }
.matrix__cell { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 16px; text-align: center; }
.matrix__cell .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); }
.matrix__cell .val { font-family: var(--font-display); font-size: 22px; color: var(--gold); margin: 6px 0 2px; }
.matrix__cell .sub { font-size: 11px; color: var(--ink-dim); }

/* rice mini table */
.mini-table { width: 100%; border-collapse: collapse; margin: 6px 0 8px; }
.mini-table th, .mini-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 14px; text-align: left; }
.mini-table th { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.mini-table td.price { font-family: var(--font-mono); color: var(--gold); }

/* beer cards */
.beer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 6px; }
@media (max-width: 900px) { .beer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .beer-grid { grid-template-columns: 1fr; } }
.beer { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: relative; }
.beer__name { font-family: var(--font-display); font-size: 20px; }
.beer__meta { font-family: var(--font-mono); font-size: 11px; color: var(--gold); margin: 6px 0 12px; }
.beer__desc { font-size: 13px; color: var(--ink-dim); }
.beer.sold { opacity: .6; }
.beer .soldout-badge { position: absolute; top: 16px; right: 16px; margin: 0; }

.note-block { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; font-size: 13px; color: var(--ink-dim); }
.note-block strong { color: var(--ink); }

.cta-band { text-align: center; padding: clamp(56px, 9vw, 110px) 0; background: radial-gradient(800px 400px at 50% 0%, rgba(212,165,72,.1), transparent 60%); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--ink-dim); max-width: 540px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* utility */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Booking: 50% deposit computation + Terms/House-Rules gate (step 3) ===== */
.summary__deposit {
  display: flex; align-items: baseline; justify-content: space-between; margin-top: 8px;
}
.summary__deposit .lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-dim);
}
.summary__deposit .amt { font-family: var(--font-mono); font-size: 17px; color: var(--gold); }

.book-gate {
  margin: 22px 0 6px; padding: 18px;
  background: var(--bg-alt); border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.deposit-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: linear-gradient(180deg, rgba(212, 165, 72, .12), rgba(212, 165, 72, .04));
}
.deposit-callout__head { display: flex; flex-direction: column; gap: 3px; }
.deposit-callout__lbl { font-weight: 600; font-size: 15px; }
.deposit-callout__sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-dim);
}
.deposit-callout__amt { font-family: var(--font-mono); font-size: 26px; color: var(--gold); white-space: nowrap; }
.deposit-callout__note { font-size: 13px; color: var(--ink-dim); margin: 11px 2px 0; line-height: 1.55; }

.rules { margin: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rules > summary {
  cursor: pointer; padding: 13px 2px; list-style: none; user-select: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.rules > summary::-webkit-details-marker { display: none; }
.rules > summary::after { content: '+'; color: var(--ink-dim); font-size: 18px; line-height: 1; }
.rules[open] > summary::after { content: '\2013'; }
.rules__body { padding: 2px 2px 14px; }
.rules__body h5 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin: 14px 0 6px;
}
.rules__body ul { margin: 0; padding-left: 18px; }
.rules__body li { font-size: 13px; color: var(--ink-dim); margin: 6px 0; line-height: 1.55; }

.agree {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; cursor: pointer; font-size: 14px; line-height: 1.5;
}
.agree + .agree { border-top: 1px solid var(--line); }
.agree input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 1px;
  border: 1.5px solid var(--line-strong); border-radius: 6px; background: var(--bg);
  cursor: pointer; display: grid; place-content: center; transition: all .15s var(--ease);
}
.agree input[type="checkbox"]::before {
  content: '\2713'; font-size: 13px; font-weight: 700; color: var(--bg);
  transform: scale(0); transition: transform .12s var(--ease);
}
.agree input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.agree input[type="checkbox"]:checked::before { transform: scale(1); }
.agree input[type="checkbox"]:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.agree:hover input[type="checkbox"] { border-color: var(--gold); }
