/* ============================================================
   FIONA'S LAIR — Main Stylesheet
   assets/css/fionas-lair.css
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Agrandir', 'Unbounded', 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
    --ink: #0d0d0d; --ink2: #1c1c1c; --ink3: #2e2e2e;
    --red: #c8001e; --red2: #9c0017;
    --gold: #c49a3c; --gold2: #e8c46a;
    --cream: #faf7f2; --cream2: #f3ede3; --cream3: #ece4d5;
    --mid: #6b6256; --muted: #9e968c;
    --border: #d9d1c3; --borderl: #ece6db;
    --white: #fff; --pw: 1300px;
}

/* ── MARQUEE ── */
.marquee-bar {
    position: sticky; top: 0; z-index: 300;
    background: var(--ink); border-bottom: 2px solid var(--red);
    padding: 7px 0; overflow: hidden; display: flex; align-items: center;
}
.mq-label {
    flex-shrink: 0; background: var(--red); color: #fff;
    font-size: 9.5px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; padding: 4px 14px; margin-right: 14px; white-space: nowrap;
}
.mq-track { display: flex; width: 100%; overflow: hidden; }
.mq-inner {
    display: flex; white-space: nowrap;
    animation: mqS 45s linear infinite;
}
.mq-inner:hover { animation-play-state: paused; }
@keyframes mqS { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mq-i { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; color: rgba(255,255,255,.8); padding: 0 36px 0 0; }
.mq-i .dot { color: var(--red); font-size: 7px; }
.mq-i strong { color: #fff; font-weight: 700; }

/* ── MASTHEAD ── */
.masthead { background: var(--cream); border-bottom: 1px solid var(--border); padding: 16px 0 0; }
.mh-inner { max-width: var(--pw); margin: 0 auto; padding: 0 24px; }
.mh-top {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; padding-bottom: 14px; border-bottom: 3px solid var(--ink);
}
.mh-logo { text-align: center; }
.wordmark-link {
    display: block; font-size: 54px; font-weight: 900; line-height: 1;
    color: var(--ink); letter-spacing: -.03em;
}
.wordmark-link em { color: var(--red); font-style: normal; }
.tagline { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--mid); margin-top: 4px; font-weight: 400; }
.mh-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.btn-sub {
    background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; padding: 8px 18px;
    border: none; transition: background .2s; cursor: pointer; display: inline-block;
}
.btn-sub:hover { background: var(--red2); }
.btn-srch {
    border: 1px solid var(--border); padding: 7px 13px; font-size: 13px;
    color: var(--mid); background: transparent; cursor: pointer; transition: all .2s;
}
.btn-srch:hover { border-color: var(--ink); color: var(--ink); }

/* ── NAV ── */
.main-nav { background: var(--ink); }
.nav-inner {
    max-width: var(--pw); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center;
}
.nav-item {
    font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.65); padding: 13px 14px; border-bottom: 2px solid transparent;
    white-space: nowrap; transition: all .15s; cursor: pointer; display: inline-block;
}
.nav-item:hover, .nav-item.active { color: #fff; border-bottom-color: var(--red); }
.nav-item.hot { color: var(--gold2); }
.nav-sp { flex: 1; }
.nav-soc { display: flex; gap: 12px; align-items: center; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.15); }
.nav-soc a { color: rgba(255,255,255,.4); font-size: 10.5px; font-weight: 700; transition: color .15s; }
.nav-soc a:hover { color: #fff; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(13,13,13,.96); display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .25s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay-inner { width: 100%; max-width: 680px; padding: 0 24px; position: relative; }
.search-close {
    position: absolute; top: -60px; right: 24px; color: rgba(255,255,255,.5);
    font-size: 24px; cursor: pointer; background: none; border: none; transition: color .2s;
}
.search-close:hover { color: #fff; }
.search-form { display: flex; gap: 0; }
.search-input {
    flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    border-right: none; padding: 16px 20px; font-size: 18px; color: #fff;
    font-family: inherit; outline: none; transition: border-color .2s;
}
.search-input::placeholder { color: rgba(255,255,255,.3); }
.search-input:focus { border-color: var(--red); }
.search-submit {
    background: var(--red); color: #fff; border: none; padding: 16px 24px;
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; font-family: inherit; transition: background .2s; white-space: nowrap;
}
.search-submit:hover { background: var(--red2); }

/* ── TRENDING STRIP ── */
.tstrip { background: var(--cream2); border-bottom: 1px solid var(--border); padding: 9px 0; }
.tstrip-inner {
    max-width: var(--pw); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 16px; overflow: hidden;
}
.tstrip-lbl {
    font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--red); white-space: nowrap; padding-right: 16px; border-right: 1px solid var(--border); flex-shrink: 0;
}
.t-pills { display: flex; gap: 7px; overflow: hidden; flex-wrap: wrap; }
.t-pill {
    font-size: 10.5px; font-weight: 500; color: var(--ink3); background: var(--white);
    border: 1px solid var(--border); padding: 3px 12px; border-radius: 20px;
    cursor: pointer; white-space: nowrap; transition: all .15s; display: inline-block;
}
.t-pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── PAGE WRAP ── */
.pw { max-width: var(--pw); margin: 0 auto; padding: 0 24px; }

/* ── BADGES ── */
.badge {
    display: inline-block; font-size: 9.5px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; padding: 3px 9px;
}
.b-r { background: var(--red); color: #fff; }
.b-k { background: var(--ink); color: #fff; }
.b-g { background: var(--gold); color: var(--ink); }
.b-o { border: 1px solid var(--border); color: var(--mid); }
.b-w { background: rgba(255,255,255,.92); color: var(--ink); }

/* ── SECTION HEADERS ── */
.sh { display: flex; align-items: center; gap: 14px; margin: 32px 0 18px; }
.sh::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sh-t { font-size: 19px; font-weight: 900; white-space: nowrap; letter-spacing: -.02em; }
.sh-t span { color: var(--red); }
.sh-all {
    font-size: 10px; color: var(--mid); font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; border-bottom: 1px solid var(--border);
    cursor: pointer; white-space: nowrap; transition: all .15s; flex-shrink: 0;
}
.sh-all:hover { color: var(--red); border-color: var(--red); }

/* ── MAIN LAYOUT GRID ── */
.cg { display: grid; grid-template-columns: 1fr 310px; gap: 36px; margin: 28px 0 40px; }
.sidebar { display: flex; flex-direction: column; }
.rail-sticky { position: sticky; top: 52px; }

/* ── CARDS ── */
.card { cursor: pointer; display: block; }
.card:hover .c-hed { color: var(--red); }
.c-img { width: 100%; overflow: hidden; position: relative; background: var(--cream3); }
.c-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.card:hover .c-img img { transform: scale(1.05); }
.c-bw { position: absolute; top: 10px; left: 10px; z-index: 2; }
.c-hed {
    font-size: 16.5px; font-weight: 900; line-height: 1.25; margin: 10px 0 6px;
    transition: color .2s; letter-spacing: -.02em; color: var(--ink);
}
.c-deck { font-size: 12.5px; color: var(--mid); line-height: 1.5; margin-bottom: 7px; font-weight: 400; }
.c-meta { font-size: 10px; color: var(--muted); letter-spacing: .02em; }
.c-meta strong { color: var(--ink3); font-weight: 700; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.g-asym { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; }
.g-asym-r { display: flex; flex-direction: column; gap: 14px; }

/* Horizontal card */
.hc {
    display: grid; grid-template-columns: 100px 1fr; gap: 12px;
    padding: 13px 0; border-top: 1px solid var(--borderl); cursor: pointer;
    text-decoration: none;
}
.hc:hover .hc-hed { color: var(--red); }
.hc-img { height: 75px; overflow: hidden; background: var(--cream3); }
.hc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hc:hover .hc-img img { transform: scale(1.07); }
.hc-cat { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.hc-hed { font-size: 13.5px; font-weight: 900; line-height: 1.28; letter-spacing: -.01em; transition: color .2s; color: var(--ink); }
.hc-meta { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* Wide card */
.wc { display: grid; grid-template-columns: 200px 1fr; border-top: 1px solid var(--borderl); cursor: pointer; text-decoration: none; }
.wc:hover .c-hed { color: var(--red); }
.wc-img { overflow: hidden; background: var(--cream3); position: relative; }
.wc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.wc:hover .wc-img img { transform: scale(1.05); }
.wc-txt { padding: 16px 14px; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.wc .c-hed { font-size: 19px; margin: 0; }

/* ── HERO ── */
.hero-wrap { display: grid; grid-template-columns: 1fr 370px; gap: 0; border-bottom: 2px solid var(--ink); margin-top: 24px; }
.hero-main { position: relative; min-height: 500px; overflow: hidden; cursor: pointer; background: #1a0a0e; text-decoration: none; display: block; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.hero-main:hover .hero-img img { transform: scale(1.04); }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 55%, transparent 85%); }
.hero-ct { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 30px; color: #fff; }
.hero-hed { font-size: 36px; font-weight: 900; line-height: 1.1; margin: 10px 0; letter-spacing: -.025em; }
.hero-deck { font-size: 13px; color: rgba(255,255,255,.75); max-width: 560px; line-height: 1.6; margin-bottom: 14px; font-weight: 400; }
.hero-meta { font-size: 10.5px; color: rgba(255,255,255,.5); letter-spacing: .03em; }
.hero-meta strong { color: rgba(255,255,255,.8); font-weight: 700; }
.hero-stack { border-left: 1px solid var(--border); display: flex; flex-direction: column; }
.hs-item { display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid var(--borderl); cursor: pointer; flex: 1; transition: background .15s; text-decoration: none; }
.hs-item:last-child { border-bottom: none; }
.hs-item:hover { background: var(--cream2); }
.hs-img { overflow: hidden; min-height: 110px; }
.hs-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hs-item:hover .hs-img img { transform: scale(1.07); }
.hs-txt { padding: 12px 13px; display: flex; flex-direction: column; justify-content: center; gap: 5px; color: white}
.hs-hed { font-size: 13.5px; font-weight: 700; line-height: 1.3; color: var(--ink); letter-spacing: -.01em; }
.hs-meta { font-size: 10px; color: var(--mid); }

/* ── BEST DRESSED SLIDER ── */
.dr-band {
    background: var(--ink2); color: #fff;
    margin: 28px 0 0; padding: 26px 24px 22px; position: relative; overflow: hidden;
}
.dr-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.dr-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dr-title { font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.dr-title em { color: var(--gold2); font-style: normal; }
.sl-ctrl { display: flex; gap: 8px; }
.sl-btn {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; background: transparent;
}
.sl-btn:hover { background: var(--red); border-color: var(--red); }
.dr-vp { overflow: hidden; }
.dr-track { display: flex; gap: 14px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.dc { flex-shrink: 0; width: 210px; cursor: pointer; position: relative; overflow: hidden; text-decoration: none; display: block; }
.dc:hover .dc-img img { transform: scale(1.07); }
.dc-img { height: 290px; overflow: hidden; position: relative; }
.dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%); }
.dc-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; }
.dc-name { font-size: 15px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 3px; letter-spacing: -.01em; }
.dc-evt { font-size: 9.5px; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }
.dc-rank { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--ink); font-size: 10.5px; font-weight: 700; padding: 3px 8px; }
.dr-dots { display: flex; gap: 6px; margin-top: 14px; justify-content: center; }
.dr-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: all .2s; }
.dr-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* ── TICKER BAND ── */
.ticker-band {
    background: var(--cream2); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 7px 0;
    overflow: hidden; display: flex; align-items: center; margin: 28px 0 0;
}
.tb-lbl {
    flex-shrink: 0; background: var(--red); color: #fff; font-size: 9.5px;
    font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    padding: 3px 14px; margin-right: 14px; white-space: nowrap;
}
.tb-track { overflow: hidden; flex: 1; }
.tb-inner { display: flex; animation: tbS 32s linear infinite; white-space: nowrap; }
.tb-inner:hover { animation-play-state: paused; }
@keyframes tbS { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tb-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 30px 0 0; font-size: 11.5px; color: var(--ink3); font-weight: 400; }
.tb-item .td { color: var(--red); font-size: 7px; }

/* ── TOP STORIES SLIDER ── */
.ts-wrap { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--white); margin-bottom: 26px; }
.ts-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.ts-slide { flex-shrink: 0; width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 300px; text-decoration: none; }
.ts-img { overflow: hidden; }
.ts-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; min-height: 220px; }
.ts-slide:hover .ts-img img { transform: scale(1.04); }
.ts-ct { padding: 22px 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; border-left: 3px solid var(--red); }
.ts-hed { font-size: 20px; font-weight: 900; line-height: 1.2; color: var(--ink); letter-spacing: -.02em; }
.ts-deck { font-size: 12.5px; color: var(--mid); line-height: 1.55; font-weight: 400; }
.ts-meta { font-size: 10.5px; color: var(--muted); }
.ts-meta strong { color: var(--ink3); font-weight: 700; }
.ts-nav { position: absolute; bottom: 14px; right: 14px; display: flex; gap: 6px; }
.ts-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all .2s; }
.ts-dot.active { background: var(--red); width: 20px; border-radius: 3px; }
.ts-arr {
    position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px;
    border-radius: 50%; background: rgba(255,255,255,.93); border: 1px solid var(--border);
    font-size: 14px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 3; transition: all .2s; color: var(--ink);
}
.ts-arr:hover { background: var(--red); color: #fff; border-color: var(--red); }
.ts-prev { left: 10px; } .ts-next { right: 10px; }

/* ── FRANCHISE BAND ── */
.fr-band {
    background: var(--ink2); color: #fff; margin: 30px 0;
    padding: 26px 24px; position: relative; overflow: hidden;
}
.fr-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.fr-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.fr-title { font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.fr-title em { color: var(--gold2); font-style: normal; }
.fr-all { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.2); cursor: pointer; transition: color .15s; text-decoration: none; display: inline-block; }
.fr-all:hover { color: #fff; border-color: #fff; }
.fr-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.fc { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--ink); text-decoration: none; display: block; }
.fc:hover .fc-img img { transform: scale(1.08); }
.fc-img { position: absolute; inset: 0; }
.fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 65%, transparent 100%); }
.fc-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 11px; }
.fc-name { font-size: 13.5px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 2px; letter-spacing: -.01em; }
.fc-sub { font-size: 10.5px; color: rgba(255,255,255,.5); line-height: 1.3; font-weight: 400; }

/* ── PULL QUOTE ── */
.pq { border-left: 4px solid var(--red); padding: 16px 20px; margin: 24px 0; background: var(--cream2); }
.pq blockquote { font-size: 20px; font-weight: 700; line-height: 1.4; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; }
.pq cite { font-size: 11px; color: var(--mid); letter-spacing: .04em; font-weight: 400; }

/* ── DIAGONAL DARK SECTION ── */
.diag-sec {
    background: var(--ink); color: #fff; margin: 32px 0;
    padding: 32px 24px 60px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
}
.diag-sec .sh::after { background: rgba(255,255,255,.15); }
.diag-sec .sh-t { color: #fff; }
.diag-sec .sh-all { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.18); }
.diag-sec .c-hed { color: #fff; }
.diag-sec .c-deck { color: rgba(255,255,255,.55); }
.diag-sec .card:hover .c-hed { color: var(--gold2); }

/* ── FUN ZONE ── */
.fz { background: var(--ink); color: #fff; margin-bottom: 22px; position: relative; overflow: hidden; }
.fz::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.fz-hdr { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fz-title { font-size: 15px; font-weight: 900; letter-spacing: -.01em; }
.fz-title em { color: var(--gold2); font-style: normal; }
.fz-ctrl { display: flex; gap: 6px; }
.fz-btn {
    width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; background: transparent;
}
.fz-btn:hover { background: var(--red); border-color: var(--red); }
.fz-vp { overflow: hidden; }
.fz-track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.fz-slide { flex-shrink: 0; width: 100%; padding: 16px; }
.fz-emoji { font-size: 26px; margin-bottom: 8px; }
.fz-q { font-size: 15.5px; font-weight: 900; line-height: 1.3; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.fz-opts { display: flex; flex-direction: column; gap: 7px; }
.fz-opt {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    padding: 8px 12px; font-size: 11.5px; color: rgba(255,255,255,.8);
    cursor: pointer; transition: all .18s; text-align: left; font-family: inherit; font-weight: 400;
}
.fz-opt:hover { background: var(--red); border-color: var(--red); color: #fff; }
.fz-opt.voted { background: rgba(200,0,30,.25); border-color: var(--red); color: #fff; cursor: default; }
.fz-bar { height: 3px; background: var(--red); margin-top: 4px; transition: width .6s; border-radius: 2px; }
.fz-dots { display: flex; gap: 5px; justify-content: center; padding: 10px 0 12px; }
.fz-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: all .2s; }
.fz-dot.active { background: var(--gold); width: 14px; border-radius: 3px; }
.flair-poll-embed { padding: 0; }

/* ── RIGHT RAIL BOXES ── */
.rb { border: 1px solid var(--border); background: var(--white); margin-bottom: 22px; }
.rb-hdr { background: var(--ink); color: #fff; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.rh-t { font-size: 13.5px; font-weight: 900; letter-spacing: -.01em; }
.ldot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.mr-item {
    display: grid; grid-template-columns: 34px 1fr; gap: 9px;
    padding: 11px 14px; border-bottom: 1px solid var(--borderl);
    cursor: pointer; transition: background .15s; align-items: start; text-decoration: none;
}
.mr-item:last-child { border-bottom: none; }
.mr-item:hover { background: var(--cream2); }
.mr-num { font-size: 28px; font-weight: 900; color: var(--border); line-height: 1; user-select: none; }
.mr-num.top { color: rgba(200,0,30,.35); }
.mr-hed { font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--ink); transition: color .15s; letter-spacing: -.01em; }
.mr-item:hover .mr-hed { color: var(--red); }
.mr-meta { font-size: 10px; color: var(--muted); margin-top: 3px; }

/* ── NEWSLETTER BOX ── */
.nl-box { background: var(--ink); color: #fff; padding: 20px 16px; margin-bottom: 22px; position: relative; overflow: hidden; }
.nl-box::before { content: '"'; position: absolute; top: -16px; right: 6px; font-size: 120px; color: rgba(255,255,255,.04); font-weight: 900; line-height: 1; }
.nl-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold2); margin-bottom: 5px; }
.nl-title { font-size: 20px; font-weight: 900; line-height: 1.2; margin-bottom: 7px; letter-spacing: -.02em; }
.nl-desc { font-size: 11.5px; color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.55; font-weight: 400; }
.nl-inp {
    display: block; width: 100%; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18); padding: 9px 12px; font-size: 12.5px;
    color: #fff; outline: none; font-family: inherit; margin-bottom: 8px; transition: border-color .2s;
}
.nl-inp::placeholder { color: rgba(255,255,255,.3); }
.nl-inp:focus { border-color: var(--gold); }
.nl-btn {
    width: 100%; background: var(--red); color: #fff; border: none; padding: 10px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; transition: background .2s; font-family: inherit;
}
.nl-btn:hover { background: var(--red2); }

/* ── PHOTO RAIL ── */
.rph { display: grid; grid-template-columns: 78px 1fr; border-bottom: 1px solid var(--borderl); cursor: pointer; transition: background .15s; text-decoration: none; }
.rph:last-child { border-bottom: none; }
.rph:hover { background: var(--cream2); }
.rph-img { height: 64px; overflow: hidden; }
.rph-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rph:hover .rph-img img { transform: scale(1.08); }
.rph-txt { padding: 9px 11px; font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--ink); letter-spacing: -.01em; }
.rph:hover .rph-txt { color: var(--red); }

/* ── AD SPOT ── */
.ad-spot { border: 1px solid var(--border); padding: 12px; background: var(--white); text-align: center; margin-bottom: 22px; }
.ad-lbl { font-size: 9.5px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.ad-blk { background: var(--cream3); height: 165px; display: flex; align-items: center; justify-content: center; color: var(--border); font-size: 11.5px; }

/* ── CATEGORY PAGE ── */
.cat-hero { position: relative; overflow: hidden; height: 300px; background: var(--ink); margin-top: 0; }
.cat-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cat-hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.15)); }
.cat-hero-inner { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.cat-hero-ct { max-width: var(--pw); margin: 0 auto; padding: 0 24px 28px; width: 100%; }
.cat-hero-bar { height: 4px; background: var(--red); }
.cat-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 8px; }
.cat-title { font-size: 46px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.cat-desc { font-size: 14px; color: rgba(255,255,255,.65); max-width: 480px; font-weight: 400; line-height: 1.55; }
.cat-subnav { background: var(--cream2); border-bottom: 1px solid var(--border); padding: 10px 0; overflow-x: auto; }
.cat-subnav-inner { max-width: var(--pw); margin: 0 auto; padding: 0 24px; display: flex; gap: 10px; white-space: nowrap; }
.cs-pill { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border: 1px solid var(--border); color: var(--ink3); cursor: pointer; white-space: nowrap; transition: all .15s; display: inline-block; text-decoration: none; }
.cs-pill:hover, .cs-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb .bc-link { color: var(--mid); cursor: pointer; transition: color .15s; }
.breadcrumb .bc-link:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

/* ── CATEGORY FEATURED CARD ── */
.cf-wrap { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); margin-bottom: 32px; background: var(--white); cursor: pointer; text-decoration: none; }
.cf-wrap:hover .cf-hed { color: var(--red); }
.cf-img { overflow: hidden; min-height: 300px; position: relative; }
.cf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cf-wrap:hover .cf-img img { transform: scale(1.04); }
.cf-ct { padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; gap: 12px; border-left: 4px solid var(--red); }
.cf-hed { font-size: 26px; font-weight: 900; line-height: 1.2; color: var(--ink); letter-spacing: -.025em; transition: color .2s; }
.cf-deck { font-size: 13.5px; color: var(--mid); line-height: 1.6; font-weight: 400; }
.cf-meta { font-size: 11px; color: var(--muted); }
.cf-meta strong { font-weight: 700; color: var(--ink3); }
.cf-read { display: inline-block; background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 9px 20px; align-self: flex-start; transition: background .2s; }
.cf-read:hover { background: var(--red2); }

/* ── STORY LIST ── */
.sl-list { display: flex; flex-direction: column; }
.sl-item {
    display: grid; grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--borderl); padding: 18px 0;
    cursor: pointer; transition: background .12s; text-decoration: none;
}
.sl-item:first-child { border-top: 1px solid var(--borderl); }
.sl-item:hover { background: var(--cream2); }
.sl-item:hover .sl-hed { color: var(--red); }
.sl-img { overflow: hidden; height: 135px; background: var(--cream3); }
.sl-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sl-item:hover .sl-img img { transform: scale(1.06); }
.sl-ct { padding: 4px 0 4px 20px; display: flex; flex-direction: column; gap: 7px; }
.sl-hed { font-size: 18px; font-weight: 900; line-height: 1.25; color: var(--ink); letter-spacing: -.02em; transition: color .15s; }
.sl-deck { font-size: 13px; color: var(--mid); line-height: 1.5; font-weight: 400; }
.sl-meta { font-size: 10.5px; color: var(--muted); }
.sl-meta strong { font-weight: 700; color: var(--ink3); }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; align-items: center; margin-top: 24px; flex-wrap: wrap; }
.pg-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; color: var(--ink); text-decoration: none; }
.pg-btn:hover, .pg-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.pagination .page-numbers { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 13px; font-weight: 700; transition: all .15s; color: var(--ink); text-decoration: none; }
.pagination .current, .pagination .page-numbers:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── SINGLE ARTICLE ── */
.article-header { margin-bottom: 28px; }
.article-title { font-size: 38px; font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); margin-bottom: 12px; }
.article-deck { font-size: 18px; color: var(--mid); line-height: 1.5; font-weight: 400; margin-bottom: 14px; }
.article-meta { font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.article-meta strong { color: var(--ink3); font-weight: 700; }
.article-meta a { color: var(--red); }
.article-content { font-size: 16px; line-height: 1.85; color: var(--ink3); }
.article-content h2 { font-size: 26px; font-weight: 900; letter-spacing: -.025em; margin: 32px 0 12px; color: var(--ink); }
.article-content h3 { font-size: 20px; font-weight: 900; margin: 24px 0 10px; }
.article-content p { margin-bottom: 20px; }
.article-content a { color: var(--red); border-bottom: 1px solid rgba(200,0,30,.3); }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote { border-left: 4px solid var(--red); padding: 12px 20px; margin: 24px 0; background: var(--cream2); font-size: 18px; font-style: italic; }
.article-content img { max-width: 100%; height: auto; margin: 20px 0; }
.article-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tags { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 11px; color: var(--mid); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.author-box { display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: start; padding: 20px; background: var(--cream2); border: 1px solid var(--border); }
.author-avatar img { border-radius: 50%; width: 64px; height: 64px; object-fit: cover; }
.author-name { font-size: 15px; font-weight: 900; color: var(--ink); letter-spacing: -.01em; margin-bottom: 4px; }
.author-bio { font-size: 12.5px; color: var(--mid); line-height: 1.55; }
.article-comments { margin-top: 36px; padding-top: 28px; border-top: 2px solid var(--ink); }

/* ── STATIC PAGES ── */
.static-hero { background: var(--ink); padding: 52px 0 40px; position: relative; }
.static-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.static-hero-inner { max-width: var(--pw); margin: 0 auto; padding: 0 24px; }
.sh-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 8px; }
.sh-htitle { font-size: 48px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; }
.static-bar { height: 4px; background: var(--red); }
.static-wrap { max-width: 960px; margin: 0 auto; padding: 40px 24px 60px; }
.static-wrap h2 { font-size: 26px; font-weight: 900; letter-spacing: -.025em; margin: 36px 0 12px; color: var(--ink); }
.static-wrap h2:first-child { margin-top: 0; }
.static-wrap h2 em { color: var(--red); font-style: normal; }
.static-wrap p { font-size: 14.5px; color: var(--ink3); line-height: 1.8; margin-bottom: 16px; font-weight: 400; }
.static-wrap ul { margin: 8px 0 16px 22px; }
.static-wrap ul li { font-size: 14px; color: var(--ink3); line-height: 1.75; margin-bottom: 7px; list-style: disc; font-weight: 400; }
.static-wrap strong { font-weight: 700; color: var(--ink); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 36px 0; align-items: start; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-img-cap { background: var(--ink); color: rgba(255,255,255,.55); font-size: 11px; padding: 9px 13px; }
.stat-strip { background: var(--ink); color: #fff; padding: 36px 0; margin: 36px -24px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; padding: 0 24px; }
.stat-num { font-size: 38px; font-weight: 900; letter-spacing: -.03em; color: var(--gold2); line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 400; }
.vals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0; }
.val-card { background: var(--cream2); border: 1px solid var(--border); padding: 20px 16px; }
.val-icon { font-size: 26px; margin-bottom: 10px; }
.val-title { font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; }
.val-desc { font-size: 12px; color: var(--mid); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.contact-form-wrap { }
.contact-info-col { }
.ci-box { background: var(--cream2); border: 1px solid var(--border); padding: 18px 16px; margin-bottom: 16px; }
.ci-title { font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.ci-text { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 8px; }
.ci-text strong { color: var(--ink); }
.cf-form { }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { margin-bottom: 16px; }
.cf-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink3); margin-bottom: 6px; }
.cf-input {
    width: 100%; border: 1px solid var(--border); padding: 10px 13px;
    font-size: 13.5px; font-family: inherit; color: var(--ink);
    background: var(--white); outline: none; transition: border-color .2s;
}
.cf-input:focus { border-color: var(--ink); }
textarea.cf-input { resize: vertical; min-height: 120px; }
.contact-response { padding: 12px 16px; margin-bottom: 16px; font-size: 13px; font-weight: 700; }
.contact-response.success { background: rgba(0,120,50,.1); border: 1px solid rgba(0,120,50,.3); color: #005a25; }
.contact-response.error { background: rgba(200,0,30,.1); border: 1px solid rgba(200,0,30,.3); color: var(--red); }

/* ── PRIVACY PAGE ── */
.toc-nav { display: flex; flex-direction: column; }
.toc-link {
    display: block; font-size: 12px; color: var(--mid); padding: 6px 10px;
    border-left: 2px solid var(--border); transition: all .15s; text-decoration: none; margin-bottom: 2px;
}
.toc-link:hover, .toc-link.active { color: var(--red); border-left-color: var(--red); background: var(--cream2); }
.priv-section { scroll-margin-top: 80px; border-top: 1px solid var(--borderl); padding-top: 28px; margin-top: 0; }
.priv-section:first-child { border-top: none; padding-top: 0; }
.last-updated { font-size: 11px; color: var(--muted); background: var(--cream2); border: 1px solid var(--border); padding: 9px 13px; margin-bottom: 24px; display: inline-block; }

/* ── CONTENT MAIN (no sidebar pages) ── */
.content-main { min-width: 0; }

/* ── PAGE TRANSITION ── */
#main-view { transition: opacity .22s ease; }
#main-view.fading { opacity: 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── FOOTER ── */
.red-div { height: 3px; background: var(--red); }
.footer { background: var(--ink2); color: rgba(255,255,255,.55); padding: 44px 0 20px; }
.fi { max-width: var(--pw); margin: 0 auto; padding: 0 24px; }
.ft { display: grid; grid-template-columns: 220px 1fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 20px; }
.fb .fw { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -.03em; }
.fb .fw em { color: var(--red); font-style: normal; }
.fb p { font-size: 12px; line-height: 1.65; margin-bottom: 14px; font-weight: 400; }
.fsoc { display: flex; gap: 7px; flex-wrap: wrap; }
.fsoc-b { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.5); transition: all .15s; cursor: pointer; text-decoration: none; display: inline-block; }
.fsoc-b:hover { background: #fff; color: var(--ink); border-color: #fff; }
.fc-col h4 { font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.fc-col a { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 9px; transition: color .15s; font-weight: 400; cursor: pointer; }
.fc-col a:hover { color: #fff; }
.fc-col a.gl { color: var(--gold2); }
.fabout-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 18px; }
.fas-hd { font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.fas-p { font-size: 11.5px; line-height: 1.65; color: rgba(255,255,255,.32); font-weight: 400; }
.fbot { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.fleg { display: flex; gap: 16px; }
.fleg a { color: rgba(255,255,255,.35); font-size: 11px; transition: color .15s; cursor: pointer; }
.fleg a:hover { color: #fff; }

/* ── WORDPRESS SPECIFIC ── */
.wp-caption { max-width: 100%; margin-bottom: 16px; }
.wp-caption img { margin-bottom: 4px; }
.wp-caption-text { font-size: 11px; color: var(--muted); font-style: italic; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
.skip-link { position: absolute; top: -60px; left: 0; background: var(--red); color: #fff; padding: 8px 16px; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .cg { grid-template-columns: 1fr 280px; gap: 24px; }
    .hero-wrap { grid-template-columns: 1fr 300px; }
    .fr-grid { grid-template-columns: repeat(4, 1fr); }
    .ft { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}
@media (max-width: 900px) {
    .cg { grid-template-columns: 1fr; }
    .sidebar { display: block; }
    .sidebar { max-width: 380px; }
    .hero-wrap { grid-template-columns: 1fr; }
    .hero-stack { display: block; }
    .hs-item { margin-top: 15px; }
    .g3 { grid-template-columns: repeat(2, 1fr); }
    .fr-grid { grid-template-columns: repeat(3, 1fr); }
    .ts-slide { grid-template-columns: 1fr; }
    .ts-img { min-height: 200px; }
    .wordmark-link { font-size: 40px; }
    .cat-title { font-size: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .mh-top { grid-template-columns: 1fr; text-align: center; }
    .mh-actions { justify-content: center; margin-top: 10px; }
    .g3, .g2 { grid-template-columns: 1fr; }
    .sl-item { grid-template-columns: 1fr; }
    .sl-img { height: 180px; }
    .cf-wrap { grid-template-columns: 1fr; }
    .ft { grid-template-columns: 1fr 1fr; }
    .fabout-strip { grid-template-columns: 1fr; }
    .hero-main { min-height: 360px; }
    .hero-hed { font-size: 24px; }
    .cf-row { grid-template-columns: 1fr; }
    .vals-grid { grid-template-columns: 1fr; }
    .wordmark-link { font-size: 32px; }
    .nav-inner { overflow-x: auto; }
    .tagline{ display: none; }
}
