/* ═══════════════════════════════════════════════════════════════
   ДрайвМечты — "Горизонт" Editorial Magazine
   Fraunces + Crimson Pro + Figtree, Coral accent
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #fefcfa;
  --bg-sand: #f7f4ef;
  --bg-warm: #f0ebe3;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-mid: #3a3a36;
  --ink-light: #7a7a72;
  --coral: #d95b47;
  --coral-bright: #e8674f;
  --coral-deep: #c44a38;
  --coral-bg: #fdf0ed;
  --line: #e5e0d8;
  --line-light: #f0ebe3;
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */

.header {
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

/* Coral accent bar at very top */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
}

.header-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  font-optical-sizing: auto;
  display: flex;
  align-items: center;
}

.header-logo span { color: var(--coral); }

.header-logo-img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-nav a {
  color: var(--ink-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.header-nav a:hover,
.header-nav a.active { color: var(--coral); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: grid;
  gap: 0.2rem;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-group-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  font-weight: 700;
  padding: 0.75rem 0 0.25rem;
}

.dropdown-group-label:first-child { padding-top: 0; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.35rem 0;
  color: var(--ink-mid);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--coral); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 120;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 105;
  padding: 5rem 2.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-group-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mobile-menu-group a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.1rem;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--line-light);
  transition: color 0.2s;
}

.mobile-menu-group a:hover { color: var(--coral); }


/* ═══════════════════════════════════════════════════════════════
   HERO (Homepage)
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a6a5a 0%, #5a8a6a 30%, #2a5a7a 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.15) 40%, rgba(26,26,26,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-issue {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-bright);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-optical-sizing: auto;
}

.hero-title em {
  font-style: italic;
  color: var(--coral-bright);
}

.hero-rule {
  width: 50px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-style: italic;
}

.hero-slogan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}


/* ═══════════════════════════════════════════════════════════════
   THREE WORLDS (Homepage)
   ═══════════════════════════════════════════════════════════════ */

.worlds-section { padding: 0; }

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.world-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
}

.world-card-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a6a4a, #4a8a6a, #1a4a3a);
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.world-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-card:hover .world-card-image { transform: scale(1.04); }

.world-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.1) 50%, transparent 100%);
  z-index: 1;
}

.world-card-content {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

.world-card-badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.world-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.world-card-countries {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
}

.section-rule {
  width: 40px;
  height: 3px;
  background: var(--coral);
  margin: 1rem auto 0;
  border-radius: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   ROUTES (Homepage Featured)
   ═══════════════════════════════════════════════════════════════ */

.routes-section {
  padding: 5rem 2.5rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.route-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.route-card-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--bg-sand);
}

.route-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 1;
}

.route-card-body { padding: 1.25rem 1.5rem; }

.route-card-country {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.route-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.route-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-light);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
}


/* ═══════════════════════════════════════════════════════════════
   LATEST ARTICLES (Homepage)
   ═══════════════════════════════════════════════════════════════ */

.latest-section {
  padding: 5rem 2.5rem;
  background: var(--bg-sand);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.article-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.article-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-sand);
}

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

.article-card-body { padding: 1.25rem 1.5rem; }

.article-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.article-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.article-card-excerpt {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.65;
}

.article-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-light);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE CONTENT (Markdown)
   ═══════════════════════════════════════════════════════════════ */

.homepage-content {
  padding: 4rem 2.5rem;
}

.homepage-content-inner {
  max-width: 800px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   CTA SECTION (Bottom of page)
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
  padding: 5rem 2.5rem;
  text-align: center;
  background: var(--coral-bg);
  border-top: 3px solid var(--coral);
}

.cta-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--coral) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(217,91,71,0.3);
}

.cta-button:hover {
  background: var(--coral-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,91,71,0.4);
}


/* ═══════════════════════════════════════════════════════════════
   INLINE CTA (Partner#cta_html overrides)
   ═══════════════════════════════════════════════════════════════ */

.cta-block {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: var(--coral-bg);
  border-top: 3px solid var(--coral);
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.cta-block .cta-inner {
  max-width: 500px;
  margin: 0 auto;
}

.cta-block .cta-rubric {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.cta-block .cta-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-block .cta-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: var(--ink-light);
  margin: 0 0 1.25rem;
  max-width: none;
}

/* Standard CTA from Partner#cta_html — outer .cta-block already has border-top */
.cta-block--banner .cta-banner {
  padding: 0;
  background: none;
  border-top: none;
  border-radius: 0;
  text-align: center;
}

.article-content .cta-block {
  margin: 3rem 0;
}

.article-content .cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--coral) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(217,91,71,0.25);
}

.article-content .cta-button:hover {
  background: var(--coral-deep) !important;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.footer-brand-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-brand-title span { color: var(--coral); }

.footer-brand-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--ink-light);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--coral); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-light);
}


/* ═══════════════════════════════════════════════════════════════
   COUNTRY HUB
   ═══════════════════════════════════════════════════════════════ */

.country-hero {
  position: relative;
  height: 55vh;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.country-hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a6a4a, #4a8a6a, #1a4a3a);
}

.country-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.15) 50%, transparent 100%);
}

.country-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 3rem;
  color: #fff;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--coral-bright);
}

.breadcrumb span { color: rgba(255,255,255,0.5); }

.country-hero-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-bright);
  margin-bottom: 0.5rem;
}

.country-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

.country-hero-caption {
  padding: 0.6rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-light);
  border-bottom: 1px solid var(--line);
  max-width: 1300px;
  margin: 0 auto;
}

/* Country Intro */
.country-intro {
  padding: 4rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.country-intro-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* Stats grid */
.country-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  background: var(--bg-sand);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.stat-item {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

/* Articles section (country hub) */
.articles-section {
  padding: 2rem 2.5rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.articles-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.articles-count {
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* Country content (from markdown) */
.country-content-section {
  padding: 0 2.5rem 4rem;
}

.country-content-inner {
  max-width: 800px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   RELATED COUNTRIES
   ═══════════════════════════════════════════════════════════════ */

.related-section { padding: 4rem 0; overflow: hidden; }

.related-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2.5rem;
}

.related-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.related-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.related-scroll {
  display: flex;
  gap: 0;
}

.related-card {
  flex: 0 0 33.333%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  color: #fff;
}

.related-card-image {
  position: absolute;
  inset: 0;
  background: var(--bg-warm);
  transition: transform 0.6s;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card:hover .related-card-image { transform: scale(1.04); }

.related-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.65) 0%, transparent 60%);
  z-index: 1;
}

.related-card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.related-card-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.related-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-bright);
}


/* ═══════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Article Hero */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a6a4a, #4a8a6a, #1a4a3a);
}

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

.article-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.65) 0%, transparent 60%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 2.5rem;
  color: #fff;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.article-hero-breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.article-hero-breadcrumb a { color: var(--coral-bright); }
.article-hero-breadcrumb span { color: rgba(255,255,255,0.5); }

.article-hero-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-bright);
  margin-bottom: 0.5rem;
}

.article-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  max-width: 750px;
}

.article-hero-caption {
  padding: 0.6rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-light);
  border-bottom: 1px solid var(--line);
  max-width: 1300px;
  margin: 0 auto;
}

/* Article Layout: two-column */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
}


/* ═══════════════════════════════════════════════════════════════
   ARTICLE CONTENT (Rendered HTML)
   ═══════════════════════════════════════════════════════════════ */

.article-content p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: var(--ink-mid);
}

/* Drop cap */
.article-content > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.75;
  margin-right: 0.6rem;
  margin-top: 0.1rem;
  color: var(--coral);
  font-weight: 800;
}

/* Links */
.article-content a:not(.cta-button) {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:not(.cta-button):hover {
  color: var(--coral-deep);
}

/* Headings */
.article-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 3rem 0 1rem;
}

.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.article-content h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

/* Images */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.article-content .full-bleed {
  margin: 2rem -2.5rem;
  width: calc(100% + 5rem);
  border-radius: 0;
}

.article-content .full-bleed img {
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.article-content .photo-caption,
.article-content figcaption {
  margin: -0.5rem 0 2rem;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-light);
}

.article-content .inline-figure {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-content .inline-figure img {
  margin: 0;
  border-radius: 0;
}

/* Pull quote */
.article-content .pull-quote,
.article-content blockquote.pull-quote {
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 3px solid var(--coral);
  border-bottom: 1px solid var(--line);
  border-left: none;
  text-align: center;
  font-style: normal;
  color: var(--ink);
}

.pull-quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  max-width: 600px;
  margin: 0 auto;
}

.pull-quote-attr {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-top: 1rem;
}

/* Standard blockquote */
.article-content blockquote {
  border-left: 3px solid var(--coral);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-light);
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-content th {
  background: var(--coral);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-content td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line-light);
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
}

.article-content tr:last-child td { border-bottom: none; }

.article-content tr:nth-child(even) td {
  background: var(--bg-sand);
}

/* Lists */
.article-content ul,
.article-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  font-family: 'Crimson Pro', serif;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

.article-content li::marker { color: var(--coral); }

/* Code */
.article-content code {
  background: var(--bg-sand);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.article-content pre {
  background: var(--ink);
  color: var(--bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  overflow-x: auto;
}

.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* HR */
.article-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}


/* ═══════════════════════════════════════════════════════════════
   SIDEBAR: FIELD REPORT
   ═══════════════════════════════════════════════════════════════ */

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 5rem;
  align-self: start;
}

/* Field Report card */
.field-report {
  background: var(--bg-sand);
  border-radius: 8px;
  overflow: hidden;
}

.field-report-header {
  background: var(--coral);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-report-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.field-report-number {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.field-report-body { padding: 1.25rem; }

.field-report-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.field-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.field-data-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.field-data-item:nth-child(odd) { padding-right: 0.75rem; }
.field-data-item:nth-child(even) { padding-left: 0.75rem; border-left: 1px solid var(--line); }
.field-data-item:nth-last-child(-n+2) { border-bottom: none; }

.field-data-value {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
}

.field-data-label {
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-top: 0.1rem;
}

.field-report-note {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* Sidebar related reads */
.sidebar-reads {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.sidebar-reads-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.sidebar-read-item {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.2s;
}

.sidebar-read-item:last-child { border-bottom: none; }
.sidebar-read-item:hover { background: var(--bg-sand); }

.sidebar-read-type {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.2rem;
}

.sidebar-read-title {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}


/* ═══════════════════════════════════════════════════════════════
   SIMPLE PAGE (About, Tips)
   ═══════════════════════════════════════════════════════════════ */

.simple-hero {
  padding: 6rem 2.5rem 3rem;
  text-align: center;
}

.simple-hero-rubric {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.simple-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.simple-hero-rule {
  width: 40px;
  height: 3px;
  background: var(--coral);
  margin: 0 auto;
  border-radius: 2px;
}

.simple-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
}

/* Content-wrap for standalone pages */
.content-wrap p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--ink-mid);
}

/* Drop cap for simple pages */
.content-wrap > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.75;
  margin-right: 0.6rem;
  margin-top: 0.1rem;
  color: var(--coral);
  font-weight: 800;
}

.content-wrap a:not(.cta-button) {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-wrap a:not(.cta-button):hover {
  color: var(--coral-deep);
}

.content-wrap h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.content-wrap h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.content-wrap h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

/* Pull quote in simple pages */
.content-wrap .pull-quote,
.content-wrap blockquote.pull-quote {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 3px solid var(--coral);
  border-bottom: 1px solid var(--line);
  border-left: none;
  text-align: center;
  font-style: normal;
}

.content-wrap blockquote {
  border-left: 3px solid var(--coral);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-light);
}

/* Full-bleed image in simple pages */
.content-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.content-wrap .wide-image {
  margin: 2.5rem calc(-50vw + 340px);
  width: 100vw;
  border-radius: 0;
}

.content-wrap .wide-image img {
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.content-wrap .photo-caption,
.content-wrap figcaption {
  margin: -0.25rem 0 2rem;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-light);
}

.content-wrap ul,
.content-wrap ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.content-wrap ul { list-style: disc; }
.content-wrap ol { list-style: decimal; }

.content-wrap li {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
  color: var(--ink-mid);
}

.content-wrap li::marker { color: var(--coral); }

.content-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.content-wrap th {
  background: var(--coral);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.content-wrap td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line-light);
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
}

.content-wrap tr:last-child td { border-bottom: none; }


/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    order: -1;
  }

  .field-data {
    grid-template-columns: repeat(3, 1fr);
  }

  .field-data-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .field-data-item {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .header { padding: 1rem 1.5rem; }
  .header-nav { display: none; }
  .burger { display: flex; }

  .worlds-grid { grid-template-columns: 1fr; }
  .world-card { aspect-ratio: 16/9; }

  .routes-section { padding: 4rem 1.5rem; }
  .routes-grid { grid-template-columns: 1fr; }
  .latest-section { padding: 4rem 1.5rem; }
  .articles-grid { grid-template-columns: 1fr; }

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

  .country-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(even) { border-right: none; }

  .related-card { flex: 0 0 100%; }

  .articles-section { padding: 2rem 1.5rem 4rem; }
}

@media (max-width: 768px) {
  .article-content .full-bleed {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

  .article-layout { padding: 2rem 1.5rem 4rem; }

  .field-data { grid-template-columns: 1fr 1fr; }

  .content-wrap .wide-image {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    width: calc(100% + 5rem);
  }

  .country-hero-content { padding: 0 1.5rem 2rem; }
  .country-hero-caption { padding: 0.6rem 1.5rem; }
  .article-hero-content { padding: 0 1.5rem 2rem; }
  .article-hero-caption { padding: 0.6rem 1.5rem; }
}

@media (max-width: 600px) {
  .hero { height: 70vh; }

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

  .simple-content { padding: 2rem 1.5rem 4rem; }

  .content-wrap .wide-image {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

  .cta-section { padding: 3rem 1.5rem; }

  .country-intro { padding: 3rem 1.5rem; }
}
