/* ============================================================
   components.css — UI components (cinematic dark luxury)
   ============================================================ */

/* ---------- Disclosure strip (18+ top) ---------- */
.disclosure {
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
  font-size: var(--fs-cap);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
}
.disclosure .row {
  width: var(--maxw);
  margin: 0 auto;
  padding: 7px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.disclosure a { color: var(--accent-ink); }
.disclosure a:hover { color: var(--accent-bright); }
.disclosure .sep { opacity: 0.4; padding: 0 4px; }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 6, 4, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header .bar {
  width: var(--maxw);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.brand .mark svg { width: 100%; height: 100%; }
.brand .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
  line-height: 1.1;
}
.brand .tag {
  font-size: 0.68rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-top: 2px;
}

.anchor-strip {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.anchor-strip a {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.anchor-strip a:hover { color: var(--ink); text-decoration: none; }
.anchor-strip a.is-active { color: var(--accent-ink); }
.anchor-strip a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.age-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  color: var(--accent-ink);
  white-space: nowrap;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink);
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--s-5) 20px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  color: var(--text);
  border-bottom: 1px solid var(--rule);
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 980px) {
  .anchor-strip { display: none; }
  .menu-btn { display: inline-flex; }
  .site-header .bar { gap: var(--s-3); }
  .brand .tag { display: none; }
  .header-actions .btn-ghost { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-gold:hover { background: var(--accent-bright); color: var(--on-accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--ink); background: var(--accent-tint); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

/* ---------- Timepiece hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-9) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #080604;
  background-image:
    radial-gradient(120% 90% at 78% 88%, rgba(199,164,107,0.22), transparent 55%),
    radial-gradient(90% 70% at 12% 8%, rgba(199,164,107,0.08), transparent 60%),
    linear-gradient(160deg, rgba(14,10,7,0.55) 0%, rgba(8,6,4,0.75) 55%, rgba(5,4,3,0.92) 100%),
    url("../../images/hero-abstract.jpg");
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-blend-mode: normal, normal, normal, overlay;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1px 1px at 20% 30%, rgba(244,239,231,0.5), transparent),
              radial-gradient(1px 1px at 70% 60%, rgba(244,239,231,0.35), transparent),
              radial-gradient(1px 1px at 40% 80%, rgba(244,239,231,0.4), transparent),
              radial-gradient(1px 1px at 85% 25%, rgba(244,239,231,0.3), transparent),
              radial-gradient(1px 1px at 55% 45%, rgba(244,239,231,0.25), transparent);
  background-size: 600px 600px;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: var(--s-7);
  text-align: center;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.4vw + 1.4rem, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.hero-title em { font-style: italic; color: var(--accent-soft); }
.hero-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.4rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Time-wheel */
.time-wheel {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.time-wheel svg { width: 100%; height: 100%; overflow: visible; }
.time-wheel .tw-ring { fill: none; stroke: var(--border); stroke-width: 1; }
.time-wheel .tw-ring-soft { fill: none; stroke: var(--rule); stroke-width: 1; stroke-dasharray: 2 6; }
.time-wheel .tw-tick { stroke: var(--accent-line); stroke-width: 1.5; }
.time-wheel .tw-tick-major { stroke: var(--accent); stroke-width: 2; }
.time-wheel .tw-hand { stroke: var(--accent); stroke-width: 2; stroke-linecap: round; transition: transform 600ms var(--ease-soft); transform-origin: 200px 200px; }
.time-wheel .tw-center { fill: var(--accent); }
.time-wheel .tw-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  fill: var(--text-muted);
  text-transform: uppercase;
}
.time-wheel .tw-label-time {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  fill: var(--accent-ink);
}
.time-wheel .tw-node { fill: var(--surface); stroke: var(--accent); stroke-width: 1.5; transition: fill 300ms var(--ease); }
.time-wheel .tw-node.is-active { fill: var(--accent); }
.time-wheel .tw-center-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  fill: var(--ink);
  text-anchor: middle;
}
.time-wheel .tw-center-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  fill: var(--text-faint);
  text-anchor: middle;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .time-wheel .tw-hand { transition: none; }
}

/* ---------- Journey layout (time-rail + steps) ---------- */
.journey {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-7);
  width: var(--maxw);
  margin: 0 auto;
  padding: var(--s-9) 0;
}
.time-rail {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  padding: var(--s-5) 0;
}
.time-rail .rail-title {
  font-size: 0.7rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
.time-rail ol {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.time-rail ol::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--rule);
}
.time-rail li { margin: 0; }
.time-rail a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-faint);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.time-rail a::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--text-faint);
  transition: all var(--dur) var(--ease);
}
.time-rail a .t {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 46px;
}
.time-rail a .n { font-size: 0.85rem; }
.time-rail a:hover { color: var(--text); text-decoration: none; }
.time-rail a.is-active { color: var(--ink); }
.time-rail a.is-active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.time-rail a.is-active .t { color: var(--accent-ink); }

.journey-main { min-width: 0; }
.journey-step {
  min-height: 70vh;
  padding: var(--s-8) 0 var(--s-9);
  border-top: 1px solid var(--rule);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.journey-step:first-child { border-top: none; padding-top: 0; }
.step-time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-ink);
  margin: 0 0 6px;
}
.step-title {
  font-size: clamp(1.9rem, 1.2vw + 1.3rem, 2.8rem);
  margin: 0 0 var(--s-5);
}

@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr; gap: 0; }
  .time-rail { position: static; padding: var(--s-5) 0 var(--s-6); }
  .time-rail ol { display: flex; flex-wrap: wrap; gap: 10px; }
  .time-rail ol::before { display: none; }
  .time-rail a { padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--r-pill); font-size: 0.8rem; }
  .time-rail a::before { display: none; }
  .time-rail a .t { min-width: 0; }
  .journey-step { min-height: auto; }
}

/* ---------- Chapter hero (full-bleed) ---------- */
.chapter-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-lg);
  margin: var(--s-7) 0;
}
.chapter-hero .ch-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.chapter-hero .ch-grad {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,6,4,0.25) 0%, rgba(8,6,4,0.55) 55%, rgba(8,6,4,0.95) 100%);
}
.chapter-hero .ch-body {
  padding: var(--s-7);
  max-width: 620px;
}
.chapter-hero .ch-cap {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-size: 0.7rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(8,6,4,0.6);
  padding: 5px 10px;
  border-left: 2px solid var(--accent);
}
.chapter-hero h2 {
  font-size: clamp(1.8rem, 1.4vw + 1.1rem, 2.6rem);
  color: var(--ink);
  margin: 0 0 8px;
}
.chapter-hero p {
  color: var(--text);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  max-width: 52ch;
}

/* ---------- Breakout quote panel ---------- */
.quote-panel {
  border-left: 2px solid var(--accent);
  padding: var(--s-5) 0 var(--s-5) var(--s-6);
  margin: var(--s-7) 0;
  max-width: 64ch;
}
.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 0.8vw + 1rem, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
}
.quote-panel cite {
  display: block;
  margin-top: var(--s-4);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Sticky verdict card ---------- */
.verdict-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: linear-gradient(160deg, var(--surface-raise), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-2);
  max-width: 340px;
  margin-left: auto;
}
.verdict-card .vc-eyebrow {
  font-size: 0.68rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 600;
  margin: 0 0 10px;
}
.verdict-card .vc-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--s-4);
}
.verdict-card .vc-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.verdict-card .vc-num small { font-size: 1.1rem; color: var(--text-faint); font-weight: 400; }
.verdict-card .vc-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.verdict-card .vc-bars { margin: var(--s-4) 0; }
.verdict-card .vc-bars .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 8px;
  align-items: center;
}
.verdict-card .vc-bars .row .lbl { color: var(--text-muted); }
.verdict-card .vc-bars .row .val { color: var(--accent-ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.verdict-card .vc-bars .track {
  grid-column: 1 / -1;
  height: 3px;
  background: var(--surface-sunk);
  border-radius: 2px;
  overflow: hidden;
}
.verdict-card .vc-bars .track > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 2px;
  transition: width 900ms var(--ease-soft);
}
.verdict-card .vc-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 var(--s-4);
  font-style: italic;
  font-family: var(--font-display);
}
.verdict-card .btn { width: 100%; justify-content: center; }
@media (max-width: 880px) {
  .verdict-card { position: static; max-width: none; margin: var(--s-5) 0 0; }
}

/* ---------- Two-column step body (text + visual) ---------- */
.step-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--s-7);
  align-items: start;
}
.step-body .sb-text { max-width: 60ch; }
.step-body .sb-visual { position: sticky; top: calc(var(--header-h) + 24px); }
.step-body .sb-visual img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  filter: saturate(0.92) contrast(1.05);
}
.step-body .sb-visual .vtag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: var(--track-cap);
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 880px) {
  .step-body { grid-template-columns: 1fr; }
  .step-body .sb-visual { position: static; }
}

/* ---------- Callout ---------- */
.callout {
  background: var(--accent-tint);
  border-left: 2px solid var(--accent);
  padding: var(--s-5) var(--s-6);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--s-6) 0;
  max-width: 64ch;
}
.callout h4 { margin: 0 0 6px; }
.callout p { margin: 0; font-size: 0.95rem; color: var(--text); }

/* ---------- Night dining cards (time-of-night) ---------- */
.night-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.night-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  min-width: 0;
}
.night-card:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.night-card .nc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.night-card .nc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.05); }
.night-card .nc-time {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(8,6,4,0.7);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--accent-line);
}
.night-card .nc-body { padding: var(--s-5); }
.night-card .nc-body h4 { margin: 0 0 6px; color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; text-transform: none; letter-spacing: 0; font-weight: 600; }
.night-card .nc-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0 0 var(--s-3); }
.night-card .nc-foot { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-faint); border-top: 1px solid var(--rule); padding-top: var(--s-3); }
.night-card .nc-foot .price { color: var(--accent-ink); font-weight: 600; }

/* ---------- Rooms section ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.room-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  min-width: 0;
}
.room-card:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.room-card .rc-img { aspect-ratio: 4/3; overflow: hidden; }
.room-card .rc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.05); }
.room-card .rc-body { padding: var(--s-5); }
.room-card .rc-body h4 { font-family: var(--font-display); font-size: 1.2rem; text-transform: none; letter-spacing: 0; color: var(--ink); margin: 0 0 6px; font-weight: 600; }
.room-card .rc-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 var(--s-3); }
.room-card .rc-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--rule); padding-top: var(--s-3); }
.room-card .rc-foot .score { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-ink); font-weight: 600; }
.room-card .rc-foot .score small { font-size: 0.7rem; color: var(--text-faint); }
.room-card .rc-foot .from { font-size: 0.78rem; color: var(--text-faint); }

/* ---------- Wellness section ---------- */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.wellness-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  min-width: 0;
}
.wellness-card:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.wellness-card .wc-img { aspect-ratio: 4/3; overflow: hidden; }
.wellness-card .wc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.05); }
.wellness-card .wc-body { padding: var(--s-5); }
.wellness-card .wc-body h4 { font-family: var(--font-display); font-size: 1.2rem; text-transform: none; letter-spacing: 0; color: var(--ink); margin: 0 0 6px; font-weight: 600; }
.wellness-card .wc-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 var(--s-3); }
.wellness-card .wc-body .hours { font-size: 0.78rem; color: var(--accent-ink); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Location section ---------- */
.location-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: start;
  margin: var(--s-6) 0;
}
.location-map {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-sunk);
  aspect-ratio: 4/3;
}
.location-map svg { width: 100%; height: 100%; }
.location-notes { display: flex; flex-direction: column; gap: var(--s-4); }
.location-notes .note {
  border-left: 2px solid var(--accent-line);
  padding: 4px 0 4px var(--s-4);
}
.location-notes .note h4 { margin: 0 0 4px; }
.location-notes .note p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin: var(--s-6) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5) 0;
}
.stat-band .stat .k { font-size: 0.72rem; letter-spacing: var(--track-cap); text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.stat-band .stat .v { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.stat-band .stat .v small { font-size: 0.7rem; color: var(--text-faint); font-weight: 400; }
@media (max-width: 760px) {
  .location-block { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery (time-ordered) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: var(--s-4);
  margin: var(--s-6) 0;
  max-width: 100%;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--surface);
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-soft); filter: saturate(0.92) contrast(1.05); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-4) var(--s-4) var(--s-3);
  background: linear-gradient(180deg, transparent, rgba(8,6,4,0.92));
  font-size: 0.78rem;
  color: var(--text-muted);
}
.gallery-item .cap b { display: block; font-size: 0.68rem; letter-spacing: var(--track-cap); text-transform: uppercase; color: var(--accent-ink); margin-bottom: 3px; font-weight: 600; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.portrait { grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.portrait, .gallery-item.tall { grid-row: span 2; }
}

/* ---------- Plan your stay form (multi-step) ---------- */
.plan-form {
  background: linear-gradient(165deg, var(--surface-raise), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow-2);
  max-width: 640px;
  margin: 0 auto;
}
.plan-steps {
  display: flex;
  gap: 6px;
  margin-bottom: var(--s-6);
  list-style: none;
  padding: 0;
}
.plan-steps li {
  flex: 1;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rule);
  position: relative;
  font-weight: 600;
}
.plan-steps li .pn {
  display: inline-block;
  width: 20px; height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: var(--surface-sunk);
  border: 1px solid var(--rule);
  font-size: 0.68rem;
  margin-right: 6px;
  color: var(--text-faint);
}
.plan-steps li.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.plan-steps li.is-active .pn {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.plan-steps li.is-done .pn {
  background: var(--accent-tint);
  color: var(--accent-ink);
  border-color: var(--accent-line);
}

.form-panel { display: none; }
.form-panel.is-active { display: block; animation: fadeIn 360ms var(--ease-soft); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .form-panel.is-active { animation: none; } }

.form-panel h3 {
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.form-panel .fp-deck {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 var(--s-5);
  font-family: var(--font-display);
  font-style: italic;
}

.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.field .req { color: var(--accent-ink); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-sunk);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 11px 13px;
  transition: border-color var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-soft);
}
.field textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  user-select: none;
}
.check-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-pill:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--ink);
}
.check-pill::before {
  content: "";
  width: 14px; height: 14px;
  border: 1.5px solid var(--text-faint);
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}
.check-pill:has(input:checked)::before {
  background: var(--accent);
  border-color: var(--accent);
}
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin: var(--s-5) 0; }
.consent-row input { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.consent-row label { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.form-notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--surface-sunk);
  border-left: 2px solid var(--warn);
  padding: 10px 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: var(--s-5) 0;
}
.form-nav { display: flex; gap: 10px; justify-content: space-between; margin-top: var(--s-5); }
.form-nav .btn-ghost { background: transparent; }
.form-error { color: var(--warn-soft); font-size: 0.8rem; margin-top: 6px; min-height: 1em; }

/* ---------- Responsible-gambling safety panel ---------- */
.safety-panel {
  background: linear-gradient(160deg, var(--surface-raise), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  margin: var(--s-8) 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-7);
  box-shadow: var(--shadow-2);
}
.safety-stance h3 { font-size: 1.6rem; margin: 0 0 var(--s-3); }
.safety-stance p { font-size: 0.95rem; color: var(--text-muted); margin: 0 0 var(--s-4); max-width: 50ch; }
.safety-stance .badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--warn);
  color: var(--warn-soft);
  border-radius: var(--r-pill);
}
.safety-actions { display: flex; flex-direction: column; gap: var(--s-4); }
.safety-actions .sa {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface-sunk);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-4);
}
.safety-actions .sa .ico { color: var(--warn-soft); font-size: 1.2rem; line-height: 1; }
.safety-actions .sa h4 { margin: 0 0 4px; color: var(--ink); }
.safety-actions .sa p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.safety-links { display: flex; flex-wrap: wrap; gap: 8px; }
.safety-links a {
  font-size: 0.82rem;
  padding: 8px 14px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  color: var(--accent-ink);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.safety-links a:hover { background: var(--accent-tint); color: var(--ink); text-decoration: none; }
@media (max-width: 760px) { .safety-panel { grid-template-columns: 1fr; } }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: var(--s-6) 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent-ink);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item[open] summary .toggle { transform: rotate(45deg); border-color: var(--accent); }
.faq-item summary:hover { color: var(--accent-soft); }
.faq-item .faq-a {
  padding: 0 0 var(--s-5);
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 62ch;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-sunk);
  border-top: 1px solid var(--rule);
  padding: var(--s-8) 0 var(--s-6);
  position: relative;
  z-index: 2;
}
.fbar { width: var(--maxw); margin: 0 auto; }
.ftop {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--rule);
}
.fbrand .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.fbrand p { font-size: 0.85rem; color: var(--text-muted); max-width: 40ch; }
.site-footer h4 { margin: 0 0 var(--s-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a { color: var(--text-muted); font-size: 0.88rem; text-decoration: none; }
.site-footer li a:hover { color: var(--accent-ink); text-decoration: none; }
.fdisclaim {
  padding: var(--s-5) 0;
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.6;
  border-bottom: 1px solid var(--rule);
}
.fdisclaim a { color: var(--accent-ink); }
.fbase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  font-size: 0.78rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.fbase .legal { display: flex; gap: 16px; }
.fbase .legal a { color: var(--text-muted); }
.ai-disclosure {
  font-size: 0.74rem;
  color: var(--text-faint);
  font-style: italic;
  margin-top: var(--s-3);
}
@media (max-width: 880px) {
  .ftop { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ftop { grid-template-columns: 1fr; }
}

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface-raise);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-2);
  z-index: 160;
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease-soft);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { margin: 0 0 6px; }
.cookie p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 var(--s-4); }
.cookie p a { color: var(--accent-ink); }
.cookie .actions { display: flex; gap: 10px; }
.cookie .actions .btn { flex: 1; justify-content: center; }
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,4,3,0.94);
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 90vw; max-height: 86vh; text-align: center; }
.lightbox img { max-width: 90vw; max-height: 76vh; border-radius: var(--r-md); border: 1px solid var(--border-strong); }
.lightbox figcaption { color: var(--text-muted); margin-top: var(--s-4); font-size: 0.88rem; font-family: var(--font-display); font-style: italic; }
.lb-close, .lb-nav {
  position: absolute;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lb-close:hover, .lb-nav:hover { border-color: var(--accent); color: var(--accent-ink); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Subpage components ---------- */
.sub-hero { padding: var(--s-8) 0 var(--s-6); border-bottom: 1px solid var(--rule); }
.sub-hero .crumbs { font-size: 0.78rem; color: var(--text-faint); margin-bottom: var(--s-4); letter-spacing: 0.02em; }
.sub-hero .crumbs a { color: var(--text-muted); }
.sub-hero .crumbs .sep { padding: 0 6px; opacity: 0.5; }
.sub-hero .crumbs .here { color: var(--accent-ink); }
.sub-hero h1 { font-size: clamp(2rem, 1.4vw + 1.3rem, 3.2rem); margin: 0 0 var(--s-3); }
.sub-hero h1 em { font-style: italic; color: var(--accent-soft); }
.sub-hero .deck { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; margin: 0 0 var(--s-4); }
.sub-hero .back { font-size: 0.85rem; color: var(--accent-ink); }

.chapter-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
}
.chapter-index a {
  font-size: 0.82rem;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.chapter-index a:hover { border-color: var(--accent); color: var(--ink); text-decoration: none; }

.sub-section { padding: var(--s-7) 0; border-bottom: 1px solid var(--rule); scroll-margin-top: calc(var(--header-h) + 20px); }
.sub-section:last-child { border-bottom: none; }
.sub-section h2 { font-size: clamp(1.5rem, 0.8vw + 1.2rem, 2.1rem); margin-bottom: var(--s-4); }

.related-chapters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
  padding: var(--s-7) 0;
}
.related-chapters a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.related-chapters a:hover { border-color: var(--accent-line); transform: translateY(-2px); text-decoration: none; }
.related-chapters .rc-k { font-size: 0.68rem; letter-spacing: var(--track-cap); text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.related-chapters .rc-t { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.related-chapters .rc-d { font-size: 0.85rem; color: var(--text-muted); }

.mini-score {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: var(--s-5) 0;
}
.mini-score .num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--accent-ink); line-height: 1; }
.mini-score .num small { font-size: 1rem; color: var(--text-faint); font-weight: 400; }
.mini-score .lbl { font-size: 0.72rem; letter-spacing: var(--track-cap); text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.mini-score p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Legal page */
.legal { padding: var(--s-7) 0; }
.legal .container { width: var(--maxw-narrow); }
.legal h1 { font-size: clamp(1.9rem, 1.2vw + 1.2rem, 2.8rem); margin-bottom: var(--s-3); }
.legal .updated { font-size: 0.82rem; color: var(--text-faint); margin-bottom: var(--s-6); font-style: italic; font-family: var(--font-display); }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-5); margin-bottom: var(--s-6); }
.toc h2 { font-size: 0.78rem; letter-spacing: var(--track-cap); text-transform: uppercase; color: var(--text-faint); margin: 0 0 var(--s-3); font-family: var(--font-sans); }
.toc ol { padding-left: 1.2em; margin: 0; }
.toc li { margin-bottom: 6px; }
.toc a { font-size: 0.9rem; color: var(--text-muted); }
.legal .link { color: var(--accent-ink); }

.thanks { text-align: center; padding: var(--s-9) 0; }
.thanks .mark { color: var(--accent); margin-bottom: var(--s-5); display: inline-flex; }
.thanks h1 { font-size: clamp(2rem, 1.4vw + 1.3rem, 3rem); margin-bottom: var(--s-4); }
.thanks p { max-width: 56ch; margin: 0 auto var(--s-4); color: var(--text-muted); }
.thanks .muted { font-size: 0.88rem; }
.thanks .actions { display: flex; gap: 12px; justify-content: center; margin-top: var(--s-5); flex-wrap: wrap; }

/* Section header band (used on homepage sections outside journey) */
.section-head { max-width: 64ch; margin-bottom: var(--s-6); }
.section-head h2 { font-size: clamp(1.9rem, 1.2vw + 1.3rem, 2.8rem); margin: 0 0 var(--s-3); }
.section-head p { font-size: 1rem; color: var(--text-muted); margin: 0; }

/* Journey main: steps + sticky verdict card */
.journey-main { display: grid; grid-template-columns: 1fr 340px; gap: var(--s-7); align-items: start; }
.journey-steps { min-width: 0; }
.journey-aside { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
@media (max-width: 1100px) {
  .journey-main { grid-template-columns: 1fr; }
  .journey-aside { position: static; }
}
