/* ═══════════════════════════════════════════════════
   ДорогаСолнца — Horizon Line Theme
   Space Grotesk + Source Serif 4
   ═══════════════════════════════════════════════════ */

:root {
  --sky-white: #FFFFFF;
  --earth-dark: #1C1917;
  --horizon: #E5DED3;
  --sun-accent: #E07A3A;
  --sky-accent: #6B9AC4;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --panel-bg: rgba(255, 255, 255, 0.92);
  --panel-blur: blur(20px);
  --panel-shadow: 0 8px 60px rgba(0,0,0,0.12), 0 2px 20px rgba(0,0,0,0.06);
  --panel-radius: 16px;
  --transition-slow: 0.5s ease;
  --transition-medium: 0.35s ease;
  --country-accent: #E07A3A;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--earth-dark);
  background: var(--sky-white);
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Header over hero: white text */
.header-over-hero .site-logo { color: var(--sky-white); }
.header-over-hero .site-nav a { color: rgba(255,255,255,0.8); }
.header-over-hero .nav-dropdown-trigger { color: rgba(255,255,255,0.8); }
.header-over-hero.scrolled .site-logo { color: var(--earth-dark); }
.header-over-hero.scrolled .site-nav a { color: var(--earth-dark); }
.header-over-hero.scrolled .nav-dropdown-trigger { color: var(--earth-dark); }

/* Header on simple pages: dark text */
.site-header:not(.header-over-hero) .site-logo { color: var(--earth-dark); }
.site-header:not(.header-over-hero) .site-nav a { color: var(--earth-dark); }
.site-header:not(.header-over-hero) .nav-dropdown-trigger { color: var(--earth-dark); }

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: color var(--transition-slow);
}

.logo-mark {
  width: 36px;
  height: 22px;
  position: relative;
}
.logo-mark .sun-half {
  width: 18px; height: 9px;
  background: var(--sun-accent);
  border-radius: 18px 18px 0 0;
  position: absolute; top: 3px; left: 9px;
}
.logo-mark .horizon-line {
  position: absolute; bottom: 6px; left: 0;
  width: 100%; height: 1.5px;
  background: currentColor; opacity: 0.5;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-medium);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sun-accent);
  transition: width var(--transition-medium);
}
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--sun-accent) !important; }

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

.nav-dropdown-trigger {
  font-family: var(--font-heading);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--transition-medium);
}
.nav-dropdown-trigger:hover { color: var(--sun-accent) !important; }

.dropdown-chevron {
  transition: transform var(--transition-medium);
}
.nav-countries-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px); left: -20px;
  background: var(--sky-white);
  border-radius: 14px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  padding: 14px 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-medium);
}
.nav-countries-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  color: var(--earth-dark) !important;
  text-decoration: none;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: background var(--transition-medium);
}
.dropdown-item::after { display: none !important; }
.dropdown-item:hover { background: #F5F0EB; }

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger-line {
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: all var(--transition-medium);
}
.header-over-hero .mobile-menu-toggle { color: white; }
.header-over-hero.scrolled .mobile-menu-toggle { color: var(--earth-dark); }
.site-header:not(.header-over-hero) .mobile-menu-toggle { color: var(--earth-dark); }

/* ═══════════════════════════════
   HOMEPAGE HERO
   ═══════════════════════════════ */

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

.hero-landscape {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      #3D5A80 0%, #5B8CAE 12%, #8AB4D2 22%, #BDD4E6 30%,
      #E8D8C0 37%, #D4A86A 40%, #A07848 43%,
      #7A5E3C 50%, #5E4A30 62%, #4A3A24 78%, #352A1A 100%);
  background-size: cover;
  background-position: center 40%;
}

.hero-landscape::before {
  content: '';
  position: absolute;
  top: 26%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at 50% 65%,
    rgba(244,180,80,0.5) 0%, rgba(224,122,58,0.25) 30%, transparent 65%);
  pointer-events: none;
}

.hero-landscape::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-panel {
  position: relative; z-index: 2;
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 80px 104px;
  text-align: center;
  max-width: 700px;
  animation: panelRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes panelRise {
  from { opacity: 0; transform: translateY(50px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-panel h1 {
  font-family: var(--font-heading);
  font-size: 60px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--earth-dark);
  margin-bottom: 24px;
}

.hero-panel .subtitle {
  font-family: var(--font-body);
  font-style: italic; font-size: 20px; font-weight: 300;
  color: #78716C; line-height: 1.55;
}

.hero-panel .accent-bar {
  width: 52px; height: 3px;
  background: var(--sun-accent);
  margin: 32px auto 0; border-radius: 2px;
}

.scroll-cue {
  position: absolute;
  bottom: 52px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  animation: scrollBreathe 3s ease-in-out infinite;
}

@keyframes scrollBreathe {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(10px); }
}

.scroll-cue span {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-cue svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.5);
  fill: none; stroke-width: 1.5;
}

/* ═══════════════════════════════
   COUNTRY HERO
   ═══════════════════════════════ */

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

.country-landscape {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.country-hero-panel {
  position: relative; z-index: 2;
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 64px 80px;
  text-align: center;
  max-width: 600px;
  overflow: hidden;
  animation: panelRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.country-hero-panel .accent-top,
.route-hero-panel .accent-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}

.country-hero-panel h1 {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--earth-dark);
  margin-bottom: 16px;
}

.country-subtitle {
  font-family: var(--font-body);
  font-size: 18px; font-style: italic;
  color: #78716C; line-height: 1.6;
}

/* ═══════════════════════════════
   ROUTE HERO (ARTICLE)
   ═══════════════════════════════ */

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

.route-landscape {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.route-hero-panel {
  position: relative; z-index: 2;
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 64px 80px;
  text-align: center;
  max-width: 680px;
  overflow: hidden;
  animation: panelRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.route-hero-panel h1 {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12;
  color: var(--earth-dark);
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 8px;
  background: var(--horizon);
  color: var(--earth-dark);
}

.hero-badge.accent {
  background: rgba(224,122,58,0.1);
  color: var(--sun-accent);
}

/* ═══════════════════════════════
   SIMPLE HERO (article_simple)
   ═══════════════════════════════ */

.simple-hero {
  height: 36vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.simple-landscape {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #8AACC8 0%, #A0C0D8 12%, #B8D0E0 22%, #D0D8D4 30%,
    #E0D8C4 36%, #D8C4A4 40%, #C4AA84 44%,
    #A89068 52%, #8A7858 64%, #6A5E44 80%, #504832 100%);
}

.simple-landscape::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse at 50% 70%,
    rgba(224,180,100,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.simple-hero-panel {
  position: relative; z-index: 2;
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.08);
  padding: 44px 72px;
  text-align: center;
  max-width: 500px;
  overflow: hidden;
  animation: panelRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.simple-hero-panel .accent-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}

.simple-hero-panel h1 {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--earth-dark);
}

.simple-subtitle {
  font-family: var(--font-body);
  font-size: 16px; font-style: italic;
  color: #78716C; margin-top: 12px;
}

/* ═══════════════════════════════
   HORIZON SECTIONS (homepage)
   ═══════════════════════════════ */

.horizon-section {
  height: 82vh;
  min-height: 580px;
  position: relative;
  display: flex;
  overflow: hidden;
}

.horizon-landscape {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.horizon-landscape::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.28) 0%, transparent 100%);
  pointer-events: none;
}

.horizon-content {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 80px;
}
.horizon-section:nth-child(even) .horizon-content {
  justify-content: flex-end;
}

.floating-panel {
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 52px 60px;
  max-width: 460px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.floating-panel.in-view {
  opacity: 1; transform: translateY(0);
}

.panel-accent-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}

.floating-panel h2 {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.08;
  margin-bottom: 18px;
}

.floating-panel .country-desc {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.7;
  color: #57534E; margin-bottom: 28px;
}

.route-cta {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sun-accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap var(--transition-medium);
}
.route-cta:hover { gap: 18px; }

.route-cta .cta-arrow {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--sun-accent);
  position: relative;
}
.route-cta .cta-arrow::after {
  content: '';
  position: absolute;
  right: -0.5px; top: -3.5px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--sun-accent);
  border-top: 1.5px solid var(--sun-accent);
  transform: rotate(45deg);
}

/* 8 Landscape gradients */
.land-morocco { background: linear-gradient(180deg, #A0845C 0%, #C4A46C 12%, #DCC08C 24%, #E8D0A0 34%, #C67A3A 40%, #A86028 43%, #8A4C20 52%, #6A3818 68%, #4A2810 100%); }
.land-oman { background: linear-gradient(180deg, #3A8A8E 0%, #58AAA8 12%, #80C4BE 24%, #C0D8C4 34%, #D4A574 40%, #B88A58 43%, #986E40 52%, #7A5630 70%, #5A3E22 100%); }
.land-oman::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%; background: radial-gradient(ellipse at 70% 60%, rgba(46,139,139,0.18) 0%, transparent 60%); pointer-events: none; }
.land-namibia { background: linear-gradient(180deg, #8A6AAE 0%, #A880C0 10%, #C098CC 20%, #D8B0BA 32%, #B85C38 40%, #9C4828 43%, #7E3620 52%, #5C2818 68%, #3E1A10 100%); }
.land-namibia::before { content: ''; position: absolute; bottom: 10%; left: 10%; width: 50%; height: 40%; background: radial-gradient(ellipse, rgba(184,92,56,0.2) 0%, transparent 70%); pointer-events: none; }
.land-jordan { background: linear-gradient(180deg, #5C7C9C 0%, #7C98B0 12%, #A0B4C0 24%, #D0C4AA 34%, #C4956A 40%, #A87A50 43%, #8A6040 52%, #6C4830 68%, #4C3420 100%); }
.land-mauritius { background: linear-gradient(180deg, #20A0C8 0%, #30B8D8 10%, #50D0E0 22%, #80E0D4 33%, #38B870 40%, #2E8B57 43%, #267A48 52%, #1E6438 68%, #164A28 100%); }
.land-mauritius::before { content: ''; position: absolute; top: 15%; right: 10%; width: 40%; height: 30%; background: radial-gradient(ellipse, rgba(0,206,209,0.2) 0%, transparent 65%); pointer-events: none; }
.land-seychelles { background: linear-gradient(180deg, #38A0BA 0%, #50B8CC 10%, #70CCD8 22%, #B0DCC8 33%, #4AB880 40%, #3CB371 43%, #309A5C 52%, #247A44 68%, #185A30 100%); }
.land-seychelles::before { content: ''; position: absolute; bottom: 30%; left: 20%; width: 60%; height: 15%; background: linear-gradient(90deg, transparent, rgba(240,230,140,0.15), transparent); pointer-events: none; }
.land-srilanka { background: linear-gradient(180deg, #4080A0 0%, #58A0B8 12%, #78B8C4 24%, #98C8AC 34%, #38A048 40%, #228B22 43%, #1A7018 52%, #145814 68%, #0E3A0E 100%); }
.land-srilanka::before { content: ''; position: absolute; top: 25%; left: 40%; width: 30%; height: 20%; background: radial-gradient(ellipse, rgba(218,165,32,0.15) 0%, transparent 70%); pointer-events: none; }
.land-reunion { background: linear-gradient(180deg, #3A3A70 0%, #4C4C8C 10%, #5E5EA0 20%, #7070B0 32%, #50506C 40%, #3E3E56 43%, #2E2E44 52%, #202036 68%, #141428 100%); }
.land-reunion::before { content: ''; position: absolute; bottom: 5%; left: 30%; width: 40%; height: 30%; background: radial-gradient(ellipse at bottom, rgba(255,99,71,0.22) 0%, transparent 65%); pointer-events: none; }

/* ═══════════════════════════════
   FEATURED ROUTES (homepage)
   ═══════════════════════════════ */

.featured-routes {
  padding: 160px 80px 140px;
  background: var(--sky-white);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun-accent);
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--earth-dark);
  margin-bottom: 80px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.route-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition-slow);
}
.route-card:hover { transform: translateY(-8px); }

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.card-image .img-gradient {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 40%;
}
.card-image::after {
  content: '';
  position: absolute;
  top: 40%; left: 8%; right: 8%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.card-tag {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 14px;
}

.route-card h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 600;
  line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.route-card .card-excerpt {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: #78716C;
}

/* ═══════════════════════════════
   ABOUT STRIPE (homepage)
   ═══════════════════════════════ */

.about-stripe {
  padding: 110px 80px;
  text-align: center;
  position: relative;
}
.about-stripe::before, .about-stripe::after {
  content: '';
  position: absolute;
  left: 15%; right: 15%;
  height: 1px;
  background: var(--horizon);
}
.about-stripe::before { top: 0; }
.about-stripe::after { bottom: 0; }

.about-stripe-body {
  max-width: 720px;
  margin: 0 auto;
}

.about-stripe-body p {
  font-family: var(--font-body);
  font-style: italic; font-size: 22px;
  line-height: 1.75; color: #57534E;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-link {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sun-accent);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-medium);
}
.about-link:hover { border-bottom-color: var(--sun-accent); }

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

.country-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}

.routes-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.hub-route-card {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding: 24px;
  border-radius: 16px;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.hub-route-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.hub-route-card .card-photo {
  width: 320px;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.hub-route-card .card-photo .gradient-fill {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 40%;
}

.hub-route-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.card-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.meta-badge {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 6px;
  background: var(--horizon);
  color: #57534E;
}

.hub-route-card h3 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-link {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sun-accent);
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link .link-arrow {
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--sun-accent);
}

/* Quick facts */
.practical-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 80px 100px;
}

.practical-panel {
  background: #FAFAF8;
  border: 1px solid var(--horizon);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.practical-panel-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.practical-panel h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  margin-bottom: 32px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--country-accent, var(--sun-accent));
  stroke-width: 1.5;
}

.fact-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #A8A29E;
  margin-bottom: 4px;
}

.fact-value {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500;
  color: var(--earth-dark);
}

/* ═══════════════════════════════
   ROUTE OVERVIEW (article)
   ═══════════════════════════════ */

.route-overview {
  padding: 80px 80px 40px;
  display: flex;
  justify-content: center;
}

.overview-inner {
  max-width: 900px;
  width: 100%;
  background: #FAFAF8;
  border: 1px solid var(--horizon);
  border-radius: 14px;
  padding: 40px 48px;
}

.overview-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.ov-point {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 600;
  color: var(--earth-dark);
}

.ov-arrow {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--sun-accent);
  position: relative;
}
.ov-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--sun-accent);
  border-top: 1.5px solid var(--sun-accent);
  transform: rotate(45deg);
}

.overview-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ov-stat { text-align: center; }

.ov-val {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  color: var(--earth-dark);
  margin-bottom: 4px;
}
.ov-val.small { font-size: 14px; }

.ov-label {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #A8A29E;
}

/* ═══════════════════════════════
   ARTICLE LAYOUT (2-col)
   ═══════════════════════════════ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px 120px;
}

.article-main { min-width: 0; }

/* ═══════════════════════════════
   ARTICLE CONTENT (shared prose)
   ═══════════════════════════════ */

.article-content h1 {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 32px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--earth-dark);
  margin-top: 56px; margin-bottom: 28px;
  padding-left: 20px;
  position: relative;
}
.article-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 24px;
  border-radius: 2px;
  background: var(--country-accent, var(--sun-accent));
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600;
  margin-top: 40px; margin-bottom: 20px;
}

.article-content p {
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.85;
  color: #44403C;
  margin-bottom: 24px;
}

.article-content a:not(.cta-button):not(.cta-banner):not(.route-cta) {
  color: var(--sun-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-medium);
}
.article-content a:not(.cta-button):not(.cta-banner):not(.route-cta):hover {
  color: #CC6A2E;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.8;
  color: #44403C;
  margin-bottom: 8px;
}

.article-content strong {
  font-weight: 600;
  color: var(--earth-dark);
}

.article-content blockquote {
  border-left: 3px solid var(--horizon);
  padding: 0 0 0 32px;
  margin: 40px 0;
}
.article-content blockquote p {
  font-style: italic; font-size: 20px;
  color: #78716C; font-weight: 300;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: var(--font-heading);
  font-size: 14px;
}
.article-content table th {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--horizon);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #78716C;
}
.article-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F0ECE6;
  color: var(--earth-dark);
}
.article-content table tr:last-child td { border-bottom: none; }

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.article-content .full-bleed {
  width: calc(100% + 40px);
  margin-left: -20px;
  border-radius: 12px;
}

/* ═══════════════════════════════
   SIMPLE CONTENT (article_simple)
   ═══════════════════════════════ */

.simple-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 32px 140px;
}

.simple-body p:first-child::first-letter {
  font-family: var(--font-heading);
  font-size: 56px; font-weight: 700;
  float: left;
  line-height: 0.82;
  margin-right: 10px; margin-top: 8px;
  color: var(--sun-accent);
}

/* ═══════════════════════════════
   SIDEBAR
   ═══════════════════════════════ */

.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-block {
  margin-bottom: 40px;
}
.sidebar-block:last-child { margin-bottom: 0; }

.sb-title {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #A8A29E;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--horizon);
}

.day-nav { list-style: none; }
.day-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition-medium);
}
.day-nav a:hover { background: #F5F0EB; }

.day-nav .nav-num {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.day-nav .nav-label {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  color: var(--earth-dark);
  line-height: 1.3;
}

.sidebar-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--sun-accent);
  color: var(--sky-white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-medium), transform var(--transition-medium);
  box-shadow: 0 4px 20px rgba(224,122,58,0.25);
}
.sidebar-cta:hover {
  background: #CC6A2E;
  transform: translateY(-2px);
}

.sidebar-cta-sub {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.06em;
  color: #A8A29E;
  margin-top: 10px;
}

.other-routes { list-style: none; }
.other-routes li { margin-bottom: 16px; }
.other-routes a {
  text-decoration: none;
  display: block;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--horizon);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}
.other-routes a:hover {
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.other-routes .or-title {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500;
  color: var(--earth-dark);
  margin-bottom: 6px;
}
.other-routes .or-meta {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #A8A29E;
}

/* ═══════════════════════════════
   CTA BLOCKS (from Partner)
   ═══════════════════════════════ */

.cta-block {
  background: #FDF9F5;
  border: 1px solid #E8DFD0;
  border-radius: 14px;
  padding: 36px 40px;
  margin: 40px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--sun-accent);
  color: white !important;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600;
  text-decoration: none !important;
  transition: background var(--transition-medium);
}
.cta-button:hover { background: #CC6A2E; }

.cta-banner {
  display: block;
  padding: 20px 32px;
  background: var(--sun-accent);
  color: white !important;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600;
  text-decoration: none !important;
  text-align: center;
  transition: background var(--transition-medium);
}
.cta-banner:hover { background: #CC6A2E; }

.cta-text-link {
  color: var(--sun-accent) !important;
  font-weight: 600;
}

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

.site-footer {
  background: var(--earth-dark);
  color: rgba(255,255,255,0.65);
  padding: 88px 80px 52px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px; margin-bottom: 80px;
}

.footer-brand-block .footer-logo-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.footer-logo-row .f-sun {
  width: 16px; height: 8px;
  background: var(--sun-accent);
  border-radius: 16px 16px 0 0;
}
.footer-logo-row .f-name {
  font-family: var(--font-heading);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.footer-brand-block .footer-tagline {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 26px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-col a {
  font-family: var(--font-heading);
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color var(--transition-medium);
}
.footer-col a:hover { color: var(--sun-accent); }

.footer-rule { border: none; height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 32px; }

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-row span {
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════
   COOKIE BANNER (GDPR)
   ═══════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  animation: bannerSlide 0.5s ease both;
}

@keyframes bannerSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner-inner {
  background: var(--panel-bg);
  backdrop-filter: var(--panel-blur);
  -webkit-backdrop-filter: var(--panel-blur);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner-text {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 400;
  color: #57534E;
}

.cookie-banner-actions {
  display: flex; gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 8px 20px;
  background: var(--sun-accent);
  color: white;
  border: none; border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-medium);
}
.cookie-accept:hover { background: #CC6A2E; }

.cookie-decline {
  padding: 8px 16px;
  background: transparent;
  color: #A8A29E;
  border: 1px solid var(--horizon);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
}
.cookie-decline:hover { border-color: #A8A29E; color: var(--earth-dark); }

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

@media (max-width: 1100px) {
  .hero-panel { padding: 60px 56px; max-width: 560px; }
  .hero-panel h1 { font-size: 48px; }
  .country-hero-panel { padding: 48px 48px; }
  .country-hero-panel h1 { font-size: 42px; }
  .route-hero-panel { padding: 48px 48px; max-width: 580px; }
  .route-hero-panel h1 { font-size: 36px; }
  .horizon-content { padding: 0 48px 64px; }
  .floating-panel { max-width: 420px; padding: 44px 48px; }
  .floating-panel h2 { font-size: 36px; }
  .featured-routes { padding: 120px 48px 100px; }
  .routes-grid { gap: 36px; }
  .site-header { padding: 22px 36px; }
  .article-layout { grid-template-columns: 1fr 280px; gap: 48px; padding: 48px 48px 100px; }
  .hub-route-card .card-photo { width: 260px; }
  .routes-section { padding: 40px 48px 80px; }
  .practical-section { padding: 40px 48px 100px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 18px 24px; }
  .site-header { padding: 16px 24px; }
  .site-nav { display: none; }
  .site-nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .site-nav.mobile-open a { color: var(--earth-dark) !important; padding: 12px 0; }
  .site-nav.mobile-open .nav-dropdown-trigger { color: var(--earth-dark) !important; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: 600px; }
  .hero-panel { padding: 44px 32px; max-width: 92vw; }
  .hero-panel h1 { font-size: 36px; }
  .hero-panel .subtitle { font-size: 17px; }

  .country-hero { min-height: 500px; }
  .country-hero-panel { padding: 40px 28px; }
  .country-hero-panel h1 { font-size: 34px; }

  .route-hero { min-height: 550px; }
  .route-hero-panel { padding: 40px 28px; max-width: 94vw; }
  .route-hero-panel h1 { font-size: 30px; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }

  .simple-hero { min-height: 220px; }
  .simple-hero-panel { padding: 32px 36px; max-width: 90vw; }
  .simple-hero-panel h1 { font-size: 30px; }

  .horizon-section { height: 72vh; min-height: 480px; }
  .horizon-content { padding: 0 24px 48px; }
  .floating-panel { max-width: 100%; padding: 36px 36px; }
  .floating-panel h2 { font-size: 30px; }
  .horizon-section:nth-child(even) .horizon-content { justify-content: flex-start; }

  .featured-routes { padding: 88px 24px 72px; }
  .section-heading { font-size: 32px; margin-bottom: 52px; }
  .routes-grid { grid-template-columns: 1fr; gap: 60px; }

  .about-stripe { padding: 72px 24px; }
  .about-stripe-body p { font-size: 18px; }
  .about-stripe::before, .about-stripe::after { left: 8%; right: 8%; }

  .country-intro { padding: 60px 24px 40px; }
  .routes-section { padding: 24px 24px 60px; }
  .hub-route-card { flex-direction: column; gap: 24px; }
  .hub-route-card .card-photo { width: 100%; min-height: 180px; }
  .practical-section { padding: 20px 24px 80px; }
  .practical-panel { padding: 32px 24px; }
  .facts-grid { grid-template-columns: 1fr; }

  .route-overview { padding: 48px 24px 24px; }
  .overview-inner { padding: 28px 24px; }
  .overview-route { flex-direction: column; gap: 12px; }
  .ov-arrow { transform: rotate(90deg); width: 24px; }
  .overview-stats { gap: 24px; }

  .article-layout { grid-template-columns: 1fr; gap: 48px; padding: 36px 24px 80px; }
  .article-sidebar { position: static; order: -1; }

  .simple-content { padding: 60px 24px 100px; }

  .article-content h2 { font-size: 24px; }
  .article-content p { font-size: 17px; }

  .site-footer { padding: 56px 24px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }
}
