/* ═══════════════════════════════════════════════════════════════
   DICE FLOOR — Main Stylesheet
═══════════════════════════════════════════════════════════════ */

/* ─── SELF-HOSTED FONTS ───────────────────────────────────────── */
@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-VariableFont_opsz-wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Italic-VariableFont_opsz-wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --black:    #111111;
    --ink:      #1a1a1a;
    --mid:      #666666;
    --light:    #767676;
    --rule:     #d0ccc8;
    --rule-dark:#111111;
    --bg:       #ffffff;
    --accent:   #c0392b;
    --warm:     #faf8f5;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
a:hover .article-headline { color: var(--accent); }

/* ─── TOP UTILITY BAR ─────────────────────────────────────────── */
.util-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 40px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid);
    border-bottom: 1px solid var(--rule);
}
.util-bar a { color: var(--mid); transition: color 0.15s; }
.util-bar a:hover { color: var(--accent); }
.util-left, .util-right { display: flex; align-items: center; gap: 20px; }
.util-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 9px; border: 1px solid var(--rule); border-radius: 999px;
    font-size: 11px; letter-spacing: 0.12em;
    background: none; cursor: pointer; color: inherit;
    font-family: inherit; font-weight: inherit; text-transform: inherit;
    transition: border-color 0.15s, color 0.15s;
}
.util-pill:hover { border-color: var(--ink); color: var(--ink); }
.util-dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

/* ─── MASTHEAD ────────────────────────────────────────────────── */
.masthead {
    text-align: center; padding: 28px 40px 20px; position: relative;
}
.masthead::before, .masthead::after {
    content: ''; position: absolute; top: 50%; width: 80px; height: 1px;
    background: var(--rule); transform: translateY(-50%);
}
.masthead::before { left: 40px; }
.masthead::after  { right: 40px; }
.masthead-tag {
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 17px; color: var(--mid);
    letter-spacing: 0.01em;
}

/* ─── NEWSLETTER MODAL ────────────────────────────────────────── */
.newsletter-modal-backdrop {
    visibility: hidden; opacity: 0; pointer-events: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 900;
    transition: opacity 0.2s;
}
.newsletter-modal-backdrop.open { visibility: visible; opacity: 1; pointer-events: auto; }
.newsletter-modal {
    visibility: hidden; opacity: 0; pointer-events: none;
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg); padding: 32px 32px 24px;
    z-index: 901; max-width: 620px; width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transition: opacity 0.2s;
}
.newsletter-modal.open { visibility: visible; opacity: 1; pointer-events: auto; }
.newsletter-modal .beehiiv-embed { width: 100% !important; display: block; }
.newsletter-modal-close {
    position: absolute; top: 10px; right: 14px;
    background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--mid); line-height: 1;
}
.newsletter-modal-close:hover { color: var(--accent); }

/* ─── SOCIAL MODAL ────────────────────────────────────────────── */
.social-modal {
    visibility: hidden; opacity: 0; pointer-events: none;
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg); padding: 28px 28px 20px;
    z-index: 901; max-width: 380px; width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transition: opacity 0.2s;
}
.social-modal.open { visibility: visible; opacity: 1; pointer-events: auto; }
.social-modal-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--mid);
    margin: 0 0 4px;
}
.social-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--ink);
    margin: 0 0 18px; line-height: 1.2;
}
.social-links { display: flex; flex-direction: column; gap: 2px; }
.social-link {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 8px; text-decoration: none;
    color: var(--ink); border-radius: 4px;
    transition: background 0.15s;
}
.social-link:hover { background: var(--bg-alt, #f7f5f2); }
.social-icon {
    width: 22px; height: 22px; flex-shrink: 0; color: var(--mid);
    transition: color 0.15s;
}
.social-link:hover .social-icon { color: var(--accent); }
.social-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--ink);
}
.social-handle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; color: var(--mid); margin-left: 4px;
}
.social-chev {
    width: 16px; height: 16px; flex-shrink: 0;
    color: var(--mid); margin-left: auto;
}

.masthead-logo { display: inline-block; line-height: 1; letter-spacing: -0.01em; }
.masthead-logo .word-dice {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; font-style: italic; font-size: 62px;
    color: #c0392b; letter-spacing: -0.02em;
}
.masthead-logo .word-floor {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300; font-size: 54px;
    color: #1a1a1a; letter-spacing: 0.04em; padding-left: 6px;
}

/* ─── SEPARATOR LINES ─────────────────────────────────────────── */
.rule-light { border: none; border-top: 1px solid var(--rule); margin: 0 40px; }
.rule-dark  { border: none; border-top: 1px solid var(--rule-dark); margin: 0 40px; }

/* ─── PRIMARY NAV ─────────────────────────────────────────────── */
.primary-nav {
    display: flex; align-items: center; justify-content: center; padding: 0 40px;
}
.primary-nav a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black); padding: 14px 18px; position: relative; transition: color 0.15s;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a.active { color: var(--accent); }
.primary-nav a.active::after {
    content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
    height: 2px; background: var(--accent);
}

/* ─── NAV WRAP + CARET ────────────────────────────────────────── */
.nav-wrap { position: relative; }
.nav-caret {
    font-size: 9px; vertical-align: middle; margin-left: 3px; opacity: 0.6;
}

/* ─── MEGA MENU ───────────────────────────────────────────────── */
.mega-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    z-index: 500;
    visibility: hidden; opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.mega-menu.open {
    visibility: visible; opacity: 1; pointer-events: auto;
    transform: translateY(0);
}
.mega-menu-inner {
    max-width: 1280px; margin: 0 auto; padding: 16px 40px 20px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.mega-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 12px; color: var(--ink); transition: background 0.15s;
}
.mega-item:hover { background: var(--warm); color: var(--ink); }
.mega-img {
    width: 64px; height: 64px; object-fit: cover; flex-shrink: 0;
    background: var(--rule); display: block;
}
.mega-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.mega-title {
    font-family: 'Lora', serif; font-size: 15px; font-weight: 500;
    color: #3d3d3d; line-height: 1.2; transition: color 0.15s;
}
.mega-item:hover .mega-title { color: var(--accent); }
.mega-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; color: var(--mid); line-height: 1.4;
}

/* ─── CONTENT WRAPPER ─────────────────────────────────────────── */
.content { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ─── CATEGORY TAG ────────────────────────────────────────────── */
.tag {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}

/* ─── ARTICLE COMPONENTS ──────────────────────────────────────── */
.article-img {
    display: block; width: 100%; aspect-ratio: 16 / 10;
    object-fit: cover; background: #e8e8e8; margin-bottom: 14px;
}
.article-headline {
    font-family: 'Lora', serif;
    font-weight: 500; color: #3d3d3d; line-height: 1.2; margin-bottom: 8px; letter-spacing: 0.02em;
}
.article-dek {
    font-family: 'AGaramondPro', 'Adobe Garamond Pro', garamond, Times, serif;
    font-size: 18px; font-weight: 400; color: #222222;
    line-height: 1.55; margin-bottom: 10px;
}
.article-footer {
    display: flex; align-items: center;
    justify-content: space-between; margin-top: 4px;
}
.article-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; font-weight: 400; color: var(--light); letter-spacing: 0.02em;
}
.speaker-btn {
    background: none; border: none; cursor: pointer; padding: 8px; margin: -8px;
    color: var(--light); line-height: 1; transition: color 0.15s;
    display: flex; align-items: center;
}
.speaker-btn:hover { color: var(--accent); }
.speaker-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ─── ROW 1 — HERO ────────────────────────────────────────────── */
.row-hero {
    display: grid; grid-template-columns: 1fr 2.2fr 280px;
    gap: 0; padding: 24px 0 16px;
    margin-bottom: 0;
}
.hero-left {
    display: flex; flex-direction: column;
    padding-right: 16px; border-right: 1px solid var(--rule);
}
.hero-left-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
}
.hero-left-item {
    padding: 11px 0; border-bottom: 1px solid var(--rule);
}
.hero-left-item:last-child { border-bottom: none; }
.hero-left-tag {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 5px;
}
.hero-left-title {
    font-family: 'Lora', serif;
    font-weight: 500; font-size: 16.5px; color: #3d3d3d;
    line-height: 1.3; margin-bottom: 5px; letter-spacing: 0.02em;
}
a:hover .hero-left-title { color: var(--accent); }
.hero-left-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; color: var(--light);
}
.hero-main {
    padding: 0 16px; border-right: 1px solid var(--rule);
}
.hero-main .hero-top-img {
    display: block; width: 100%; aspect-ratio: 21 / 9;
    object-fit: cover; background: #e8e8e8; margin-bottom: 14px;
}
.hero-headline { font-size: 38px !important; line-height: 1.08 !important; letter-spacing: -0.02em !important; color: #3d3d3d !important; }
a:hover .hero-headline { color: var(--accent) !important; }
.hero-main .article-dek { font-size: 17px; }
.hero-side {
    display: flex; flex-direction: column; gap: 0;
    padding-left: 16px; margin-top: -4px;
}
.hero-aside-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
}

/* Audio cards */
.audio-card {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.audio-card:last-of-type { border-bottom: none; }
.hero-audio-pill {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid #c0392b;
    color: #c0392b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 120ms, color 120ms;
}
.hero-audio-pill svg { width: 16px; height: 16px; fill: currentColor; margin-left: 2px; }
.hero-audio-pill:hover { background: #c0392b; color: var(--surface); }
.audio-thumb-link { display: block; flex-shrink: 0; }
.audio-thumb-wrap {
    position: relative; width: 60px; height: 60px;
    overflow: hidden; background: #e8e8e8;
    display: flex; align-items: center; justify-content: center;
}
.audio-thumb-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.audio-play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center;
    justify-content: center; background: rgba(0,0,0,0.22); transition: background 0.2s;
}
.audio-thumb-link:hover .audio-play-overlay { background: rgba(0,0,0,0.4); }
.audio-play-circle {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
}
.audio-play-circle svg { width: 8px; height: 8px; fill: var(--black); margin-left: 1px; }
.audio-card-text { flex: 1; min-width: 0; }
.audio-title {
    font-family: 'Lora', serif;
    font-weight: 500; font-size: 16.5px; color: #3d3d3d; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 3px;
}
.audio-title:hover { color: var(--accent); }
.audio-date {
    font-family: 'Source Sans 3', sans-serif; font-size: 11px;
    font-weight: 400; color: var(--light); letter-spacing: 0.02em;
    display: block;
}

/* ─── ROW 2 — THREE COLUMNS ───────────────────────────────────── */
.row-three {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.row-three .article-headline { font-size: 24px; }

/* ─── ROW 3 — WIDE + STACK ────────────────────────────────────── */
.row-wide-stack {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 40px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.row-wide-stack .main .article-headline { font-size: 32px; letter-spacing: -0.01em; }
.row-wide-stack .stack {
    display: flex; flex-direction: column; gap: 0;
    border-left: 1px solid var(--rule); padding-left: 40px;
}
.row-wide-stack .stack-item {
    padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--rule);
}
.row-wide-stack .stack-item:last-child { border-bottom: none; margin-bottom: 0; }
.row-wide-stack .stack-item .article-headline { font-size: 18px; }

/* ─── ROW 4 — FOUR COLUMNS ────────────────────────────────────── */
.row-four {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.row-four .article-headline { font-size: 19px; }
.row-four .article-dek { display: none; }

/* ─── ROW 5 — TWO COLUMNS ─────────────────────────────────────── */
.row-two {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 40px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.row-two .article-headline { font-size: 28px; }
.row-two .article-img { aspect-ratio: 16 / 9; }

/* ─── FOOTER ──────────────────────────────────────────────────── */

/* Local color tokens — scoped to the footer and install sheet */
.site-footer,
.sheet, .sheet-backdrop, .toast {
    --sf-paper:      #faf7f2;
    --sf-paper-2:    #f3eee5;
    --sf-rule:       #e3dccf;
    --sf-rule-2:     #d8cfbe;
    --sf-ink:        #2b2622;
    --sf-ink-soft:   #6f655a;
    --sf-ink-quiet:  #948878;
    --sf-accent:     #b94a3c;
    --sf-accent-ink: #8e3326;
}

.site-footer {
    margin: 60px 0 0;
    background: var(--sf-paper);
}

/* Install band — temporarily hidden */
.sf-install {
    display: none;
}
.sf-install-visible {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    padding: 40px 48px 36px;
    background: linear-gradient(180deg, #fbf8f3 0%, #f6f1e6 100%);
    border-bottom: 1px solid var(--sf-rule);
}
@media (max-width: 760px) {
    .sf-install { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}
.sf-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sf-accent-ink);
}
.sf-eyebrow::before {
    content: '';
    display: inline-block;
    width: 14px; height: 1px;
    background: var(--sf-accent-ink);
    vertical-align: middle;
    margin-right: 10px; margin-bottom: 3px;
}
.sf-install h2 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 500; font-size: 30px; line-height: 1.2;
    color: var(--sf-ink); margin: 12px 0 14px; letter-spacing: -0.005em;
}
.sf-install h2 em { font-style: italic; color: var(--sf-accent-ink); }
.sf-install p {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px; line-height: 1.6; color: var(--sf-ink-soft); max-width: 46ch;
}
.sf-pill {
    display: inline-block;
    padding: 1px 8px;
    border: 1px solid var(--sf-rule-2);
    border-radius: 999px;
    font-size: 12.5px; color: var(--sf-ink);
    background: #fff; margin: 0 1px; white-space: nowrap;
}
.sf-get-buttons {
    display: flex; flex-direction: column; gap: 12px; align-self: center;
}
.sf-get-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 22px;
    background: #1c1815; color: #fbf8f3;
    border: 1px solid #1c1815; border-radius: 12px;
    text-decoration: none; cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    width: 100%; text-align: left;
    font-family: 'Source Sans 3', sans-serif;
}
.sf-get-btn:hover {
    background: #2a2522; color: #fbf8f3;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -10px rgba(28,24,21,0.5);
}
.sf-get-btn:active { transform: translateY(0); }
.sf-get-btn .glyph { width: 28px; height: 28px; flex-shrink: 0; fill: #fbf8f3; }
.sf-get-btn .lines { display: flex; flex-direction: column; line-height: 1.1; }
.sf-get-btn .small { font-size: 11.5px; opacity: 0.72; letter-spacing: 0.04em; }
.sf-get-btn .big   { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin-top: 2px; }
.sf-installed-state {
    display: none;
    align-items: center; gap: 10px;
    padding: 14px 20px;
    background: #f0e8d6;
    border: 1px solid var(--sf-rule-2); border-radius: 12px;
    font-size: 14px; color: var(--sf-ink);
}
.sf-installed-state .dot {
    width: 8px; height: 8px;
    background: #4d8f6a; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(77,143,106,0.18);
}
body.df-installed .sf-installed-state { display: flex; }
body.df-installed .sf-get-btn { display: none; }

/* Link columns */
.sf-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px; padding: 44px 48px 32px;
    border-top: 1px solid var(--sf-rule);
}
@media (max-width: 880px) {
    .sf-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; padding: 36px 28px 28px; }
    .sf-grid .sf-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .sf-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px 24px; }
}
.sf-col-brand .wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300; font-size: 22px;
    color: var(--sf-accent); letter-spacing: -0.01em;
}
.sf-col-brand .wordmark em {
    font-family: 'DM Sans', sans-serif;
    font-style: normal; font-weight: 300;
    color: var(--sf-ink); letter-spacing: 0.04em; margin-left: 3px;
}
.sf-col-brand .tag {
    display: block;
    margin-top: 10px; margin-bottom: 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300;
    font-size: 17px; letter-spacing: 0.01em;
    text-transform: none;
    color: var(--sf-ink-soft);
    max-width: 36ch; line-height: 1.45;
}
.sf-col-brand .badge {
    display: inline-block; margin-top: 18px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sf-accent-ink);
    padding: 5px 10px; background: #fff;
    border: 1px solid var(--sf-rule-2); border-radius: 999px;
}
.sf-grid h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sf-ink-quiet); margin-bottom: 14px;
}
.sf-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sf-grid a {
    color: var(--sf-ink); text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    transition: color .12s, border-color .12s;
}
.sf-grid a:hover { color: var(--sf-accent-ink); border-bottom-color: var(--sf-accent-ink); }

/* Sub bar */
.sf-sub {
    border-top: 1px solid var(--sf-rule);
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; background: #f6f1e6; flex-wrap: wrap;
}
@media (max-width: 600px) { .sf-sub { padding: 16px 24px; } }
.sf-copy {
    font-size: 13px; color: var(--sf-ink-quiet);
    font-family: 'Lora', Georgia, serif;
}
.sf-copy em { font-style: italic; }
.sf-sub-links { display: flex; gap: 18px; list-style: none; }
.sf-sub-links a {
    font-size: 13px; color: var(--sf-ink-soft);
    text-decoration: none; border-bottom: 1px solid transparent;
}
.sf-sub-links a:hover { color: var(--sf-accent-ink); border-bottom-color: currentColor; }

/* Install sheet (modal) */
.sheet-backdrop {
    position: fixed; inset: 0;
    background: rgba(28,24,21,0.55);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease; z-index: 90;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.sheet {
    position: fixed; left: 50%; top: 50%;
    transform: translate(-50%, calc(-50% + 12px));
    width: min(440px, calc(100vw - 32px));
    max-height: 88vh; overflow-y: auto;
    background: var(--sf-paper);
    border: 1px solid var(--sf-rule-2); border-radius: 14px;
    box-shadow: 0 30px 80px -20px rgba(28,24,21,0.4);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease; z-index: 100;
}
.sheet.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.sheet-head {
    padding: 22px 24px 14px; border-bottom: 1px solid var(--sf-rule);
    display: flex; align-items: flex-start; gap: 14px;
}
.sheet-head .icon {
    width: 44px; height: 44px; background: var(--sf-accent); color: #fff;
    border-radius: 10px; display: grid; place-items: center;
    font-family: 'Lora', serif; font-style: italic; font-weight: 500;
    font-size: 26px; line-height: 1; flex-shrink: 0;
}
.sheet-head .titles { flex: 1; }
.sheet-head h3 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 500; font-size: 20px; color: var(--sf-ink); letter-spacing: -0.005em;
}
.sheet-head .sub { margin-top: 3px; font-size: 13px; color: var(--sf-ink-soft); }
.sheet-close {
    background: none; border: 0; color: var(--sf-ink-quiet);
    font-size: 24px; line-height: 1; cursor: pointer;
    padding: 4px 6px; margin: -4px -6px 0 0; transition: color .12s;
}
.sheet-close:hover { color: var(--sf-accent-ink); }
.sheet-body { padding: 18px 24px 8px; }
.sf-step {
    display: grid; grid-template-columns: 26px 1fr;
    gap: 14px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px dashed var(--sf-rule);
}
.sf-step:last-child { border-bottom: 0; }
.sf-step .n {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--sf-accent); color: #fff;
    font-family: 'Lora', serif; font-style: italic; font-size: 14px;
    display: grid; place-items: center; margin-top: 1px;
}
.sf-step .body { font-size: 14.5px; line-height: 1.5; color: var(--sf-ink); }
.sf-step .body strong { font-weight: 600; }
.sf-keychip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 2px 8px; background: #fff;
    border: 1px solid var(--sf-rule-2); border-radius: 6px;
    font-size: 13px; margin: 0 2px; vertical-align: 1px;
}
.sf-keychip svg { width: 13px; height: 13px; }
.sheet-foot {
    padding: 16px 24px 20px; border-top: 1px solid var(--sf-rule);
    display: flex; gap: 10px; justify-content: flex-end;
    background: #f6f1e6; border-radius: 0 0 14px 14px;
}
.sheet-foot button {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; font-weight: 500; padding: 9px 18px;
    border-radius: 8px; cursor: pointer;
    border: 1px solid var(--sf-rule-2); background: #fff; color: var(--sf-ink);
    transition: background .12s, color .12s, border-color .12s;
}
.sheet-foot button:hover { background: var(--sf-paper); border-color: var(--sf-ink-quiet); }
.sheet-foot button.primary { background: var(--sf-ink); color: #fff; border-color: var(--sf-ink); }
.sheet-foot button.primary:hover { background: #000; border-color: #000; }

/* Toast */
.toast {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1c1815; color: #fbf8f3;
    padding: 10px 16px; border-radius: 999px; font-size: 13.5px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s; z-index: 110;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1050px) {
    .sf-install { padding: 36px 32px; }
    .sf-grid    { padding: 40px 32px 28px; gap: 36px; }
    .sf-sub     { padding: 18px 32px; }
}

/* ─── ARTICLE PAGE ────────────────────────────────────────────── */
.article-page { max-width: 740px; margin: 0 auto; padding: 40px 40px 80px; }
.article-page-headline {
    font-family: 'Lora', serif;
    font-size: 42px; font-weight: 400; color: #3d3d3d;
    line-height: 1.15; letter-spacing: 0.02em; margin-bottom: 12px;
}
.article-page-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; color: var(--light); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.font-size-controls { display: flex; align-items: center; gap: 8px; }
.font-size-btn {
    background: none; border: none; padding: 0; cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; font-weight: 400; color: var(--light);
    line-height: 1; transition: color 0.15s;
}
.font-size-btn:hover { color: var(--black); }

.article-share {
    display: flex; align-items: center; gap: 14px;
}
.article-share a {
    color: var(--light); transition: color 0.15s;
    display: flex; align-items: center; line-height: 1; flex-shrink: 0;
}
.article-share a:hover { color: var(--accent); }
.article-share svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.article-rule {
    border: none; border-top: 1px solid var(--rule); margin: 0 0 28px;
}
.article-body {
    font-family: 'AGaramondPro', 'Adobe Garamond Pro', garamond, Times, serif;
    font-size: 20px; font-weight: 400; line-height: 1.78; color: var(--black);
}
.article-body h2 {
    font-family: 'Lora', serif;
    font-size: 28px; font-weight: 400; margin: 40px 0 16px; color: #3d3d3d;
}
.article-body h3 {
    font-family: 'Lora', serif;
    font-size: 22px; font-weight: 400; margin: 32px 0 12px; color: #3d3d3d;
}
.article-body p { margin-bottom: 20px; }
.article-body strong { font-weight: 700; color: var(--black); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote {
    border-left: 3px solid var(--rule-dark);
    margin: 32px 0; padding: 0 0 0 24px;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-style: italic; color: var(--mid); line-height: 1.4;
}
.article-body img { max-width: 100%; height: auto; margin: 24px 0; }
.article-body h4 {
    font-family: 'Lora', serif;
    font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: #3d3d3d;
}
.article-body h5, .article-body h6 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    margin: 20px 0 6px; color: #3d3d3d;
}
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.article-body ol { list-style: decimal; padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body hr { border: none; border-top: 1px solid var(--rule); margin: 40px 0; }
.article-body code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em; background: #f4f1ee; padding: 2px 6px; border-radius: 3px; color: var(--black);
}
.article-body pre {
    background: #f4f1ee; padding: 20px 24px; border-radius: 4px;
    overflow-x: auto; margin: 24px 0; line-height: 1.6;
}
.article-body pre code { background: none; padding: 0; border-radius: 0; font-size: 15px; }

/* ── Article tables ────────────────────────────────────────────── */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
}
.article-body thead th {
    background: var(--black);
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding: 10px 14px;
    letter-spacing: 0.03em;
    font-size: 13px;
    text-transform: uppercase;
}
.article-body tbody tr:nth-child(even) { background: #f5f5f5; }
.article-body tbody tr:hover { background: #eeeeee; }
.article-body td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
    vertical-align: top;
}
.article-body table em {
    display: block;
    margin-top: -16px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--mid);
}
/* Horizontal scroll on narrow viewports */
.article-body table { display: block; overflow-x: auto; }

.article-newsletter {
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: center;
}
.article-page-share-row {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-top: 48px; padding-bottom: 24px;
}
.article-page-share-row a {
    color: var(--light); transition: color 0.15s;
    display: flex; align-items: center; line-height: 1; flex-shrink: 0;
}
.article-page-share-row a:hover { color: var(--accent); }
.article-page-share-row svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }

.article-page-back {
    margin-top: 0; padding-top: 24px; border-top: 1px solid var(--rule);
    font-family: 'Source Sans 3', sans-serif; font-size: 13px; letter-spacing: 0.03em;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.back-prev { flex: 1; text-align: left; }
.back-home { flex-shrink: 0; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }
.back-next { flex: 1; text-align: right; }
.article-page-back a { color: var(--mid); transition: color 0.15s; }
.article-page-back a:hover { color: var(--accent); }
.article-page-back .back-prev a, .article-page-back .back-next a {
    display: inline-block; max-width: 200px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    vertical-align: middle;
}

/* ── About page ────────────────────────────────────────────────── */
.about-page { max-width: 680px; }
.about-page .article-page-headline {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 24px;
}
.about-page .article-body h2 {
    margin-top: 40px;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 500;
    border: none;
    padding-bottom: 0;
}
.about-page .article-body p { font-size: 17px; line-height: 1.75; }
.about-page .article-body strong { color: var(--black); }

/* ─── ARTICLES INDEX PAGE ─────────────────────────────────────── */
.articles-page { padding: 40px 0 80px; }
.articles-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; padding: 0 0 60px;
}
.articles-row--second {
    padding-top: 48px;
}
.articles-col {
    padding: 0 36px;
    position: relative;
}
.articles-col:not(.articles-col--last)::after {
    content: ''; position: absolute;
    right: 0; top: 9px; bottom: 0;
    width: 1px; background: var(--rule);
}

.articles-col-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.articles-section-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); white-space: nowrap; flex-shrink: 0;
}
.articles-section-rule {
    flex: 1; border: none; border-top: 1px solid var(--rule); margin: 0;
}

.articles-col-img-link { display: block; overflow: hidden; background: #e8e8e8; }
.articles-col-img {
    display: block; width: 100%; height: 112px;
    object-fit: cover; transition: transform 0.3s ease;
}
.articles-col-img-link:hover .articles-col-img { transform: scale(1.03); }

.articles-col-lead { padding-bottom: 16px; margin-bottom: 4px; }
.articles-col-lead-title {
    font-family: 'Lora', serif;
    font-weight: 500; font-size: 17px; color: #3d3d3d;
    line-height: 1.25; margin: 12px 0 8px; letter-spacing: 0.02em;
}
.articles-col-lead-title a:hover { color: var(--accent); }

.articles-col-item {
    padding: 13px 0; border-top: 1px solid var(--rule);
}
.articles-col-item-title {
    font-family: 'Lora', serif;
    font-weight: 500; font-size: 17px; color: #3d3d3d;
    line-height: 1.3; margin-bottom: 6px; letter-spacing: 0.02em;
}
.articles-col-item-title a:hover { color: var(--accent); }

.articles-col-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.articles-col-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; color: var(--light); letter-spacing: 0.02em;
}
.articles-col-read-more {
    display: inline-block; margin-top: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--mid);
    transition: color 0.15s;
}
.articles-col-read-more:hover { color: var(--accent); }

/* ─── CATEGORY PAGE ───────────────────────────────────────────── */
.category-page { padding: 32px 0 80px; }
.category-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.category-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.category-rule {
    flex: 1; border: none; border-top: 1px solid var(--rule); margin: 0;
}
.cat-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.cat-card {
    display: grid; grid-template-columns: 120px 1fr; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.cat-card:first-child,
.cat-card:nth-child(2) { padding-top: 0; }
.cat-card:last-child,
.cat-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.cat-card:nth-child(odd)  { padding-right: 36px; border-right: 1px solid var(--rule); }
.cat-card:nth-child(even) { padding-left: 36px; }
.cat-card-img-link { display: block; overflow: hidden; background: #e8e8e8; flex-shrink: 0; }
.cat-card-img {
    display: block; width: 120px; height: 90px;
    object-fit: cover; transition: transform 0.3s ease;
}
.cat-card-img-link:hover .cat-card-img { transform: scale(1.03); }
.cat-card-body { display: flex; flex-direction: column; }
.cat-card-title {
    font-family: 'Lora', serif;
    font-size: 17px; font-weight: 500; line-height: 1.3;
    margin: 0 0 8px; color: #3d3d3d; letter-spacing: 0.02em;
}
.cat-card-title a { color: inherit; text-decoration: none; }
.cat-card-title a:hover { color: var(--accent); }
.cat-card-excerpt {
    font-family: 'AGaramondPro', 'Adobe Garamond Pro', garamond, Times, serif;
    font-size: 15px; line-height: 1.55; color: #444;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 8px;
}
.cat-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto;
}
.cat-card-meta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; color: var(--light); letter-spacing: 0.02em;
}

/* ─── LISTEN PAGE ─────────────────────────────────────────────── */
.listen-page { max-width: 740px; margin: 0 auto; padding: 40px 40px 80px; }
.listen-headline {
    font-family: 'Lora', serif;
    font-size: 42px; font-weight: 400; color: #3d3d3d;
    line-height: 1.15; letter-spacing: 0.02em; margin-bottom: 12px;
}
.listen-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; color: var(--light);
    letter-spacing: 0.02em; margin-bottom: 24px;
}
.listen-rule { border: none; border-top: 1px solid var(--rule); margin: 0 0 24px; }
.listen-filters {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px;
}
.listen-filter {
    background: none; border: 1px solid var(--rule); border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--mid);
    padding: 10px 12px; cursor: pointer; transition: all 0.15s;
}
.listen-filter:hover { border-color: var(--black); color: var(--black); }
.listen-filter.is-active { background: var(--black); border-color: var(--black); color: #fff; }
.aa-list { display: flex; flex-direction: column; }
.aa-item {
    display: grid; grid-template-columns: 52px 1fr;
    gap: 0 18px; padding: 16px 0;
    border-bottom: 1px solid var(--rule);
}
.aa-item:last-child { border-bottom: none; }
.aa-highlighted { background: #fffbe6; margin: 0 -16px; padding: 16px 16px; border-radius: 3px; }
.aa-thumb-link {
    display: block; overflow: hidden; border-radius: 2px;
    width: 52px; height: 52px; align-self: flex-start;
}
.aa-thumb {
    width: 52px; height: 52px; object-fit: cover; display: block;
    transition: transform 0.3s ease; background: #e8e3dc;
}
.aa-thumb-link:hover .aa-thumb { transform: scale(1.03); }
.aa-body { min-width: 0; }
.aa-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px; font-weight: 400; color: var(--ink);
    line-height: 1.25; margin: 0 0 4px;
}
.aa-title a { color: inherit; text-decoration: none; }
.aa-title a:hover { color: var(--accent); }
.aa-meta { display: flex; align-items: center; gap: 8px; }
.aa-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; color: var(--light);
}
.aa-cat {
    color: var(--accent); text-transform: uppercase;
    letter-spacing: 0.09em; font-weight: 600; font-size: 11px;
}
.aa-item .audio-player-wrap { margin: 0; }
.aa-ep-num {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 4px;
}
.aa-excerpt {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; color: var(--mid);
    line-height: 1.55; margin: 6px 0 10px;
}
.listen-empty {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; color: var(--light); padding: 40px 0;
}

/* ─── PODCAST PAGE OVERRIDES ──────────────────────────────────── */
.podcast-page .aa-item { grid-template-columns: 1fr; gap: 0; padding: 20px 0; }
.podcast-page .aa-title {
    font-family: 'Lora', serif;
    font-size: 20px; line-height: 1.25; margin: 0 0 8px;
}
.podcast-page .aa-meta { gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.podcast-page .aa-excerpt { margin: 0 0 12px; }
.podcast-page .aa-item .audio-player-wrap { margin: 0; }

/* ─── CUSTOM AUDIO PLAYER ─────────────────────────────────────── */
.audio-player-wrap {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0 0; background: none; border: none; margin: 0 0 24px;
}
.ap-play-btn {
    background: none; border: 1.5px solid var(--rule); border-radius: 50%;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; transition: all 0.12s;
}
.ap-play-btn:hover { border-color: var(--ink); }
.ap-play-btn.ap-playing { background: var(--accent); border-color: var(--accent); }
.ap-play-btn svg { width: 9px; height: 9px; fill: var(--mid); }
.ap-play-btn.ap-playing svg { fill: #fff; }
.ap-current, .ap-duration {
    font-family: 'Source Sans 3', sans-serif; font-size: 12px; color: var(--light);
    flex-shrink: 0; min-width: 34px; letter-spacing: 0.02em;
}
.ap-duration { text-align: right; }
.ap-track {
    flex: 1; position: relative; height: 3px;
    background: #e0e0e0; border-radius: 2px; cursor: pointer;
}
.ap-progress {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: var(--accent); border-radius: 2px; width: 0; pointer-events: none;
}
.ap-seek {
    position: absolute; inset: -10px 0;
    width: 100%; height: calc(100% + 20px);
    opacity: 0; cursor: pointer; margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CASINO DIRECTORY
═══════════════════════════════════════════════════════════════ */
.casino-directory { max-width: 1100px; margin: 0 auto; padding: 40px 40px 80px; }
.casino-directory__title {
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 500;
    color: var(--black); margin-bottom: 12px;
}
.casino-directory__intro {
    font-family: 'Source Sans 3', sans-serif; font-size: 15px;
    color: var(--mid); margin-bottom: 32px;
}
.casino-directory__nav {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 14px 0; margin-bottom: 48px;
}
.casino-directory__nav a {
    font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid);
    transition: color 0.15s;
}
.casino-directory__nav a:hover { color: var(--accent); }

.casino-continent { margin-bottom: 56px; }
.casino-continent__name {
    font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500;
    color: var(--black); border-bottom: 2px solid var(--rule-dark);
    padding-bottom: 8px; margin-bottom: 28px;
}
.casino-country { margin-bottom: 36px; }
.casino-country__name {
    font-family: 'Source Sans 3', sans-serif; font-size: 17px; font-weight: 600;
    color: var(--ink); margin-bottom: 12px;
}
.casino-count { font-weight: 400; color: var(--light); font-size: 14px; }

.casino-city { margin-bottom: 16px; }
.casino-city__name {
    font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--light);
    margin-bottom: 6px;
}
.casino-list { padding-left: 0; }
.casino-entry {
    display: flex; align-items: baseline; gap: 10px;
    padding: 5px 0; border-bottom: 1px solid #f0f0f0;
    font-family: 'Source Sans 3', sans-serif;
}
.casino-entry__name { font-size: 15px; color: var(--ink); }
.casino-entry__website, .casino-entry__source {
    font-size: 12px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent); white-space: nowrap;
    transition: opacity 0.15s;
}
.casino-entry__source { color: var(--light); }
.casino-entry__website:hover, .casino-entry__source:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE ELEMENTS — hidden on desktop
═══════════════════════════════════════════════════════════════ */
.mobile-header, .mobile-nav-overlay, .mobile-content { display: none; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE BREAKPOINT
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .util-bar, .masthead, .primary-nav, hr.rule-dark, .content { display: none !important; }
    .content:has(.article-page) { display: block !important; }

    .mobile-header {
        display: flex; align-items: center;
        justify-content: space-between; padding: 14px 16px;
    }
    .mobile-header .masthead-logo .word-dice {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 300; font-style: italic; font-size: 38px;
        color: #c0392b; letter-spacing: -0.02em;
    }
    .mobile-header .masthead-logo .word-floor {
        font-family: 'DM Sans', sans-serif;
        font-weight: 300; font-size: 33px;
        color: #1a1a1a; letter-spacing: 0.04em; padding-left: 4px;
    }
    .hamburger-btn {
        background: none; border: none; cursor: pointer; padding: 10px;
        display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
    }
    .hamburger-btn span { display: block; width: 22px; height: 1.5px; background: var(--black); }

    .mobile-rule-dark {
        display: block !important; border: none;
        border-top: 1px solid var(--rule-dark); margin: 0;
    }
    .mobile-rule-light {
        display: block !important; border: none;
        border-top: 1px solid var(--rule); margin: 0 16px;
    }

    .mobile-nav-overlay {
        position: fixed; inset: 0; background: #fff; z-index: 1000;
        padding: 24px 24px 40px; flex-direction: column;
    }
    .mobile-nav-overlay.open { display: flex; }
    .mobile-nav-header {
        display: flex; align-items: center; justify-content: space-between;
        padding-bottom: 20px; border-bottom: 1px solid var(--rule-dark); margin-bottom: 8px;
    }
    .mobile-nav-menu { display: flex; flex-direction: column; flex: 1; }
    .mobile-nav-menu a {
        font-family: 'Playfair Display', serif;
        font-size: 18px; font-weight: 400; color: var(--black);
        padding: 11px 0; border-bottom: 1px solid var(--rule);
        display: block; transition: color 0.15s;
    }
    .mobile-nav-menu a:hover { color: var(--accent); }
    .mobile-nav-item {
        display: flex; align-items: center;
        border-bottom: 1px solid var(--rule);
    }
    .mobile-nav-item a {
        flex: 1; border-bottom: none; padding-right: 4px;
    }
    .mobile-subnav-toggle {
        background: none; border: none; cursor: pointer;
        color: var(--mid); font-size: 13px;
        padding: 11px 4px; transition: transform 0.2s;
    }
    .mobile-subnav {
        display: none; flex-direction: column;
        padding: 4px 0 6px 16px;
        border-left: 2px solid var(--rule); margin-left: 4px;
    }
    .mobile-subnav.open { display: flex; }
    .mobile-subnav a {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 14px; color: var(--mid);
        padding: 7px 0; border-bottom: none;
    }
    .mobile-subnav a:hover { color: var(--accent); }
    .mobile-nav-close {
        background: none; border: none; cursor: pointer; padding: 4px;
        font-size: 22px; line-height: 1; color: var(--ink); transition: color 0.15s;
    }
    .mobile-nav-close:hover { color: var(--accent); }

    .mobile-content { display: block; padding: 0 16px; }
    .mobile-article { padding: 20px 0; border-bottom: 1px solid var(--rule); }
    .mobile-article .article-img {
        display: block; width: 100%; aspect-ratio: 3 / 2;
        object-fit: cover; background: #e8e8e8; margin-bottom: 12px;
    }
    .mobile-article .article-headline {
        font-family: 'Playfair Display', serif;
        font-size: 22px; font-weight: 400; color: var(--black);
        line-height: 1.2; margin-bottom: 8px;
    }
    .mobile-article .article-footer {
        display: flex; align-items: center; justify-content: space-between; margin-top: 4px;
    }
    .mobile-audio-row { padding: 20px 0; border-bottom: 1px solid var(--rule); }
    .mobile-audio-row .tag { display: block; margin-bottom: 14px; }
    .mobile-audio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .mobile-audio-item .audio-thumb-wrap { width: 100%; height: auto; aspect-ratio: 1/1; flex-shrink: unset; }
    .mobile-audio-item .audio-title {
        font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 400;
        color: var(--black); line-height: 1.3; margin-top: 6px; margin-bottom: 3px;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .mobile-audio-item .audio-date { font-family: 'Source Sans 3', sans-serif; font-size: 10px; color: var(--light); }

    /* Articles & Listen index — mobile */
    .content:has(.articles-page) { display: block !important; }
    .content:has(.listen-page) { display: block !important; }
    .content:has(.category-page) { display: block !important; }
    .listen-page { padding: 24px 16px 60px; }
    .listen-headline { font-size: 28px; }
    .aa-title { font-size: 15px; }
    .listen-filters { gap: 6px; }
    .articles-page { padding: 20px 0 60px; }
    .articles-row { grid-template-columns: 1fr; padding: 0 0 20px; }
    .articles-row--second { padding-top: 0; border-top: none; }
    .articles-col { padding: 0 0 32px; border-right: none; border-bottom: 1px solid var(--rule); margin-bottom: 32px; }
    .articles-col--first { padding-left: 0; }
    .articles-col--last { border-bottom: none; margin-bottom: 0; padding-right: 0; }
    /* Category page — mobile */
    .cat-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Article page — mobile */
    .content:has(.article-page) { padding: 0 !important; width: 100%; }
    .article-page { max-width: 100% !important; width: 100%; padding: 24px 20px 60px; box-sizing: border-box; }
    .article-page-headline { font-size: 28px; }
    .article-body { font-size: 20px; }
    .article-page-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .article-share { gap: 16px; }
    .article-page-share-row { gap: 24px; }
    .article-page-back { gap: 8px; }
    .article-page-back .back-prev a,
    .article-page-back .back-next a { max-width: 100px; }

    /* Tables — mobile: allow horizontal scroll */
    .article-body table { font-size: 13px; }

    /* Casino directory — mobile */
    .content:has(.casino-directory) { display: block !important; }
    .casino-directory { padding: 24px 16px 60px; }
    .casino-directory__title { font-size: 26px; }
    .casino-directory__nav { gap: 8px 12px; margin-bottom: 32px; }
    .casino-continent__name { font-size: 20px; }

    footer {
        flex-direction: column; align-items: center; gap: 16px;
        text-align: center; padding: 28px 16px; margin-top: 0;
    }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 16px; }

    /* Mobile article body font size — already set to 20px above */

    /* Mobile audio listen-more / read-more links */
    .mobile-listen-more {
        display: block; margin-top: 14px; padding-top: 12px;
        border-top: 1px solid var(--rule);
        font-family: 'Source Sans 3', sans-serif;
        font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
        text-transform: uppercase; color: var(--mid); transition: color 0.15s;
    }
    .mobile-listen-more:hover { color: var(--accent); }
    .mobile-cat-section { padding-top: 24px; border-top: 1px solid var(--rule); }
    .mobile-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
    .mobile-article-compact {
        padding: 12px 0; border-bottom: 1px solid var(--rule);
    }
    .mobile-compact-headline {
        font-family: 'Playfair Display', serif;
        font-size: 17px; font-weight: 400; color: var(--black);
        line-height: 1.25; margin-bottom: 6px;
    }
    .mobile-compact-headline:hover { color: var(--accent); }
    .mobile-cat-more {
        display: block; margin-top: 16px; padding-bottom: 4px;
        font-family: 'Source Sans 3', sans-serif;
        font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
        text-transform: uppercase; color: var(--mid); transition: color 0.15s;
    }
    .mobile-cat-more:hover { color: var(--accent); }
    .mobile-read-more-row { padding: 16px 0; border-bottom: 1px solid var(--rule); }
    .mobile-read-more {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
        text-transform: uppercase; color: var(--mid); transition: color 0.15s;
    }
    .mobile-read-more:hover { color: var(--accent); }
}

/* ─── INLINE CATEGORY (next to date) ─────────────────────────── */
.article-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent);
}

/* ─── LISTEN MORE LINK (bottom of hero audio sidebar) ────────── */
.listen-more-link {
    display: block; margin-top: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--mid); transition: color 0.15s;
}
.listen-more-link:hover { color: var(--accent); }

/* ─── HOMEPAGE CATEGORY SECTIONS ─────────────────────────────── */
.homepage-cat-section {
    padding-top: 16px;
    padding-bottom: 40px;
}
.homepage-cat-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.homepage-cat-section .row-four-cols { padding-top: 16px; }

/* ─── ROW 2 — FOUR COLUMNS ────────────────────────────────────── */
.row-four-cols {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 28px; padding: 28px 0 32px;
}
.row-four-cols .article-headline { font-size: 20px; }
.row-four-cols .article-dek { font-size: 16px; }

/* ─── ROW 3 — THREE COLUMNS (1fr 2fr 1fr) ────────────────────── */
.row-3col {
    display: grid; grid-template-columns: 1fr 2fr 1fr;
    gap: 0; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.r3-side {
    padding: 0 28px;
}
.r3-side--left { padding-left: 0; border-right: 1px solid var(--rule); }
.r3-side--right { padding-right: 0; border-left: 1px solid var(--rule); }
.r3-main { padding: 0 36px; }
.r3-main .article-headline { font-size: 30px; letter-spacing: -0.01em; }
.r3-lead { margin-bottom: 0; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.r3-lead .article-headline { font-size: 19px; line-height: 1.25; }
.r3-stack-item { padding: 12px 0; border-top: 1px solid var(--rule); }
.r3-stack-item .article-headline { font-size: 15px; line-height: 1.3; }
.r3-stack-item .article-footer { margin-top: 6px; }

/* ─── ROW 4 — TWO COLUMNS WITH STACKS ────────────────────────── */
.row-2stack {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 40px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.r4-col { display: flex; flex-direction: column; }
.r4-lead .article-headline { font-size: 22px; }
.r4-stack-item { padding: 14px 0; border-top: 1px solid var(--rule); margin-top: 14px; }
.r4-stack-item .article-headline { font-size: 16px; line-height: 1.3; }
.r4-stack-item .article-footer { margin-top: 6px; }

/* ─── ROW 5 — THREE COLUMNS ───────────────────────────────────── */
.row-3simple {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 36px; padding: 28px 0 32px; border-bottom: 1px solid var(--rule);
}
.row-3simple .article-headline { font-size: 22px; }

/* ─── ARTICLE KICKER (front page only) ───────────────────────── */
.article-kicker {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent);
    margin: 0.45rem 0 0.25rem;
    line-height: 1;
}

/* ─── HOMEPAGE SEE-ALL LINK ───────────────────────────────────── */
.hp-see-all {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--mid); transition: color 0.15s;
    white-space: nowrap; flex-shrink: 0;
}
.hp-see-all:hover { color: var(--accent); }

/* ─── SECTION BARS (Layout A broadsheet style) ─────────────────── */
.sec { border-top: 1px solid var(--ink); }
.sec-head {
    display: flex; align-items: center; gap: 0;
    padding: 10px 0 12px;
    margin-bottom: 8px;
}
.sec-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink); flex-shrink: 0;
}
.sec-label::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    margin-right: 8px; vertical-align: middle;
}
.sec-gap { flex: 1; border-top: 1px solid var(--rule); margin-left: 12px; align-self: center; }
.sec-more {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px; letter-spacing: 0.1em;
    color: var(--accent); text-transform: uppercase; font-weight: 500;
    white-space: nowrap; flex-shrink: 0;
}
.sec-more:hover { text-decoration: underline; }
.sec-pad { padding: 0 0 36px; }
.sec-foot { display: flex; justify-content: flex-end; padding: 0 0 8px; }

/* Thin vertical rule between columns */
.vr { width: 1px; background: var(--rule); flex-shrink: 0; align-self: stretch; }

/* ─── ROW 2 — CASINOS (dense 3-col grid) ─────────────────────── */
.casinos-grid {
    display: grid;
    grid-template-columns: 5fr 1px 3fr 1px 2fr;
    gap: 0 1rem;
    align-items: start;
}
.casinos-grid .vr { background: var(--rule); align-self: stretch; }

.casino-lead-img { aspect-ratio: 4 / 3 !important; }
.casino-lead-headline { font-size: 1.7rem !important; line-height: 1.2 !important; }
.casino-lead-dek { font-size: 15px !important; }

.casino-mid { display: flex; flex-direction: column; gap: 0; }
.casino-mid-item { padding: 0.9rem 0; border-bottom: 1px solid var(--rule); }
.casino-mid-item:first-child { padding-top: 0; }
.casino-mid-item:last-child { border-bottom: none; }
.casino-mid-img { aspect-ratio: 16 / 9 !important; }
.casino-mid-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; }

.casino-text { display: flex; flex-direction: column; }
.casino-text-item { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); }
.casino-text-item:first-child { padding-top: 0; }
.casino-text-item:last-child { border-bottom: none; }
.casino-text-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; }

/* ─── ROW 3 — CRUISE LINES (full-width warm band) ─────────────── */
.cruise-band-wrap {
    background: var(--warm);
    /* stretch full viewport width then restore padding inside content */
}
.cruise-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
/* First cruise card gets a red top-border accent */
.cruise-card-item {
    padding-top: 14px;
    border-top: 2px solid var(--rule);
}
.cruise-card-item:first-child { border-top-color: var(--accent); }
.cruise-card-img { aspect-ratio: 3 / 2 !important; margin-bottom: 10px !important; }
.cruise-card-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; margin-top: 6px !important; }
.cruise-card-dek { font-size: 14px !important; }

/* ─── ROW 4 — CAREER (2-col with italic sub-titles) ──────────── */
.careers-foot {
    display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 20px; padding: 0 0 8px;
}
.careers-foot a { text-align: right; }
.careers-foot a:last-child { grid-column: 3; }
.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 20px;
}
.careers-sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.career-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
}
.career-item:last-child { border-bottom: none; }
.career-item-img-link { display: block; flex-shrink: 0; }
.career-item-img-link img {
    display: block; width: 64px; height: 48px;
    object-fit: cover; background: #e8e8e8;
}
.career-item-text { min-width: 0; }
.career-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; margin-bottom: 4px !important; }

/* ─── ROW 5 — TRAVEL (lead + 3 compact cols, 2 articles each) ── */
.travel-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
}
.travel-lead {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
    border-right: 1px solid var(--rule);
}
.travel-lead-img { aspect-ratio: 3 / 2 !important; }
.travel-lead-headline { font-size: 1.55rem !important; }
.travel-lead .article-dek { font-size: 15px; }
.travel-col {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    border-right: 1px solid var(--rule);
}
.travel-col:last-child { border-right: none; }
.travel-col-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
}
.travel-col-item:first-child { padding-top: 0; }
.travel-col-item:last-child { border-bottom: none; }
.travel-col-img { aspect-ratio: 16 / 9 !important; width: 100%; object-fit: cover; margin-bottom: 8px; display: block; }
.travel-col-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; line-height: 1.3 !important; margin-bottom: 4px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.travel-col-date { font-family: 'Source Sans 3', sans-serif; font-size: 11px; color: var(--light); }

/* ─── ROW 6 — PORTS (4-col, light background) ────────────────── */
.ports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.port-col { padding: 0 12px 0 0; border-right: 1px solid var(--rule); }
.port-col:first-child { padding-left: 0; }
.port-col:last-child { border-right: none; padding-right: 0; }
.port-col + .port-col { padding-left: 12px; }
.port-card-img { aspect-ratio: 3 / 2 !important; }
.port-location {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light);
    margin: 10px 0 4px;
}
.port-headline { font-size: 16.5px !important; font-weight: 500 !important; color: #3d3d3d !important; }

/* ─── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: var(--light);
    padding: 14px 0 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    letter-spacing: 0.02em;
}
.breadcrumb a {
    color: var(--mid);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .bc-sep { color: var(--rule); font-size: 11px; }
.breadcrumb .bc-current { color: var(--ink); }

/* (Section bars now use .sec / .sec-head / .sec-label — see above) */

/* ─── MANUALS — TREATMENT 2 (Editorial Card Stack, homepage) ──── */
.manuals-editorial { padding-bottom: 8px; }
.manuals-row-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0 32px; margin-bottom: 32px;
}
.manuals-row-4 {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0 24px; padding-top: 24px; border-top: 1px solid var(--rule);
}
.manual-card-e { padding-right: 32px; border-right: 1px solid var(--rule); }
.manuals-row-3 .manual-card-e:last-child,
.manuals-row-4 .manual-card-e:last-child { border-right: none; padding-right: 0; }
.manuals-row-4 .manual-card-e { padding-right: 24px; }
.manual-card-e .game-type {
    display: block; font-size: 9px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--light); margin-bottom: 8px;
    padding-top: 14px; border-top: 2px solid var(--rule);
}
.manual-card-e:first-child .game-type,
.manuals-row-4 .manual-card-e .game-type { border-top-color: var(--accent); }
.manual-hed {
    font-family: 'Lora', serif; font-size: 21.5px;
    font-weight: 500; line-height: 1.2; color: #3d3d3d; letter-spacing: 0.02em;
    margin-bottom: 8px; display: block;
}
.manuals-row-4 .manual-hed { font-size: 17.5px; }
.manual-card-e:hover .manual-hed { color: var(--accent); }
.manual-summary {
    font-family: 'AGaramondPro', 'Adobe Garamond Pro', garamond, Times, serif;
    font-size: 15px; line-height: 1.6; color: #444; margin-bottom: 12px;
}
.manuals-row-4 .manual-summary { display: none; }
.manual-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid var(--rule);
}
.manual-pages { font-size: 10px; color: var(--light); letter-spacing: 0.05em; }
.manual-read {
    font-size: 9.5px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent);
}
.manual-read:hover { text-decoration: underline; }

/* ─── MANUALS — TREATMENT 3 (Reference Table, library page) ───── */
.manual-table-wrap { padding-bottom: 40px; overflow-x: auto; }
.manual-table { width: 100%; border-collapse: collapse; }
.manual-table thead tr { border-bottom: 1px solid var(--ink); }
.manual-table thead th {
    font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--light);
    padding: 0 16px 10px 0; text-align: left; white-space: nowrap;
}
.manual-table thead th:first-child { padding-left: 0; }
.manual-table thead th:last-child { text-align: right; padding-right: 0; }
.manual-table tbody tr { border-bottom: 1px solid var(--rule); cursor: pointer; transition: background 0.1s; }
.manual-table tbody tr:hover { background: #faf8f5; }
.manual-table td { padding: 13px 16px 13px 0; vertical-align: middle; }
.manual-table td:first-child { padding-left: 0; }
.manual-table td:last-child { text-align: right; padding-right: 0; }
.t-game {
    font-family: 'Lora', serif; font-size: 17.5px;
    font-weight: 500; color: #3d3d3d; display: block; line-height: 1.2;
}
.manual-table tbody tr:hover .t-game { color: var(--accent); }
.t-sub { font-size: 11px; color: var(--light); display: block; margin-top: 2px; }
.t-cat {
    font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.t-level { display: inline-flex; align-items: center; gap: 3px; }
.level-pip { width: 7px; height: 7px; border-radius: 50%; background: var(--rule); display: inline-block; flex-shrink: 0; }
.level-pip.filled { background: var(--accent); }
.t-dl {
    font-size: 9.5px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.t-dl:hover { text-decoration: underline; }
.t-pages { font-size: 11px; color: var(--light); white-space: nowrap; }

/* ─── CONTACT FORM PAGE ───────────────────────────────────────── */
.contact-page { max-width: 600px; margin: 0 auto; padding: 48px 0 80px; }
.contact-page h1 {
    font-family: 'Lora', serif; font-size: 36px; font-weight: 500;
    color: #3d3d3d; margin-bottom: 8px; line-height: 1.2;
}
.contact-page .contact-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px; color: var(--mid); margin-bottom: 36px; line-height: 1.6;
}
.contact-form label {
    display: block; font-family: 'Source Sans 3', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--mid); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    display: block; width: 100%;
    font-family: 'Source Sans 3', sans-serif; font-size: 16px;
    color: var(--ink); background: var(--bg);
    border: 1px solid var(--rule); padding: 10px 12px;
    outline: none; transition: border-color 0.15s; margin-bottom: 20px;
    border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .submit-btn {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--bg);
    background: var(--ink); border: none; padding: 12px 28px;
    cursor: pointer; transition: background 0.15s;
}
.contact-form .submit-btn:hover { background: var(--accent); }

/* ─── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .mega-menu { transition: opacity 0.01ms, visibility 0.01ms; transform: none !important; }
    .mega-menu.open { transform: none; }
    .articles-col-img, .cat-card-img, .aa-thumb { transition: none; }
    .newsletter-modal, .newsletter-modal-backdrop { transition: none; }
}
