/* ============================================
   LA VUELTA AL MUNDO EN 80 ÁRBOLES
   Jardín Botánico La Concepción · Málaga
   ============================================ */

:root {
  --green-deep: #0A1F02;
  --green-dark: #1a3a08;
  --green-mid: #2D6A1E;
  --green-bright: #B8F369;
  --cream: #F5F0E8;
  --earth-light: #8B6347;
  --gold: #C9A84C;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Cormorant Garamond', serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--green-deep);
  color: var(--cream);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ── PARTICLES ── */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--green-bright); border-radius: 50%;
  opacity: 0; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; } 90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(10,31,2,0.92); backdrop-filter: blur(20px);
  padding: 0.8rem 3rem; border-bottom: 1px solid rgba(184,243,105,0.1);
}
.nav__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.05em; color: var(--green-bright); text-transform: uppercase;
}
.nav__leaf { font-size: 1.2rem; animation: leafSway 3s ease-in-out infinite; }
@keyframes leafSway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,240,232,0.7); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--green-bright); transition: width 0.3s;
}
.nav__links a:hover { color: var(--green-bright); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-bright);
  padding: 0.6rem 1.4rem; border-radius: 100px; text-decoration: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.nav__cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(184,243,105,0.4); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform 0.3s, opacity 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 8rem 3rem 4rem;
}
.hero__bg-layers { position: absolute; inset: 0; z-index: 0; }
.hero__layer { position: absolute; inset: 0; }
.hero__layer--1 { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(45,106,30,0.3) 0%, transparent 70%); }
.hero__layer--2 { background: radial-gradient(ellipse 60% 60% at 20% 80%, rgba(184,243,105,0.08) 0%, transparent 60%); }
.hero__layer--3 { background: linear-gradient(180deg, transparent 60%, rgba(10,31,2,0.8) 100%); }

.hero__globe-wrap {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 1;
}
.hero__globe {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.globe__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,243,105,0.2);
  animation: globeRotate linear infinite;
}
.globe__ring--1 { width: 100%; height: 100%; animation-duration: 20s; }
.globe__ring--2 { width: 75%; height: 75%; border-color: rgba(184,243,105,0.15); animation-duration: 15s; animation-direction: reverse; }
.globe__ring--3 { width: 50%; height: 50%; border-color: rgba(184,243,105,0.25); animation-duration: 10s; }
@keyframes globeRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.globe__core {
  position: relative; z-index: 2; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(184,243,105,0.3), rgba(45,106,30,0.8));
  border: 2px solid rgba(184,243,105,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(184,243,105,0.2), inset 0 0 40px rgba(184,243,105,0.1);
  animation: globePulse 4s ease-in-out infinite;
}
@keyframes globePulse {
  0%,100% { box-shadow: 0 0 60px rgba(184,243,105,0.2), inset 0 0 40px rgba(184,243,105,0.1); }
  50% { box-shadow: 0 0 100px rgba(184,243,105,0.4), inset 0 0 60px rgba(184,243,105,0.2); }
}
.globe__number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--green-bright); line-height: 1; }
.globe__label { font-family: var(--font-body); font-size: 0.9rem; color: rgba(184,243,105,0.7); letter-spacing: 0.1em; text-transform: uppercase; }
.globe__orbit { position: absolute; border-radius: 50%; animation: orbitSpin linear infinite; }
.globe__orbit--1 { width: 100%; height: 100%; animation-duration: 8s; }
.globe__orbit--2 { width: 75%; height: 75%; animation-duration: 12s; animation-direction: reverse; }
.globe__orbit--3 { width: 50%; height: 50%; animation-duration: 6s; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.globe__dot {
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-bright); box-shadow: 0 0 10px var(--green-bright);
}
.globe__orbit--2 .globe__dot { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.globe__orbit--3 .globe__dot { background: #87CEEB; box-shadow: 0 0 10px #87CEEB; }

.hero__content { position: relative; z-index: 2; max-width: 600px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-bright);
  margin-bottom: 1.5rem; opacity: 0;
  animation: revealUp 0.8s var(--ease-out) 0.2s forwards;
}
.eyebrow__line { flex: 1; max-width: 60px; height: 1px; background: var(--green-bright); opacity: 0.5; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800; line-height: 1.0; color: var(--cream); margin-bottom: 1.5rem;
  opacity: 0; animation: revealUp 0.9s var(--ease-out) 0.3s forwards;
}
.hero__title em { font-style: italic; font-family: var(--font-body); font-weight: 300; color: var(--green-bright); }
.hero__subtitle {
  font-size: 1.15rem; line-height: 1.7; color: rgba(245,240,232,0.7); margin-bottom: 2.5rem;
  opacity: 0; animation: revealUp 0.9s var(--ease-out) 0.45s forwards;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: revealUp 0.9s var(--ease-out) 0.6s forwards;
}
.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero__scroll-hint span {
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(184,243,105,0.5);
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,243,105,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } }

.leaves-container { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.leaf {
  position: absolute; font-size: 1.5rem; opacity: 0;
  animation: leafFall linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
@keyframes leafFall {
  0% { transform: translateY(-50px) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.8; } 90% { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(720deg) translateX(80px); opacity: 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 100px;
  transition: all 0.3s var(--ease-spring); cursor: pointer; border: none;
}
.btn--primary { background: var(--green-bright); color: var(--green-deep); }
.btn--primary:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 40px rgba(184,243,105,0.4); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.3); }
.btn--ghost:hover { background: rgba(245,240,232,0.1); border-color: rgba(245,240,232,0.6); transform: translateY(-2px); }
.btn--large { padding: 1.1rem 2.5rem; font-size: 0.85rem; }

/* ── STATS BAND ── */
.stats-band {
  position: relative; z-index: 2;
  background: rgba(184,243,105,0.06);
  border-top: 1px solid rgba(184,243,105,0.15);
  border-bottom: 1px solid rgba(184,243,105,0.15);
  padding: 2.5rem 3rem;
}
.stats-band__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.stat-item__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--green-bright); line-height: 1; }
.stat-item__number small { font-size: 1.2rem; }
.stat-item__label { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.stat-divider { color: rgba(184,243,105,0.3); font-size: 0.8rem; }

/* ── SECTION COMMONS ── */
.section-tag {
  display: inline-block; font-family: var(--font-display); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-bright); background: rgba(184,243,105,0.1);
  border: 1px solid rgba(184,243,105,0.2); padding: 0.35rem 1rem;
  border-radius: 100px; margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; font-family: var(--font-body); font-weight: 300; color: var(--green-bright); }
.section-subtitle { font-size: 1.1rem; color: rgba(245,240,232,0.6); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ── ABOUT ── */
.about { padding: 8rem 3rem; position: relative; z-index: 2; }
.about__container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about__text p { font-size: 1.1rem; line-height: 1.8; color: rgba(245,240,232,0.75); margin-bottom: 1.2rem; }
.about__text strong { color: var(--green-bright); font-weight: 600; }
.about__text em { color: var(--cream); font-style: italic; }
.about__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tag {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px;
  background: rgba(184,243,105,0.08); border: 1px solid rgba(184,243,105,0.2);
  color: rgba(245,240,232,0.8); transition: all 0.3s;
}
.tag:hover { background: rgba(184,243,105,0.15); border-color: rgba(184,243,105,0.4); transform: translateY(-2px); }

.route-map {
  background: rgba(45,106,30,0.1); border: 1px solid rgba(184,243,105,0.15);
  border-radius: 24px; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.route-map__path { width: 100%; max-width: 280px; }
.route-svg { width: 100%; height: auto; }
.route-path { stroke-dashoffset: 1000; animation: drawPath 3s var(--ease-out) 0.5s forwards; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
.route-dot { animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { r: 8; opacity: 1; } 50% { r: 11; opacity: 0.7; } }
.route-map__legend { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-display); font-size: 0.75rem; color: rgba(245,240,232,0.7); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── CONTINENTS ── */
.continents { padding: 8rem 3rem; position: relative; z-index: 2; background: rgba(0,0,0,0.2); }
.continents__header { text-align: center; margin-bottom: 4rem; }
.continents__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.continent-card {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); padding: 2rem;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s; cursor: default;
}
.continent-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.continent-card--wide {
  grid-column: span 4;
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 1.5rem;
}
.continent-card--wide .continent-card__content ul { columns: 2; gap: 1rem; }
.continent-card__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color1), var(--color2)); z-index: 0;
}
.continent-card__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent 60%);
}
.continent-card__icon {
  position: relative; z-index: 1; font-size: 2.5rem; margin-bottom: 1rem; display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.continent-card--wide .continent-card__icon { font-size: 3.5rem; margin-bottom: 0; align-self: center; }
.continent-card__content { position: relative; z-index: 1; }
.continent-card__tag {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  opacity: 0.8; display: block; margin-bottom: 0.5rem;
}
.continent-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--cream); margin-bottom: 0.8rem; }
.continent-card p { font-size: 0.95rem; line-height: 1.6; color: rgba(245,240,232,0.65); margin-bottom: 1.2rem; }
.continent-card__trees { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.continent-card__trees li { font-size: 0.85rem; color: rgba(245,240,232,0.6); padding-left: 1rem; position: relative; }
.continent-card__trees li::before { content: '→'; position: absolute; left: 0; color: var(--accent); opacity: 0.7; }
.continent-card__trees em { font-style: italic; color: rgba(245,240,232,0.85); }
.continent-card__number {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  color: rgba(255,255,255,0.04); line-height: 1; z-index: 1; pointer-events: none;
}
.continent-card--wide .continent-card__number {
  position: relative; bottom: auto; right: auto;
  font-size: 6rem; color: rgba(255,255,255,0.05); align-self: center;
}

/* ── TREES ── */
.trees { padding: 8rem 3rem; position: relative; z-index: 2; }
.trees__header { text-align: center; margin-bottom: 2.5rem; }
.trees__filter { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  border: 1px solid rgba(184,243,105,0.2); background: transparent;
  color: rgba(245,240,232,0.6); cursor: pointer; transition: all 0.3s var(--ease-out);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-bright); color: var(--green-deep);
  border-color: var(--green-bright); transform: translateY(-2px);
}
.trees__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.tree-card {
  background: rgba(45,106,30,0.08); border: 1px solid rgba(184,243,105,0.1);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s var(--ease-spring);
  display: flex; flex-direction: column;
}
.tree-card:hover {
  transform: translateY(-6px); border-color: rgba(184,243,105,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3); background: rgba(45,106,30,0.15);
}
.tree-card.hidden { display: none; }
.tree-card__emoji { font-size: 3rem; padding: 1.5rem 1.5rem 0.5rem; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.tree-card__body { padding: 0.5rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tree-card__continent {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 100px;
  display: inline-block; margin-bottom: 0.8rem; width: fit-content;
}
.tree-card__continent.america { background: rgba(184,243,105,0.15); color: #B8F369; }
.tree-card__continent.asia { background: rgba(255,215,0,0.15); color: #FFD700; }
.tree-card__continent.africa { background: rgba(221,160,221,0.15); color: #DDA0DD; }
.tree-card__continent.oceania { background: rgba(255,140,66,0.15); color: #FF8C42; }
.tree-card__continent.europa { background: rgba(135,206,235,0.15); color: #87CEEB; }
.tree-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 0.2rem; }
.tree-card__scientific { font-size: 0.85rem; color: rgba(245,240,232,0.45); margin-bottom: 0.8rem; font-style: italic; }
.tree-card__desc { font-size: 0.95rem; line-height: 1.6; color: rgba(245,240,232,0.65); flex: 1; margin-bottom: 1rem; }
.tree-card__uses { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tree-card__uses span {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 500;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.6);
}

/* ── HISTORY ── */
.history { padding: 8rem 3rem; position: relative; z-index: 2; background: rgba(0,0,0,0.15); }
.history__container { max-width: 900px; margin: 0 auto; }
.history__timeline { text-align: center; margin-bottom: 4rem; }
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,243,105,0.3) 10%, rgba(184,243,105,0.3) 90%, transparent);
  transform: translateX(-50%);
}
.timeline__item {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: center; padding: 1.5rem 0;
}
.timeline__item:nth-child(odd) .timeline__year { order: 1; text-align: right; }
.timeline__item:nth-child(odd) .timeline__content { order: 3; }
.timeline__item:nth-child(even) .timeline__year { order: 3; text-align: left; }
.timeline__item:nth-child(even) .timeline__content { order: 1; text-align: right; }
.timeline__year {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--green-bright); white-space: nowrap; position: relative;
}
.timeline__year::after {
  content: ''; position: absolute; top: 50%;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-bright); box-shadow: 0 0 20px rgba(184,243,105,0.5);
  transform: translateY(-50%);
}
.timeline__item:nth-child(odd) .timeline__year::after { right: -2.5rem; }
.timeline__item:nth-child(even) .timeline__year::after { left: -2.5rem; }
.timeline__content h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.timeline__content p { font-size: 0.95rem; line-height: 1.6; color: rgba(245,240,232,0.6); }

/* ── VISIT ── */
.visit { padding: 8rem 3rem; position: relative; z-index: 2; }
.visit__header { text-align: center; margin-bottom: 4rem; }
.visit__grid {
  max-width: 1100px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.visit-card {
  background: rgba(45,106,30,0.08); border: 1px solid rgba(184,243,105,0.1);
  border-radius: 20px; padding: 2rem; transition: all 0.4s var(--ease-spring);
}
.visit-card:hover { transform: translateY(-6px); border-color: rgba(184,243,105,0.25); background: rgba(45,106,30,0.15); }
.visit-card__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.visit-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--green-bright); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.visit-card__info p { font-size: 0.95rem; line-height: 1.6; color: rgba(245,240,232,0.7); margin-bottom: 0.8rem; }
.visit-card__info strong { color: var(--cream); }
.visit-card__note { font-size: 0.8rem !important; color: rgba(184,243,105,0.6) !important; font-style: italic; }
.visit__cta { text-align: center; }

/* ── FOOTER ── */
.footer { position: relative; z-index: 2; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(184,243,105,0.1); padding: 3rem; }
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__leaf { font-size: 2rem; }
.footer__brand strong { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--cream); display: block; }
.footer__brand p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
.footer__quote { font-size: 1rem; color: rgba(184,243,105,0.5); font-style: italic; }
.footer__copy { font-family: var(--font-display); font-size: 0.72rem; color: rgba(245,240,232,0.3); letter-spacing: 0.05em; }

/* ── ANIMATIONS ── */
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .continents__grid { grid-template-columns: repeat(2, 1fr); }
  .continent-card--wide { grid-column: span 2; }
  .visit__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__globe-wrap { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero__title { font-size: 3rem; }
  .about { padding: 5rem 1.5rem; }
  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .continents { padding: 5rem 1.5rem; }
  .continents__grid { grid-template-columns: 1fr; }
  .continent-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .continent-card--wide .continent-card__trees { columns: 1; }
  .trees { padding: 5rem 1.5rem; }
  .history { padding: 5rem 1.5rem; }
  .timeline::before { left: 20px; }
  .timeline__item { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem 0 1rem 3rem; }
  .timeline__item:nth-child(odd) .timeline__year,
  .timeline__item:nth-child(even) .timeline__year { order: 1; text-align: left; }
  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content { order: 2; text-align: left; }
  .timeline__year::after { left: -2.5rem !important; right: auto !important; }
  .visit { padding: 5rem 1.5rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .stats-band { padding: 2rem 1.5rem; }
  .stats-band__inner { gap: 1rem; }
  .stat-divider { display: none; }
}