/* ============================================
   PLAKAT — Polish Poster School
   Kierunek Słońce
   ============================================ */

:root {
  --mustard: #D4A017;
  --navy: #1B2A4A;
  --brick: #C1442E;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --navy-light: #2A3D66;
  --black: #0F1419;
  --white: #FFFFFF;

  --font-poster: 'Bebas Neue', sans-serif;
  --font-body: 'Lora', serif;
  --font-ui: 'Chivo', sans-serif;

  --gap: clamp(1rem, 3vw, 2rem);
  --page-max: 1280px;
  --page-pad: clamp(1rem, 4vw, 3rem);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   SVG GRAIN OVERLAY
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 4px solid var(--mustard);
}

.nav__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-family: var(--font-poster);
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav__logo-dot {
  width: 12px;
  height: 12px;
  background: var(--mustard);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

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

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: color 0.2s;
  text-decoration: none;
}

.nav__links a:hover { color: var(--mustard); }

/* Country dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__dropdown-trigger:hover { color: var(--mustard); }

.nav__dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.2s;
}

.nav__dropdown-trigger[aria-expanded="true"] .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 2px solid var(--mustard);
  border-top: none;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 18px;
  z-index: 101;
}

.nav__dropdown-menu.is-open {
  display: block;
}

.nav__dropdown-menu a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.2rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.nav__dropdown-menu a:hover {
  background: var(--navy-light);
  color: var(--mustard);
}

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

.nav__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 99;
  padding: 2rem var(--page-pad);
  overflow-y: auto;
}

.nav__mobile.is-open { display: block; }

.nav__mobile-section {
  margin-bottom: 2rem;
}

.nav__mobile-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nav__mobile a {
  display: block;
  font-family: var(--font-poster);
  font-size: 2.4rem;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--navy-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav__mobile a:hover { color: var(--mustard); }

/* ============================================
   HERO (HOMEPAGE)
   ============================================ */
.hero {
  margin-top: 70px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero__geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__geo-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.12;
  right: -100px;
  top: -100px;
}

.hero__geo-tri {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 300px solid transparent;
  border-right: 300px solid transparent;
  border-bottom: 520px solid var(--brick);
  opacity: 0.08;
  left: -150px;
  bottom: -200px;
}

.hero__geo-rect {
  position: absolute;
  width: 200px;
  height: 600px;
  background: var(--mustard);
  opacity: 0.06;
  right: 20%;
  top: 10%;
  transform: rotate(-15deg);
}

.hero__geo-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--mustard);
}

.hero__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 4rem var(--page-pad);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__text { max-width: 600px; }

.hero__kicker {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__kicker::before {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--mustard);
}

.hero__title {
  font-family: var(--font-poster);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--mustard);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Poster illustration block */
.hero__poster {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__poster-frame {
  width: 380px;
  height: 520px;
  background: var(--brick);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__poster-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--cream);
  opacity: 0.3;
}

.hero__poster-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: 20px 20px 0 var(--black);
  z-index: -1;
}

.hero__poster-sun {
  width: 120px;
  height: 120px;
  background: var(--mustard);
  border-radius: 50%;
  margin-bottom: 2rem;
}

.hero__poster-road {
  width: 4px;
  height: 100px;
  background: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__poster-label {
  font-family: var(--font-poster);
  font-size: 2rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 1.1;
}

.hero__poster-year {
  font-family: var(--font-poster);
  font-size: 1rem;
  color: var(--mustard);
  letter-spacing: 0.3em;
  position: absolute;
  bottom: 30px;
}

/* Hero stats */
.hero__stats {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(15, 20, 25, 0.5);
  padding: 1.5rem var(--page-pad);
}

.hero__stats-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero__stat-value {
  font-family: var(--font-poster);
  font-size: 2rem;
  color: var(--mustard);
  letter-spacing: 0.02em;
}

.hero__stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-poster);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--black);
}

.btn--primary {
  background: var(--mustard);
  color: var(--navy);
}

.btn--secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

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

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

.btn--small {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

.btn__arrow {
  font-size: 1.2em;
  transition: transform 0.2s;
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header__title {
  font-family: var(--font-poster);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--navy);
}

.section-header__line {
  flex: 1;
  height: 4px;
  background: var(--navy);
  min-width: 60px;
}

.section-header__subtitle {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brick);
  font-weight: 700;
}

/* ============================================
   COUNTRY POSTER GRID (HOMEPAGE)
   ============================================ */
.countries {
  padding: 5rem var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
}

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

.country-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid rgba(27,42,74,0.1);
  text-decoration: none;
}

.country-card:hover {
  transform: scale(1.03);
  z-index: 5;
}

/* Country card backgrounds by data-country attribute */
.country-card[data-country="spain"]       { background: var(--brick); }
.country-card[data-country="morocco"]     { background: var(--mustard); }
.country-card[data-country="greece"]      { background: var(--navy); }
.country-card[data-country="italy"]       { background: #5B7553; }
.country-card[data-country="turkey"]      { background: #8B4513; }
.country-card[data-country="portugal"]    { background: #2E6B62; }
.country-card[data-country="croatia"]     { background: #4A6FA5; }
.country-card[data-country="montenegro"]  { background: #6B4E3D; }

/* Fallback colors by position */
.country-card:nth-child(8n+1) { background: var(--brick); }
.country-card:nth-child(8n+2) { background: var(--mustard); }
.country-card:nth-child(8n+3) { background: var(--navy); }
.country-card:nth-child(8n+4) { background: #5B7553; }
.country-card:nth-child(8n+5) { background: #8B4513; }
.country-card:nth-child(8n+6) { background: #2E6B62; }
.country-card:nth-child(8n+7) { background: #4A6FA5; }
.country-card:nth-child(8n+0) { background: #6B4E3D; }

/* Geometric overlays per card */
.country-card__geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.2;
}

/* Sun circle — 1st card */
.country-card:nth-child(8n+1) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--mustard);
  top: -40px; right: -40px;
}

/* Triangle — 2nd card */
.country-card:nth-child(8n+2) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid var(--navy);
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Columns — 3rd card */
.country-card:nth-child(8n+3) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 20px; height: 140px;
  background: var(--cream);
  top: 20px; left: 30%;
}
.country-card:nth-child(8n+3) .country-card__geo::after {
  content: '';
  position: absolute;
  width: 20px; height: 140px;
  background: var(--cream);
  top: 20px; left: 55%;
}

/* Rect — 4th card */
.country-card:nth-child(8n+4) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 80px; height: 180px;
  background: var(--cream);
  top: 10px; right: 20px;
  transform: rotate(-10deg);
}

/* Crescent — 5th card */
.country-card:nth-child(8n+5) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--mustard);
  top: 10px; right: 10px;
}
.country-card:nth-child(8n+5) .country-card__geo::after {
  content: '';
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #8B4513;
  top: 15px; right: 30px;
}

/* Stripes — 6th card */
.country-card:nth-child(8n+6) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 200%; height: 30px;
  background: var(--cream);
  top: 40px; left: -20px;
  transform: rotate(-20deg);
}
.country-card:nth-child(8n+6) .country-card__geo::after {
  content: '';
  position: absolute;
  width: 200%; height: 20px;
  background: var(--cream);
  top: 90px; left: -20px;
  transform: rotate(-20deg);
}

/* Checker — 7th card */
.country-card:nth-child(8n+7) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  background: var(--brick);
  top: 20px; right: 20px;
}
.country-card:nth-child(8n+7) .country-card__geo::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  background: var(--cream);
  top: 20px; right: 80px;
}

/* Mountain — 8th card */
.country-card:nth-child(8n+0) .country-card__geo::before {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 160px solid var(--cream);
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.country-card__content {
  position: relative;
  z-index: 2;
}

.country-card__routes {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0.3rem;
}

.country-card__name {
  font-family: var(--font-poster);
  font-size: 2rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.country-card__border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245,240,232,0.15);
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   FEATURED ROUTES (HOMEPAGE)
   ============================================ */
.featured {
  padding: 5rem var(--page-pad);
  background: var(--navy);
  position: relative;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--brick);
}

.featured__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.featured .section-header__title { color: var(--cream); }
.featured .section-header__line { background: var(--mustard); }

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.route-card {
  background: var(--navy-light);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.route-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.route-card__geo {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.08;
}

.route-card__country {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.route-card__title {
  font-family: var(--font-poster);
  font-size: 1.6rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.route-card__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.route-card__meta-item {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.route-card__meta-item strong {
  display: block;
  font-family: var(--font-poster);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.route-card__link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mustard);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.route-card__link:hover { gap: 1rem; }

/* ============================================
   HOW IT WORKS (HOMEPAGE)
   ============================================ */
.how {
  padding: 5rem var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
}

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

.how__step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--navy);
  position: relative;
}

.how__step:nth-child(2) {
  background: var(--navy);
  color: var(--cream);
}

.how__number {
  font-family: var(--font-poster);
  font-size: 4rem;
  line-height: 1;
  color: var(--mustard);
  margin-bottom: 1rem;
}

.how__step-title {
  font-family: var(--font-poster);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.how__step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CTA BANNER (FULL-WIDTH)
   ============================================ */
.cta-banner {
  background: var(--brick);
  padding: 4rem var(--page-pad);
  position: relative;
  overflow: hidden;
}

.cta-banner__geo {
  position: absolute;
  right: -50px; top: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.12;
}

.cta-banner__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner__text {
  max-width: 600px;
}

.cta-banner__title {
  font-family: var(--font-poster);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.cta-banner__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream-dark);
  line-height: 1.6;
}

/* ============================================
   CUSTOM CTA PARTIAL (INLINE)
   ============================================ */
.cta-poster {
  background: var(--brick);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0;
}

.cta-poster__geo {
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.12;
}

.cta-poster__frame {
  position: relative;
  z-index: 2;
  border: 2px solid var(--cream);
  padding: 12px;
}

.cta-poster__inner {
  padding: 1.5rem;
}

.cta-poster__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-poster__title {
  font-family: var(--font-poster);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.cta-poster__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Standard CTA classes from Partner#cta_html */
.cta-block {
  background: var(--brick);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0;
}

.cta-block::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.12;
}

.cta-block .cta-button {
  font-family: var(--font-poster);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  background: var(--mustard);
  color: var(--navy) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-block .cta-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--black);
}

/* ============================================
   COUNTRY HERO
   ============================================ */
.country-hero {
  margin-top: 70px;
  background: var(--mustard);
  position: relative;
  overflow: hidden;
  padding: 5rem var(--page-pad) 4rem;
}

.country-hero__geo-tri {
  position: absolute;
  width: 0; height: 0;
  border-left: 400px solid transparent;
  border-right: 400px solid transparent;
  border-bottom: 700px solid var(--navy);
  opacity: 0.08;
  right: -200px; top: -200px;
}

.country-hero__geo-circle {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--brick);
  opacity: 0.1;
  left: -100px; bottom: -100px;
}

.country-hero__stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--navy);
}

.country-hero__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}

.country-hero__breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-hero__breadcrumb a {
  text-decoration: none;
  color: var(--navy);
}

.country-hero__breadcrumb a:hover { opacity: 1; }

.country-hero__title {
  font-family: var(--font-poster);
  font-size: clamp(4rem, 10vw, 8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--navy);
  margin-bottom: 1rem;
}

.country-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--navy);
  max-width: 550px;
  line-height: 1.7;
}

/* Poster illustration */
.country-hero__poster {
  width: 240px;
  height: 340px;
  background: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.country-hero__poster::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245,240,232,0.2);
}

.country-hero__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: 12px 12px 0 var(--black);
  z-index: -1;
}

.country-hero__poster-shape {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--mustard);
  margin-bottom: 1.5rem;
}

.country-hero__poster-label {
  font-family: var(--font-poster);
  font-size: 1.6rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.country-hero__poster-sub {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 1.5rem var(--page-pad);
}

.stats-bar__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.stat__number {
  font-family: var(--font-poster);
  font-size: 2rem;
  color: var(--mustard);
  letter-spacing: 0.02em;
}

.stat__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
}

/* ============================================
   ROUTE LIST (COUNTRY HUB)
   ============================================ */
.routes-section {
  padding: 4rem var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
}

.route-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--navy);
  align-items: start;
  transition: background 0.2s;
  position: relative;
  text-decoration: none;
  color: var(--navy);
}

.route-item:first-child {
  border-top: 2px solid var(--navy);
}

.route-item:hover {
  background: var(--cream-dark);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.route-item__number {
  font-family: var(--font-poster);
  font-size: 3rem;
  color: var(--mustard);
  line-height: 1;
  text-align: center;
}

.route-item__body { flex: 1; }

.route-item__title {
  font-family: var(--font-poster);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.route-item__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 550px;
}

.route-item__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  min-width: 120px;
}

.route-item__tag {
  font-family: var(--font-poster);
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.route-item__tag-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brick);
  font-weight: 700;
}

.route-item__geo {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 60%;
  background: var(--mustard);
  opacity: 0;
  transition: opacity 0.2s;
}

.route-item:hover .route-item__geo { opacity: 1; }

/* ============================================
   CONTENT WRAP (hub/simple pages)
   ============================================ */
.content-wrap {
  padding: 4rem var(--page-pad);
}

.content-wrap__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

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

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

/* ============================================
   COUNTRY INFO (PRACTICAL)
   ============================================ */
.country-info {
  padding: 4rem var(--page-pad);
  background: var(--navy);
  position: relative;
}

.country-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--brick);
}

.country-info__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.country-info .section-header__title { color: var(--cream); }
.country-info .section-header__line { background: var(--mustard); }

.info-block {
  margin-bottom: 2rem;
}

.info-block__title {
  font-family: var(--font-poster);
  font-size: 1.3rem;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.info-block__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.7;
}

.info-block__text strong {
  color: var(--cream);
}

/* ============================================
   RELATED COUNTRIES
   ============================================ */
.related {
  padding: 4rem var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
}

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

.related-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
  background: var(--navy-light);
}

.related-card:hover {
  transform: scale(1.05);
  z-index: 5;
}

.related-card[data-country="spain"]      { background: var(--brick); }
.related-card[data-country="morocco"]    { background: var(--mustard); }
.related-card[data-country="greece"]     { background: var(--navy); }
.related-card[data-country="italy"]      { background: #5B7553; }
.related-card[data-country="turkey"]     { background: #8B4513; }
.related-card[data-country="portugal"]   { background: #2E6B62; }
.related-card[data-country="croatia"]    { background: #4A6FA5; }
.related-card[data-country="montenegro"] { background: #6B4E3D; }

/* Fallback nth-child */
.related-card:nth-child(4n+1) { background: var(--brick); }
.related-card:nth-child(4n+2) { background: var(--navy); }
.related-card:nth-child(4n+3) { background: #5B7553; }
.related-card:nth-child(4n+0) { background: #8B4513; }

.related-card__border {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(245,240,232,0.15);
}

.related-card__name {
  font-family: var(--font-poster);
  font-size: 1.5rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}

/* ============================================
   ARTICLE HERO
   ============================================ */
.article-hero {
  margin-top: 70px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem var(--page-pad) 4rem;
}

.article-hero__geo-1 {
  position: absolute;
  width: 0; height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 350px solid var(--mustard);
  opacity: 0.06;
  right: 5%; top: -50px;
}

.article-hero__geo-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--brick);
  opacity: 0.05;
  left: -150px; bottom: -150px;
}

.article-hero__stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--mustard);
}

.article-hero__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.article-hero__breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-dark);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-hero__breadcrumb a {
  color: var(--cream-dark);
  text-decoration: none;
}

.article-hero__breadcrumb a:hover { opacity: 1; }

.article-hero__country {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-hero__country::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--mustard);
}

.article-hero__title {
  font-family: var(--font-poster);
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.article-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dark);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   ARTICLE META STRIP
   ============================================ */
.article-meta-strip {
  background: var(--black);
  padding: 1.2rem var(--page-pad);
}

.article-meta-strip__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.meta-block__icon {
  width: 36px;
  height: 36px;
  background: var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-poster);
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
}

.meta-block__text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dark);
}

.meta-block__value {
  font-family: var(--font-poster);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ============================================
   ARTICLE LAYOUT (2-column)
   ============================================ */
.article-layout {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 3rem var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}

/* ============================================
   ARTICLE CONTENT (prose styles)
   ============================================ */
.article-content {
  min-width: 0;
}

.article-content h2 {
  font-family: var(--font-poster);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--mustard);
  color: var(--navy);
}

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

.article-content h3 {
  font-family: var(--font-poster);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.article-content h4 {
  font-family: var(--font-poster);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1.5rem 0 0.5rem;
  color: var(--navy);
}

.article-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--navy);
}

.article-content strong { font-weight: 600; }

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

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

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
}

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

.article-content li {
  margin-bottom: 0.4rem;
}

.article-content blockquote {
  background: var(--navy);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  border-left: 4px solid var(--mustard);
}

.article-content blockquote p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.article-content blockquote strong {
  color: var(--cream);
}

.article-content img {
  max-width: 100%;
  display: block;
  margin: 2rem 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.article-content table th {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--navy-light);
}

.article-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  color: var(--navy);
}

.article-content table tr:nth-child(even) td {
  background: rgba(27,42,74,0.03);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { position: relative; }

.sidebar__sticky {
  position: sticky;
  top: 90px;
}

.sidebar__card {
  background: var(--navy);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.sidebar__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mustard);
}

.sidebar__card-title {
  font-family: var(--font-poster);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.sidebar__route-summary {
  list-style: none;
}

.sidebar__route-summary li {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--cream-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  display: flex;
  justify-content: space-between;
}

.sidebar__route-summary li:last-child { border-bottom: none; }

.sidebar__route-summary span:last-child {
  font-family: var(--font-poster);
  font-size: 1rem;
  color: var(--mustard);
}

/* Day nav */
.sidebar__days { list-style: none; }

.sidebar__days li {
  margin-bottom: 0.25rem;
}

.sidebar__days a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  transition: color 0.2s;
  text-decoration: none;
}

.sidebar__days a:hover { color: var(--mustard); }

.sidebar__days-num {
  font-family: var(--font-poster);
  font-size: 1.1rem;
  color: var(--mustard);
  width: 30px;
}

/* CTA sidebar */
.sidebar__cta {
  background: var(--brick);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.sidebar__cta-geo {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.1;
  right: -30px; top: -30px;
}

.sidebar__cta-title {
  font-family: var(--font-poster);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.sidebar__cta-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Related routes in sidebar */
.sidebar__card--related { }

.sidebar__related {
  list-style: none;
}

.sidebar__related li {
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.sidebar__related li:last-child { border-bottom: none; }

.sidebar__related a {
  display: block;
  padding: 0.6rem 0;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar__related a:hover .sidebar__related-title {
  color: var(--mustard);
}

.sidebar__related-title {
  font-family: var(--font-poster);
  font-size: 1rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  line-height: 1.2;
  transition: color 0.2s;
}

.sidebar__related-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 0.2rem;
}

/* ============================================
   MORE ROUTES (ARTICLE BOTTOM)
   ============================================ */
.more-routes {
  padding: 4rem var(--page-pad);
  background: var(--navy);
}

.more-routes::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--brick);
  margin-bottom: 3rem;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}

.more-routes__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.more-routes__title {
  font-family: var(--font-poster);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
}

.more-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.more-route-card {
  background: var(--navy-light);
  padding: 1.5rem;
  transition: transform 0.2s;
  text-decoration: none;
  display: block;
}

.more-route-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.more-route-card__title {
  font-family: var(--font-poster);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.more-route-card__meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   PAGE HERO (SIMPLE PAGES)
   ============================================ */
.page-hero {
  margin-top: 70px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem var(--page-pad) 4rem;
}

.page-hero__geo-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--mustard);
  opacity: 0.05;
  right: -200px; top: -200px;
}

.page-hero__geo-2 {
  position: absolute;
  width: 300px; height: 4px;
  background: var(--brick);
  opacity: 0.3;
  left: 10%; bottom: 40%;
  transform: rotate(-5deg);
}

.page-hero__geo-3 {
  position: absolute;
  width: 0; height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid var(--brick);
  opacity: 0.04;
  left: -80px; bottom: -80px;
}

.page-hero__stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--mustard);
}

.page-hero__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-dark);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__breadcrumb a {
  color: var(--cream-dark);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover { opacity: 1; }

.page-hero__title {
  font-family: var(--font-poster);
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dark);
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================
   SIMPLE CONTENT (1-col pages)
   ============================================ */
.simple-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem var(--page-pad);
}

.simple-content h2 {
  font-family: var(--font-poster);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--mustard);
  color: var(--navy);
}

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

.simple-content h3 {
  font-family: var(--font-poster);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.simple-content h4 {
  font-family: var(--font-poster);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1.5rem 0 0.5rem;
  color: var(--navy);
}

.simple-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
  color: var(--navy);
}

.simple-content strong { font-weight: 600; }

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

.simple-content a:not(.cta-button):not(.btn):hover {
  color: var(--brick);
}

.simple-content ul,
.simple-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.simple-content li { margin-bottom: 0.4rem; }

.simple-content blockquote {
  background: var(--navy);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  border-left: 4px solid var(--mustard);
}

.simple-content blockquote p {
  color: var(--cream-dark);
  margin-bottom: 0;
}

.simple-content blockquote strong {
  color: var(--cream);
}

.simple-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.simple-content table th {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--navy-light);
}

.simple-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
}

.simple-content table tr:nth-child(even) td {
  background: rgba(27,42,74,0.03);
}

.simple-content img {
  max-width: 100%;
  display: block;
  margin: 2rem 0;
}

/* ============================================
   GDPR BANNER
   ============================================ */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy);
  border-top: 4px solid var(--mustard);
  padding: 1.5rem var(--page-pad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gdpr-banner.is-visible {
  opacity: 1;
}

.gdpr-banner__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gdpr-banner__accent {
  width: 6px;
  align-self: stretch;
  background: var(--mustard);
  flex-shrink: 0;
}

.gdpr-banner__body {
  flex: 1;
}

.gdpr-banner__title {
  font-family: var(--font-poster);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.gdpr-banner__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream-dark);
  line-height: 1.5;
}

.gdpr-banner__text a {
  color: var(--mustard);
  text-decoration: underline;
}

.gdpr-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gdpr-banner__btn {
  font-family: var(--font-poster);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.gdpr-banner__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.gdpr-banner__btn--accept {
  background: var(--mustard);
  color: var(--navy);
}

.gdpr-banner__btn--decline {
  background: transparent;
  color: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}

.gdpr-banner__btn--decline:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 3rem var(--page-pad);
  border-top: 4px solid var(--mustard);
}

.footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand {
  font-family: var(--font-poster);
  font-size: 1.4rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
  max-width: 300px;
}

.footer__col-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mustard);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  max-width: var(--page-max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(245,240,232,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__poster { display: none; }
  .countries__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar__sticky { position: static; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .country-hero__inner { grid-template-columns: 1fr; }
  .country-hero__poster { display: none; }
  .country-info__inner { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: repeat(2, 1fr); }
  .more-routes__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 70vh; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 4.5rem); }

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

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

  .cta-banner__inner { flex-direction: column; text-align: center; }

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

  .article-meta-strip__inner { gap: 1.5rem; }

  .more-routes__grid { grid-template-columns: 1fr; }

  .route-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .route-item__meta { flex-direction: row; align-items: baseline; gap: 1rem; grid-column: 1 / -1; }

  .stats-bar__inner { gap: 1.5rem; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .section-header__line { display: none; }

  .gdpr-banner__inner { flex-direction: column; text-align: center; }
  .gdpr-banner__accent { display: none; }
}

@media (max-width: 480px) {
  .countries__grid { grid-template-columns: 1fr; }
  .country-card { aspect-ratio: 4/3; }

  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }

  .related__grid { grid-template-columns: 1fr; }
  .related-card { aspect-ratio: 3/1; }

  .article-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .meta-block__icon { width: 28px; height: 28px; font-size: 0.7rem; }

  .hero__stats-inner { flex-direction: column; gap: 1rem; align-items: center; }
}
