:root {
  --bg: #0f0f0f;
  --bg-warm: #1a1510;
  --fg: #f5f0e8;
  --fg-muted: #a89f90;
  --accent: #e8652a;
  --accent-glow: #ff7f3f;
  --earth: #c2956b;
  --earth-dark: #3d2e1f;
  --slate: #2a2520;
  --card-bg: #1e1a15;
  --border: #3a332a;
}

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

html { scroll-behavior: smooth; }

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232, 101, 42, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(194, 149, 107, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
}

.hero h1 .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--earth);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === HOW IT WORKS === */
.how {
  background: var(--bg-warm);
  padding: 120px 40px;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--earth);
  margin-bottom: 20px;
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 64px;
}

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

.how-step {
  border-top: 2px solid var(--border);
  padding-top: 24px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FEATURES === */
.features {
  padding: 120px 40px;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-right {
  direction: rtl;
}

.feature-right > * {
  direction: ltr;
}

.feature-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--earth);
  margin-bottom: 16px;
}

.feature-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.condition-card,
.itinerary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.condition-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.condition-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.condition-title {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.condition-detail {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.itinerary-header {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--earth);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.itinerary-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.itinerary-day {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 36px;
}

.itinerary-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  background: var(--bg-warm);
  padding: 140px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta-btn:hover { opacity: 0.88; }

.cta-note {
  display: block;
  color: var(--fg-muted);
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 40px;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .how {
    padding: 80px 24px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .features {
    padding: 80px 24px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-right {
    direction: ltr;
  }

  .feature-block {
    margin-bottom: 80px;
  }

  .closing {
    padding: 80px 24px;
  }

  .site-footer {
    padding: 36px 24px;
  }
}