/* ============================================================
   components.css — auroragrandresort.com dossier UI
   Single-property editorial review. Retro-Future Casino Moderne.
   ============================================================ */

/* ---------- Top disclosure strip ---------- */
.disclosure {
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.disclosure .row {
  width: min(100% - 24px, var(--maxw));
  margin-inline: auto;
  padding: 7px 12px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  justify-content: center;
}
.disclosure a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.disclosure .sep { color: var(--text-faint); }

/* ---------- Sticky header + reading progress ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120;
  background: rgba(245,230,200,0.06); pointer-events: none;
}
.progress > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(to right, var(--accent), var(--accent-bright), var(--neon));
  transition: width 80ms linear;
}
.site-header {
  position: sticky; top: 0; z-index: 110;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  width: min(100% - 24px, var(--maxw));
  margin-inline: auto;
  padding: 12px 12px 0;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 12px;
}
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--accent-bright), var(--accent) 55%, #8a5a1e);
  color: var(--on-accent); box-shadow: var(--shadow-gold);
}
.brand .mark svg { width: 22px; height: 22px; }
.brand .name {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1;
}
.brand .tag {
  display: block; font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: var(--track-cap); color: var(--text-faint); margin-top: 4px; font-weight: 600;
}
.anchor-strip {
  display: flex; gap: 2px; justify-content: center; overflow-x: auto;
  padding-bottom: 10px; scrollbar-width: none; min-width: 0;
}
.anchor-strip::-webkit-scrollbar { display: none; }
.anchor-strip a {
  white-space: nowrap; padding: 6px 10px; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid transparent; transition: all var(--dur) var(--ease);
}
.anchor-strip a:hover { color: var(--ink); background: var(--surface-2); }
.anchor-strip a.is-active { color: var(--accent-bright); background: var(--accent-tint); border-color: var(--accent-line); }
.header-actions { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; }
.age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: var(--r-pill); padding: 6px 12px;
}
.age-badge .num {
  font-family: var(--font-display); color: var(--accent-bright); font-weight: 600;
}
.menu-btn {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--ink);
  place-items: center;
}
.menu-btn svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 0 12px 14px; border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 8px; border-bottom: 1px solid var(--rule); color: var(--ink); font-weight: 600;
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 980px) {
  .site-header .bar { grid-template-columns: auto auto; }
  .anchor-strip { grid-column: 1 / -1; order: 3; justify-content: flex-start; }
  .header-actions .age-badge { display: none; }
}
@media (max-width: 720px) {
  .anchor-strip { display: none; }
  .menu-btn { display: grid; }
  .header-actions .btn { display: none; }
}

/* ---------- 02 · Dossier Cover (hero alternative) ---------- */
.dossier-cover {
  position: relative;
  padding-block: clamp(40px, 6vw, 84px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(232,93,117,0.08), transparent 60%),
    radial-gradient(70% 60% at 10% 10%, rgba(217,164,65,0.10), transparent 55%);
}
.dossier-cover .grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px); align-items: center;
}
.cover-copy { grid-column: 1 / 6; }
.cover-copy .kicker {
  font-size: var(--fs-cap); text-transform: uppercase; letter-spacing: var(--track-cap);
  color: var(--accent-ink); font-weight: 700; display: inline-flex; gap: 10px; align-items: center;
}
.cover-copy .kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.cover-copy h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem); line-height: 0.98; margin-top: 16px;
  letter-spacing: -0.025em; font-weight: 500;
}
.cover-copy h1 em { font-style: italic; color: var(--accent-bright); font-weight: 400; }
.cover-copy .deck {
  font-size: 1.22rem; color: var(--text-muted); margin-top: 20px; max-width: 38ch; line-height: 1.5;
}
.cover-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; font-size: 0.86rem; color: var(--text-faint); }
.cover-meta b { color: var(--ink); font-weight: 600; }
.cover-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.cover-image {
  grid-column: 6 / 10;
  position: relative;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  aspect-ratio: 3 / 4;
  background: var(--surface-sunk);
}
.cover-image img { width: 100%; height: 100%; object-fit: cover; }
.cover-image .frame-corners::before,
.cover-image .frame-corners::after {
  content: ""; position: absolute; width: 22px; height: 22px; z-index: 2;
  border: 1px solid var(--accent-line);
}
.cover-image .frame-corners::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.cover-image .frame-corners::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.cover-image .caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 16px; font-size: 0.74rem; color: var(--text-faint);
  background: linear-gradient(to top, rgba(14,9,7,0.85), transparent);
}

.cover-rail {
  grid-column: 10 / 13;
  align-self: stretch;
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--border); padding-left: 22px;
}
.cover-rail .rail-title {
  font-size: var(--fs-cap); text-transform: uppercase; letter-spacing: var(--track-cap);
  color: var(--text-faint); font-weight: 700; margin-bottom: 14px;
}
.cover-rail dl { display: grid; gap: 0; }
.cover-rail dt {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-faint); font-weight: 600; padding: 12px 0 4px; border-top: 1px solid var(--rule);
}
.cover-rail dt:first-of-type { border-top: 0; padding-top: 0; }
.cover-rail dd { margin: 0; font-size: 0.96rem; color: var(--ink); font-weight: 500; }
.cover-rail dd .tick { color: var(--accent-bright); margin-right: 6px; }

.cover-disclosure {
  grid-column: 1 / -1; margin-top: clamp(24px, 3vw, 40px);
  padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface-sunk); color: var(--text-muted); font-size: 0.86rem;
  display: flex; gap: 12px; align-items: flex-start;
}
.cover-disclosure .ico { color: var(--accent-ink); flex: none; margin-top: 2px; }
.cover-disclosure a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 980px) {
  .cover-copy { grid-column: 1 / 8; }
  .cover-image { grid-column: 8 / 13; aspect-ratio: 4 / 5; }
  .cover-rail { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--border); padding-left: 0; padding-top: 22px; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .cover-rail .rail-title { width: 100%; }
  .cover-rail dl { grid-auto-flow: column; grid-auto-columns: minmax(140px, 1fr); gap: 18px; }
  .cover-rail dt { border-top: 0; padding-top: 0; }
}
@media (max-width: 680px) {
  .cover-copy, .cover-image { grid-column: 1 / -1; }
  .cover-image { aspect-ratio: 4 / 3; order: 2; }
  .cover-copy { order: 1; }
  .cover-rail dl { grid-auto-flow: row; grid-auto-columns: 1fr; }
}

/* ---------- 03 · Verdict Cockpit ---------- */
.verdict-cockpit {
  display: grid; grid-template-columns: 2.4fr 4.6fr 4fr;
  gap: clamp(20px, 2.4vw, 40px);
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, var(--surface-raise), var(--surface));
  box-shadow: var(--shadow-2);
  position: relative;
}
.verdict-cockpit::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--accent-line);
  border-radius: calc(var(--r-xl) - 8px); pointer-events: none; opacity: 0.5;
}
.verdict-score { position: relative; z-index: 1; }
.verdict-score .label {
  font-size: var(--fs-cap); text-transform: uppercase; letter-spacing: var(--track-cap);
  color: var(--text-faint); font-weight: 700;
}
.verdict-score .big {
  font-family: var(--font-display); font-size: clamp(4.4rem, 8vw, 6.4rem);
  line-height: 0.92; color: var(--accent-bright); font-weight: 500; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 6px; margin-top: 6px;
}
.verdict-score .big .of { font-size: 1.5rem; color: var(--text-faint); font-weight: 400; }
.verdict-score .seal {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600; color: var(--ink);
  padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--accent-line); background: var(--accent-tint);
}
.verdict-body { position: relative; z-index: 1; }
.verdict-body .vlabel { font-size: var(--fs-cap); text-transform: uppercase; letter-spacing: var(--track-cap); color: var(--accent-ink); font-weight: 700; }
.verdict-body p { font-size: 1.18rem; color: var(--ink); line-height: 1.45; margin-top: 8px; font-family: var(--font-display); font-weight: 400; }
.verdict-body .for { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.verdict-body .for .box { border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; background: var(--surface-sunk); }
.verdict-body .for .box h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-family: var(--font-sans); font-weight: 700; margin-bottom: 8px; }
.verdict-body .for .box.good h4 { color: var(--good); }
.verdict-body .for .box.warn h4 { color: var(--warn); }
.verdict-body .for .box p { font-size: 0.92rem; color: var(--text-muted); font-family: var(--font-sans); margin: 0; line-height: 1.45; }

.score-bars { position: relative; z-index: 1; }
.score-bars .blabel { font-size: var(--fs-cap); text-transform: uppercase; letter-spacing: var(--track-cap); color: var(--text-faint); font-weight: 700; margin-bottom: 14px; }
.score-bars ul { display: grid; gap: 11px; }
.score-bars li { display: grid; grid-template-columns: 8.5rem 1fr 2.4rem; gap: 12px; align-items: center; }
.score-bars li .name { font-size: 0.84rem; color: var(--text-muted); font-weight: 600; }
.score-bars li .track { height: 6px; border-radius: var(--r-pill); background: var(--surface-sunk); overflow: hidden; }
.score-bars li .track > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(to right, var(--accent), var(--accent-bright)); width: 0; transition: width 900ms var(--ease); }
.score-bars li .val { font-family: var(--font-display); font-size: 0.96rem; color: var(--ink); font-weight: 500; text-align: right; }
.score-bars li .pct { display: none; }

@media (max-width: 980px) {
  .verdict-cockpit { grid-template-columns: 1fr; }
  .verdict-body .for { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .score-bars li { grid-template-columns: 6.5rem 1fr 2rem; gap: 8px; }
}

/* ---------- 04 · The 60-Second Read ---------- */
.summary-shell {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: clamp(24px, 3vw, 48px);
}
.summary-body p { font-size: 1.08rem; line-height: 1.7; color: var(--text); margin-bottom: 1.1em; }
.summary-body p:first-child::first-letter {
  font-family: var(--font-display); font-size: 3.4rem; float: left; line-height: 0.86;
  padding: 6px 12px 0 0; color: var(--accent-bright); font-weight: 500;
}
.summary-facts { position: sticky; top: 104px; align-self: start; }
.facts-card {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface);
  padding: 22px; box-shadow: var(--shadow-1);
}
.facts-card h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: var(--track-cap); color: var(--accent-ink); font-family: var(--font-sans); font-weight: 700; margin-bottom: 14px; }
.facts-card dl { display: grid; gap: 0; }
.facts-card dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-weight: 600; padding: 11px 0 3px; border-top: 1px solid var(--rule); }
.facts-card dt:first-of-type { border-top: 0; padding-top: 0; }
.facts-card dd { margin: 0 0 4px; font-size: 0.96rem; color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .summary-shell { grid-template-columns: 1fr; }
  .summary-facts { position: static; }
}

/* ---------- 05 · Arrival / Location Orientation ---------- */
.arrival {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 3vw, 44px); align-items: stretch;
}
.arrival-map {
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface-sunk); min-height: 320px; position: relative;
  box-shadow: var(--shadow-1);
}
.arrival-map svg { width: 100%; height: 100%; display: block; }
.arrival-notes { display: flex; flex-direction: column; gap: 0; }
.arrival-notes .note { padding: 18px 0; border-top: 1px solid var(--rule); }
.arrival-notes .note:first-child { border-top: 0; padding-top: 0; }
.arrival-notes .note h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink); font-family: var(--font-sans); font-weight: 700; margin-bottom: 6px; }
.arrival-notes .note p { font-size: 1rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.stat-band {
  grid-column: 1 / -1; margin-top: 8px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  background: var(--surface);
}
.stat-band .stat { padding: 18px 20px; border-left: 1px solid var(--rule); }
.stat-band .stat:first-child { border-left: 0; }
.stat-band .stat .k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-weight: 600; }
.stat-band .stat .v { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-top: 4px; font-weight: 500; }
.stat-band .stat .v small { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-sans); }

@media (max-width: 860px) {
  .arrival { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--rule); }
  .stat-band .stat:nth-child(4) { border-top: 1px solid var(--rule); }
}

/* ---------- 06 · Property Walkthrough Timeline ---------- */
.walkthrough { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: clamp(16px, 2vw, 32px); }
.walk-rail { position: relative; }
.walk-rail::before { content: ""; position: absolute; left: 31px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(to bottom, var(--accent-line), transparent); }
.walk-steps { display: grid; gap: clamp(28px, 4vw, 56px); }
.walk-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 40px);
  align-items: center; border-top: 1px solid var(--rule); padding-top: clamp(28px, 3vw, 40px);
}
.walk-step:first-child { border-top: 0; padding-top: 0; }
.walk-step.flip .walk-text { order: 2; }
.walk-step.flip .walk-img { order: 1; }
.walk-step .step-n {
  font-family: var(--font-display); font-size: 0.9rem; color: var(--accent-bright); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.walk-step .step-n::before { content: ""; width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); display: inline-block; }
.walk-step h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin-bottom: 10px; }
.walk-step p { color: var(--text-muted); line-height: 1.6; }
.walk-step .reviewer-note {
  margin-top: 16px; padding: 12px 16px; border-left: 2px solid var(--accent);
  background: var(--surface-sunk); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.92rem; color: var(--ink); font-style: italic;
}
.walk-step .reviewer-note b { font-style: normal; color: var(--accent-ink); font-weight: 700; }
.walk-img {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4 / 3; background: var(--surface-sunk); box-shadow: var(--shadow-1);
}
.walk-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .walkthrough { grid-template-columns: 1fr; }
  .walk-rail::before { display: none; }
  .walk-step, .walk-step.flip .walk-text, .walk-step.flip .walk-img { grid-template-columns: 1fr; }
  .walk-step.flip .walk-text, .walk-step.flip .walk-img { order: initial; }
}

/* ---------- 07 · Casino Floor Assessment (sticky visual + scrolling evidence) ---------- */
.sticky-review {
  display: grid; grid-template-columns: minmax(320px, 44%) 1fr;
  gap: clamp(28px, 3.4vw, 56px);
}
.sticky-visual {
  position: sticky; top: 104px; height: calc(100vh - 140px);
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2); background: var(--surface-sunk);
}
.sticky-visual img { width: 100%; height: 100%; object-fit: cover; }
.sticky-visual .vtag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  color: var(--ink); background: rgba(14,9,7,0.7); padding: 8px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
}
.review-steps { display: grid; gap: clamp(28px, 4vw, 48px); }
.review-steps > article { min-height: 56vh; display: flex; flex-direction: column; justify-content: center; }
.review-steps .rhead { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; }
.review-steps .rhead .ri { font-family: var(--font-display); color: var(--accent-bright); font-size: 1.1rem; font-weight: 600; }
.review-steps h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }
.review-steps p { color: var(--text-muted); line-height: 1.65; }
.review-steps .rtag {
  margin-top: 14px; display: inline-flex; gap: 8px; align-items: center;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  padding: 6px 12px; border-radius: var(--r-pill); border: 1px solid var(--border-strong); background: var(--surface-2); align-self: flex-start;
}
.review-steps .rtag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); }
.review-steps .rtag.mid .dot { background: var(--accent-bright); }
.review-steps .rtag.weak .dot { background: var(--warn); }

@media (max-width: 860px) {
  .sticky-review { grid-template-columns: 1fr; }
  .sticky-visual { position: static; height: 320px; }
  .review-steps > article { min-height: 0; }
}

/* ---------- 08 · Rooms & Sleep Quality ---------- */
.rooms-section { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(24px, 3vw, 44px); }
.rooms-stack { display: grid; gap: 14px; }
.rooms-stack .room-hero {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-1); background: var(--surface-sunk);
}
.rooms-stack .room-hero img { width: 100%; height: 100%; object-fit: cover; }
.rooms-stack .room-types { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rooms-stack .room-types .rt {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 1 / 1; background: var(--surface-sunk); position: relative;
}
.rooms-stack .room-types .rt img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.rooms-stack .room-types .rt .lbl {
  position: absolute; left: 10px; bottom: 10px; font-size: 0.74rem; font-weight: 700;
  color: var(--ink); background: rgba(14,9,7,0.72); padding: 5px 10px; border-radius: var(--r-pill);
}
.room-audit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.room-audit .audit-item {
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px;
  background: var(--surface);
}
.room-audit .audit-item h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-ink);
  font-family: var(--font-sans); font-weight: 700; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: space-between;
}
.room-audit .audit-item h4 .score { font-family: var(--font-display); color: var(--ink); font-size: 0.9rem; }
.room-audit .audit-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 860px) {
  .rooms-section { grid-template-columns: 1fr; }
  .room-audit { grid-template-columns: 1fr; }
}

/* ---------- 09 · Dining, Bars & Night Rhythm (horizontal scroll-snap) ---------- */
.rhythm-strip {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32vw);
  gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-padding: 4px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.rhythm-card {
  scroll-snap-align: start;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
}
.rhythm-card .rc-img { aspect-ratio: 16 / 10; background: var(--surface-sunk); overflow: hidden; }
.rhythm-card .rc-img img { width: 100%; height: 100%; object-fit: cover; }
.rhythm-card .rc-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.rhythm-card .rc-time {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.rhythm-card .rc-time::before { content: ""; width: 16px; height: 1px; background: var(--accent); }
.rhythm-card h4 { font-size: 1.15rem; }
.rhythm-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.rhythm-card .rc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--rule); }
.rhythm-card .rc-foot .worth { font-size: 0.8rem; font-weight: 700; color: var(--good); }
.rhythm-card .rc-foot .worth.meh { color: var(--accent-bright); }
.rhythm-card .rc-foot .price { font-size: 0.82rem; color: var(--text-faint); }

/* ---------- 10 · Wellness / Reset Spaces ---------- */
.wellness { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 3vw, 44px); align-items: center; }
.wellness-img {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 5 / 4; box-shadow: var(--shadow-2); background: var(--surface-sunk);
}
.wellness-img img { width: 100%; height: 100%; object-fit: cover; }
.wellness-body h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 12px; }
.wellness-body p { color: var(--text-muted); line-height: 1.6; }
.wellness-checklist { margin-top: 18px; display: grid; gap: 0; }
.wellness-checklist li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--rule); font-size: 0.96rem; color: var(--ink);
}
.wellness-checklist li:first-child { border-top: 0; }
.wellness-checklist li::before { content: "✓"; color: var(--good); font-weight: 700; }
.wellness-checklist li .meta { color: var(--text-faint); font-size: 0.82rem; }

@media (max-width: 860px) {
  .wellness { grid-template-columns: 1fr; }
}

/* ---------- 11 · Cost, Value & Fine Print Ledger ---------- */
.ledger-shell {
  display: grid; grid-template-columns: minmax(0, 8fr) minmax(240px, 3fr);
  gap: clamp(24px, 3vw, 40px);
}
.ledger-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.ledger-table th, .ledger-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--rule); }
.ledger-table thead th {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint);
  font-family: var(--font-sans); font-weight: 700; background: var(--surface-sunk);
}
.ledger-table tbody tr:last-child td { border-bottom: 0; }
.ledger-table td .k { font-weight: 600; color: var(--ink); }
.ledger-table td .v { color: var(--text-muted); font-size: 0.92rem; }
.ledger-table td .v b { color: var(--ink); }
.ledger-rail { position: sticky; top: 104px; align-self: start; }
.ledger-rail .watch {
  border: 1px solid var(--warn-tint); border-left: 3px solid var(--warn);
  border-radius: var(--r-md); padding: 16px; background: var(--surface);
}
.ledger-rail .watch h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warn); font-family: var(--font-sans); font-weight: 700; margin-bottom: 8px; }
.ledger-rail .watch ul { display: grid; gap: 8px; }
.ledger-rail .watch li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; padding-left: 14px; position: relative; }
.ledger-rail .watch li::before { content: "—"; position: absolute; left: 0; color: var(--warn); }

@media (max-width: 860px) {
  .ledger-shell { grid-template-columns: 1fr; }
  .ledger-rail { position: static; }
  .ledger-table { display: block; }
  .ledger-table thead { display: none; }
  .ledger-table tr { display: block; border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .ledger-table td { display: block; border: 0; padding: 4px 0; }
}

/* ---------- 12 · Evidence Gallery (chaptered mixed grid) ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px; grid-auto-rows: 140px;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface-sunk); position: relative; cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 10px 12px; font-size: 0.74rem; color: var(--ink);
  background: linear-gradient(to top, rgba(14,9,7,0.88), transparent);
}
.gallery-item .cap b { color: var(--accent-bright); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.68rem; display: block; margin-bottom: 2px; }
.gallery-item.large { grid-column: span 6; grid-row: span 2; }
.gallery-item.portrait { grid-column: span 3; grid-row: span 2; }
.gallery-item.wide { grid-column: span 6; grid-row: span 1; }
.gallery-item.small { grid-column: span 3; grid-row: span 1; }
.gallery-item.med { grid-column: span 4; grid-row: span 1; }

@media (max-width: 760px) {
  .gallery-grid { grid-auto-rows: 120px; }
  .gallery-item.large { grid-column: span 12; grid-row: span 2; }
  .gallery-item.portrait { grid-column: span 6; grid-row: span 2; }
  .gallery-item.wide { grid-column: span 12; }
  .gallery-item.small { grid-column: span 6; }
  .gallery-item.med { grid-column: span 6; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(8,5,4,0.92); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(1100px, 92vw); max-height: 86vh; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: var(--r-md); border: 1px solid var(--border-strong); }
.lightbox figcaption { color: var(--text-muted); font-size: 0.88rem; text-align: center; margin-top: 12px; }
.lightbox .lb-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); font-size: 1.4rem;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); font-size: 1.4rem;
}
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }

/* ---------- 13 · Responsible Gambling & Reader Safety ---------- */
.safety-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px);
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  padding: clamp(28px, 3.4vw, 48px);
  background: linear-gradient(180deg, var(--surface-raise), var(--surface));
  box-shadow: var(--shadow-2);
}
.safety-panel .safety-stance h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 12px; }
.safety-panel .safety-stance p { color: var(--text-muted); line-height: 1.6; }
.safety-panel .safety-stance .badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--warn-tint);
  background: var(--warn-tint); color: var(--warn); font-weight: 700; font-size: 0.84rem;
}
.safety-actions { display: flex; flex-direction: column; gap: 12px; }
.safety-actions .sa {
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px;
  background: var(--surface-sunk); display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
}
.safety-actions .sa .ico { color: var(--accent-ink); font-size: 1.3rem; line-height: 1; }
.safety-actions .sa h4 { font-size: 0.96rem; margin-bottom: 4px; }
.safety-actions .sa p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.45; }
.safety-actions .sa a { color: var(--accent-ink); text-decoration: underline; }
.safety-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.safety-links a {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--border-strong); background: var(--surface);
  transition: all var(--dur) var(--ease);
}
.safety-links a:hover { border-color: var(--accent); color: var(--accent-bright); }

@media (max-width: 860px) { .safety-panel { grid-template-columns: 1fr; } }

/* ---------- 14 · Final Verdict ---------- */
.final-verdict {
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: clamp(16px, 2vw, 24px);
}
.fv-col {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px;
  background: var(--surface); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
}
.fv-col h3 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-sans); font-weight: 700;
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
}
.fv-col.book h3 { color: var(--good); }
.fv-col.skip h3 { color: var(--warn); }
.fv-col.take { background: linear-gradient(180deg, var(--surface-raise), var(--surface)); border-color: var(--accent-line); }
.fv-col.take h3 { color: var(--accent-ink); }
.fv-col ul { display: grid; gap: 10px; }
.fv-col ul li { font-size: 0.94rem; color: var(--text-muted); line-height: 1.5; padding-left: 18px; position: relative; }
.fv-col.book ul li::before { content: "+"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.fv-col.skip ul li::before { content: "–"; position: absolute; left: 0; color: var(--warn); font-weight: 700; }
.fv-col.take .take-score {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--accent-bright); line-height: 1; font-weight: 500;
}
.fv-col.take p { font-size: 1.05rem; color: var(--ink); line-height: 1.5; margin: 14px 0; font-family: var(--font-display); }
.fv-col.take .cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.fv-col.take .note { font-size: 0.78rem; color: var(--text-faint); margin-top: 8px; }

@media (max-width: 860px) { .final-verdict { grid-template-columns: 1fr; } }

/* ---------- 15 · How We Reviewed (accordion) ---------- */
.methodology { max-width: 860px; margin-inline: auto; }
.methodology details {
  border-top: 1px solid var(--border); padding: 18px 0;
}
.methodology details:last-of-type { border-bottom: 1px solid var(--border); }
.methodology summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); font-weight: 500;
}
.methodology summary::-webkit-details-marker { display: none; }
.methodology summary .pm {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--accent-line);
  display: grid; place-items: center; color: var(--accent-bright); font-size: 1.1rem; font-family: var(--font-sans);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.methodology details[open] summary .pm { transform: rotate(45deg); background: var(--accent-tint); }
.methodology details .body { padding-top: 14px; color: var(--text-muted); line-height: 1.6; font-size: 0.98rem; }
.methodology details .body p { margin-bottom: 0.8em; }

/* ---------- 16 · Practical FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--border); padding: 16px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; gap: 14px; align-items: baseline;
  font-size: 1.06rem; color: var(--ink); font-weight: 600; font-family: var(--font-sans);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { color: var(--accent-ink); font-family: var(--font-display); font-weight: 600; flex: none; }
.faq summary .arr { margin-left: auto; color: var(--text-faint); transition: transform var(--dur) var(--ease); }
.faq details[open] summary .arr { transform: rotate(180deg); }
.faq .a { padding: 12px 0 0 28px; color: var(--text-muted); line-height: 1.6; font-size: 0.96rem; }

/* ---------- Section heads (editorial) ---------- */
.section-head { max-width: 64ch; margin-bottom: clamp(28px, 3vw, 40px); }
.section-head .eyebrow-num { margin-bottom: 14px; }
.section-head h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1.06rem; line-height: 1.55; }
.section-head.deco h2 { padding-bottom: 14px; border-bottom: 1px solid var(--border); position: relative; }
.section-head.deco h2::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 38%;
  background: linear-gradient(to right, var(--accent), transparent);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--s-9); border-top: 1px solid var(--border);
  background: var(--surface-sunk);
}
.site-footer .fbar { width: min(100% - 24px, var(--maxw)); margin-inline: auto; padding: var(--s-7) 12px var(--s-5); }
.site-footer .ftop { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .fbrand .name { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); font-weight: 600; }
.site-footer .fbrand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 10px; max-width: 32ch; line-height: 1.55; }
.site-footer h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-family: var(--font-sans); font-weight: 700; margin-bottom: 14px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a { font-size: 0.92rem; color: var(--text-muted); transition: color var(--dur) var(--ease); }
.site-footer ul a:hover { color: var(--accent-bright); }
.site-footer .fbase {
  margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-faint);
}
.site-footer .fbase .legal { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer .fbase a { color: var(--text-muted); }
.site-footer .fbase a:hover { color: var(--accent-bright); }
.site-footer .fdisclaim { margin-top: var(--s-5); padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); font-size: 0.8rem; color: var(--text-faint); line-height: 1.5; }

@media (max-width: 860px) {
  .site-footer .ftop { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 520px) {
  .site-footer .ftop { grid-template-columns: 1fr; }
}

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 130;
  max-width: 520px; margin-inline: auto;
  border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  background: color-mix(in oklab, var(--surface-raise) 94%, transparent);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-2);
  padding: 18px; display: none;
}
.cookie.show { display: block; }
.cookie h4 { font-size: 1rem; margin-bottom: 8px; }
.cookie p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.cookie p a { color: var(--accent-ink); text-decoration: underline; }
.cookie .actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 520px) { .cookie { left: 8px; right: 8px; bottom: 8px; } }

/* ---------- Booking enquiry (Plan your stay) ---------- */
.enquiry-shell {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px); align-items: start;
}
.enquiry-info h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 10px; }
.enquiry-info p { color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.enquiry-list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.enquiry-list li { font-size: 0.92rem; line-height: 1.5; padding-left: 18px; position: relative; }
.enquiry-list li::before { content: "\25C6"; position: absolute; left: 0; top: 0; color: var(--accent-bright); font-size: 0.7rem; }
.enquiry-list b { color: var(--text-ink); font-weight: 700; }
.enquiry-note {
  border: 1px solid var(--border-strong); border-left: 3px solid var(--accent-bright);
  border-radius: var(--r-md); padding: 14px 16px; font-size: 0.84rem; line-height: 1.55;
  color: var(--text-muted); background: color-mix(in oklab, var(--surface-raise) 60%, transparent);
}
.enquiry-note b { color: var(--text-ink); }
.enquiry-note a { color: var(--accent-ink); text-decoration: underline; }

.enquiry-form {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--surface-raise); box-shadow: var(--shadow-1);
  display: grid; gap: 16px;
}
.enquiry-form .field { display: grid; gap: 6px; }
.enquiry-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry-form label { font-size: 0.82rem; font-weight: 600; color: var(--text-ink); letter-spacing: 0.01em; }
.enquiry-form label .opt { color: var(--text-muted); font-weight: 400; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; font: inherit; color: var(--text-ink);
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  padding: 11px 12px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--accent-bright); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-bright) 28%, transparent);
}
.enquiry-form textarea { resize: vertical; min-height: 80px; }
.enquiry-form .form-foot { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 2px; }
@media (max-width: 880px) {
  .enquiry-shell { grid-template-columns: 1fr; }
  .enquiry-form .field-row { grid-template-columns: 1fr; gap: 16px; }
}
