:root {
  --bg-deep: #0a1208;
  --bg-main: #0f1a0d;
  --bg-card: #162213;
  --bg-elevated: #1c2e18;
  --fg-primary: #e8ead8;
  --fg-secondary: #9ca88e;
  --fg-muted: #5e6b52;
  --accent: #c8a44e;
  --accent-glow: #d4b35a;
  --accent-dim: rgba(200, 164, 78, 0.15);
  --border: rgba(156, 168, 142, 0.12);
  --radius: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10vw 60px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200, 164, 78, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(22, 34, 19, 0.8) 0%, transparent 50%),
    linear-gradient(175deg, var(--bg-deep) 0%, #0d160a 40%, #111e0e 100%);
}

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

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg-primary);
  margin-bottom: 32px;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 560px;
}

.hero-stat-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ====== HERO CTA ====== */
.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a1208;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--accent-glow); }

/* ====== FEATURES ====== */
.features {
  padding: 120px 10vw;
  background: var(--bg-main);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(200, 164, 78, 0.25);
}

.feature-large {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-secondary);
}

/* ====== DESTINATIONS ====== */
.destinations {
  padding: 120px 10vw;
  background: var(--bg-deep);
}

.dest-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.dest-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--fg-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.dest-intro {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

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

.dest-item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.dest-item:first-child { border-top: 1px solid var(--border); }

.dest-region {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 140px;
  flex-shrink: 0;
}

.dest-places {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  letter-spacing: 0.01em;
}

/* Landing page destination links */
.dest-place-link {
  color: var(--fg-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.dest-place-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(200, 164, 78, 0.5);
}

.dest-view-all {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.dest-view-all:hover { color: var(--accent-glow); }

/* ====== CLOSING ====== */
.closing {
  padding: 140px 10vw;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 164, 78, 0.04) 0%, transparent 60%),
    var(--bg-main);
}

.closing-content {
  max-width: 720px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--fg-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-secondary);
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 48px 10vw;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fg-primary);
}

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

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-dot { opacity: 0.4; }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero { padding: 100px 7vw 48px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stat-bar { flex-wrap: wrap; gap: 20px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }
  .features { padding: 80px 7vw; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: 1; }
  .destinations { padding: 80px 7vw; }
  .dest-item { flex-direction: column; gap: 8px; }
  .dest-region { min-width: auto; }
  .closing { padding: 80px 7vw; }
  .footer-content { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; gap: 4px; align-items: center; }
  .footer-meta { flex-direction: column; gap: 4px; }
  .footer-dot { display: none; }
}