:root {
  --burgundy: #6E1F2A;
  --burgundy-deep: #4A1520;
  --burgundy-soft: #8B3A45;
  --charcoal: #1c1917;
  --ink: #2A211C;
  --muted: #6B5E54;
  --cream: #F4EFE6;
  --cream-deep: #EBE3D6;
  --paper: #FAF7F1;
  --line: rgba(42, 33, 28, 0.14);
  --gold: #B08D57; /* brass, rare */
  --olive: #5C6B3A;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(28, 25, 23, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--burgundy-soft);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Age gate (full-screen cinematic) —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__bg {
  position: absolute;
  inset: 0;
  background:
    url("images/age-gate-bg.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: ageDrift 18s ease-in-out infinite alternate;
}

.age-gate__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28, 25, 23, 0.72) 0%, rgba(61, 16, 24, 0.78) 55%, rgba(28, 25, 23, 0.85) 100%);
}

.age-gate__panel {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  max-width: 440px;
  padding: 2.5rem 1.5rem;
  animation: fadeUp 0.9s var(--ease) both;
}

.age-gate__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.age-gate__panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 72;
}

.age-gate__body {
  margin: 0 0 2rem;
  color: rgba(247, 241, 234, 0.78);
  font-size: 1.05rem;
  font-weight: 300;
}

.age-gate__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes ageDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Buttons —— */
.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--cream {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.btn--cream:hover {
  background: #fff;
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(247, 241, 234, 0.45);
  color: var(--cream);
}

.btn--outline-light:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.btn--burgundy {
  background: var(--burgundy);
  color: var(--cream);
}

.btn--burgundy:hover {
  background: var(--burgundy-deep);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 234, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--cream);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy-deep);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand__tag {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--burgundy);
}

.nav a.is-active::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.25rem;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.2rem 0.15rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease;
}

.lang-switch button.is-active {
  color: var(--burgundy-deep);
}

.lang-switch button:hover {
  color: var(--burgundy);
}

.lang-switch__sep {
  color: var(--line);
  font-size: 0.75rem;
  opacity: 0.8;
}

/* —— Cinematic home hero —— */
.cinema-hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--charcoal);
  padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
}

.cinema-hero__media {
  position: absolute;
  inset: 0;
}

.cinema-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroKen 22s ease-in-out infinite alternate;
}

.cinema-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.25) 0%, rgba(28, 25, 23, 0.15) 35%, rgba(28, 25, 23, 0.78) 78%, rgba(28, 25, 23, 0.94) 100%),
    linear-gradient(90deg, rgba(61, 16, 24, 0.35), transparent 55%);
}

.cinema-hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.75rem;
  max-width: 44rem;
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.cinema-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.96);
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 2px rgba(28, 25, 23, 0.45);
}

.cinema-hero__kicker::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: rgba(244, 239, 230, 0.9);
}

.cinema-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.02em;
}

.cinema-hero__dek {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(247, 241, 234, 0.82);
  max-width: 34rem;
  line-height: 1.55;
}

.cinema-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(247, 241, 234, 0.45);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s ease, gap 0.25s ease;
}

.cinema-hero__cta:hover {
  color: #fff;
  border-bottom-color: #fff;
  gap: 0.8rem;
}

@keyframes heroKen {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

/* —— Magazine section —— */
.magazine {
  padding: 3.5rem 0 4.5rem;
}

.magazine__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.magazine__label {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--burgundy-deep);
}

.magazine__sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 400;
  max-width: 28rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--burgundy-soft);
  color: var(--burgundy);
}

.chip.is-active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

/* Feature grid: lead + stack */
.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feature-lead {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 520px;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.feature-lead:hover {
  color: var(--cream);
}

.feature-lead__media {
  position: absolute;
  inset: 0;
}

.feature-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.feature-lead:hover .feature-lead__media img {
  transform: scale(1.06);
}

.feature-lead__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(28, 25, 23, 0.55) 55%, rgba(28, 25, 23, 0.92) 100%);
}

.feature-lead__body {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 2.25rem;
}

.feature-lead__meta {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.feature-lead h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}

.feature-lead p {
  margin: 0;
  color: rgba(247, 241, 234, 0.78);
  font-weight: 300;
  max-width: 36rem;
  font-size: 1.02rem;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 168px;
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
}

.story-card:hover {
  color: inherit;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.story-card__media {
  overflow: hidden;
  background: var(--cream-deep);
  min-height: 100%;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-card:hover .story-card__media img {
  transform: scale(1.07);
}

.story-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.story-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.story-card__cat {
  color: var(--burgundy);
}

.story-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Remaining cards below lead row */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.portrait-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
}

.portrait-card:hover {
  color: inherit;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.portrait-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}

.portrait-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.portrait-card:hover .portrait-card__media img {
  transform: scale(1.07);
}

.portrait-card__body {
  padding: 1.25rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.portrait-card__meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}

.portrait-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.25;
  margin: 0;
}

.portrait-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.portrait-card__more {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* —— Article —— */
.article-hero {
  position: relative;
  min-height: min(62vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--charcoal);
}

.article-hero__media {
  position: absolute;
  inset: 0;
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.2), rgba(28, 25, 23, 0.88));
}

.article-hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4.25rem;
  max-width: 46rem;
  overflow: visible;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.02em;
  padding-bottom: 0.2em;
  overflow: visible;
}

.article-wrap {
  padding: 2.5rem clamp(1.5rem, 4vw, 2.75rem) 4.5rem;
}

.article-wrap .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.article-wrap .back-link:hover {
  color: var(--burgundy);
}

.article__body {
  max-width: 40rem;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--ink);
}

.article__body p {
  margin: 0 0 1.25rem;
}

.article__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  padding: 0.12rem 0.55rem 0 0;
  color: var(--burgundy);
  font-weight: 500;
}

.article__source {
  max-width: 40rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— About —— */
.about-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--charcoal);
}

.about-hero__media {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(61, 16, 24, 0.75), rgba(28, 25, 23, 0.55));
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.75rem;
  max-width: 36rem;
}

.about-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0;
}

.about-body {
  padding: 2.75rem 0 4.5rem;
  max-width: 40rem;
  font-size: 1.12rem;
}

.about-body p {
  margin: 0 0 1.2rem;
  color: var(--ink);
}

/* —— States / footer —— */
.state-msg {
  padding: 3rem 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--burgundy-deep);
  color: rgba(247, 241, 234, 0.7);
  padding: 2.25rem 0;
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.site-footer__name {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 500;
}

.site-footer__copy {
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.site-footer__links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-footer__links a {
  color: rgba(247, 241, 234, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--cream);
  border-bottom-color: rgba(247, 241, 234, 0.45);
}

/* —— Privacy —— */
.privacy-page {
  padding: 3rem 0 4rem;
  max-width: 42rem;
}

.privacy-page h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--burgundy-deep);
  margin: 0 0 0.5rem;
}

.privacy-page .privacy-updated {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 1.75rem;
}

.privacy-page h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.75rem 0 0.55rem;
}

.privacy-page p {
  margin: 0 0 0.85rem;
  color: var(--ink);
  line-height: 1.65;
}


/* —— Soft page heroes (Map / Topics / filters) —— */
.page-hero {
  padding: 3.25rem 0 1.75rem;
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(196, 165, 116, 0.18), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero--soft h1 {
  font-family: var(--serif);
  font-weight: 550;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--burgundy-deep);
  font-variation-settings: "opsz" 72;
}

.page-hero--soft p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
}

.page-hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.85rem !important;
}

.back-link--hero {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.page-section {
  padding: 2.25rem 0 4rem;
}

.magazine--filtered {
  padding-top: 2rem;
}

.about-body--brief {
  max-width: 40rem;
  font-size: 1.15rem;
}

/* —— Map country tiles —— */
.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.map-tile {
  position: relative;
  display: block;
  min-height: 240px;
  border-radius: 1.15rem;
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.map-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(28, 25, 23, 0.16);
  color: var(--cream);
}

.map-tile__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease);
}

.map-tile:hover .map-tile__media img {
  transform: scale(1.1);
}

.map-tile__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.15) 0%, rgba(61, 16, 24, 0.55) 48%, rgba(28, 25, 23, 0.88) 100%);
}

.map-tile__body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.4rem 1.3rem;
}

.map-tile__body h2 {
  font-family: var(--serif);
  font-weight: 550;
  font-size: 1.65rem;
  margin: 0 0 0.25rem;
  line-height: 1.15;
  font-variation-settings: "opsz" 48;
}

.map-tile__count {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 241, 234, 0.78);
  font-weight: 500;
}

.map-tile__region {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.map-tile__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.map-tile__chip {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(247, 241, 234, 0.14);
  border: 1px solid rgba(247, 241, 234, 0.22);
  color: var(--cream);
}

/* —— Topics grid —— */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 31, 42, 0.28);
  box-shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
  color: inherit;
}

.topic-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.topic-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.topic-card:hover .topic-card__media img {
  transform: scale(1.04);
}

.topic-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.25rem 1.3rem;
}

.topic-card__label {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 550;
  color: var(--burgundy-deep);
  font-variation-settings: "opsz" 36;
  line-height: 1.15;
}

.topic-card__dek {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.topic-card__count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.chips--regions {
  margin-top: 1.25rem;
}

@media (max-width: 960px) {
  .map-grid,
  .topics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .map-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .nav a {
    font-size: 0.82rem;
  }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-lead {
    min-height: 420px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 1.5rem, var(--max));
  }

  .brand__tag {
    display: none;
  }

  .nav {
    gap: 0.9rem;
  }

  .cinema-hero {
    min-height: 78vh;
  }

  .cinema-hero__content {
    padding: 3rem 0 2.5rem;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card__media {
    aspect-ratio: 16 / 10;
    min-height: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .feature-lead__body {
    padding: 1.5rem;
  }

  .magazine {
    padding: 2.5rem 0 3.5rem;
  }
}


/* —— Swiss editorial KEEP strip (house moat) —— */
.anchor-plate {
  max-width: 42rem;
  margin: 3rem 0 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.anchor-plate__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.anchor-plate__art {
  display: none; /* Swiss direction: type + photo hero, not synthetic sketch plates */
}
.anchor-plate__art img { display: none; }
.anchor-plate__caption {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
}
.anchor-plate__caption::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.55rem;
  background: var(--burgundy);
  margin: 0 0 1rem;
}
.anchor-plate__hint {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Swiss article sheet */
.article-wrap {
  /* Full-bleed sheet: kill the cream|paper side seams that read as a hard border */
  width: 100%;
  max-width: none;
  background: var(--paper);
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  /* Keep copy on the same measure as .shell, inset from the viewport edge */
  padding: 2.75rem max(1.5rem, calc((100% - var(--max)) / 2 + 1.25rem)) 4.5rem;
  box-sizing: border-box;
}
.article-wrap .back-link {
  margin-top: 0.35rem;
}
.article-hero h1 {
  font-weight: 500;
  letter-spacing: -0.03em;
}
.article__body {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.75;
}
.article-hero__meta {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 650;
}


/* —— Article two-column: body + Choice Rail moat —— */
/* Same editorial rail as before; slight measure cap so copy doesn’t sprawl on wide screens. */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 17rem);
  gap: 2.5rem 3.5rem;
  align-items: start;
}
.article-main {
  min-width: 0;
  /* Keep body copy where it is; air lives between text and the rail rule. */
  padding-right: 0.5rem;
}
.article-rail {
  position: sticky;
  top: 5.5rem;
  margin-left: 0.35rem; /* slides the left rule a bit further right */
  padding: 1.25rem 0.25rem 1.25rem 1.5rem;
  border-left: 1px solid var(--line);
  min-height: 0;
  max-width: 17rem;
  box-sizing: border-box;
}
.article-rail__place {
  margin: 0 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.article-rail__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-rail__number {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--burgundy);
}
.article-rail__label {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 15.5rem;
}
.article-rail__choice {
  margin-top: 0.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.article-rail__choice-text {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.38;
  color: var(--ink);
  max-width: 15.5rem;
}
@media (max-width: 860px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .article-rail {
    position: static;
    max-width: none;
    padding: 1.25rem 0 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .article-rail__label,
  .article-rail__choice-text {
    max-width: 28rem;
  }
}


/* —— Entity chips (topic / place / variety) —— */
.article-hero__chips {
  display: inline;
}
.meta-chip {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.meta-chip:hover,
.meta-chip:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
  outline: none;
}
.meta-chip--plain {
  border-bottom: none;
  cursor: default;
}
.meta-chip__dot {
  opacity: 0.7;
  border-bottom: none;
}
.article-rail__place .meta-chip {
  color: var(--burgundy);
  border-bottom-color: rgba(110, 31, 42, 0.35);
}
.article-rail__place .meta-chip:hover,
.article-rail__place .meta-chip:focus-visible {
  color: var(--burgundy-deep);
  border-bottom-color: var(--burgundy);
}
.article-hero__meta a {
  /* kill UA blue / default underline on hero chips */
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   MOBILE-FIRST polish (launch priority: ~95% phone readers)
   ============================================================ */

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--burgundy-deep);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (max-width: 860px) {
  /* Rail ABOVE body on phones — moat before the long read */
  .article-layout {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }
  .article-main {
    order: 2;
    padding-right: 0;
  }
  .article-rail {
    order: 1;
    position: static;
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 1.1rem 1.15rem 1.2rem;
    border-left: none;
    border: 1px solid var(--line);
    background: rgba(255, 252, 248, 0.92);
    border-radius: 2px;
  }
  .article-rail__number {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .article-rail__label,
  .article-rail__choice-text {
    max-width: none;
    font-size: 0.95rem;
  }
  .article-rail__choice-text {
    font-size: 1.02rem;
  }
}

@media (max-width: 720px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .shell {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  .site-header__inner {
    padding: 0.65rem 0;
    gap: 0.75rem;
  }
  .brand__mark {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.68rem;
  }
  .brand__name {
    font-size: 1.02rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: calc(env(safe-area-inset-top) + 3.4rem) 0 auto 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.1rem 1.25rem;
    background: rgba(250, 247, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
  }
  body.nav-open .nav {
    display: flex;
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav a {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.95rem 0.15rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .nav a::after {
    display: none;
  }
  .nav .lang-switch {
    margin-top: 0.85rem;
    padding: 0.35rem 0 0.15rem;
    justify-content: flex-start;
    gap: 0.35rem;
  }
  .nav .lang-switch button {
    min-width: 2.75rem;
    min-height: 2.75rem;
    font-size: 0.95rem;
  }

  .cinema-hero {
    min-height: min(72vh, 36rem);
    padding-top: calc(4.1rem + env(safe-area-inset-top, 0px));
  }
  .cinema-hero__content {
    padding: 1.25rem 0 2.75rem;
  }
  .cinema-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.15;
    padding-bottom: 0.12em;
  }
  .cinema-hero__dek {
    font-size: 1.02rem;
    max-width: 36rem;
  }
  .cinema-hero__cta {
    min-height: 2.85rem;
    padding: 0.85rem 1.35rem;
  }

  .article-hero {
    min-height: min(58vh, 28rem);
    overflow: visible;
  }
  .article-hero__media,
  .article-hero__veil {
    overflow: hidden;
    border-radius: 0;
  }
  .article-hero__content {
    padding: 3.25rem 0 5rem;
  }
  .article-hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.35rem);
    line-height: 1.22;
    padding-bottom: 0.28em;
  }
  .article-wrap {
    margin-top: -1.5rem !important;
    padding-top: 1.85rem !important;
  }
  .article-hero__meta {
    gap: 0.55rem 0.75rem;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }
  .article-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.15rem;
    align-items: baseline;
    line-height: 1.55;
  }
  .meta-chip {
    padding: 0.15rem 0;
    min-height: 1.5rem;
  }

  .article-wrap {
    padding: 1.75rem max(1rem, env(safe-area-inset-right)) 3.5rem max(1rem, env(safe-area-inset-left)) !important;
    width: 100%;
    max-width: none;
  }
  .article__body {
    font-size: 1.06rem;
    line-height: 1.72;
    max-width: none;
  }
  .article__body p {
    margin: 0 0 1.15rem;
  }
  .article__body p:first-child::first-letter {
    font-size: 2.85rem;
    padding-right: 0.45rem;
  }
  .anchor-plate__caption {
    font-size: 1.2rem;
  }
  .back-link {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }

  .feature-lead {
    min-height: 360px;
  }
  .story-card h3 {
    font-size: 1.15rem;
  }
  .portrait-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .age-gate {
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  }
  .age-gate__panel {
    width: min(100%, 26rem);
    padding: 1.75rem 1.35rem;
  }
  .age-gate__actions {
    flex-direction: column;
    gap: 0.65rem;
  }
  .age-gate__actions .btn {
    width: 100%;
    min-height: 2.85rem;
  }

  .site-footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
  .chips .chip,
  .chip {
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
  }
}

@media (max-width: 420px) {
  .portrait-grid {
    grid-template-columns: 1fr;
  }
  .brand__name {
    max-width: 9.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* Geo: near-you cue on map */
.map-near {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--oxblood, #6E1F2A);
}
.map-tile--near {
  outline: 2px solid rgba(110, 31, 42, 0.45);
  outline-offset: 2px;
}
.map-tile--near::after {
  content: "";
}


/* —— Home journal map strip (compact country tiles) —— */
.home-map-strip {
  margin: 0 0 2.15rem;
  padding-top: 0.15rem;
}
.home-map-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.home-map-strip__title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-map-strip__all {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--burgundy);
  white-space: nowrap;
}
.home-map-strip__all:hover {
  color: var(--burgundy-soft);
}
.home-map-strip__scroller {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0 0.55rem;
  margin: 0 -0.15rem;
}
.home-map-strip__scroller::-webkit-scrollbar {
  height: 4px;
}
.home-map-strip__scroller::-webkit-scrollbar-thumb {
  background: rgba(42, 33, 28, 0.18);
  border-radius: 999px;
}
.home-map-strip .map-tile--strip {
  flex: 0 0 min(70vw, 11.5rem);
  min-height: 9.5rem;
  scroll-snap-align: start;
  border-radius: 0.95rem;
}
.home-map-strip .map-tile--strip .map-tile__body {
  min-height: 9.5rem;
  padding: 1rem 1.05rem 0.95rem;
}
.home-map-strip .map-tile--strip .map-tile__body h2 {
  font-size: 1.2rem;
}
.home-map-strip .map-tile--strip .map-tile__count {
  font-size: 0.72rem;
}
@media (min-width: 860px) {
  .home-map-strip .map-tile--strip {
    flex-basis: 10.5rem;
  }
}

/* —— Article share pills (Swiss cream / oxblood) —— */
.share-row {
  margin: 2rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  max-width: 42rem;
}
.share-row__label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.share-row__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.share-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.share-pill:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: var(--paper);
}
