@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --forest: #0f2318;
  --forest2: #1c3d28;
  --gold: #c8a84b;
  --gold2: #e8c96a;
  --cream: #fdfaf5;
  --sand: #f5f0e8;
  --muted: #7a8c7d;
  --dark: #080f0b;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --nav-h: 72px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--forest); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(15,35,24,.97);
  box-shadow: 0 1px 0 rgba(200,168,75,.1);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--cream); white-space: nowrap;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(253,250,245,.6); transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-sw {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(253,250,245,.4); border: 1px solid rgba(253,250,245,.2);
  padding: .3rem .65rem; transition: all .3s;
}
.lang-sw:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--forest);
  padding: .55rem 1.3rem; font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s;
}
.nav-cta:hover { background: var(--gold2); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--forest);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(45,106,64,.4) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(28,61,40,.5) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: #6db56e; display: block; }
.hero-desc {
  font-size: 1rem; line-height: 1.8;
  color: rgba(253,250,245,.6); max-width: 500px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute; right: 4rem; bottom: 3rem;
  display: flex; gap: 2.5rem;
}
.stat-n {
  font-family: var(--serif); font-size: 2rem;
  color: var(--gold); line-height: 1;
}
.stat-l {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(253,250,245,.3); margin-top: .2rem;
}

/* ── BOUTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: .85rem 2rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .3s;
}
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(253,250,245,.3);
}
.btn-ghost:hover { border-color: var(--cream); }
.btn-outline {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-outline-light {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(253,250,245,.4);
}
.btn-outline-light:hover { background: rgba(253,250,245,.08); }

/* ── INTRO BAND ────────────────────────────────────────────── */
.intro-band {
  background: var(--forest2);
  padding: 2rem 4rem;
  border-top: 1px solid rgba(200,168,75,.08);
}
.intro-band p {
  font-size: .9rem; line-height: 1.8;
  color: rgba(253,250,245,.5); max-width: 600px;
}

/* ── SECTION GÉNÉRIQUE ─────────────────────────────────────── */
.section { padding: 6rem 4rem; }
.section-tag {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: #2d6a40; margin-bottom: .8rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: #2d6a40; }
.section-tag.gold { color: var(--gold); }
.section-tag.gold::before { background: var(--gold); }
.section-tag.center { justify-content: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--forest);
}
.section-title em { font-style: italic; color: #2d6a40; }
.section-title.light { color: var(--cream); }
.section-title.light em { color: #6db56e; }
.section-title.center { text-align: center; }
.section-sub {
  font-size: .9rem; line-height: 1.8;
  color: var(--muted); margin-top: .6rem;
}
.section-sub.light { color: rgba(253,250,245,.5); }
.section-sub.center { text-align: center; }

/* ── COMMENT ÇA MARCHE ─────────────────────────────────────── */
.how { background: var(--cream); }
.how-header { margin-bottom: 3rem; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.how-step { padding: 2rem; background: var(--sand); }
.how-step-num {
  font-family: var(--serif); font-size: 2.5rem;
  color: rgba(200,168,75,.3); line-height: 1; margin-bottom: 1rem;
}
.how-step h3 { font-size: .95rem; font-weight: 500; color: var(--forest); margin-bottom: .5rem; }
.how-step p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── DESTINATIONS ──────────────────────────────────────────── */
.destinations { background: var(--forest); }
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 3rem; background: rgba(200,168,75,.1);
}
.dest-card {
  background: var(--forest); padding: 2rem;
  display: block; position: relative; overflow: hidden;
  transition: background .3s;
}
.dest-card:hover { background: var(--forest2); }
.dest-card:hover .dest-arrow { opacity: 1; transform: translateX(0); }
.dest-num {
  font-family: var(--serif); font-size: 3rem;
  color: rgba(200,168,75,.1); line-height: 1; margin-bottom: .3rem;
}
.dest-tag {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.dest-name {
  font-family: var(--serif); font-size: 1.25rem;
  color: var(--cream); margin-bottom: .5rem;
}
.dest-card p { font-size: .82rem; color: rgba(253,250,245,.4); line-height: 1.6; }
.dest-arrow {
  position: absolute; top: 2rem; right: 2rem;
  color: var(--gold); font-size: 1rem;
  opacity: 0; transform: translateX(-6px); transition: all .3s;
}
.dest-cta { text-align: center; margin-top: 3rem; }

/* ── STORIES ───────────────────────────────────────────────── */
.stories { background: var(--dark); position: relative; }
.stories::before {
  content: ''; position: absolute; top: 0; left: 4rem; right: 4rem;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stories-header { text-align: center; margin-bottom: 3rem; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.story-card { display: block; }
.story-visual {
  height: 220px; margin-bottom: 1.2rem;
  position: relative; overflow: hidden;
}
.story-bg-1 { background: linear-gradient(145deg, #061209, #1c4a26); }
.story-bg-2 { background: linear-gradient(145deg, #031520, #1565a0); }
.story-bg-3 { background: linear-gradient(145deg, #1a0a00, #7c4a00); }
.story-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.story-label {
  position: absolute; bottom: 1rem; left: 1.2rem;
  font-family: var(--serif); font-size: 1rem;
  color: #fff; font-style: italic;
}
.story-meta {
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
}
.story-card h3 {
  font-family: var(--serif); font-size: 1rem;
  color: var(--cream); line-height: 1.35; margin-bottom: .5rem;
}
.story-card p { font-size: .82rem; color: rgba(253,250,245,.4); line-height: 1.6; }
.story-read {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: #6db56e; margin-top: .6rem; display: inline-block;
  transition: color .3s;
}
.story-card:hover .story-read { color: var(--gold); }
.stories-cta { text-align: center; margin-top: 3rem; }

/* ── CTA SUR MESURE ────────────────────────────────────────── */
.cta-section {
  background: var(--gold); padding: 5rem 4rem;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--forest); margin-bottom: .8rem;
}
.cta-section h2 em { font-style: italic; }
.cta-section p {
  font-size: .9rem; color: rgba(15,35,24,.6);
  line-height: 1.75; max-width: 500px;
  margin: 0 auto 2rem;
}
.cta-section .btn-gold {
  background: var(--forest); color: var(--cream);
}
.cta-section .btn-gold:hover { background: var(--forest2); }
.cta-note {
  font-size: .72rem; color: rgba(15,35,24,.4);
  margin-top: 1rem; letter-spacing: .05em;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 4rem 4rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--cream); display: block; margin-bottom: .8rem;
}
.footer-desc { font-size: .8rem; color: rgba(253,250,245,.25); line-height: 1.7; }
.footer-col h4 {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .8rem; color: rgba(253,250,245,.3); transition: color .3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(253,250,245,.05);
  padding-top: 1.5rem; font-size: .72rem;
  color: rgba(253,250,245,.2);
}

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 2rem; }
  .hero { padding: calc(var(--nav-h) + 3rem) 2rem 3rem; }
  .hero-stats { position: static; margin-top: 3rem; }
  .section { padding: 4rem 2rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .intro-band { padding: 2rem; }
  .cta-section { padding: 4rem 2rem; }
  .footer { padding: 3rem 2rem 2rem; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--forest); padding: 2rem 1.5rem;
    gap: 1.2rem; border-top: 1px solid rgba(200,168,75,.1);
  }
  .nav.open .nav-cta {
    display: block; text-align: center; margin-top: .5rem;
  }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  .section { padding: 3rem 1.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 3rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .stories::before { left: 1.5rem; right: 1.5rem; }
}
