/* ============================================================
   GoldStakeFR — Gold Noir Editorial
   Design system + layout for all pages
   ============================================================ */

:root {
  --ink: #07090D;
  --graphite: #12161E;
  --card: #1B2028;
  --card-2: #232935;
  --line: rgba(199, 160, 71, 0.22);
  --line-soft: rgba(237, 231, 215, 0.08);
  --muted: #9AA3B2;
  --text: #EDE7D7;
  --text-dim: #C6C0B1;
  --gold: #C7A047;
  --gold-hi: #E6C872;
  --gold-lo: #9C7A2E;
  --warn-bg: #2A1010;
  --warn-text: #FFE7D9;
  --warn-accent: #F2B16D;
  --danger: #D14343;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  --shadow-2: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--line);
  --container: 1200px;
  --ff-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ff-sans: "Inter", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--gold); color: var(--ink); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(199, 160, 71, 0.06), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(199, 160, 71, 0.04), transparent 60%),
    var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--gold-hi); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 .6em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--ff-sans); letter-spacing: .02em; text-transform: uppercase; color: var(--gold-hi); }

p { margin: 0 0 1em; color: var(--text-dim); }

hr { border: none; border-top: 1px solid var(--line-soft); margin: 3rem 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Sticky 18+ notice ---------- */
.warn-18 {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, #32120F, var(--warn-bg));
  color: var(--warn-text);
  border-bottom: 1px solid rgba(242, 177, 109, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.warn-18__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.warn-18__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0B0B0B;
  color: var(--warn-accent);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(242, 177, 109, 0.45);
  flex-shrink: 0;
}
.warn-18 p { margin: 0; color: var(--warn-text); line-height: 1.4; }
.warn-18 a { color: var(--warn-accent); border-bottom: 1px dashed currentColor; }
.warn-18 a:hover { color: #fff; }

@media (max-width: 720px) {
  .warn-18 { font-size: 0.68rem; }
  .warn-18__inner { padding: 8px 14px; gap: 10px; }
  .warn-18__badge { width: 32px; height: 32px; font-size: 0.7rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 58px;
  z-index: 900;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 13, 0.7);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
}
.brand strong { font-weight: 500; }
.brand em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--text-dim);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--gold-hi); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius-s);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--graphite);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 10px;
    transform-origin: top right;
    transform: scale(.96) translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
    box-shadow: var(--shadow-2);
  }
  .nav a { padding: 12px 14px; border-radius: 10px; }
  .nav a:hover { background: rgba(255, 255, 255, 0.04); }
  .nav.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(180deg, transparent, rgba(199, 160, 71, 0.04) 50%, transparent),
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(255, 255, 255, 0.015) 40px 41px);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hi);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(199, 160, 71, 0.04);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 10px var(--gold);
}
.hero h1 {
  margin: 24px 0 18px;
}
.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-hi) 10%, var(--gold) 50%, var(--gold-lo) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 54ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__visual {
  position: relative;
}
.hero__visual img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 380px; margin: 0 auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px -10px rgba(199, 160, 71, 0.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  color: var(--ink);
  box-shadow: 0 14px 34px -10px rgba(199, 160, 71, 0.8);
}
.btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(237, 231, 215, 0.02);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--gold);
  background: rgba(199, 160, 71, 0.08);
}
.btn--sm { padding: 10px 16px; font-size: 0.85rem; }
.btn__arrow { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Section framework ---------- */
.section {
  position: relative;
  padding: 100px 0;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section__num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  background: linear-gradient(180deg, rgba(230, 200, 114, 0.35), rgba(156, 122, 46, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: -0.3em;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 8px;
  padding-left: 32px;
  position: relative;
}
.section__eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold);
}
.section__title { margin-bottom: 14px; }
.section__lead { max-width: 70ch; color: var(--text-dim); font-size: 1.05rem; }
.section__header { margin-bottom: 56px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: end; }
.section__header--center { grid-template-columns: 1fr; text-align: center; }
.section__header--center .section__num { margin: 0 auto; }
.section__header--center .section__lead { margin: 0 auto; }
.section__header--center .section__eyebrow { padding-left: 0; }
.section__header--center .section__eyebrow::before { display: none; }

@media (max-width: 860px) {
  .section { padding: 70px 0; }
  .section__header { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Coin-stack operator cards ---------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rooms { grid-template-columns: 1fr; } }

.room {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--graphite));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.room::before {
  content: "";
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
  border-radius: 0 0 3px 3px;
  opacity: .9;
}
.room::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px 220px at 20% -20%, rgba(199, 160, 71, 0.12), transparent 50%);
  pointer-events: none;
  transition: opacity .3s var(--ease);
  opacity: .6;
}
.room:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-2);
}
.room:hover::after { opacity: 1; }

.room__rank {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--gold-hi);
  letter-spacing: 0.2em;
  opacity: .8;
}
.room__logo {
  height: 54px;
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.room__logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
.room__name {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  margin: 0;
}
.room__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -6px 0 6px;
}
.room__bonus {
  padding: 18px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(199, 160, 71, 0.05), transparent);
}
.room__bonus-label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 6px;
}
.room__bonus-value {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.room__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.room__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.room__features li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 3px;
  background: radial-gradient(circle at 30% 30%, var(--gold-hi), var(--gold-lo));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.room__cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  flex-wrap: wrap;
}

/* ---------- Chip-track strip ---------- */
.chip-track {
  margin: 0 auto;
  max-width: 900px;
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}
.chip-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 62px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .6;
}
.chip-track__item {
  text-align: center;
  position: relative;
}
.chip-track__node {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a2f3a, #0d1016);
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: 0 0 0 4px var(--ink);
}
.chip-track__node::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--gold-hi);
  opacity: .6;
}
.chip-track__label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.chip-track__value {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--text);
}

@media (max-width: 640px) {
  .chip-track { grid-template-columns: 1fr; gap: 24px; }
  .chip-track::before { display: none; }
}

/* ---------- Editorial / pitch blocks ---------- */
.pitch {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.pitch__side {
  position: sticky;
  top: 140px;
}
.pitch__tag {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hi);
}
.pitch ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.pitch li {
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--card), var(--graphite));
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}
.pitch li h4 { margin-bottom: 6px; }
.pitch li p { margin: 0; }

@media (max-width: 860px) {
  .pitch { grid-template-columns: 1fr; gap: 32px; }
  .pitch__side { position: static; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq__item {
  background: var(--graphite);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: var(--line); }
.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--text);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__plus {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold-hi);
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__item[open] .faq__plus { transform: rotate(45deg); background: rgba(199, 160, 71, 0.12); }
.faq__body { padding: 0 24px 22px; color: var(--text-dim); }
.faq__body p { margin: 0; }

/* ---------- Comparatif table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-l); border: 1px solid var(--line-soft); }
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--graphite);
  min-width: 680px;
}
.compare th, .compare td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold-hi);
  background: linear-gradient(180deg, rgba(199, 160, 71, 0.06), transparent);
  border-bottom: 1px solid var(--line);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
.compare td.label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: 30%;
}
.compare .bonus { color: var(--gold-hi); font-family: var(--ff-serif); font-size: 1.05rem; }

/* ---------- Signs + tools (responsible page) ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.tile {
  background: linear-gradient(180deg, var(--card), var(--graphite));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.tile__kicker {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 8px;
}
.tile h3 { margin-bottom: 10px; }
.tile p:last-child { margin-bottom: 0; }

.callout {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(199, 160, 71, 0.08), transparent),
    var(--graphite);
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.callout__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.8rem;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

/* ---------- Room detail hero ---------- */
.room-hero {
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line-soft);
}
.room-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.room-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 18px;
}
.room-hero__logo {
  padding: 40px;
  background: linear-gradient(180deg, var(--card), var(--graphite));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  display: grid;
  place-items: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.room-hero__logo::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(400px 180px at 50% 0%, rgba(199, 160, 71, 0.15), transparent 60%);
  pointer-events: none;
}
.room-hero__logo img { max-width: 80%; max-height: 110px; position: relative; }
.room-hero__bonus-card {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  background: rgba(199, 160, 71, 0.04);
}
.room-hero__bonus-card strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--gold-hi);
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .room-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .room-hero__logo { order: -1; min-height: 180px; padding: 30px; }
}

.content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 60px 0;
}
.content__toc {
  position: sticky;
  top: 140px;
  align-self: start;
}
.content__toc-title {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.content__toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.content__toc a { color: var(--text-dim); font-size: 0.9rem; }
.content__toc a:hover { color: var(--gold-hi); }

.content article { max-width: 780px; }
.content article h2 { margin-top: 44px; margin-bottom: 14px; }
.content article h2:first-child { margin-top: 0; }
.content article h3 { margin-top: 30px; margin-bottom: 10px; color: var(--gold-hi); }
.content article ul { padding-left: 22px; }
.content article li { margin-bottom: 6px; color: var(--text-dim); }
.content article .chips {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.content article .chips li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  margin: 0;
}

@media (max-width: 960px) {
  .content { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .content__toc { position: static; }
  .content__toc ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .content__toc a { padding: 6px 12px; border: 1px solid var(--line-soft); border-radius: 100px; font-size: 0.78rem; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 40px 44px;
  border-radius: var(--radius-l);
  background:
    radial-gradient(600px 300px at 90% -20%, rgba(199, 160, 71, 0.18), transparent 60%),
    linear-gradient(180deg, var(--card), var(--graphite));
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-banner h3 { margin: 0 0 4px; }
.cta-banner p { margin: 0; color: var(--text-dim); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 22px 0 0;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-hi); }
.crumbs span[aria-current] { color: var(--text); }
.crumbs li { list-style: none; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  padding: 60px 0 30px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer__brand p { margin-top: 14px; max-width: 38ch; }
.site-footer h5 {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--gold-hi); }

.site-footer__compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  font-size: 0.86rem;
}
.site-footer__compliance .badge-18 {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--warn-accent);
  color: var(--warn-accent);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.site-footer__compliance a { color: var(--warn-accent); border-bottom: 1px dashed currentColor; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

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

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.divider-suit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  opacity: .5;
  margin: 60px 0;
}
.divider-suit svg { width: 14px; height: 14px; }
.divider-suit::before, .divider-suit::after {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.text-center { text-align: center; }

/* ---------- Prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation-duration: .001s !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */
.page-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 .code {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
