/* ═══════════════════════════════════════════════════════════
   Canada Hideaways — editorial gazette
   Ink on paper, hairline rules, high-contrast serif display,
   one crimson accent. Dense magazine grid, mobile-first.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Paper & ink */
  --paper:        #f7f4ee;
  --paper-2:      #efe9df;
  --paper-3:      #e5ddcf;
  --ink:          #16130f;
  --ink-2:        #3a342d;
  --ink-3:        #6f665b;
  --ink-4:        #928a7d;

  /* Rules */
  --rule:         #d3cabb;
  --rule-strong:  #a89e8d;
  --rule-ink:     #2a251f;

  /* Accent */
  --accent:       #9a1b24;
  --accent-2:     #7a141c;
  --accent-soft:  #f3e6e5;
  --gold:         #a8863f;

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --wrap:   1280px;
  --gutter: 20px;
  --sp-1: 6px;   --sp-2: 12px;  --sp-3: 20px;
  --sp-4: 32px;  --sp-5: 48px;  --sp-6: 72px;  --sp-7: 104px;

  --hair: 1px solid var(--rule);
  --hair-strong: 1px solid var(--rule-strong);
  --hair-ink: 2px solid var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
.ch-pic { display: block; }
.ch-pic img { width: 100%; height: 100%; object-fit: cover; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; margin: 0 0 var(--sp-2); letter-spacing: -.01em; }
p { margin: 0 0 var(--sp-3); }
ul, ol { margin: 0 0 var(--sp-3); padding-left: 1.25em; }
li { margin-bottom: .35em; }
strong, b { font-weight: 700; }
hr { border: 0; border-top: var(--hair); margin: var(--sp-5) 0; }

.ch-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.ch-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 12px 20px;
  font: 600 14px/1 var(--sans);
}
.ch-skip:focus { left: 8px; top: 8px; }

/* ─── Utility type ──────────────────────────────────────── */

.ch-kicker {
  display: inline-block;
  font: 700 11px/1 var(--sans);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.ch-kicker--ink { color: var(--ink-3); }
.ch-kicker--paper { color: rgba(247,244,238,.72); }

.ch-lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.1rem + .6vw, 25px);
  line-height: 1.42; font-weight: 500; font-style: italic;
  color: var(--ink-2);
}

.ch-meta {
  font: 400 13px/1.5 var(--sans);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-3);
}

.ch-prose > *:last-child { margin-bottom: 0; }
.ch-prose h2 { font-size: clamp(24px, 1.2rem + 1vw, 32px); margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: var(--hair); }
.ch-prose h3 { font-size: clamp(19px, 1rem + .5vw, 23px); margin-top: var(--sp-4); }
.ch-prose ul, .ch-prose ol { padding-left: 1.4em; }
.ch-prose a { text-decoration: underline; text-underline-offset: 2px; }

.ch-drop::first-letter {
  float: left;
  font-family: var(--serif); font-weight: 900;
  font-size: 4.1em; line-height: .82;
  margin: .06em .12em 0 0;
  color: var(--accent);
}

/* ─── Buttons ───────────────────────────────────────────── */

.ch-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 600 13px/1 var(--sans);
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 24px; min-height: 46px;
  border: 1px solid var(--ink); border-radius: 0;
  background: transparent; color: var(--ink);
  cursor: pointer; text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ch-btn:hover { text-decoration: none; }
.ch-btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.ch-btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); }
.ch-btn--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ch-btn--ink:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.ch-btn--ghost { background: transparent; border-color: var(--rule-strong); color: var(--ink); }
.ch-btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.ch-btn--paper { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.ch-btn--paper:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.ch-btn--outline-paper { background: transparent; border-color: rgba(247,244,238,.45); color: var(--paper); }
.ch-btn--outline-paper:hover { border-color: var(--paper); background: rgba(247,244,238,.1); }
.ch-btn--plain { border-color: transparent; background: transparent; color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.ch-btn--plain:hover { color: var(--accent); }
.ch-btn--sm { padding: 10px 16px; min-height: 38px; font-size: 12px; }
.ch-btn--wide { width: 100%; }

.ch-linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px;
}
.ch-linkbtn:hover { color: var(--accent); }

.ch-more {
  display: inline-flex; align-items: center; gap: .5em;
  font: 600 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.ch-more:hover { text-decoration: none; color: var(--ink); }
.ch-more::after { content: "→"; font-size: 14px; }

/* ─── Compliance strip ──────────────────────────────────── */

.ch-strip {
  background: var(--ink); color: rgba(247,244,238,.86);
  font: 400 12px/1.4 var(--sans); letter-spacing: .03em;
  border-bottom: 1px solid #302a23;
}
.ch-strip__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0 10px; padding: 8px var(--gutter); text-align: center; }
.ch-strip b { color: var(--paper); font-weight: 600; }
.ch-strip a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
.ch-strip a:hover { color: #e0b0b3; }
.ch-strip__sep { color: rgba(247,244,238,.3); }
@media (max-width: 700px) {
  .ch-strip__sep { display: none; }
  .ch-strip__in { flex-direction: column; gap: 3px; padding: 7px var(--gutter); }
}

/* ─── Masthead ──────────────────────────────────────────── */

.ch-masthead {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: var(--hair-ink);
}
.ch-masthead__in { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); min-height: 78px; }

.ch-logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.ch-logo:hover { text-decoration: none; }
.ch-logo__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: 0 0 42px;
  background: var(--ink); color: var(--paper);
  font: 700 15px/1 var(--serif); letter-spacing: .04em;
}
.ch-logo__text { display: flex; flex-direction: column; }
.ch-logo__name { font: 700 22px/1.05 var(--serif); letter-spacing: -.01em; }
.ch-logo__name em { font-style: italic; font-weight: 500; color: var(--accent); }
.ch-logo__sub { font: 400 9.5px/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }

.ch-nav { display: flex; align-items: center; gap: var(--sp-3); }
.ch-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ch-nav__li { position: relative; margin: 0; }
.ch-nav__a {
  display: block; padding: 10px 11px;
  font: 600 13px/1 var(--sans); letter-spacing: .05em;
  color: var(--ink-2); white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.ch-nav__a:hover { color: var(--ink); text-decoration: none; border-bottom-color: var(--rule-strong); }
.ch-nav__a.is-active { color: var(--ink); border-bottom-color: var(--accent); }
.ch-nav__toggle { display: none; }

.ch-sub {
  position: absolute; top: 100%; left: 0; z-index: 95;
  min-width: 268px; list-style: none; margin: 0; padding: 8px 0;
  background: var(--paper); border: 1px solid var(--ink); border-top: 0;
  box-shadow: 6px 6px 0 rgba(22,19,15,.08);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.ch-nav__li.has-sub:hover .ch-sub,
.ch-nav__li.has-sub:focus-within .ch-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.ch-sub li { margin: 0; }
.ch-sub a {
  display: block; padding: 9px 18px;
  font: 400 14px/1.3 var(--sans); color: var(--ink-2);
}
.ch-sub a:hover { background: var(--paper-2); color: var(--accent); text-decoration: none; }

.ch-burger { display: none; }

@media (max-width: 1120px) {
  .ch-nav__a { padding: 10px 8px; font-size: 12.5px; }
  .ch-nav__cta { display: none; }
}
@media (max-width: 980px) {
  .ch-masthead__in { min-height: 66px; }
  .ch-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 0 10px;
    background: none; border: 1px solid var(--ink); cursor: pointer;
  }
  .ch-burger span { display: block; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .ch-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ch-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .ch-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Closed state fades rather than sliding off-screen: a fixed element
     translated outside the viewport is NOT clipped by overflow-x on body,
     and would widen the horizontal scroll area on mobile. */
  .ch-nav {
    position: fixed; inset: 0;
    display: block; padding: 88px var(--gutter) var(--sp-5);
    background: var(--paper); overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s ease, visibility .22s;
    z-index: 89;
  }
  .ch-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .ch-nav__list { display: block; }
  .ch-nav__li { border-bottom: var(--hair); }
  .ch-nav__a { padding: 15px 0; font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: 0; border: 0; min-height: 48px; display: flex; align-items: center; }
  .ch-nav__a.is-active { color: var(--accent); }
  .ch-nav__toggle {
    display: grid; place-items: center;
    position: absolute; right: 0; top: 6px;
    width: 44px; height: 44px;
    background: none; border: 1px solid var(--rule); cursor: pointer;
    font: 400 20px/1 var(--sans); color: var(--ink);
  }
  .ch-nav__toggle[aria-expanded="true"] span { transform: rotate(45deg); display: block; }
  .ch-sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; border: 0; box-shadow: none; padding: 0 0 12px 14px;
    border-left: 2px solid var(--rule); margin-bottom: 12px;
    display: none;
  }
  .ch-sub.is-open { display: block; }
  .ch-nav__cta { display: inline-flex; width: 100%; margin-top: var(--sp-4); }
  body.ch-locked { overflow: hidden; }
}

/* ─── Home hero ─────────────────────────────────────────── */

.ch-hero { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.ch-hero__bg { position: absolute; inset: 0; }
.ch-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: grayscale(.35) contrast(1.05); }
.ch-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,19,15,.82) 0%, rgba(22,19,15,.55) 45%, rgba(22,19,15,.92) 100%);
}
.ch-hero__in { position: relative; padding: var(--sp-6) var(--gutter) 0; }
.ch-hero__grid { display: grid; gap: var(--sp-4); }
.ch-hero h1 {
  font-size: clamp(38px, 2rem + 4.6vw, 84px);
  line-height: .98; font-weight: 900; letter-spacing: -.025em;
  margin-bottom: var(--sp-3); color: var(--paper);
}
.ch-hero h1 em { font-style: italic; font-weight: 500; color: #d9b3b6; }
.ch-hero__lede { font-family: var(--serif); font-size: clamp(18px, 1rem + .6vw, 23px); line-height: 1.45; color: rgba(247,244,238,.86); max-width: 46ch; font-style: italic; }
.ch-hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.ch-hero__aside {
  border-top: 1px solid rgba(247,244,238,.28);
  padding-top: var(--sp-3);
}
.ch-hero__list { list-style: none; margin: 0; padding: 0; }
.ch-hero__list li { border-bottom: 1px solid rgba(247,244,238,.16); margin: 0; }
.ch-hero__list a { display: flex; gap: 14px; align-items: baseline; padding: 13px 0; color: var(--paper); }
.ch-hero__list a:hover { text-decoration: none; color: #e6c0c3; }
.ch-hero__num { font: 700 12px/1 var(--sans); letter-spacing: .08em; color: #c99094; flex: 0 0 22px; }
.ch-hero__name { font-family: var(--serif); font-size: 17px; font-weight: 700; }
.ch-hero__where { font: 400 12px/1.3 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: rgba(247,244,238,.55); display: block; margin-top: 2px; }
.ch-hero__sc { margin-left: auto; font: 700 15px/1 var(--serif); color: #d9b3b6; }

.ch-hero__bar {
  position: relative; margin-top: var(--sp-6);
  border-top: 1px solid rgba(247,244,238,.28);
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.ch-hero__stat { padding: var(--sp-3) var(--sp-3) var(--sp-3) 0; border-bottom: 1px solid rgba(247,244,238,.12); }
.ch-hero__stat b { display: block; font: 900 clamp(26px,1.4rem+1.4vw,38px)/1 var(--serif); color: var(--paper); }
.ch-hero__stat span { display: block; font: 400 11px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,238,.6); margin-top: 8px; }

@media (min-width: 900px) {
  .ch-hero__in { padding-top: var(--sp-7); }
  .ch-hero__grid { grid-template-columns: 1.55fr 1fr; gap: var(--sp-6); align-items: end; }
  .ch-hero__bar { grid-template-columns: repeat(4, 1fr); }
  .ch-hero__stat { border-bottom: 0; border-right: 1px solid rgba(247,244,238,.14); padding-left: var(--sp-3); }
  .ch-hero__stat:first-child { padding-left: 0; }
  .ch-hero__stat:last-child { border-right: 0; }
}

/* ─── Page header ───────────────────────────────────────── */

.ch-phead { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.ch-phead__bg { position: absolute; inset: 0; }
.ch-phead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; filter: grayscale(.4); }
.ch-phead__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,15,.86), rgba(22,19,15,.7)); }
.ch-phead__in { position: relative; padding: var(--sp-5) var(--gutter); max-width: 60rem; }
.ch-phead h1 { font-size: clamp(30px, 1.6rem + 2.8vw, 58px); font-weight: 900; letter-spacing: -.02em; color: var(--paper); line-height: 1.02; }
.ch-phead .ch-lede { color: rgba(247,244,238,.85); }
.ch-phead__facts { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid rgba(247,244,238,.25); }
.ch-phead__fact { font: 400 12px/1.4 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: rgba(247,244,238,.66); }
.ch-phead__fact b { display: block; font: 700 17px/1.2 var(--serif); letter-spacing: 0; text-transform: none; color: var(--paper); margin-top: 4px; }
@media (min-width: 768px) { .ch-phead__in { padding: var(--sp-6) var(--gutter); } }

/* ─── Breadcrumb ────────────────────────────────────────── */

.ch-crumb { border-bottom: var(--hair); background: var(--paper-2); }
.ch-crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 11px 0; font: 400 12.5px/1.4 var(--sans); }
.ch-crumb li { margin: 0; color: var(--ink-3); }
.ch-crumb li + li::before { content: "›"; margin-right: 8px; color: var(--rule-strong); }
.ch-crumb a { color: var(--ink-2); }
.ch-crumb a:hover { color: var(--accent); }
.ch-crumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ─── Sections ──────────────────────────────────────────── */

.ch-sec { padding: var(--sp-6) 0; border-top: var(--hair); }
.ch-sec--first { border-top: 0; }
.ch-sec--tint { background: var(--paper-2); }
.ch-sec--ink { background: var(--ink); color: var(--paper); border-top: 0; }
.ch-sec--ink h2, .ch-sec--ink h3 { color: var(--paper); }
.ch-sec--tight { padding: var(--sp-5) 0; }

.ch-shead { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-4); padding-bottom: var(--sp-2); border-bottom: var(--hair-ink); }
.ch-sec--ink .ch-shead { border-bottom-color: rgba(247,244,238,.4); }
.ch-shead__t { max-width: 62ch; }
.ch-shead h2 { font-size: clamp(25px, 1.3rem + 1.4vw, 40px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 0; }
.ch-shead p { margin: var(--sp-2) 0 0; color: var(--ink-3); font-size: 16px; max-width: 60ch; }
.ch-sec--ink .ch-shead p { color: rgba(247,244,238,.7); }

/* ─── Hotel cards ───────────────────────────────────────── */

.ch-grid { display: grid; gap: var(--sp-4); }
.ch-grid--2 { grid-template-columns: 1fr; }
.ch-grid--3 { grid-template-columns: 1fr; }
.ch-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .ch-grid--2, .ch-grid--3, .ch-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .ch-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .ch-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.ch-card { display: flex; flex-direction: column; background: var(--paper); border: var(--hair); border-top: var(--hair-ink); }
.ch-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.ch-card__media img { transition: transform .5s ease; }
.ch-card:hover .ch-card__media img { transform: scale(1.035); }
.ch-card__badge {
  position: absolute; top: 0; left: 0;
  background: var(--ink); color: var(--paper);
  font: 700 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 11px;
}
.ch-card__score {
  position: absolute; right: 0; bottom: 0;
  background: var(--accent); color: #fff;
  font: 900 19px/1 var(--serif);
  padding: 10px 13px 9px;
}
.ch-card__body { padding: var(--sp-3); display: flex; flex-direction: column; flex: 1; }
.ch-card__where { font: 600 11px/1.3 var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.ch-card h3 { font-size: 21px; line-height: 1.16; margin-bottom: 10px; }
.ch-card h3 a { color: var(--ink); }
.ch-card h3 a:hover { color: var(--accent); text-decoration: none; }
.ch-card__txt { font-size: 15px; color: var(--ink-2); margin-bottom: var(--sp-3); }
.ch-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 0 0 var(--sp-3); padding: 0; list-style: none; }
.ch-card__tags li { margin: 0; font: 400 11px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); border: var(--hair); padding: 5px 8px; }
.ch-card__foot { margin-top: auto; padding-top: var(--sp-2); border-top: var(--hair); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.ch-card__rooms { font: 400 12px/1.3 var(--sans); color: var(--ink-3); letter-spacing: .04em; }

/* Listing rows (numbered index) */
.ch-list { list-style: none; margin: 0; padding: 0; }
.ch-list > li { margin: 0; border-bottom: var(--hair); }
.ch-list > li:first-child { border-top: var(--hair-ink); }
.ch-row { display: grid; gap: var(--sp-3); padding: var(--sp-4) 0; align-items: start; }
.ch-row__rank { font: 900 clamp(30px,1.6rem+1.4vw,46px)/1 var(--serif); color: var(--rule-strong); letter-spacing: -.03em; }
.ch-row__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.ch-row__main h3 { font-size: clamp(22px, 1.1rem + .9vw, 30px); margin-bottom: 8px; }
.ch-row__main h3 a { color: var(--ink); }
.ch-row__main h3 a:hover { color: var(--accent); text-decoration: none; }
.ch-row__where { font: 600 11.5px/1.3 var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ch-row__txt { color: var(--ink-2); font-size: 16px; margin-bottom: var(--sp-3); }
.ch-row__hl { list-style: none; margin: 0 0 var(--sp-3); padding: 0; display: grid; gap: 4px 20px; font-size: 14px; }
.ch-row__hl li { margin: 0; display: flex; gap: 8px; color: var(--ink-2); }
.ch-row__hl b { font: 600 11px/1.6 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); flex: 0 0 96px; }
.ch-row__side { border-top: var(--hair); padding-top: var(--sp-2); }
.ch-row__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
@media (min-width: 700px) {
  .ch-row { grid-template-columns: 54px 250px 1fr; gap: var(--sp-4); }
  .ch-row__hl { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1060px) {
  .ch-row { grid-template-columns: 60px 300px 1fr 180px; }
  .ch-row__side { border-top: 0; border-left: var(--hair); padding: 0 0 0 var(--sp-3); }
}

/* Score block */
.ch-scorebox { border: var(--hair-ink); padding: var(--sp-2) var(--sp-3) var(--sp-3); text-align: center; background: var(--paper); }
.ch-scorebox__n { font: 900 clamp(36px,2rem+1.4vw,52px)/1 var(--serif); color: var(--accent); letter-spacing: -.03em; }
.ch-scorebox__of { font: 400 12px/1 var(--sans); color: var(--ink-3); letter-spacing: .1em; }
.ch-scorebox__band { display: block; margin-top: 8px; padding-top: 8px; border-top: var(--hair); font: 600 11px/1.3 var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2); }

.ch-bars { list-style: none; margin: 0; padding: 0; }
.ch-bars li { margin: 0 0 12px; }
.ch-bars__top { display: flex; justify-content: space-between; align-items: baseline; font: 600 12px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 5px; }
.ch-bars__n { font-family: var(--serif); font-size: 15px; font-weight: 700; letter-spacing: 0; color: var(--accent); }
.ch-bars__t { height: 6px; background: var(--paper-3); }
.ch-bars__f { height: 100%; background: var(--ink); }

/* ─── Fact tables ───────────────────────────────────────── */

.ch-facts { margin: 0; border-top: var(--hair-ink); }
.ch-facts > div { display: flex; flex-wrap: wrap; gap: 4px 16px; justify-content: space-between; padding: 11px 0; border-bottom: var(--hair); }
.ch-facts dt { font: 600 11.5px/1.5 var(--sans); letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); }
.ch-facts dd { margin: 0; font-size: 15.5px; font-weight: 600; color: var(--ink); text-align: right; }

.ch-tablewrap { overflow-x: auto; border: var(--hair); background: var(--paper); -webkit-overflow-scrolling: touch; }
.ch-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15px; }
.ch-table th, .ch-table td { padding: 13px 16px; text-align: left; border-bottom: var(--hair); vertical-align: top; }
.ch-table thead th { background: var(--ink); color: var(--paper); font: 600 11.5px/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; border-bottom: 0; }
.ch-table tbody tr:last-child td { border-bottom: 0; }
.ch-table tbody tr:nth-child(even) { background: var(--paper-2); }
.ch-table td b { font-weight: 700; }

/* ─── Pros / cons / verdict ─────────────────────────────── */

.ch-pc { display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .ch-pc { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
.ch-pc__col h3 { font-size: 20px; padding-bottom: 10px; border-bottom: var(--hair-ink); margin-bottom: var(--sp-3); }
.ch-pc__list { list-style: none; margin: 0; padding: 0; }
.ch-pc__list li { margin: 0 0 14px; padding-left: 28px; position: relative; font-size: 16px; color: var(--ink-2); }
.ch-pc__list li::before { position: absolute; left: 0; top: 0; font: 700 15px/1.6 var(--sans); }
.ch-pc--pro .ch-pc__list li::before { content: "+"; color: #1f6b3f; }
.ch-pc--con .ch-pc__list li::before { content: "−"; color: var(--accent); }

.ch-verdict { border: var(--hair-ink); border-left: 5px solid var(--accent); padding: var(--sp-4); background: var(--paper); }
.ch-verdict .ch-kicker { margin-bottom: var(--sp-2); }
.ch-verdict p { font-family: var(--serif); font-size: clamp(18px, 1rem + .55vw, 23px); line-height: 1.45; margin: 0; color: var(--ink); }

/* ─── Notes & callouts ──────────────────────────────────── */

.ch-note {
  border: var(--hair); border-left: 4px solid var(--rule-strong);
  background: var(--paper-2); padding: var(--sp-3);
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2);
}
.ch-note strong { color: var(--ink); }
.ch-note--accent { border-left-color: var(--accent); background: var(--accent-soft); }
.ch-note p:last-child { margin-bottom: 0; }
.ch-note__h { font: 700 11.5px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }

.ch-callout { border-top: var(--hair-ink); border-bottom: var(--hair-ink); padding: var(--sp-4) 0; margin: var(--sp-5) 0; }
.ch-callout p { font-family: var(--serif); font-style: italic; font-size: clamp(19px,1rem+.8vw,26px); line-height: 1.4; margin: 0; color: var(--ink); }

/* ─── Provinces ─────────────────────────────────────────── */

.ch-prov { display: block; border: var(--hair); border-top: var(--hair-ink); background: var(--paper); height: 100%; color: var(--ink); }
.ch-prov:hover { text-decoration: none; }
.ch-prov__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.ch-prov__media img { transition: transform .5s ease; filter: grayscale(.15); }
.ch-prov:hover .ch-prov__media img { transform: scale(1.04); filter: grayscale(0); }
.ch-prov__body { padding: var(--sp-3); }
.ch-prov__top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.ch-prov h3 { font-size: 20px; margin: 0; }
.ch-prov__age { font: 700 11px/1 var(--sans); letter-spacing: .1em; background: var(--ink); color: var(--paper); padding: 5px 7px; flex: none; }
.ch-prov__txt { font-size: 14.5px; color: var(--ink-2); margin: 0 0 12px; }
.ch-prov__n { font: 600 11.5px/1.3 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* ─── Stats ─────────────────────────────────────────────── */

.ch-stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: var(--hair-ink); }
.ch-stats > div { padding: var(--sp-3) var(--sp-2) var(--sp-3) 0; border-bottom: var(--hair); }
.ch-stats b { display: block; font: 900 clamp(30px,1.6rem+1.6vw,46px)/1 var(--serif); letter-spacing: -.03em; }
.ch-stats span { display: block; font: 400 11px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: 10px; }
.ch-stats em { display: block; font-style: normal; font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }
@media (min-width: 860px) {
  .ch-stats { grid-template-columns: repeat(4, 1fr); }
  .ch-stats > div { border-bottom: 0; border-right: var(--hair); padding-left: var(--sp-3); }
  .ch-stats > div:first-child { padding-left: 0; }
  .ch-stats > div:last-child { border-right: 0; }
}

/* ─── Articles ──────────────────────────────────────────── */

.ch-art { display: flex; flex-direction: column; height: 100%; border-top: var(--hair-ink); padding-top: var(--sp-2); }
.ch-art__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--paper-3); margin-bottom: var(--sp-2); }
.ch-art__media img { filter: grayscale(.2); transition: filter .4s ease, transform .5s ease; }
.ch-art:hover .ch-art__media img { filter: grayscale(0); transform: scale(1.03); }
.ch-art__k { display: flex; gap: 10px; align-items: center; font: 600 10.5px/1 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ch-art__k span { color: var(--ink-4); }
.ch-art h3 { font-size: 19px; line-height: 1.2; margin-bottom: 8px; }
.ch-art h3 a { color: var(--ink); }
.ch-art h3 a:hover { color: var(--accent); text-decoration: none; }
.ch-art p { font-size: 14.5px; color: var(--ink-2); margin-bottom: var(--sp-2); }
.ch-art__more { margin-top: auto; }

/* ─── Games ─────────────────────────────────────────────── */

.ch-game { border-top: var(--hair-ink); padding-top: var(--sp-3); margin-bottom: var(--sp-5); scroll-margin-top: 100px; }
.ch-game__grid { display: grid; gap: var(--sp-3); }
.ch-game__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.ch-game h2 { font-size: clamp(24px,1.2rem+1.1vw,34px); }
.ch-game__sum { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-2); margin-bottom: var(--sp-3); }
@media (min-width: 860px) {
  .ch-game__grid { grid-template-columns: 330px 1fr; gap: var(--sp-4); align-items: start; }
}

.ch-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 var(--sp-4); padding: 0; }
.ch-chips li { margin: 0; }
.ch-chips a {
  display: block; padding: 9px 14px; min-height: 40px; line-height: 22px;
  border: var(--hair); background: var(--paper);
  font: 600 12px/1.6 var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2);
}
.ch-chips a:hover { border-color: var(--ink); color: var(--accent); text-decoration: none; }

/* ─── Filters ───────────────────────────────────────────── */

.ch-filters { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: flex-end; padding: var(--sp-3) 0; border-top: var(--hair-ink); border-bottom: var(--hair); margin-bottom: var(--sp-4); }
.ch-filters__f { display: flex; flex-direction: column; gap: 6px; }
.ch-filters label { font: 700 10.5px/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.ch-filters select {
  font: 400 15px/1.4 var(--sans); color: var(--ink);
  padding: 11px 14px; min-height: 44px; min-width: 190px;
  background: var(--paper); border: 1px solid var(--rule-strong); border-radius: 0;
}
.ch-filters select:focus { border-color: var(--ink); outline: none; }
.ch-filters__count { margin-left: auto; font: 400 13px/1.4 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 12px; }
.ch-empty { padding: var(--sp-5) 0; text-align: center; color: var(--ink-3); font-family: var(--serif); font-style: italic; font-size: 19px; }

/* ─── FAQ accordion ─────────────────────────────────────── */

.ch-faq { border-top: var(--hair-ink); }
.ch-faq__i { border-bottom: var(--hair); }
.ch-faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3);
  width: 100%; padding: var(--sp-3) 0; min-height: 56px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font: 700 clamp(17px,.95rem+.35vw,21px)/1.3 var(--serif); color: var(--ink);
}
.ch-faq__q:hover { color: var(--accent); }
.ch-faq__ico { flex: 0 0 22px; font: 400 22px/1 var(--sans); color: var(--accent); transition: transform .2s ease; }
.ch-faq__q[aria-expanded="true"] .ch-faq__ico { transform: rotate(45deg); }
.ch-faq__a { display: none; padding: 0 0 var(--sp-3); max-width: 76ch; }
.ch-faq__a.is-open { display: block; }
.ch-faq__a p:last-child { margin-bottom: 0; }

/* ─── Forms ─────────────────────────────────────────────── */

.ch-form { display: grid; gap: var(--sp-3); }
.ch-field { display: flex; flex-direction: column; gap: 7px; }
.ch-field label { font: 700 10.5px/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--ink-2); }
.ch-field label .req { color: var(--accent); }
.ch-field input, .ch-field select, .ch-field textarea {
  font: 400 16px/1.5 var(--sans); color: var(--ink);
  padding: 13px 15px; min-height: 48px;
  background: var(--paper); border: 1px solid var(--rule-strong); border-radius: 0;
  width: 100%;
}
.ch-field textarea { min-height: 150px; resize: vertical; }
.ch-field input:focus, .ch-field select:focus, .ch-field textarea:focus { border-color: var(--ink); outline: none; box-shadow: inset 0 -2px 0 var(--accent); }
.ch-field__hint { font-size: 13px; color: var(--ink-3); }
@media (min-width: 700px) { .ch-form__two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); } }

.ch-check { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; cursor: pointer; }
.ch-check input { flex: 0 0 20px; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); }
.ch-check a { text-decoration: underline; text-underline-offset: 2px; }

/* ─── Newsletter ────────────────────────────────────────── */

.ch-news { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.ch-news__bg { position: absolute; inset: 0; }
.ch-news__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: grayscale(1); }
.ch-news__in { position: relative; padding: var(--sp-6) var(--gutter); display: grid; gap: var(--sp-4); }
.ch-news h2 { font-size: clamp(26px,1.4rem+1.4vw,42px); font-weight: 900; letter-spacing: -.02em; color: var(--paper); }
.ch-news p { color: rgba(247,244,238,.78); max-width: 52ch; }
.ch-news__form { display: grid; gap: var(--sp-2); }
.ch-news__row { display: grid; gap: var(--sp-2); }
.ch-news input[type="email"], .ch-news input[type="text"] {
  font: 400 16px/1.5 var(--sans); padding: 14px 16px; min-height: 50px; width: 100%;
  background: rgba(247,244,238,.07); color: var(--paper);
  border: 1px solid rgba(247,244,238,.35); border-radius: 0;
}
.ch-news input::placeholder { color: rgba(247,244,238,.5); }
.ch-news input:focus { outline: none; border-color: var(--paper); background: rgba(247,244,238,.12); }
.ch-news .ch-check { color: rgba(247,244,238,.72); font-size: 13.5px; }
.ch-news .ch-check a { color: var(--paper); }
@media (min-width: 900px) {
  .ch-news__in { grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
  .ch-news__row { grid-template-columns: 1fr auto; }
}

/* ─── Related / cross-links ─────────────────────────────── */

.ch-mini { display: flex; gap: 14px; align-items: flex-start; border-top: var(--hair); padding-top: var(--sp-2); }
.ch-mini__media { flex: 0 0 92px; aspect-ratio: 1; overflow: hidden; background: var(--paper-3); }
.ch-mini h3 { font-size: 16px; line-height: 1.25; margin-bottom: 5px; }
.ch-mini h3 a { color: var(--ink); }
.ch-mini h3 a:hover { color: var(--accent); text-decoration: none; }
.ch-mini__m { font: 400 11.5px/1.4 var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.ch-mini__sc { font-family: var(--serif); font-weight: 700; color: var(--accent); }

/* ─── Two-column article layout ─────────────────────────── */

.ch-layout { display: grid; gap: var(--sp-5); }
@media (min-width: 1000px) {
  .ch-layout { grid-template-columns: minmax(0,1fr) 320px; gap: var(--sp-6); align-items: start; }
  .ch-aside { position: sticky; top: 100px; }
}
.ch-aside__box { border: var(--hair); border-top: var(--hair-ink); padding: var(--sp-3); margin-bottom: var(--sp-3); background: var(--paper); }
.ch-aside__h { font: 700 11px/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: var(--sp-2); padding-bottom: 8px; border-bottom: var(--hair); }
.ch-toc { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.ch-toc li { margin: 0; border-bottom: var(--hair); }
.ch-toc li:last-child { border-bottom: 0; }
.ch-toc a { display: block; padding: 9px 0; color: var(--ink-2); }
.ch-toc a:hover { color: var(--accent); text-decoration: none; }

.ch-block { margin-bottom: var(--sp-5); scroll-margin-top: 100px; }
.ch-block > h2 { font-size: clamp(23px,1.15rem+1vw,32px); padding-bottom: 10px; border-bottom: var(--hair-ink); margin-bottom: var(--sp-3); }
.ch-block > h3 { font-size: clamp(19px,1rem+.5vw,23px); margin-top: var(--sp-4); }
.ch-figure { margin: 0 0 var(--sp-4); }
.ch-figure__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-3); }
.ch-figure figcaption { font: 400 12.5px/1.5 var(--sans); color: var(--ink-3); padding-top: 8px; border-top: var(--hair); margin-top: 8px; }

/* ─── Footer ────────────────────────────────────────────── */

.ch-footer { background: var(--ink); color: rgba(247,244,238,.74); font-size: 14.5px; margin-top: var(--sp-6); padding: var(--sp-6) 0 var(--sp-4); }
.ch-footer a { color: rgba(247,244,238,.86); }
.ch-footer a:hover { color: var(--paper); }
.ch-footer__grid { display: grid; gap: var(--sp-4); padding-bottom: var(--sp-5); }
@media (min-width: 700px) { .ch-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ch-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: var(--sp-4); } }

.ch-logo--footer { margin-bottom: var(--sp-3); }
.ch-logo--footer .ch-logo__mark { background: var(--paper); color: var(--ink); }
.ch-logo--footer .ch-logo__name { color: var(--paper); }
.ch-logo--footer .ch-logo__name em { color: #d9b3b6; }
.ch-logo--footer .ch-logo__sub { color: rgba(247,244,238,.5); }
.ch-footer__blurb { font-size: 14px; line-height: 1.6; max-width: 40ch; }
.ch-footer__meta { display: grid; gap: 0; margin: var(--sp-3) 0 0; border-top: 1px solid rgba(247,244,238,.18); }
.ch-footer__meta > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(247,244,238,.1); }
.ch-footer__meta dt { font: 600 10.5px/1.6 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,238,.5); }
.ch-footer__meta dd { margin: 0; font-size: 13.5px; color: var(--paper); }

.ch-footer__h { font: 700 11px/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--paper); margin-bottom: var(--sp-2); padding-bottom: 9px; border-bottom: 1px solid rgba(247,244,238,.25); }
.ch-footer__links { list-style: none; margin: 0; padding: 0; }
.ch-footer__links li { margin: 0 0 9px; }
.ch-footer__links a { font-size: 14px; }
.ch-address { font-style: normal; font-size: 14px; line-height: 1.65; margin-bottom: var(--sp-2); }
.ch-address strong { color: var(--paper); }
.ch-footer__links--contact { margin-bottom: var(--sp-2); }
.ch-footer__bn { font-size: 12.5px; color: rgba(247,244,238,.55); line-height: 1.6; margin: 0; }

.ch-disclaimer { border-top: 1px solid rgba(247,244,238,.25); border-bottom: 1px solid rgba(247,244,238,.25); padding: var(--sp-4) 0; }
.ch-disclaimer__h { font: 700 11px/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--paper); margin-bottom: var(--sp-2); }
.ch-disclaimer p { font-size: 13.5px; line-height: 1.68; max-width: 100ch; margin-bottom: 12px; }
.ch-disclaimer p:last-child { margin-bottom: 0; }
.ch-disclaimer strong { color: var(--paper); }

.ch-footer__bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2) var(--sp-4); padding-top: var(--sp-3); }
.ch-copy { font-size: 12.5px; margin: 0; color: rgba(247,244,238,.6); }
.ch-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin: 0; padding: 0; }
.ch-footer__legal li { margin: 0; font-size: 12.5px; }
.ch-footer__legal .ch-linkbtn { color: rgba(247,244,238,.86); font-size: 12.5px; }
.ch-age { margin: 0 0 0 auto; font: 700 15px/1 var(--serif); color: var(--paper); border: 1px solid rgba(247,244,238,.4); padding: 8px 12px; letter-spacing: .04em; }
.ch-age span { color: #d9b3b6; }

/* ─── Cookie banner ─────────────────────────────────────── */

.ch-cookie {
  position: fixed; z-index: 120; left: 0; right: 0; bottom: 0;
  background: var(--paper); border-top: 3px solid var(--ink);
  box-shadow: 0 -8px 30px rgba(22,19,15,.16);
}
.ch-cookie[hidden] { display: none; }
.ch-cookie__in { max-width: var(--wrap); margin: 0 auto; padding: var(--sp-3) var(--gutter); display: grid; gap: var(--sp-3); }
.ch-cookie__h { font-size: 20px; margin-bottom: 8px; }
.ch-cookie__body p { font-size: 14px; color: var(--ink-2); margin: 0; max-width: 82ch; }
.ch-cookie__cats { display: grid; gap: 10px; margin-top: var(--sp-3); padding-top: var(--sp-2); border-top: var(--hair); }
.ch-cookie__cats[hidden] { display: none; }
.ch-cookie__cat { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.ch-cookie__cat input { flex: 0 0 18px; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.ch-cookie__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.ch-cookie__actions .ch-btn { flex: 1 1 auto; min-width: 140px; }
.ch-cookie__save[hidden] { display: none; }
.ch-cookie__note { font-size: 12.5px; color: var(--ink-3); margin: 0; }
@media (min-width: 900px) {
  .ch-cookie__in { grid-template-columns: 1fr auto; align-items: center; grid-template-areas: "body actions" "note actions"; }
  .ch-cookie__body { grid-area: body; }
  .ch-cookie__actions { grid-area: actions; flex-direction: column; align-items: stretch; min-width: 210px; }
  .ch-cookie__actions .ch-btn { flex: none; }
  .ch-cookie__note { grid-area: note; }
}

/* ─── Back to top ───────────────────────────────────────── */

.ch-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 48px; height: 48px;
  background: var(--ink); color: var(--paper);
  border: 0; cursor: pointer; font-size: 20px; line-height: 1;
}
.ch-top[hidden] { display: none; }
.ch-top:hover { background: var(--accent); }

/* ─── Reveal on scroll ──────────────────────────────────── */

.ch-rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.ch-rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .ch-rv { opacity: 1; transform: none; } }

/* ─── Thank you ─────────────────────────────────────────── */

.ch-thanks { text-align: center; max-width: 60ch; margin: 0 auto; padding: var(--sp-6) 0; }
.ch-thanks__mark { font: 900 clamp(64px,4rem+3vw,110px)/1 var(--serif); color: var(--accent); margin-bottom: var(--sp-2); }
.ch-thanks h1 { font-size: clamp(28px,1.5rem+2vw,48px); font-weight: 900; }
.ch-thanks__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-4); }
