:root {
  --paper: #f2e6d3;
  --paper-soft: #fbf6ec;
  --paper-white: #fffdf8;
  --ink: #161210;
  --ink-soft: #2a2420;
  --muted: #75695f;
  --red: #9f1d22;
  --red-bright: #c62c31;
  --red-dark: #651014;
  --gold: #c39a4a;
  --gold-soft: #ead6aa;
  --line: rgba(22, 18, 16, .14);
  --line-light: rgba(255,255,255,.16);
  --shadow-sm: 0 8px 24px rgba(38, 23, 15, .08);
  --shadow-md: 0 18px 48px rgba(38, 23, 15, .12);
  --shadow-lg: 0 30px 90px rgba(38, 23, 15, .18);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper-soft); color: var(--ink); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: white; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; transform: translateY(-140%); background: var(--ink); color: white; padding: 10px 16px; border-radius: 10px; text-decoration: none; font-weight: 800; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 120px); }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--gold { color: var(--gold-soft); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(251,246,236,.84); backdrop-filter: blur(18px) saturate(130%); -webkit-backdrop-filter: blur(18px) saturate(130%); border-bottom: 1px solid transparent; transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { background: rgba(251,246,236,.95); border-color: var(--line); box-shadow: 0 10px 30px rgba(45,28,16,.06); }
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 46px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 14px; background: var(--paper-white); box-shadow: var(--shadow-sm); border: 1px solid rgba(159,29,34,.14); position: relative; overflow: hidden; flex-shrink: 0; }
.brand__mark::after { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(159,29,34,.08); border-radius: 10px; pointer-events: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: 1rem; letter-spacing: -.02em; }
.brand__text small { margin-top: 4px; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a, .nav-random { border: 0; background: transparent; color: var(--muted); padding: 10px 13px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: .88rem; transition: color .18s ease, background .18s ease, transform .18s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--red); background: rgba(159,29,34,.07); }
.nav-random { margin-left: 8px; background: var(--ink); color: white; padding-inline: 16px; }
.nav-random:hover { color: white; background: var(--red); transform: translateY(-1px); }
.menu-button { display: none; width: 46px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.45); align-items: center; justify-content: center; gap: 5px; flex-direction: column; }
.menu-button span { width: 18px; height: 2px; background: var(--ink); border-radius: 99px; transition: transform .2s ease; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; background: var(--red); color: white; text-decoration: none; font-weight: 900; font-size: .9rem; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); background: var(--red-dark); }
.button--light { background: var(--paper-white); color: var(--red-dark); }
.button--light:hover { background: white; color: var(--red-dark); box-shadow: 0 14px 40px rgba(0,0,0,.16); }
.button--line-light { background: transparent; border-color: rgba(255,255,255,.32); color: white; }
.button--line-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.button--dark { background: var(--ink); }
.button--dark:hover { background: var(--red); }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); text-decoration: none; font-weight: 900; font-size: .9rem; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.text-link--light { color: var(--paper-white); }

/* Homepage hero */
.hero { position: relative; overflow: hidden; background: var(--red-dark); color: white; min-height: 720px; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 22%, rgba(219,169,82,.17), transparent 30%), linear-gradient(120deg, rgba(0,0,0,.18), transparent 45%); z-index: -2; }
.hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black 0%, transparent 86%); }
.hero__orb { position: absolute; border: 1px solid rgba(234,214,170,.23); border-radius: 50%; pointer-events: none; }
.hero__orb::after { content: ""; position: absolute; inset: 14%; border: 1px dashed rgba(234,214,170,.19); border-radius: inherit; }
.hero__orb--one { width: 430px; height: 430px; right: -140px; top: -120px; animation: slowSpin 26s linear infinite; }
.hero__orb--two { width: 180px; height: 180px; left: 47%; bottom: 80px; animation: slowSpin 18s linear infinite reverse; }
.hero__inner { min-height: 665px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 100px); align-items: center; padding-block: 78px 100px; }
.hero__copy { position: relative; z-index: 2; }
.hero__label { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 28px; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; color: var(--gold-soft); }
.hero__label span + span::before { content: "✦"; margin-right: 18px; color: var(--gold); }
.hero h1 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(3.6rem, 7.1vw, 7.2rem); line-height: .88; letter-spacing: -.065em; color: var(--paper-white); }
.hero h1 span { color: var(--gold-soft); }
.hero h1 em { font-weight: 400; color: white; }
.hero__lead { max-width: 660px; margin: 30px 0 30px; color: rgba(255,255,255,.73); font-size: clamp(1rem, 1.8vw, 1.18rem); line-height: 1.75; }
.hero__stats { display: flex; gap: 35px; margin-top: 46px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.14); width: fit-content; }
.hero__stats div { display: grid; min-width: 84px; }
.hero__stats strong { font-family: var(--serif); color: white; font-size: 2rem; line-height: 1; }
.hero__stats span { margin-top: 6px; color: rgba(255,255,255,.52); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.hero-poster { position: relative; min-height: 500px; border: 1px solid rgba(255,255,255,.25); background: #161210; padding: 28px; overflow: hidden; transform: rotate(2deg); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.hero-poster::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(195,154,74,.36); pointer-events: none; }
.hero-poster::after { content: ""; position: absolute; width: 380px; height: 380px; border: 50px solid rgba(159,29,34,.7); border-radius: 50%; right: -180px; top: 70px; }
.hero-poster__top { position: relative; z-index: 2; display: flex; justify-content: space-between; font-size: .64rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-soft); }
.hero-poster__map { position: absolute; left: 42px; right: 42px; top: 110px; min-height: 145px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; opacity: .95; }
.hero-poster__map span { display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .63rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; background: linear-gradient(135deg, rgba(159,29,34,.32), transparent); clip-path: polygon(5% 0, 100% 0, 94% 100%, 0 82%); }
.hero-poster__title { position: absolute; z-index: 3; left: 42px; bottom: 95px; display: grid; font-family: var(--serif); line-height: .8; letter-spacing: -.06em; }
.hero-poster__title span { font-size: clamp(2.3rem, 4vw, 4.1rem); color: var(--gold-soft); font-style: italic; }
.hero-poster__title strong { font-size: clamp(3.3rem, 5.7vw, 5.8rem); color: white; }
.hero-poster__seal { position: absolute; z-index: 4; right: 36px; bottom: 110px; width: 92px; height: 92px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--serif); font-size: 2.1rem; background: var(--red); box-shadow: inset 0 0 0 7px rgba(22,18,16,.16); }
.hero-poster__bottom { position: absolute; z-index: 3; left: 42px; right: 42px; bottom: 34px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 13px; color: rgba(255,255,255,.55); font-size: .61rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.hero-ticker { position: absolute; bottom: 0; left: 0; right: 0; background: var(--paper); color: var(--red-dark); border-top: 1px solid rgba(255,255,255,.14); overflow: hidden; white-space: nowrap; font-size: .72rem; letter-spacing: .17em; font-weight: 900; text-transform: uppercase; }
.hero-ticker div { width: max-content; padding: 12px 0; animation: ticker 24s linear infinite; }

/* Headings & sections */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 36px; }
.section-heading--wide > div { max-width: 760px; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.5vw, 5.7rem); line-height: .94; letter-spacing: -.055em; }
.section-heading h2 em { color: var(--red); font-weight: 400; }
.section-heading > p { max-width: 410px; margin: 0; color: var(--muted); }
.section-heading--light h2 { color: white; }
.section-heading--light > p { color: rgba(255,255,255,.6); }
.section--intro { background: var(--paper-soft); }
.section--dark { background: var(--ink); color: white; position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 8% 20%, rgba(159,29,34,.18), transparent 25%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 100% 72px; pointer-events: none; }

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 305px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: var(--paper-white); color: var(--ink); text-decoration: none; position: relative; overflow: hidden; transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, color .28s ease, background .28s ease; }
.category-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; border: 28px solid rgba(159,29,34,.08); right: -80px; bottom: -80px; transition: transform .4s ease; }
.category-card:nth-child(2) { background: var(--red); color: white; }
.category-card:nth-child(2) p, .category-card:nth-child(2) .category-card__count { color: rgba(255,255,255,.7); }
.category-card:nth-child(2) .category-card__icon { border-color: rgba(255,255,255,.3); color: white; }
.category-card:nth-child(3) { background: var(--paper); }
.category-card:nth-child(4) { background: var(--ink); color: white; }
.category-card:nth-child(4) p, .category-card:nth-child(4) .category-card__count { color: rgba(255,255,255,.58); }
.category-card:nth-child(4) .category-card__icon { border-color: rgba(255,255,255,.2); color: var(--gold-soft); }
.category-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.category-card:hover::after { transform: scale(1.12) rotate(15deg); }
.category-card__top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.category-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--red); font-family: var(--serif); font-size: 1.05rem; font-weight: 900; }
.category-card__count { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.category-card h3 { margin: 45px 0 8px; font-family: var(--serif); font-size: 2rem; line-height: 1; letter-spacing: -.04em; position: relative; z-index: 2; }
.category-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; position: relative; z-index: 2; }
.category-card__link { margin-top: 24px; position: relative; z-index: 2; font-size: .79rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

/* Story cards */
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.story-grid--featured .story-card:first-child { grid-column: span 2; }
.story-grid--featured .story-card:first-child .story-card__media { aspect-ratio: 2.02; }
.story-card { background: var(--paper-white); border: 1px solid var(--line); overflow: hidden; min-width: 0; transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease; }
.story-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(159,29,34,.22); }
.story-card__media { aspect-ratio: 1.48; position: relative; overflow: hidden; background: var(--red-dark); }
.story-card__image-link { display: block; height: 100%; }
.story-card__image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.story-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.story-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,12,10,.5), transparent 52%); }
.story-card__category { position: absolute; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(251,246,236,.92); color: var(--red-dark); backdrop-filter: blur(8px); font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.favorite-button { position: absolute; z-index: 3; right: 14px; top: 14px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(22,18,16,.38); color: white; backdrop-filter: blur(9px); font-size: 1.12rem; transition: transform .2s ease, background .2s ease, color .2s ease; }
.favorite-button:hover { transform: scale(1.08); }
.favorite-button.is-active { background: var(--red); border-color: var(--red); color: white; }
.story-card__body { padding: 21px 21px 18px; }
.story-card__place { margin: 0 0 8px; color: var(--red); font-size: .66rem; text-transform: uppercase; letter-spacing: .095em; font-weight: 900; }
.story-card h3 { margin: 0; font-family: var(--serif); font-size: 1.68rem; line-height: 1.02; letter-spacing: -.035em; }
.story-card h3 a { text-decoration: none; }
.story-card h3 a:hover { color: var(--red); }
.story-card__excerpt { margin: 12px 0 18px; color: var(--muted); font-size: .9rem; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.story-card__footer { padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.story-card__index { font-family: var(--serif); color: rgba(22,18,16,.28); font-weight: 800; }
.section--dark .story-card { background: #211b18; border-color: rgba(255,255,255,.09); }
.section--dark .story-card h3 { color: white; }
.section--dark .story-card__excerpt { color: rgba(255,255,255,.57); }
.section--dark .story-card__place { color: var(--gold-soft); }
.section--dark .story-card__footer { border-color: rgba(255,255,255,.09); }
.section--dark .story-card__index { color: rgba(255,255,255,.18); }
.section--dark .text-link { color: var(--gold-soft); }
.story-card--compact .story-card__excerpt { -webkit-line-clamp: 2; }

/* Region */
.region-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.region-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.region-intro { position: sticky; top: 120px; }
.region-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: .92; letter-spacing: -.055em; }
.region-intro > p:not(.eyebrow) { color: var(--muted); margin: 24px 0 28px; max-width: 430px; }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.region-card { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 24px 16px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s ease, padding .2s ease; }
.region-card:nth-child(odd) { border-right: 1px solid var(--line); }
.region-card:hover { background: rgba(255,255,255,.45); padding-left: 23px; }
.region-card__num { color: var(--red); font-family: var(--serif); font-size: .8rem; font-weight: 900; }
.region-card h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; letter-spacing: -.03em; }
.region-card p { margin: 5px 0 0; color: var(--muted); font-size: .78rem; }
.region-card__arrow { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--red); transition: transform .2s ease, background .2s ease, color .2s ease; }
.region-card:hover .region-card__arrow { transform: rotate(-45deg); background: var(--red); color: white; }
.recent-section { background: var(--paper-soft); }

/* Manifesto */
.manifesto { background: var(--red-dark); color: white; padding-block: clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; width: 520px; height: 520px; border: 80px solid rgba(195,154,74,.12); border-radius: 50%; right: -240px; top: -180px; }
.manifesto__inner { display: grid; grid-template-columns: auto 1.2fr .8fr; gap: clamp(32px, 5vw, 70px); align-items: end; position: relative; z-index: 2; }
.manifesto__mark { width: 82px; height: 82px; border-radius: 50%; border: 1px solid rgba(234,214,170,.5); display: grid; place-items: center; color: var(--gold-soft); font-family: var(--serif); font-weight: 800; }
.manifesto h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.6rem); line-height: .92; letter-spacing: -.055em; color: white; }
.manifesto h2 em { font-weight: 400; color: var(--gold-soft); }
.manifesto__copy p { margin: 0 0 24px; color: rgba(255,255,255,.66); }

/* Explore */
.explore-hero { position: relative; overflow: hidden; background: var(--ink); color: white; min-height: 440px; display: flex; align-items: center; }
.explore-hero__pattern { position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(circle at 84% 25%, rgba(159,29,34,.7), transparent 25%), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 70px 70px, 70px 70px; }
.explore-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; padding-block: 78px 110px; }
.explore-hero h1 { margin: 0; max-width: 820px; font-family: var(--serif); font-size: clamp(3.5rem, 6.8vw, 7rem); line-height: .88; letter-spacing: -.06em; color: white; }
.explore-hero h1 em { color: var(--gold-soft); font-weight: 400; }
.explore-hero__inner > p { margin: 0; color: rgba(255,255,255,.62); font-size: 1rem; }
.explore-toolbar-wrap { position: relative; z-index: 6; margin-top: -54px; }
.explore-toolbar { padding: 22px; background: var(--paper-white); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.search-box { min-height: 58px; display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: center; padding: 0 17px; border: 1px solid rgba(159,29,34,.28); background: #fff; }
.search-box span { color: var(--red); font-size: 1.3rem; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 1rem; }
.search-box input::placeholder { color: #a3988f; }
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.filter-grid label { display: grid; gap: 5px; }
.filter-grid label > span { color: var(--muted); font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.filter-grid select { min-height: 48px; width: 100%; border: 1px solid var(--line); background: var(--paper-soft); padding: 0 12px; color: var(--ink); outline: 0; }
.filter-grid select:focus { border-color: var(--red); }
.toolbar-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.favorite-toggle { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .84rem; font-weight: 800; cursor: pointer; }
.favorite-toggle input { accent-color: var(--red); }
.favorite-toggle span { color: var(--red); }
.reset-button { border: 0; background: transparent; color: var(--red); font-size: .82rem; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.explore-results { padding-top: 55px; }
.results-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 24px; min-height: 42px; }
.result-count { margin: 0; color: var(--muted); font-size: .86rem; }
.result-count strong { color: var(--ink); font-family: var(--serif); font-size: 1.55rem; }
.active-filters { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.filter-chip { border: 1px solid rgba(159,29,34,.2); background: rgba(159,29,34,.06); color: var(--red-dark); padding: 7px 10px; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.filter-chip:hover { background: var(--red); color: white; }
.empty-state { grid-column: 1 / -1; padding: 75px 30px; text-align: center; border: 1px dashed rgba(159,29,34,.3); background: var(--paper); }
.empty-state__icon { width: 68px; height: 68px; margin: 0 auto 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--red); font-family: var(--serif); font-size: 1.5rem; }
.empty-state h1, .empty-state h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 2.1rem; }
.empty-state p { color: var(--muted); margin: 0 0 22px; }

/* Reader */
.reading-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; }
.reading-progress span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .08s linear; }
.reader-hero { position: relative; overflow: hidden; background: var(--red-dark); color: white; }
.reader-hero__pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(195,154,74,.18), transparent 24%), linear-gradient(135deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.045) 50%, rgba(255,255,255,.045) 75%, transparent 75%); background-size: auto, 48px 48px; opacity: .8; }
.reader-hero__inner { position: relative; z-index: 2; min-height: 610px; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(45px, 7vw, 90px); align-items: center; padding-block: 74px 86px; }
.reader-kicker { width: fit-content; display: inline-flex; margin-bottom: 19px; padding: 7px 11px; border: 1px solid rgba(234,214,170,.45); border-radius: 999px; color: var(--gold-soft); text-decoration: none; font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.reader-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 6.5vw, 6.7rem); line-height: .88; letter-spacing: -.06em; color: white; }
.reader-hero__lead { max-width: 650px; margin: 24px 0 25px; color: rgba(255,255,255,.7); font-size: 1.06rem; line-height: 1.7; }
.reader-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.reader-badge { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 800; }
.reader-actions { display: flex; gap: 8px; margin-top: 22px; }
.reader-action { min-height: 43px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(0,0,0,.14); color: white; padding: 0 13px; font-size: .76rem; font-weight: 900; }
.reader-action:hover { background: rgba(255,255,255,.1); }
.reader-hero__visual { position: relative; padding: 18px; }
.reader-hero__visual img { width: 100%; aspect-ratio: 1.34; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,.28); position: relative; z-index: 2; }
.reader-hero__frame { position: absolute; inset: 0 35px 36px 0; border: 1px solid rgba(234,214,170,.55); transform: translate(16px, 16px); }
.reader-shell { display: grid; grid-template-columns: 260px minmax(0, 720px); gap: clamp(45px, 8vw, 95px); justify-content: center; align-items: start; }
.reader-sidebar { position: sticky; top: 108px; display: grid; gap: 18px; }
.reader-tools, .meta-block { padding: 18px; border: 1px solid var(--line); background: var(--paper-white); }
.reader-tools__label { margin: 0 0 9px; color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.font-controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.font-controls button { min-height: 38px; border: 1px solid var(--line); background: var(--paper-soft); color: var(--ink); font-weight: 900; }
.font-controls button:hover { background: var(--red); color: white; border-color: var(--red); }
.meta-block ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: .86rem; }
.meta-block li + li { margin-top: 6px; }
.reader-copy { --reader-scale: 1; font-family: var(--serif); font-size: calc(1.22rem * var(--reader-scale)); line-height: 1.92; color: #2b2521; }
.reader-copy > p { margin: 0 0 1.5em; }
.reader-deck { padding-bottom: 25px; border-bottom: 1px solid var(--line); color: var(--red-dark); font-size: calc(1.38rem * var(--reader-scale)); line-height: 1.65; font-style: italic; }
.reader-copy > p:nth-of-type(2)::first-letter { float: left; margin: 7px 10px 0 0; color: var(--red); font-size: 5.3rem; line-height: .72; font-weight: 700; }
.reader-note { margin-top: 42px; padding: 20px; display: grid; grid-template-columns: auto 1fr; gap: 16px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--line); background: var(--paper); font-family: var(--sans); font-size: .85rem; line-height: 1.65; }
.reader-note__mark { width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: white; display: grid; place-items: center; font-family: var(--serif); font-weight: 900; }
.reader-note strong { color: var(--ink); }
.reader-note p { margin: 3px 0 0; color: var(--muted); }
.related-section { background: var(--paper); border-block: 1px solid var(--line); }
.story-pagination { padding-block: 55px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story-nav-card { min-height: 112px; padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); background: var(--paper-white); text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.story-nav-card:hover { border-color: rgba(159,29,34,.4); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.story-nav-card span { color: var(--red); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.story-nav-card strong { margin-top: 5px; font-family: var(--serif); font-size: 1.4rem; }
.story-nav-card--next { text-align: right; align-items: end; }

/* About */
.about-hero { position: relative; overflow: hidden; background: var(--ink); color: white; }
.about-hero__pattern { position: absolute; inset: 0; background: radial-gradient(circle at 78% 24%, rgba(159,29,34,.62), transparent 24%), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 64px 64px; }
.about-hero__inner { min-height: 590px; position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; padding-block: 90px; }
.about-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.7rem, 7vw, 7.3rem); line-height: .87; letter-spacing: -.065em; color: white; }
.about-hero h1 em { color: var(--gold-soft); font-weight: 400; }
.about-hero__statement { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.23); }
.about-hero__statement p { margin: 0; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.75; }
.about-story { display: grid; grid-template-columns: .38fr 1fr; gap: 70px; }
.about-story__label { display: flex; align-items: flex-start; gap: 15px; }
.about-story__label span { color: var(--red); font-family: var(--serif); font-size: 1.8rem; }
.about-story__label p { margin: 6px 0 0; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.about-story__body { max-width: 780px; }
.about-story__body h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); line-height: .95; letter-spacing: -.05em; }
.about-story__body p { color: var(--muted); font-size: 1.03rem; line-height: 1.8; }
.about-values { background: var(--paper); border-block: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.values-grid article { min-height: 250px; padding: 24px; background: var(--paper-white); }
.values-grid span { color: var(--red); font-family: var(--serif); font-weight: 900; }
.values-grid h3 { margin: 55px 0 8px; font-family: var(--serif); font-size: 1.55rem; }
.values-grid p { margin: 0; color: var(--muted); font-size: .88rem; }
.about-cta { background: var(--red-dark); color: white; padding-block: 95px; }
.about-cta__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.about-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.8rem); line-height: .9; letter-spacing: -.055em; color: white; }
.about-cta h2 em { color: var(--gold-soft); font-weight: 400; }
.about-cta__inner > div:last-child p { margin: 0 0 24px; color: rgba(255,255,255,.65); }

/* Footer & misc */
.site-footer { background: #110e0c; color: white; padding-block: 42px; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.brand--footer { color: white; }
.brand--footer .brand__mark { background: rgba(255,255,255,.96); border-color: rgba(255,255,255,.08); }
.brand--footer .brand__text small { color: rgba(255,255,255,.45); }
.footer-copy { color: rgba(255,255,255,.45); text-align: right; font-size: .76rem; line-height: 1.7; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: var(--ink); color: white; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--red); }

@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr .78fr; gap: 42px; }
  .hero-poster { min-height: 440px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid--featured .story-card:first-child { grid-column: span 2; }
  .region-layout { grid-template-columns: 1fr; }
  .region-intro { position: static; max-width: 700px; }
  .manifesto__inner { grid-template-columns: auto 1fr; }
  .manifesto__copy { grid-column: 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .reader-shell { grid-template-columns: 220px minmax(0, 680px); gap: 44px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-button { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 69px; left: 14px; right: 14px; padding: 12px; background: rgba(251,246,236,.98); border: 1px solid var(--line); box-shadow: var(--shadow-md); flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .site-nav a, .nav-random { text-align: left; width: 100%; margin: 0; border-radius: 10px; }
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding-block: 64px 95px; }
  .hero-poster { width: min(100%, 570px); min-height: 440px; transform: rotate(0); }
  .hero__orb--two { display: none; }
  .section-heading, .explore-hero__inner, .about-hero__inner, .about-cta__inner { grid-template-columns: 1fr; display: grid; align-items: start; gap: 25px; }
  .section-heading > p { max-width: 620px; }
  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto__mark { display: none; }
  .manifesto__copy { grid-column: auto; max-width: 620px; }
  .explore-hero { min-height: 500px; }
  .explore-hero__inner { padding-bottom: 110px; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .reader-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .reader-hero__visual { width: min(100%, 620px); }
  .reader-shell { grid-template-columns: 1fr; }
  .reader-sidebar { position: static; grid-template-columns: repeat(3, 1fr); }
  .reader-tools, .meta-block { min-width: 0; }
  .about-hero__inner { min-height: 560px; align-content: end; }
  .about-hero__statement { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
  .about-story { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  .section { padding-block: 68px; }
  .brand__text small { display: none; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero__label { display: grid; gap: 5px; }
  .hero__label span + span::before { display: none; }
  .hero__lead { font-size: .98rem; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
  .hero__stats { width: 100%; gap: 10px; justify-content: space-between; }
  .hero__stats div { min-width: 0; }
  .hero-poster { min-height: 400px; padding: 22px; }
  .hero-poster__map { left: 30px; right: 30px; top: 95px; }
  .hero-poster__title { left: 30px; bottom: 84px; }
  .hero-poster__seal { width: 70px; height: 70px; right: 25px; bottom: 108px; font-size: 1.6rem; }
  .hero-poster__bottom { left: 30px; right: 30px; font-size: .52rem; }
  .section-heading h2, .region-intro h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .category-grid, .story-grid, .values-grid { grid-template-columns: 1fr; }
  .story-grid--featured .story-card:first-child { grid-column: auto; }
  .story-grid--featured .story-card:first-child .story-card__media { aspect-ratio: 1.48; }
  .category-card { min-height: 270px; }
  .region-grid { grid-template-columns: 1fr; }
  .region-card:nth-child(odd) { border-right: 0; }
  .region-card { min-height: 120px; }
  .explore-hero h1, .about-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .explore-toolbar-wrap { margin-top: -35px; }
  .explore-toolbar { padding: 14px; }
  .filter-grid { grid-template-columns: 1fr; }
  .toolbar-bottom, .results-header { align-items: flex-start; flex-direction: column; }
  .active-filters { justify-content: flex-start; }
  .reader-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .reader-hero__inner { padding-block: 58px 70px; }
  .reader-actions { flex-wrap: wrap; }
  .reader-sidebar { grid-template-columns: 1fr; }
  .reader-copy { font-size: calc(1.1rem * var(--reader-scale)); line-height: 1.82; }
  .reader-deck { font-size: calc(1.22rem * var(--reader-scale)); }
  .story-pagination { grid-template-columns: 1fr; }
  .story-nav-card--next { text-align: left; align-items: start; }
  .about-hero__inner { padding-block: 70px; }
  .about-cta h2 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
  .footer-copy { text-align: left; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}


/* Brand identity */
.brand-section { background: linear-gradient(180deg, var(--paper-soft), var(--paper)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.brand-layout--about { grid-template-columns: .95fr 1.05fr; }
.brand-panel__frame { background: linear-gradient(180deg, #f8f2e8, #f2e6d3); border: 1px solid rgba(22,18,16,.1); box-shadow: var(--shadow-md); padding: clamp(18px, 3vw, 34px); }
.brand-panel__frame img { width: 100%; height: auto; }
.brand-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .95; letter-spacing: -.05em; }
.brand-copy h2 em { color: var(--red); font-weight: 400; }
.brand-copy p { color: var(--muted); font-size: 1rem; line-height: 1.78; }
.brand-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.brand-points li { padding: 16px 18px; background: rgba(255,255,255,.55); border: 1px solid var(--line); border-left: 4px solid var(--red); }
.brand-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.brand-badges span { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border-radius: 999px; background: var(--paper-white); border: 1px solid var(--line); color: var(--red-dark); font-size: .82rem; font-weight: 800; }

@media (max-width: 920px) {
  .brand-layout, .brand-layout--about { grid-template-columns: 1fr; }
}
