/* ==========================================================================
   CampingTourism.com — Coming Soon Landing Page
   Premium outdoor tourism brand stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Color palette */
  --color-forest: #1B4332;
  --color-forest-light: #2D6A4F;
  --color-emerald: #40916C;
  --color-emerald-bright: #52B788;
  --color-sky: #48CAE4;
  --color-sky-light: #90E0EF;
  --color-orange: #E07A3A;
  --color-orange-warm: #F4A261;
  --color-earth: #8B6914;
  --color-earth-light: #BC6C25;
  --color-bg: #F5F3EF;
  --color-bg-warm: #EDEAE4;
  --color-bg-card: rgba(255, 255, 255, 0.72);
  --color-text: #2B2D2E;
  --color-text-muted: #5C6366;
  --color-text-light: #8A9297;
  --color-white: #FFFFFF;
  --color-glass: rgba(255, 255, 255, 0.15);
  --color-glass-border: rgba(255, 255, 255, 0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 48px rgba(27, 67, 50, 0.12);
  --shadow-glow: 0 0 40px rgba(82, 183, 136, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul[role="list"] {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 10000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--duration-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Section utilities */
.section {
  padding-block: var(--space-3xl);
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .section-desc {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Mouse Glow & Particles
   -------------------------------------------------------------------------- */
.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.mouse-active .mouse-glow {
  opacity: 1;
}

.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-emerald-bright);
  border-radius: 50%;
  opacity: 0.15;
  animation: particleDrift 20s linear infinite;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--duration-normal), box-shadow var(--duration-normal);
}

.site-header.scrolled {
  background: rgba(245, 243, 239, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--duration-normal);
  z-index: 10;
}

.site-header.scrolled .nav__logo {
  color: var(--color-forest);
}

.nav__logo-icon {
  width: 28px;
  height: 28px;
}

.nav__logo-dot {
  color: var(--color-emerald-bright);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-emerald-bright);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  width: 100%;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--color-white);
}

.site-header.scrolled .nav__links a {
  color: var(--color-text-muted);
}

.site-header.scrolled .nav__links a:hover,
.site-header.scrolled .nav__links a:focus-visible {
  color: var(--color-forest);
}

.nav__cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: background var(--duration-fast), transform var(--duration-fast) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.site-header.scrolled .nav__cta {
  background: var(--color-forest);
  color: var(--color-white) !important;
  border-color: var(--color-forest);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--duration-normal), opacity var(--duration-fast);
}

.site-header.scrolled .nav__toggle span {
  background: var(--color-forest);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal),
              background var(--duration-fast);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-forest) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), 0 8px 30px rgba(27, 67, 50, 0.35);
}

.btn--primary:hover svg {
  transform: translateY(3px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Sky & sunrise */
.hero__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #0B1D3A 0%,
    #1A3A5C 15%,
    #2D5F7A 30%,
    #4A8FA8 45%,
    #E07A3A 55%,
    #F4A261 65%,
    #90E0EF 80%,
    #CAF0F8 100%
  );
  animation: sunrise 30s ease-in-out infinite alternate;
}

.hero__sun {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #FFF5E6 0%, #F4A261 40%, transparent 70%);
  border-radius: 50%;
  animation: sunPulse 6s ease-in-out infinite;
}

/* Stars */
.hero__stars {
  position: absolute;
  inset: 0;
  animation: starsFade 30s ease-in-out infinite alternate;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1)  { top: 8%;  left: 12%; animation-delay: 0s; }
.star:nth-child(2)  { top: 15%; left: 28%; animation-delay: 0.5s; }
.star:nth-child(3)  { top: 5%;  left: 45%; animation-delay: 1s; }
.star:nth-child(4)  { top: 12%; left: 62%; animation-delay: 1.5s; }
.star:nth-child(5)  { top: 7%;  left: 78%; animation-delay: 2s; }
.star:nth-child(6)  { top: 18%; left: 88%; animation-delay: 0.3s; }
.star:nth-child(7)  { top: 22%; left: 8%;  animation-delay: 0.8s; }
.star:nth-child(8)  { top: 10%; left: 55%; animation-delay: 1.2s; }
.star:nth-child(9)  { top: 20%; left: 72%; animation-delay: 1.8s; }
.star:nth-child(10) { top: 6%;  left: 35%; animation-delay: 2.2s; }
.star:nth-child(11) { top: 14%; left: 92%; animation-delay: 0.6s; }
.star:nth-child(12) { top: 25%; left: 50%; animation-delay: 1.4s; }

/* Clouds */
.hero__clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  filter: blur(1px);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud--1 {
  width: 120px;
  height: 30px;
  top: 18%;
  left: -120px;
  animation: cloudMove 45s linear infinite;
}

.cloud--1::before { width: 50px; height: 50px; top: -25px; left: 20px; }
.cloud--1::after  { width: 40px; height: 40px; top: -18px; left: 55px; }

.cloud--2 {
  width: 90px;
  height: 24px;
  top: 28%;
  left: -90px;
  animation: cloudMove 55s linear infinite 10s;
  opacity: 0.6;
}

.cloud--2::before { width: 40px; height: 40px; top: -20px; left: 15px; }
.cloud--2::after  { width: 35px; height: 35px; top: -15px; left: 45px; }

.cloud--3 {
  width: 150px;
  height: 35px;
  top: 12%;
  left: -150px;
  animation: cloudMove 60s linear infinite 25s;
  opacity: 0.5;
}

.cloud--3::before { width: 60px; height: 60px; top: -30px; left: 25px; }
.cloud--3::after  { width: 50px; height: 50px; top: -22px; left: 70px; }

.cloud--4 {
  width: 100px;
  height: 28px;
  top: 35%;
  left: -100px;
  animation: cloudMove 50s linear infinite 35s;
  opacity: 0.4;
}

.cloud--4::before { width: 45px; height: 45px; top: -22px; left: 18px; }
.cloud--4::after  { width: 38px; height: 38px; top: -16px; left: 52px; }

/* Mountains */
.hero__mountains {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 45%;
}

/* Trees */
.hero__trees {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.tree {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 50px solid var(--color-forest);
}

.tree::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -3px;
  width: 6px;
  height: 15px;
  background: var(--color-earth-light);
}

.tree--1 { left: 5%;  border-bottom-width: 60px; border-left-width: 15px; border-right-width: 15px; }
.tree--2 { left: 12%; border-bottom-width: 45px; opacity: 0.8; }
.tree--3 { left: 22%; border-bottom-width: 70px; border-left-width: 18px; border-right-width: 18px; }
.tree--4 { right: 18%; border-bottom-width: 55px; border-left-width: 14px; border-right-width: 14px; }
.tree--5 { right: 10%; border-bottom-width: 40px; opacity: 0.85; }
.tree--6 { right: 4%;  border-bottom-width: 65px; border-left-width: 16px; border-right-width: 16px; }

/* Grass */
.hero__grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}

.grass-blade {
  animation: grassWave 4s ease-in-out infinite;
}

.grass-blade--2 {
  animation-delay: -2s;
}

/* Birds */
.hero__birds {
  position: absolute;
  width: 30px;
  height: 15px;
  z-index: 4;
}

.bird--1 { top: 22%; animation: birdFly 20s linear infinite; }
.bird--2 { top: 18%; animation: birdFly 25s linear infinite 8s; width: 24px; }
.bird--3 { top: 25%; animation: birdFly 22s linear infinite 15s; width: 20px; }

/* Hero particles */
.hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: heroParticle 8s ease-in-out infinite;
}

.hero__particles span:nth-child(1)  { left: 10%; top: 40%; animation-delay: 0s; }
.hero__particles span:nth-child(2)  { left: 25%; top: 55%; animation-delay: 1s; }
.hero__particles span:nth-child(3)  { left: 40%; top: 35%; animation-delay: 2s; }
.hero__particles span:nth-child(4)  { left: 55%; top: 50%; animation-delay: 3s; }
.hero__particles span:nth-child(5)  { left: 70%; top: 42%; animation-delay: 4s; }
.hero__particles span:nth-child(6)  { left: 85%; top: 38%; animation-delay: 5s; }
.hero__particles span:nth-child(7)  { left: 15%; top: 60%; animation-delay: 1.5s; }
.hero__particles span:nth-child(8)  { left: 60%; top: 30%; animation-delay: 2.5s; }
.hero__particles span:nth-child(9)  { left: 80%; top: 55%; animation-delay: 3.5s; }
.hero__particles span:nth-child(10) { left: 35%; top: 45%; animation-delay: 4.5s; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  animation: breathe 4s ease-in-out infinite;
}

.hero__badge svg {
  width: 8px;
  height: 8px;
  color: var(--color-emerald-bright);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Brand Statement
   -------------------------------------------------------------------------- */
.section--brand {
  background: var(--color-white);
}

.brand-statement {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.brand-statement__text p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.brand-statement__text p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Feature Cards
   -------------------------------------------------------------------------- */
.section--platform {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal);
  overflow: hidden;
}

/* Glass shine effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s var(--ease-out);
}

.feature-card:hover::before {
  left: 120%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-emerald);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) translateY(-2px);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: var(--space-xs);
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Directory Preview
   -------------------------------------------------------------------------- */
.section--directory {
  background: var(--color-white);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.directory-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal);
}

.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.directory-card__visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

/* CSS landscape illustrations for each destination */
.directory-card__visual--banff {
  background: linear-gradient(180deg, #87CEEB 0%, #B0D4E8 40%, #6B8E6B 70%, #2D5016 100%);
}

.directory-card__visual--banff::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background:
    polygon(0% 100%, 15% 40%, 30% 70%, 45% 30%, 60% 60%, 75% 25%, 90% 55%, 100% 35%, 100% 100%);
  background-color: #1B4332;
  clip-path: polygon(0% 100%, 15% 40%, 30% 70%, 45% 30%, 60% 60%, 75% 25%, 90% 55%, 100% 35%, 100% 100%);
}

.directory-card__visual--lakedistrict {
  background: linear-gradient(180deg, #A8C8E8 0%, #C5D9ED 50%, #4A7C59 100%);
}

.directory-card__visual--lakedistrict::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 80%;
  height: 30%;
  background: #3D7A9E;
  border-radius: 50%;
  opacity: 0.6;
}

.directory-card__visual--serengeti {
  background: linear-gradient(180deg, #F4A261 0%, #E9C46A 40%, #BC6C25 70%, #8B6914 100%);
}

.directory-card__visual--serengeti::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 60%;
  height: 3px;
  background: #5C4033;
  border-radius: 2px;
  box-shadow: 0 -15px 0 0 #5C4033, 0 -30px 0 0 #5C4033;
}

.directory-card__visual--bluemountains {
  background: linear-gradient(180deg, #B8D4E3 0%, #7BA7BC 40%, #2D5016 80%, #1B4332 100%);
}

.directory-card__visual--bluemountains::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 80, 22, 0.3) 100%);
}

.directory-card__visual--swissalps {
  background: linear-gradient(180deg, #48CAE4 0%, #90E0EF 30%, #FFFFFF 50%, #40916C 80%, #1B4332 100%);
}

.directory-card__visual--swissalps::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  clip-path: polygon(0% 100%, 20% 50%, 40% 80%, 55% 30%, 70% 60%, 85% 20%, 100% 70%, 100% 100%);
  background: #FFFFFF;
}

.directory-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.directory-card__country {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-emerald);
}

.directory-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
  margin: var(--space-xs) 0;
}

.directory-card__type {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.directory-card__rating {
  color: var(--color-orange);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.directory-card__btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.directory-card__btn:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Research Cards
   -------------------------------------------------------------------------- */
.section--research {
  background: linear-gradient(135deg, var(--color-forest) 0%, #0B2E1F 100%);
  color: var(--color-white);
}

.section--research .section-label {
  color: var(--color-emerald-bright);
}

.section--research .section-title {
  color: var(--color-white);
}

.section--research .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.report-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--duration-normal) var(--ease-out),
              background var(--duration-normal),
              border-color var(--duration-normal);
  cursor: default;
}

.report-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(82, 183, 136, 0.4);
}

.report-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--color-emerald-bright);
}

.report-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.report-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(82, 183, 136, 0.2);
  color: var(--color-emerald-bright);
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   Statistics
   -------------------------------------------------------------------------- */
.section--stats {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 50%, var(--color-bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.section--timeline {
  background: var(--color-white);
  overflow: hidden;
}

.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-emerald-bright), var(--color-sky), var(--color-orange));
  border-radius: 2px;
  transform: translateY(-50%);
}

.timeline__items {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: var(--space-sm);
}

.timeline__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: var(--space-lg);
}

.timeline__year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.timeline__dot {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 3px solid var(--color-emerald);
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 2;
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal),
              box-shadow var(--duration-normal);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
  border-color: var(--color-orange);
  box-shadow: 0 0 20px rgba(224, 122, 58, 0.4);
}

.timeline__item--highlight .timeline__dot {
  width: 22px;
  height: 22px;
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  box-shadow: 0 0 20px rgba(82, 183, 136, 0.5);
}

.timeline__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 140px;
  margin-inline: auto;
  line-height: 1.4;
}

.timeline__item--highlight .timeline__label {
  color: var(--color-forest);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Vision
   -------------------------------------------------------------------------- */
.section--vision {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg) 50%, #E8F0EC 100%);
  position: relative;
  overflow: hidden;
}

.vision {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.vision__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.vision__icons {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  opacity: 0.15;
}

.floating-icon {
  width: 48px;
  height: 48px;
  color: var(--color-forest);
}

.floating-icon:nth-child(1) { animation: float 6s ease-in-out infinite; }
.floating-icon:nth-child(2) { animation: float 6s ease-in-out infinite 2s; }
.floating-icon:nth-child(3) { animation: float 6s ease-in-out infinite 4s; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.8);
  padding-block: var(--space-2xl) var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.footer__launch {
  display: block;
  font-size: 0.875rem;
  color: var(--color-emerald-bright);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav a {
  font-size: 0.875rem;
  transition: color var(--duration-fast);
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes sunrise {
  0%   { filter: brightness(0.7) saturate(0.8); }
  50%  { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.1) saturate(1.1); }
}

@keyframes sunPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50%      { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

@keyframes starsFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.5); }
}

@keyframes cloudMove {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 200px)); }
}

@keyframes grassWave {
  0%, 100% { d: path("M0,60 Q360,20 720,60 T1440,60 L1440,60 L0,60 Z"); }
  50%      { d: path("M0,60 Q360,35 720,55 T1440,60 L1440,60 L0,60 Z"); }
}

@keyframes birdFly {
  0%   { left: -40px; transform: translateY(0); }
  25%  { transform: translateY(-8px); }
  50%  { transform: translateY(4px); }
  75%  { transform: translateY(-6px); }
  100% { left: calc(100% + 40px); transform: translateY(0); }
}

@keyframes heroParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%      { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

@keyframes scrollHint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes particleDrift {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .timeline__items {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .timeline__track {
    display: none;
  }

  .timeline__item {
    flex: 0 0 calc(33.333% - var(--space-md));
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    gap: var(--space-lg);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.25rem;
    color: var(--color-white) !important;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .timeline__item {
    flex: 0 0 calc(50% - var(--space-sm));
  }

  .hero__title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    flex: 0 0 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .mouse-glow,
  .bg-particles,
  .hero__scene,
  .hero__scroll-hint {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl);
  }

  .hero__content {
    color: var(--color-text);
  }

  .hero__title {
    color: var(--color-forest);
    text-shadow: none;
  }
}
