:root {
  --parch: #fdf1cf;
  --parch-2: #f6e4b0;
  --paper: #fffdf7;
  --paper-2: #fbf1d6;
  --ink: #3b2413;
  --ink-soft: #7c5a35;
  --ink-faint: #a3855a;
  --plum: #8a4b16;
  --plum-2: #6d3a10;
  --plum-ink: #40260f;
  --brass: #f5b210;
  --brass-2: #a5720c;
  --brass-soft: #ffd85e;
  --felt: #7c4a20;
  --felt-2: #4f2f13;
  --felt-line: rgba(255, 255, 255, 0.1);
  --cream: #fff7e2;
  --line: rgba(90, 55, 20, 0.2);
  --line-strong: rgba(90, 55, 20, 0.34);
  --gold-line: rgba(245, 178, 16, 0.55);
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 9px;
  --shadow: 0 18px 44px rgba(74, 44, 16, 0.24);
  --shadow-soft: 0 8px 22px rgba(74, 44, 16, 0.16);
  --focus-ring: 0 0 0 3px var(--paper), 0 0 0 5px var(--brass);
  --pad: clamp(16px, 4vw, 48px);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Consolas", "Courier New", monospace;
  --bar-top: #3c2614;
  --bar-bottom: #291a0d;
  --foot-top: #2f1e0f;
  --foot-bottom: #241608;
  --slab-top: #3a2413;
  --slab-bottom: #2a1a0d;
  --wood-frame: #5a3a1e;
  --wood-tray: #4a2f18;
  --felt-hi: #8a5a2a;
  --brass-hi: #ffce3a;
  --gold-grad-1: #a9690c;
  --gold-grad-3: #ffe08a;
  --scroll-track: #ecdcb6;
  --card-face-top: #fdfaf3;
  --card-face-bottom: #f0e7d4;
  --card-red: #b3243b;
  --card-black: #22201d;
  --card-back-top: #b3283a;
  --card-back-bottom: #7c1522;
  --sq-light-top: #ecd4a2;
  --sq-light-bottom: #dcbf87;
  --sq-dark-top: #7a4c26;
  --sq-dark-bottom: #63391b;
  --piece-light: #f8ecd2;
  --piece-dark: #33200e;
  --sq-selected: #e0b64c;
  --sq-check: #d66a6a;
  --tile-top: #ecd3a0;
  --tile-bottom: #cba063;
  --tile-ink: #4a2c14;
  --rev-square: #7d5426;
  --rev-square-hover: #92652f;
  --disc-dark-hi: #575757;
  --disc-dark: #0a0a0a;
  --disc-light-hi: #ffffff;
  --disc-light: #e6ddc8;
  --mask-solid: #000;
  --print-bg: #fff;
  --print-ink: #111;
  --print-link: #6c1a30;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--parch);
  background-image:
    radial-gradient(1100px 540px at 84% -10%, rgba(245, 178, 16, 0.22), transparent 62%),
    radial-gradient(900px 520px at 4% 0%, rgba(138, 75, 22, 0.12), transparent 60%),
    radial-gradient(rgba(138, 75, 22, 0.06) 1.4px, transparent 1.5px);
  background-size: auto, auto, 22px 22px;
  min-height: 100vh;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--plum); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.14;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.005em;
}
p { margin: 0 0 1em; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 60;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.parlour-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, var(--bar-top), var(--bar-bottom));
  border-bottom: 2px solid var(--brass);
  box-shadow: 0 6px 20px rgba(40, 24, 10, 0.4);
}
.parlour-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.parlour-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
}
.parlour-brandmark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--brass);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  flex: none;
}
.parlour-brand b { color: var(--brass-soft); font-weight: 700; }

.club-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.club-nav-link {
  color: rgba(255, 247, 226, 0.82);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.18s ease, background 0.18s ease;
}
.club-nav-link:hover,
.club-nav-link[aria-current="page"] {
  color: var(--brass-soft);
  background: rgba(245, 178, 16, 0.14);
}
.club-nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(160deg, var(--plum), var(--plum-2));
  text-decoration: none;
  transition: transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, filter 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(138, 75, 22, 0.28);
}
.btn:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 14px 28px rgba(138, 75, 22, 0.34); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn--gold {
  background: linear-gradient(160deg, var(--brass-hi), var(--brass));
  color: var(--plum-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 10px 22px rgba(245, 178, 16, 0.42);
}
.btn--ghost {
  background: transparent;
  color: var(--plum);
  border: 1px solid var(--gold-line);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(185, 137, 60, 0.12); box-shadow: none; }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }

.hall-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 8vw, 96px) 0 clamp(48px, 8vw, 92px);
}
.hall-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(700px 340px at 78% 12%, rgba(245, 178, 16, 0.16), transparent 66%),
    repeating-linear-gradient(90deg, rgba(92, 60, 30, 0.05) 0 1px, transparent 1px 68px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, var(--mask-solid) 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, var(--mask-solid) 60%, transparent);
}
.hall-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-2);
  background: rgba(185, 137, 60, 0.1);
  border: 1px solid var(--gold-line);
  padding: 7px 15px;
  border-radius: 999px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin-top: 18px;
  color: var(--ink);
  line-height: 1.05;
}
.hero-title em { color: var(--plum); font-style: italic; }
.hero-lede { font-size: clamp(1.03rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 3px rgba(185, 137, 60, 0.18); }

.hero-visual { position: relative; z-index: 2; display: grid; place-items: center; }
.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(100%, 440px);
}
.showpiece {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  text-decoration: none;
  background: var(--felt);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showpiece img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showpiece span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(61, 13, 30, 0.72);
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid rgba(185, 137, 60, 0.4);
}
.showpiece:nth-child(1) { transform: rotate(-1.6deg); }
.showpiece:nth-child(2) { transform: rotate(1.4deg); }
.showpiece:nth-child(3) { transform: rotate(1.6deg); }
.showpiece:nth-child(4) { transform: rotate(-1.4deg); }
.showpiece:hover { transform: rotate(0) translateY(-4px) scale(1.03); box-shadow: var(--shadow), 0 0 0 2px var(--brass-soft); z-index: 2; }

.zone { padding: clamp(38px, 7vw, 74px) 0; }
.zone-head { max-width: 64ch; margin-bottom: 30px; }
.zone-kicker { color: var(--brass-2); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.76rem; }
.zone-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-top: 8px; color: var(--plum); }
.zone-title.ink { color: var(--ink); }
.zone-sub { color: var(--ink-soft); font-size: 1.05rem; }

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}

.table-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }
.table-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.table-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--brass); box-shadow: var(--shadow), 0 0 0 2px var(--brass-soft); }
.table-card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--felt);
  border-bottom: 1px solid var(--gold-line);
}
.table-card-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.table-card-body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.table-card-tag { font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.7rem; color: var(--brass-2); }
.table-card-title { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.table-card-copy { color: var(--ink-soft); font-size: 0.95rem; }
.table-card-cta {
  margin-top: 6px;
  align-self: flex-start;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  color: var(--cream);
  background: linear-gradient(160deg, var(--plum), var(--plum-2));
  padding: 9px 16px;
  border-radius: 9px;
}
.table-card:hover .table-card-cta { filter: brightness(1.07); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; padding: 0; }
.steps li {
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--serif);
  background: radial-gradient(circle at 40% 35%, var(--brass-soft), var(--brass) 60%, var(--brass-2));
  color: var(--plum-ink);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(154, 108, 37, 0.3);
}
.steps h3 { font-size: 1.1rem; }
.steps p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-md);
  padding: 20px;
}
.fact h3 { font-size: 1.08rem; color: var(--plum); }
.fact p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.qa-list { display: grid; gap: 12px; }
.qa {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.qa summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-size: 1.5rem; color: var(--plum); transition: transform 0.2s ease; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); }

.cta-band { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }
.cta-band-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(rgba(43, 27, 13, 0.74), rgba(43, 27, 13, 0.86)),
    url("assets/img/logo-hero.jpg") center / cover;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(245, 178, 16, 0.4);
}
.cta-band-inner h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--cream); }
.cta-band-inner p { color: rgba(247, 239, 224, 0.86); max-width: 52ch; margin: 0 auto 20px; }

.parlour-foot { border-top: 2px solid var(--brass); background: linear-gradient(180deg, var(--foot-top), var(--foot-bottom)); margin-top: 44px; }
.parlour-foot .parlour-brand { color: var(--cream); }
.parlour-foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 54px) var(--pad) 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px;
}
.foot-brand p { color: rgba(255, 247, 226, 0.72); max-width: 44ch; font-size: 0.95rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 26px; align-content: start; }
.foot-links a, .foot-privacy-btn {
  color: rgba(255, 247, 226, 0.72);
  text-decoration: none;
  font-size: 0.94rem;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.foot-links a:hover, .foot-privacy-btn:hover { color: var(--brass-soft); text-decoration: underline; }
.foot-base {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px var(--pad) 30px;
  border-top: 1px solid rgba(255, 247, 226, 0.12);
  color: rgba(255, 247, 226, 0.5);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-dock {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 28px));
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(58, 38, 18, 0.4);
  padding: 22px 24px;
  z-index: 80;
}
.cookie-dock[hidden] { display: none; }
.cookie-dock h2 { font-size: 1.18rem; margin-bottom: 6px; color: var(--plum); }
.cookie-dock p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-panel { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 12px; }
.cookie-panel[hidden] { display: none; }
.cookie-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.cookie-row input { margin-top: 4px; width: 20px; height: 20px; accent-color: var(--plum); flex: none; }
.cookie-row span b { display: block; font-size: 0.98rem; color: var(--ink); }
.cookie-row span small { color: var(--ink-soft); }
.cookie-row input:disabled { opacity: 0.7; }

.doc { max-width: 840px; margin: 0 auto; padding: clamp(34px, 6vw, 64px) var(--pad) 40px; }
.doc h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--ink); }
.doc-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 26px; }
.doc h2 { font-size: 1.42rem; margin-top: 2em; color: var(--plum); }
.doc h3 { font-size: 1.12rem; margin-top: 1.5em; color: var(--brass-2); }
.doc ul, .doc ol { color: var(--ink-soft); padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--ink); }
.doc-callout {
  background: linear-gradient(180deg, rgba(185, 137, 60, 0.14), rgba(251, 246, 234, 0.4));
  border: 1px solid var(--line);
  border-left: 4px solid var(--plum);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 22px 0;
}
.doc-callout strong { color: var(--plum); }
.doc-toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 30px; }
.doc-toc ul { list-style: none; padding: 0; columns: 2; gap: 20px; color: var(--plum); margin: 0; }
.doc-toc a { text-decoration: none; }
.doc-toc a:hover { text-decoration: underline; }

.bsx-form { display: grid; gap: 16px; max-width: 560px; }
.bsx-field { display: grid; gap: 6px; }
.bsx-field label { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.bsx-field .req { color: var(--plum); }
.bsx-field input, .bsx-field textarea, .bsx-field select {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
}
.bsx-field textarea { min-height: 130px; resize: vertical; }
.bsx-field input:focus, .bsx-field textarea:focus, .bsx-field select:focus { border-color: var(--plum); }
.bsx-field input[aria-invalid="true"], .bsx-field textarea[aria-invalid="true"], .bsx-field select[aria-invalid="true"] { border-color: var(--plum); background: rgba(124, 31, 61, 0.06); }
.field-err { color: var(--plum); font-size: 0.85rem; min-height: 1em; font-weight: 600; }
.bsx-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.bsx-check input { width: 22px; height: 22px; accent-color: var(--plum); flex: none; margin-top: 2px; }
.bsx-check label { font-size: 0.92rem; color: var(--ink-soft); }
.bsx-note { border-radius: 10px; padding: 14px 18px; font-weight: 600; margin-top: 6px; }
.bsx-note[hidden] { display: none; }
.bsx-note.ok { background: rgba(138, 75, 22, 0.12); border: 1px solid var(--brass-2); color: var(--ink); }
.bsx-note.warn { background: rgba(185, 137, 60, 0.16); border: 1px solid var(--brass); color: var(--ink); }

.tools-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.chip { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; margin-left: 6px; }
.chip.on { background: rgba(138, 75, 22, 0.16); color: var(--brass-2); }
.chip.off { background: rgba(185, 137, 60, 0.18); color: var(--brass-2); }
.pref-stack { display: grid; gap: 14px; margin: 18px 0; }

.felt-table {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 4vw, 34px);
  background:
    radial-gradient(130% 80% at 50% 0%, rgba(255, 222, 150, 0.2), transparent 55%),
    radial-gradient(150% 130% at 50% 130%, rgba(0, 0, 0, 0.45), transparent 62%),
    linear-gradient(160deg, var(--felt-hi) 0%, var(--felt-2) 100%);
  border: 1px solid var(--brass);
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 4px rgba(245, 178, 16, 0.24), inset 0 0 70px rgba(0, 0, 0, 0.42), var(--shadow-soft);
}
.felt-table::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0 3px, transparent 3px 7px);
  opacity: 0.5;
}
.felt-inner { position: relative; z-index: 2; display: grid; place-items: center; gap: 14px; }
.felt-table.win { animation: tableWin 1.1s ease-out; }
@keyframes tableWin {
  0% { box-shadow: inset 0 0 0 4px rgba(185, 137, 60, 0.22), inset 0 0 60px rgba(0, 0, 0, 0.35); }
  30% { box-shadow: inset 0 0 0 4px var(--brass-soft), inset 0 0 60px rgba(0, 0, 0, 0.2), 0 0 34px rgba(216, 184, 119, 0.6); }
  100% { box-shadow: inset 0 0 0 4px rgba(185, 137, 60, 0.22), inset 0 0 60px rgba(0, 0, 0, 0.35); }
}
.burst { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 6; }
.spark { position: absolute; width: 9px; height: 9px; border-radius: 2px; opacity: 0; will-change: transform, opacity; animation: sparkFly 1s ease-out forwards; }
@keyframes sparkFly {
  0% { transform: translate(0, 0) rotate(0deg) scale(0.6); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(220deg) scale(1); opacity: 0; }
}

.hud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.hud li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  min-width: 84px;
  text-align: center;
}
.hud b { display: block; font-family: var(--mono); font-size: 1.2rem; color: var(--plum); margin-top: 2px; }

.live { min-height: 1.4em; font-weight: 700; color: var(--plum); text-align: center; }

.stage-hero { max-width: 1000px; margin: 0 auto; padding: 0 var(--pad); }
.stage-banner {
  position: relative;
  margin-top: clamp(20px, 4vw, 34px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  aspect-ratio: 1000 / 280;
  display: grid;
  align-items: end;
  background: var(--felt);
}
.stage-banner-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-banner-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(64, 38, 15, 0.05) 20%, rgba(64, 38, 15, 0.82)); }
.stage-banner-inner { position: relative; z-index: 2; padding: clamp(16px, 3vw, 30px); }
.stage-banner-inner .zone-kicker { color: var(--brass-soft); }
.stage-banner-inner h1 { margin: 0; color: var(--cream); font-size: clamp(1.6rem, 4vw, 2.7rem); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5); }

.stage-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px) var(--pad) 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stage-wrap.wide { max-width: 860px; }
.stage-wrap .game-copy { color: var(--ink-soft); text-align: center; }
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.9rem; color: var(--ink-soft); }
.crumbs a { color: var(--plum); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.controls-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.switch-deck { max-width: 1000px; margin: 0 auto; padding: 10px var(--pad) clamp(30px, 6vw, 60px); }
.switch-deck h2 { font-size: 1.2rem; color: var(--ink); margin-bottom: 14px; }
.switch-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.switch-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  background: var(--paper);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.switch-chip:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.switch-chip .thumb { width: 46px; height: 34px; border-radius: 6px; flex: none; overflow: hidden; background: var(--felt); }
.switch-chip .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sol-board { width: 100%; max-width: 620px; display: grid; gap: 12px; }
.sol-top { display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(4px, 1.4vw, 10px); }
.sol-tableau { display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(4px, 1.4vw, 10px); align-items: start; }
.sol-slot {
  position: relative;
  border-radius: 7px;
  aspect-ratio: 5 / 7;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.14);
}
.sol-slot.foundation::after {
  content: attr(data-suit);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(1rem, 4vw, 1.6rem);
  color: rgba(255, 255, 255, 0.24);
}
.sol-pile { position: relative; }
.sol-pile.tableau { min-height: clamp(70px, 22vw, 128px); }
.card {
  position: relative;
  border-radius: 7px;
  aspect-ratio: 5 / 7;
  background: linear-gradient(180deg, var(--card-face-top), var(--card-face-bottom));
  border: 1px solid rgba(60, 40, 20, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: flex;
  padding: clamp(3px, 1.2vw, 6px);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}
.card .rank { font-size: clamp(0.7rem, 3vw, 1.05rem); }
.card .pip { position: absolute; right: clamp(3px, 1.2vw, 6px); bottom: clamp(2px, 1vw, 5px); font-size: clamp(0.9rem, 3.6vw, 1.5rem); }
.card.red { color: var(--card-red); }
.card.black { color: var(--card-black); }
.card.face-down {
  background:
    repeating-linear-gradient(45deg, rgba(255, 235, 200, 0.14) 0 3px, transparent 3px 8px),
    repeating-linear-gradient(-45deg, rgba(255, 235, 200, 0.14) 0 3px, transparent 3px 8px),
    linear-gradient(160deg, var(--card-back-top), var(--card-back-bottom));
  border-color: rgba(245, 178, 16, 0.75);
  box-shadow: inset 0 0 0 2px rgba(245, 178, 16, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  color: transparent;
  cursor: pointer;
}
.card.selected { box-shadow: 0 0 0 3px var(--brass-soft), 0 2px 6px rgba(0, 0, 0, 0.4); transform: translateY(-2px); }
.sol-pile.tableau .card { position: absolute; left: 0; right: 0; }
.sol-pile.stock .card, .sol-pile.waste .card, .sol-foundation .card { position: absolute; inset: 0; }
.sol-pile.stock .empty-stock {
  position: absolute; inset: 0; border-radius: 7px; display: grid; place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.34); color: rgba(255, 255, 255, 0.55); font-size: 1.3rem; cursor: pointer;
}

.chess-board {
  width: min(92vw, 460px);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  border: 7px solid var(--wood-frame);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--brass), 0 0 0 5px rgba(0, 0, 0, 0.3), var(--shadow);
}
.chess-sq {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: clamp(1.5rem, 6.6vw, 2.4rem);
  line-height: 1;
  transition: background 0.1s ease;
}
.chess-sq.light { background: linear-gradient(160deg, var(--sq-light-top), var(--sq-light-bottom)); }
.chess-sq.dark { background: linear-gradient(160deg, var(--sq-dark-top), var(--sq-dark-bottom)); }
.chess-sq .glyph { position: relative; z-index: 2; user-select: none; }
.chess-sq .glyph.w { color: var(--piece-light); text-shadow: 0 2px 2px rgba(50, 30, 12, 0.55), 0 0 2px rgba(50, 30, 12, 0.5); }
.chess-sq .glyph.b { color: var(--piece-dark); text-shadow: 0 1px 1px rgba(255, 240, 210, 0.4); }
.chess-sq.sel { background: var(--sq-selected); }
.chess-sq.move::before {
  content: ""; position: absolute; width: 30%; height: 30%; border-radius: 50%;
  background: rgba(138, 75, 22, 0.6); z-index: 1;
}
.chess-sq.move.capture::before { width: 82%; height: 82%; background: transparent; border: 4px solid rgba(245, 178, 16, 0.85); }
.chess-sq.check { background: var(--sq-check) !important; }
.chess-sq.last { box-shadow: inset 0 0 0 4px rgba(185, 137, 60, 0.55); }

.slide-grid {
  width: min(88vw, 360px);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  background: var(--wood-tray);
  padding: 10px;
  border-radius: 12px;
  border: 6px solid var(--wood-frame);
  box-shadow: 0 0 0 2px var(--brass), var(--shadow);
}
.slide-tile {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 6vw, 2rem);
  color: var(--tile-ink);
  background: linear-gradient(165deg, var(--tile-top), var(--tile-bottom));
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.55), 0 -1px 1px rgba(60, 35, 14, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 246, 220, 0.55), inset 0 -2px 3px rgba(74, 44, 20, 0.4), 0 3px 6px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  transition: transform 0.09s ease, filter 0.1s ease;
}
.slide-tile:hover { filter: brightness(1.05); }
.slide-tile:active { transform: scale(0.96); }
.slide-tile.blank { background: transparent; box-shadow: none; text-shadow: none; cursor: default; pointer-events: none; }
.slide-tile.solved { background: linear-gradient(165deg, var(--brass-soft), var(--brass)); color: var(--plum-ink); }

.rev-board {
  width: min(92vw, 420px);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 2px;
  background: var(--wood-tray);
  padding: 8px;
  border-radius: 8px;
  border: 6px solid var(--wood-frame);
  box-shadow: 0 0 0 2px var(--brass), var(--shadow);
}
.rev-sq {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--rev-square);
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.rev-sq:hover { background: var(--rev-square-hover); }
.rev-disc {
  width: 78%;
  height: 78%;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.rev-disc.d { background: radial-gradient(circle at 34% 28%, var(--disc-dark-hi), var(--disc-dark)); }
.rev-disc.l { background: radial-gradient(circle at 34% 28%, var(--disc-light-hi), var(--disc-light)); }
.rev-sq.hint::after {
  content: ""; width: 26%; height: 26%; border-radius: 50%;
  background: rgba(247, 239, 224, 0.4);
}
.rev-sq.placed { box-shadow: inset 0 0 0 2px var(--brass-soft); }

@media (max-width: 900px) {
  .hall-hero-inner { grid-template-columns: 1fr; }
  .parlour-foot-grid { grid-template-columns: 1fr; }
  .doc-toc ul { columns: 1; }
}
@media (max-width: 680px) {
  .club-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .club-nav.open { display: flex; }
  .club-nav-toggle {
    display: inline-flex;
    margin-left: auto;
    background: rgba(245, 178, 16, 0.12);
    border: 1px solid var(--brass);
    color: var(--brass-soft);
    border-radius: 8px;
    padding: 9px 13px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
  }
  .club-nav-link { padding: 12px 14px; }
  .hero-showcase { width: min(100%, 380px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media print {
  .parlour-topbar, .parlour-foot, .cookie-dock { display: none !important; }
  .hero-title em { background: none; color: var(--print-ink); -webkit-text-fill-color: var(--print-ink); }
  body { background: var(--print-bg); color: var(--print-ink); }
  .doc { max-width: 100%; }
  a { color: var(--print-link); }
}

.hall-hero {
  background: radial-gradient(760px 440px at 50% -14%, rgba(245, 178, 16, 0.22), transparent 62%);
}
.hero-title { text-shadow: 0 1px 0 rgba(255, 246, 220, 0.5); }
.hero-title em {
  font-style: italic;
  background: linear-gradient(92deg, var(--gold-grad-1), var(--brass) 52%, var(--gold-grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-eyebrow { box-shadow: 0 2px 10px rgba(245, 178, 16, 0.16); }

.zone-kicker { display: inline-flex; align-items: center; gap: 12px; }
.zone-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brass), rgba(245, 178, 16, 0));
}

.table-card-cover, .showpiece { position: relative; isolation: isolate; }
.table-card-cover { box-shadow: inset 0 0 0 1px rgba(245, 178, 16, 0.4); }
.table-card-cover::after, .showpiece::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 246, 220, 0.42) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.table-card:hover .table-card-cover::after, .showpiece:hover::after { transform: translateX(130%); }
.showpiece::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(40, 24, 10, 0.62));
}
.showpiece span {
  background: linear-gradient(160deg, rgba(58, 36, 19, 0.9), rgba(40, 24, 10, 0.92));
  border-color: var(--brass);
  color: var(--brass-soft);
}

.hud li {
  background: linear-gradient(180deg, var(--slab-top), var(--slab-bottom));
  border: 1px solid var(--brass);
  color: rgba(255, 247, 226, 0.72);
}
.hud b { color: var(--brass-soft); }

.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 246, 220, 0.28) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(130%); }
.btn--gold { text-shadow: 0 1px 0 rgba(255, 246, 220, 0.4); }

.cta-band-inner h2 { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5); }
.steps li::before { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 4px 12px rgba(154, 108, 37, 0.4); }

::selection { background: rgba(245, 178, 16, 0.85); color: var(--plum-ink); }
html { scrollbar-color: var(--brass) var(--scroll-track); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--scroll-track); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--brass), var(--brass-2)); border-radius: 999px; border: 3px solid var(--scroll-track); }

.table-card-cta { transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease; }
.table-card:hover .table-card-cta { transform: translateX(4px); }

.hero-twinkles { position: absolute; inset: -6% -4%; z-index: 3; pointer-events: none; }
.twinkle {
  position: absolute;
  color: var(--brass-soft);
  filter: drop-shadow(0 0 5px rgba(245, 178, 16, 0.7));
  animation: twinkle 3.4s ease-in-out infinite;
}
.twinkle:nth-child(1) { top: 4%; left: 2%; animation-delay: 0s; }
.twinkle:nth-child(2) { top: 44%; right: -1%; animation-delay: 1.1s; }
.twinkle:nth-child(3) { bottom: 6%; left: 16%; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.65); }
  50% { opacity: 1; transform: scale(1); }
}

.rule-figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.rule-fig {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.rule-fig svg { width: 100%; height: auto; max-height: 148px; display: block; margin-bottom: 12px; }
.rule-fig figcaption { color: var(--ink-soft); font-size: 0.92rem; }
.tip-list { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.tip-list li { margin-bottom: 10px; }
.tip-list strong { color: var(--ink); }
