:root{
  --green:#0F2D1E;
  --black:#0A0A0A;
  --beige:#D8C3A5;
  --gold:#C8A14D;
  --white:#F8F8F8;
  --gray:#CFCFCF;
  --glass:rgba(255,255,255,0.06);
  --glass-border:rgba(255,255,255,0.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.6;
}

/* GLOBAL */
.container{
  width:min(1200px,90%);
  margin:auto;
}

.section{
  padding:120px 0;
  position:relative;
  z-index:2;
}

h1,h2,h3{
  line-height:1.1;
}

h1,h2{
  font-family:'Cormorant Garamond',serif;
}

h1{
  font-size:clamp(3rem,8vw,6rem);
  font-weight:700;
}

h2{
  font-size:clamp(2.4rem,5vw,4rem);
  margin-bottom:20px;
}

h3{
  font-size:1.35rem;
}

p{
  color:var(--gray);
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.8rem;
  margin-bottom:18px;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

/* BACKGROUND FX */
.ambient-bg{
  position:fixed;
  inset:0;
  z-index:-5;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,161,77,0.10), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(15,45,30,0.45), transparent 35%),
    linear-gradient(180deg,#0A0A0A,#08110d 70%,#0A0A0A);
}

.mist{
  position:fixed;
  width:500px;
  height:500px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-4;
  opacity:.12;
}

.mist-1{
  background:#0f6f44;
  top:5%;
  left:-10%;
}

.mist-2{
  background:#c8a14d;
  bottom:10%;
  right:-10%;
}

/* HERO */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:2rem;
  overflow:hidden;

  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1604537466158-719b1972feb8?auto=format&fit=crop&w=2000&q=80');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, transparent 10%, rgba(0,0,0,.75));
}

.hero-content{
  max-width:950px;
  z-index:2;
  position:relative;
}

.hero-subtext{
  max-width:750px;
  margin:30px auto;
  font-size:1.15rem;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:35px;
}

.btn{
  padding:16px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:.35s ease;
  position:relative;
}

.btn.primary{
  background:linear-gradient(135deg,var(--gold),#e2c37f);
  color:#111;
  box-shadow:0 10px 30px rgba(200,161,77,.35);
}

.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(200,161,77,.5);
}

.btn.secondary{
  border:1px solid rgba(255,255,255,.2);
  color:white;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}

.btn.secondary:hover{
  background:rgba(255,255,255,.1);
}

.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  width:2px;
  height:60px;
  background:linear-gradient(transparent,var(--gold),transparent);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%,100%{opacity:.3;}
  50%{opacity:1;}
}

/* PARTICLES */
.particles::before,
.particles::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size:60px 60px;
  animation:floatParticles 30s linear infinite;
}

@keyframes floatParticles{
  from{transform:translateY(0);}
  to{transform:translateY(-100px);}
}

/* FEATURES */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.glass-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  padding:35px;
  border-radius:24px;
  backdrop-filter:blur(20px);
  transition:.4s ease;
  box-shadow:0 10px 40px rgba(0,0,0,.3);
}

.glass-card:hover{
  transform:translateY(-10px);
  border-color:rgba(200,161,77,.4);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.glass-card h3{
  margin-bottom:15px;
}

/* DESTINATIONS */
.destination-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.destination-card{
  min-height:280px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:25px;
  font-size:1.3rem;
  font-weight:600;
  background:
    linear-gradient(to top, rgba(0,0,0,.8), transparent),
    url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1000&q=80');
  background-size:cover;
  background-position:center;
  transition:.4s ease;
}

.destination-card:hover{
  transform:scale(1.04);
}

/* STORY */
.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.story-image{
  min-height:500px;
  border-radius:28px;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1561484930-998b6a7b22e8?auto=format&fit=crop&w=1200&q=80');
  background-size:cover;
  background-position:center;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

/* TIMELINE */
.timeline{
  text-align:center;
}

.glow-divider{
  width:180px;
  height:2px;
  margin:30px auto;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  box-shadow:0 0 25px var(--gold);
}

/* FOOTER */
.footer{
  padding:50px 0;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.socials{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.socials a{
  color:var(--gray);
  text-decoration:none;
  transition:.3s;
}

.socials a:hover{
  color:var(--gold);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:992px){
  .feature-grid,
  .destination-grid,
  .story-grid{
    grid-template-columns:1fr;
  }

  .story-image{
    min-height:400px;
  }
}

@media(max-width:768px){
  .section{
    padding:80px 0;
  }

  .hero{
    background-attachment:scroll;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:320px;
    text-align:center;
  }
}