/* ============================================================
   StayDigest — the Canadian casino hotel digest
   One stylesheet for every page. Dark ink canvas, paper cards,
   copper rule. Mobile first.
   ============================================================ */

:root {
    /* canvas */
    --ink:        #0b1017;
    --ink-2:      #101725;
    --ink-3:      #16203180;
    --card:       #131c2b;
    --card-2:     #182437;

    /* paper — light surfaces used for contrast blocks */
    --paper:      #f3f0ea;
    --paper-2:    #e6e1d6;

    /* type on dark */
    --text:       #eceae5;
    --text-2:     #b6bfcd;
    --text-3:     #8791a1;

    /* type on paper */
    --dark:       #131a24;
    --dark-2:     #414c5b;
    --dark-3:     #6b7786;

    /* accents */
    --copper:     #d2683c;
    --copper-2:   #b6522c;
    --copper-dim: #d2683c26;
    --sea:        #55a596;
    --sea-dim:    #55a59622;
    --gold:       #e0b25f;

    /* lines */
    --line:       #22304563;
    --line-2:     #2b3b53;
    --line-paper: #cfc9bc;

    /* type */
    --display: "Fraunces", "Iowan Old Style", Georgia, serif;
    --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* rhythm */
    --wrap:  1240px;
    --gut:   20px;
    --s1: 6px;  --s2: 12px; --s3: 20px; --s4: 32px;
    --s5: 48px; --s6: 72px; --s7: 104px;

    --r:    14px;
    --r-sm: 9px;
    --shadow: 0 18px 40px -24px rgba(0,0,0,.75);
}

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

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

body {
    margin: 0;
    /* the off-canvas menu sits outside the viewport when closed; clip keeps it
       from widening the page without turning the body into a scroll container */
    overflow-x: clip;
    background: var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

@supports not (overflow: clip) {
    body { overflow-x: hidden; }
}

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

/* pic() wraps every frame in <picture>; the wrapper has to inherit the size of
   the media box or a percentage height on the <img> resolves against auto. */
.card__media picture, .rank__media picture, .hero__media picture,
.phead__media picture, .prov__item picture, .signup__media picture,
.figure picture { display: block; width: 100%; height: 100%; }

a { color: var(--text); text-decoration-color: var(--copper); text-underline-offset: 3px; }
a:hover { color: #fff; }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.012em;
    margin: 0 0 var(--s3);
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.7rem); }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.4rem); }
h3 { font-size: clamp(1.16rem, 1rem + .7vw, 1.45rem); }
h4 { font-size: 1.03rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
p  { margin: 0 0 var(--s3); }
ul, ol { margin: 0 0 var(--s3); padding-left: 1.15em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line-2); margin: var(--s5) 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 760px; }

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--copper); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; }

/* ── eyebrow / kicker ───────────────────────────────────── */
.kicker {
    font-size: .715rem; font-weight: 700; letter-spacing: .17em;
    text-transform: uppercase; color: var(--copper);
    margin: 0 0 var(--s2);
}
.kicker--sea { color: var(--sea); }

.lede { font-size: 1.13rem; color: var(--text-2); }

/* ── buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 46px; padding: 11px 22px;
    background: var(--copper); color: #fff;
    border: 1px solid var(--copper); border-radius: 100px;
    font: 600 .93rem/1.2 var(--sans); letter-spacing: .01em;
    text-decoration: none; cursor: pointer;
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--copper-2); border-color: var(--copper-2); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: #ffffff0f; border-color: var(--text-3); color: #fff; }
.btn--link { background: none; border-color: transparent; color: var(--text-2); text-decoration: underline; padding-inline: 8px; }
.btn--link:hover { background: none; color: #fff; transform: none; }
.btn--sm { min-height: 40px; padding: 8px 17px; font-size: .86rem; }
.btn--paper { background: var(--dark); border-color: var(--dark); }
.btn--paper:hover { background: #000; border-color: #000; }

/* ── notice bar ─────────────────────────────────────────── */
.notice {
    background: #070b11;
    border-bottom: 1px solid var(--line-2);
    font-size: .795rem; color: var(--text-3);
}
.notice__in { display: flex; align-items: center; gap: 12px; padding-block: 9px; }
.notice__tag {
    flex: none; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    font-size: .64rem; color: var(--gold);
    border: 1px solid #e0b25f4d; border-radius: 100px; padding: 3px 9px;
}
.notice p { margin: 0; }

/* ── masthead ───────────────────────────────────────────── */
.head {
    position: sticky; top: 0; z-index: 60;
    background: #0b1017f2;
    backdrop-filter: blur(11px);
    border-bottom: 1px solid var(--line-2);
}
.head__in { display: flex; align-items: center; gap: var(--s3); min-height: 70px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand__mark {
    display: grid; place-items: center; width: 40px; height: 40px; flex: none;
    background: var(--copper); color: #fff; border-radius: 11px;
    font: 700 .92rem/1 var(--sans); letter-spacing: .04em;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; color: var(--text); }
.brand__line { font-size: .69rem; letter-spacing: .085em; text-transform: uppercase; color: var(--text-3); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; margin: 0; }
.nav__link {
    display: block; padding: 10px 13px; border-radius: 100px;
    font-size: .93rem; font-weight: 500; color: var(--text-2); text-decoration: none;
}
.nav__link:hover { color: #fff; background: #ffffff0d; }
.nav__link[aria-current="page"] { color: var(--text); background: var(--copper-dim); }
.nav__toggle { display: none; }

.nav__sub {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 5;
    min-width: 244px; padding: 10px; margin: 0;
    list-style: none;
    background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r);
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item.has-sub:hover .nav__sub,
.nav__item.has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub li { margin: 0; }
.nav__sub a { display: block; padding: 8px 12px; border-radius: var(--r-sm); font-size: .89rem; color: var(--text-2); text-decoration: none; }
.nav__sub a:hover { background: #ffffff0f; color: #fff; }
.nav__sep {
    padding: 12px 12px 5px; font-size: .66rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; color: var(--text-3);
    border-top: 1px solid var(--line-2); margin-top: 6px;
}

.head__cta { flex: none; }

.burger {
    display: none; width: 44px; height: 44px; flex: none;
    background: none; border: 1px solid var(--line-2); border-radius: 11px; cursor: pointer;
    padding: 12px 10px;
}
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── sections ───────────────────────────────────────────── */
.sec { padding-block: var(--s6); }
.sec--tight { padding-block: var(--s5); }
.sec--paper { background: var(--paper); color: var(--dark); }
.sec--paper h1, .sec--paper h2, .sec--paper h3 { color: var(--dark); }
.sec--paper a { color: var(--dark); }
.sec--paper .btn { color: #fff; }
.sec--paper .btn--ghost { color: var(--dark); border-color: var(--line-paper); }
.sec--paper .btn--ghost:hover { background: #0000000f; border-color: var(--dark-3); color: var(--dark); }
.sec--paper .btn--link { color: var(--dark-2); }
.sec--paper .card__more { color: var(--copper-2); }
.sec--paper .lede { color: var(--dark-2); }
.sec--band { background: var(--ink-2); border-block: 1px solid var(--line-2); }

.sec__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s5); }
.sec__head p { margin: 0; max-width: 62ch; color: var(--text-2); }
.sec--paper .sec__head p { color: var(--dark-2); }
.sec__head h2 { margin-bottom: 0; }
.sec__headtext { max-width: 68ch; }

/* ── hero ───────────────────────────────────────────────── */
.hero { position: relative; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, #0b1017cc 0%, #0b1017a6 42%, var(--ink) 100%);
}
.hero__in { position: relative; z-index: 2; padding-block: clamp(56px, 9vw, 104px); }
.hero__grid { display: grid; gap: var(--s5); }
.hero h1 { margin-bottom: var(--s3); max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--copper); }
.hero__lede { font-size: clamp(1.02rem, .95rem + .4vw, 1.22rem); color: var(--text-2); max-width: 58ch; }
.hero__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s4); }

.hero__card {
    background: #101825e6; border: 1px solid var(--line-2); border-radius: var(--r);
    padding: var(--s4); backdrop-filter: blur(6px);
}
.hero__card h2 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; margin-bottom: var(--s3); }
.hero__card ol { list-style: none; margin: 0; padding: 0; counter-reset: pick; }
.hero__card li { display: flex; gap: 14px; padding: 11px 0; border-top: 1px solid var(--line); margin: 0; }
.hero__card li:first-child { border-top: 0; padding-top: 0; }
.hero__card li::before {
    counter-increment: pick; content: counter(pick);
    font-family: var(--display); font-size: 1.1rem; color: var(--copper); flex: none; width: 1.2em;
}
.hero__card a { text-decoration: none; font-weight: 600; }
.hero__card a:hover { text-decoration: underline; }
.hero__card span { display: block; font-size: .81rem; color: var(--text-3); }

/* ── page header (interior pages) ───────────────────────── */
.phead { position: relative; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.phead__media { position: absolute; inset: 0; }
.phead__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.phead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #0b1017d9, var(--ink)); }
.phead__in { position: relative; z-index: 2; padding-block: clamp(40px, 6vw, 74px); }
.phead h1 { max-width: 22ch; margin-bottom: var(--s3); }
.phead p { max-width: 66ch; color: var(--text-2); margin: 0; }

.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 var(--s3); font-size: .81rem; color: var(--text-3); }
.crumbs li { margin: 0; display: flex; gap: 8px; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--line-2); }
.crumbs a { color: var(--text-3); text-decoration: none; }
.crumbs a:hover { color: var(--text); text-decoration: underline; }

/* ── grids ──────────────────────────────────────────────── */
.grid { display: grid; gap: var(--s4); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--sidebar { grid-template-columns: minmax(0, 1fr) 320px; gap: var(--s5); align-items: start; }
.grid--aside-left { grid-template-columns: 320px minmax(0, 1fr); gap: var(--s5); align-items: start; }

/* ── cards ──────────────────────────────────────────────── */
.card {
    display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r);
    overflow: hidden; transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: #3c4c66; transform: translateY(-2px); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--s3) var(--s3) var(--s4); display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .76rem; color: var(--text-3); margin-bottom: 10px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { text-decoration: underline; }
.card p { font-size: .93rem; color: var(--text-2); margin-bottom: var(--s3); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .84rem; }
.card__more { color: var(--copper); font-weight: 600; text-decoration: none; }
.card__more:hover { color: var(--copper); text-decoration: underline; }

.card--paper { background: #fff; border-color: var(--line-paper); }
.card--paper:hover { border-color: var(--dark-3); }
.card--paper h3, .card--paper h3 a { color: var(--dark); }
.card--paper p { color: var(--dark-2); }
.card--paper .card__meta { color: var(--dark-3); }

/* score chip */
.chip {
    display: inline-flex; align-items: baseline; gap: 4px;
    background: var(--sea-dim); border: 1px solid #55a5964d; border-radius: 100px;
    padding: 3px 11px; font-size: .8rem; font-weight: 700; color: #86cabd;
}
.chip small { font-weight: 500; opacity: .7; font-size: .74em; }
.chip--copper { background: var(--copper-dim); border-color: #d2683c59; color: #ec9061; }

.tag {
    display: inline-block; font-size: .69rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--text-3);
    border: 1px solid var(--line-2); border-radius: 100px; padding: 3px 10px;
}

/* ── ranked list (the digest) ───────────────────────────── */
.rank { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s4); }
.rank__item {
    display: grid; grid-template-columns: 74px minmax(0, 1fr) 300px; gap: var(--s4);
    align-items: start; margin: 0;
    padding: var(--s4) 0; border-top: 1px solid var(--line-2);
}
.rank__item:first-child { border-top: 0; padding-top: 0; }
.rank__no {
    font-family: var(--display); font-size: clamp(2.3rem, 1.6rem + 2vw, 3.2rem);
    line-height: .9; color: var(--copper); font-weight: 600;
}
.rank__main h3 { margin-bottom: 6px; }
.rank__main h3 a { text-decoration: none; }
.rank__main h3 a:hover { text-decoration: underline; }
.rank__where { font-size: .84rem; color: var(--text-3); margin-bottom: 12px; }
.rank__tag { font-size: 1rem; color: var(--text-2); margin-bottom: var(--s3); }
.rank__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0; margin: 0 0 var(--s3); font-size: .83rem; color: var(--text-3); }
.rank__facts li { margin: 0; }
.rank__facts strong { color: var(--text-2); font-weight: 600; }
.rank__aside { display: flex; flex-direction: column; gap: 12px; }
.rank__media { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 3 / 2; }
.rank__media img { width: 100%; height: 100%; object-fit: cover; }
.rank__score { display: flex; align-items: center; gap: 12px; }
.rank__score b { font-family: var(--display); font-size: 1.7rem; color: var(--sea); font-weight: 600; }
.rank__score span { font-size: .79rem; color: var(--text-3); }

/* ── scorecard bars ─────────────────────────────────────── */
.scores { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.scores li { margin: 0; }
.scores__top { display: flex; justify-content: space-between; font-size: .84rem; margin-bottom: 5px; }
.scores__top b { color: var(--sea); font-weight: 600; }
.scores__bar { height: 5px; background: #ffffff14; border-radius: 100px; overflow: hidden; }
.scores__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--sea), var(--gold)); border-radius: 100px; }

/* ── province tiles ─────────────────────────────────────── */
.prov { display: grid; gap: var(--s3); grid-template-columns: repeat(4, 1fr); }
.prov__item {
    position: relative; display: block; overflow: hidden;
    border: 1px solid var(--line-2); border-radius: var(--r); text-decoration: none;
    min-height: 168px;
}
.prov__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .2s ease, transform .4s ease; }
.prov__item:hover img { opacity: .7; transform: scale(1.04); }
.prov__body { position: relative; z-index: 2; padding: var(--s3); display: flex; flex-direction: column; height: 100%; justify-content: flex-end; min-height: 168px; background: linear-gradient(180deg, #0b101726 30%, #0b1017e6); }
.prov__body h3 { font-size: 1.08rem; margin: 0 0 4px; }
.prov__body span { font-size: .78rem; color: var(--text-3); }

/* ── stats ──────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); margin: 0; }
.stats div { border-left: 2px solid var(--copper); padding-left: var(--s3); }
.stats dt { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.stats dd { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); line-height: 1; color: var(--text); }
.sec--paper .stats dd { color: var(--dark); }
.sec--paper .stats dt { color: var(--dark-3); }

/* ── article / prose ────────────────────────────────────── */
.prose { max-width: 74ch; }
.prose h2 { margin-top: var(--s6); }
.prose h3 { margin-top: var(--s5); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin-bottom: var(--s3); }
.prose li { color: var(--text-2); }
.prose a { color: var(--text); }
.sec--paper .prose li { color: var(--dark-2); }
.sec--paper .prose p { color: var(--dark-2); }

.callout {
    border: 1px solid var(--line-2); border-left: 3px solid var(--copper);
    border-radius: var(--r-sm); background: var(--ink-2);
    padding: var(--s3) var(--s4); margin-bottom: var(--s4);
}
.callout :last-child { margin-bottom: 0; }
.callout h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; margin-bottom: 8px; }
.callout--sea { border-left-color: var(--sea); }
.sec--paper .callout { background: #ffffff8c; border-color: var(--line-paper); }
.sec--paper .callout p { color: var(--dark-2); }

/* ── definition table ───────────────────────────────────── */
.dl { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 0; margin: 0 0 var(--s4); border-top: 1px solid var(--line-2); }
.dl dt { padding: 12px 16px 12px 0; border-bottom: 1px solid var(--line-2); font-weight: 600; font-size: .9rem; color: var(--text-2); }
.dl dd { padding: 12px 0; border-bottom: 1px solid var(--line-2); margin: 0; font-size: .93rem; color: var(--text); }

.table-scroll { overflow-x: auto; margin-bottom: var(--s4); }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
th { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); font-weight: 700; }
.sec--paper th { color: var(--dark-3); }
.sec--paper th, .sec--paper td { border-color: var(--line-paper); }

/* ── review layout ──────────────────────────────────────── */
.review { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: var(--s5); align-items: start; }
.toc { position: sticky; top: 96px; font-size: .89rem; }
.toc h2 { font-size: .72rem; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { margin: 0; }
.toc a { display: block; padding: 6px 0 6px 14px; border-left: 2px solid var(--line-2); color: var(--text-2); text-decoration: none; }
.toc a:hover, .toc a.is-active { border-left-color: var(--copper); color: #fff; }

.review__block { scroll-margin-top: 110px; margin-bottom: var(--s6); }
.review__block:last-child { margin-bottom: 0; }
.review__block h2 { margin-bottom: var(--s3); }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; margin-bottom: var(--s5); }
.facts div { background: var(--card); padding: var(--s3); }
.facts dt { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.facts dd { margin: 0; font-size: .97rem; font-weight: 600; }

.verdictbox {
    background: var(--card-2); border: 1px solid var(--line-2); border-radius: var(--r);
    padding: var(--s4); margin-bottom: var(--s5);
}
.verdictbox .rank__score { margin-bottom: var(--s3); }

.proscons { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
.proscons h3 { font-family: var(--sans); font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: .95rem; color: var(--text-2); }
.proscons li::before { position: absolute; left: 0; top: -1px; font-weight: 700; }
.proscons__yes li::before { content: "+"; color: var(--sea); }
.proscons__no li::before { content: "–"; color: var(--copper); }

/* ── FAQ / accordion ────────────────────────────────────── */
.faq { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__q {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s3);
    background: none; border: 0; cursor: pointer; text-align: left;
    padding: var(--s3) 0; color: var(--text);
    font: 600 1.03rem/1.4 var(--sans);
}
.faq__q::after { content: "+"; font-size: 1.3rem; color: var(--copper); flex: none; }
.faq__q[aria-expanded="true"]::after { content: "–"; }
.faq__a { padding: 0 0 var(--s3); color: var(--text-2); max-width: 78ch; }
.faq__a :last-child { margin-bottom: 0; }
.sec--paper .faq { border-color: var(--line-paper); }
.sec--paper .faq__item { border-color: var(--line-paper); }
.sec--paper .faq__q { color: var(--dark); }
.sec--paper .faq__a { color: var(--dark-2); }

/* ── newsletter / forms ─────────────────────────────────── */
.signup { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s5); align-items: center; }
.signup__media { border-radius: var(--r); overflow: hidden; }

.form { display: grid; gap: var(--s3); }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--text-2); }
.field .hint { font-size: .79rem; color: var(--text-3); font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%; padding: 12px 14px; min-height: 46px;
    background: var(--ink-2); color: var(--text);
    border: 1px solid var(--line-2); border-radius: var(--r-sm);
    font: 400 .97rem/1.5 var(--sans);
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #6b7686; }
.sec--paper input[type="text"], .sec--paper input[type="email"],
.sec--paper select, .sec--paper textarea {
    background: #fff; color: var(--dark); border-color: var(--line-paper);
}
.sec--paper .field label { color: var(--dark-2); }
.sec--paper .field .hint { color: var(--dark-3); }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--text-2); }
.check input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--copper); }
.sec--paper .check { color: var(--dark-2); }

.form__note { font-size: .82rem; color: var(--text-3); }
.sec--paper .form__note { color: var(--dark-3); }

/* ── disclaimer strip ───────────────────────────────────── */
.disclaim {
    border: 1px solid var(--line-2); border-radius: var(--r);
    background: var(--ink-2); padding: var(--s3) var(--s4);
    font-size: .87rem; color: var(--text-3);
}
.disclaim :last-child { margin-bottom: 0; }
.disclaim strong { color: var(--text-2); }

/* ── footer ─────────────────────────────────────────────── */
.foot { background: #070b11; border-top: 1px solid var(--line-2); padding-block: var(--s6) var(--s4); font-size: .9rem; color: var(--text-3); }
.foot__top { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: var(--s5); padding-bottom: var(--s5); border-bottom: 1px solid var(--line-2); }
.foot__mission { color: var(--text-2); margin: var(--s3) 0; font-size: .93rem; }
.foot__mission strong { color: var(--text); }
.foot__counts { display: flex; flex-wrap: wrap; gap: var(--s4); margin: 0; }
.foot__counts dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.foot__counts dd { margin: 2px 0 0; font-family: var(--display); font-size: 1.5rem; color: var(--text); }
.foot__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.foot__nav h2 { font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.foot__nav ul { list-style: none; margin: 0; padding: 0; }
.foot__nav li { margin-bottom: 8px; }
.foot__nav a { color: var(--text-3); text-decoration: none; }
.foot__nav a:hover { color: var(--text); text-decoration: underline; }
.foot__legal { padding-block: var(--s4); border-bottom: 1px solid var(--line-2); font-size: .82rem; line-height: 1.65; max-width: 96ch; }
.foot__legal a { color: var(--text-2); }
.foot__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s3); padding-top: var(--s4); font-size: .81rem; }
.foot__meta address { font-style: normal; line-height: 1.7; }
.foot__meta strong { color: var(--text-2); }
.foot__copy { margin: 0; text-align: right; }

/* ── cookie banner ──────────────────────────────────────── */
.cookie {
    position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
    z-index: 80; width: min(1020px, calc(100% - 28px));
    background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r);
    box-shadow: var(--shadow); padding: var(--s4);
}
.cookie[hidden] { display: none; }
.cookie__in { display: grid; gap: var(--s3); }
.cookie h2 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; margin-bottom: 6px; }
.cookie p { margin: 0; font-size: .89rem; color: var(--text-2); }
.cookie__acts { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie__settings { border-top: 1px solid var(--line-2); padding-top: var(--s3); display: grid; gap: 12px; justify-items: start; }
.cookie__settings[hidden] { display: none; }
.cookie__settings .btn { justify-self: start; }
.cookie__row { display: flex; gap: 11px; align-items: flex-start; font-size: .87rem; color: var(--text-2); }
.cookie__row input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--sea); }
.cookie__link { font-size: .82rem; }

/* ── odds and ends ──────────────────────────────────────── */
.center { text-align: center; }
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s4); }
.figure { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); margin-bottom: var(--s4); }
.figure--paper { border-color: var(--line-paper); }
.figure figcaption { padding: 10px var(--s3); font-size: .81rem; color: var(--text-3); background: var(--ink-2); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s5); }
.filters button {
    background: none; border: 1px solid var(--line-2); border-radius: 100px;
    color: var(--text-2); padding: 8px 16px; min-height: 40px; cursor: pointer;
    font: 500 .87rem/1 var(--sans);
}
.filters button:hover { color: #fff; border-color: var(--text-3); }
.filters button.is-on { background: var(--copper); border-color: var(--copper); color: #fff; }

.is-hidden { display: none !important; }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .prov { grid-template-columns: repeat(3, 1fr); }
    .rank__item { grid-template-columns: 60px minmax(0, 1fr) 240px; }
    .review { grid-template-columns: 210px minmax(0, 1fr); gap: var(--s4); }
    .grid--sidebar { grid-template-columns: minmax(0, 1fr) 280px; }
    .grid--aside-left { grid-template-columns: 280px minmax(0, 1fr); }
}

@media (max-width: 900px) {
    .head__cta { display: none; }
    .burger { display: block; }
    .nav {
        display: none;
        position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 70;
        background: var(--ink-2); border-left: 1px solid var(--line-2);
        padding: var(--s5) var(--s3) var(--s4); overflow-y: auto; margin: 0;
    }
    body.nav-open .nav { display: block; animation: nav-in .22s ease both; }
    body.nav-open { overflow: hidden; }
    @keyframes nav-in { from { transform: translateX(102%); } to { transform: none; } }
    .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav__item { display: grid; grid-template-columns: 1fr 46px; align-items: center; }
    .nav__link { padding: 13px 12px; font-size: 1rem; border-radius: var(--r-sm); }
    .nav__toggle {
        display: block; width: 46px; height: 46px; background: none; cursor: pointer;
        border: 1px solid var(--line-2); border-radius: var(--r-sm); position: relative;
    }
    .nav__toggle::after { content: "+"; color: var(--copper); font-size: 1.25rem; }
    .nav__toggle[aria-expanded="true"]::after { content: "–"; }
    .nav__sub {
        position: static; grid-column: 1 / -1; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: none; border: 0; border-left: 2px solid var(--line-2);
        border-radius: 0; margin: 4px 0 8px 12px; padding: 0 0 0 8px; display: none;
    }
    .nav__item.is-open .nav__sub { display: block; }
    .nav__sep { border-top: 0; padding-top: 14px; }
    .grid--3, .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--sidebar, .grid--aside-left { grid-template-columns: minmax(0, 1fr); }
    .grid--aside-left aside { order: 2; }
    .review { grid-template-columns: minmax(0, 1fr); }
    .toc { position: static; border: 1px solid var(--line-2); border-radius: var(--r); padding: var(--s3); }
    .toc ol { columns: 2; column-gap: var(--s3); }
    .rank__item { grid-template-columns: 48px minmax(0, 1fr); }
    .rank__aside { grid-column: 2 / -1; flex-direction: row-reverse; align-items: center; justify-content: flex-end; gap: var(--s3); }
    .rank__media { width: 190px; flex: none; }
    .foot__top { grid-template-columns: minmax(0, 1fr); }
    .signup { grid-template-columns: minmax(0, 1fr); }
    .signup__media { order: -1; }
}

@media (max-width: 700px) {
    :root { --gut: 16px; --s6: 56px; --s7: 72px; }
    body { font-size: 16px; }
    .notice__in { align-items: flex-start; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
    .prov { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
    .proscons { grid-template-columns: minmax(0, 1fr); }
    .dl { grid-template-columns: minmax(0, 1fr); }
    .dl dt { border-bottom: 0; padding-bottom: 0; }
    .dl dd { padding-top: 4px; }
    .toc ol { columns: 1; }
    .rank__aside { flex-direction: column; align-items: stretch; }
    .rank__media { width: 100%; }
    .foot__nav { grid-template-columns: minmax(0, 1fr); }
    .foot__meta { flex-direction: column; }
    .foot__copy { text-align: left; }
    .cookie { bottom: 10px; padding: var(--s3); }
    .hero__card { padding: var(--s3); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
