/* ============================================================
   LUDIVINE GUIDE VEGVISIR — style.css
   ============================================================ */

:root {
  --noir-polaire:   #0A0E1A;
  --bleu-nuit:      #0D1B2A;
  --vert-aurore:    #2D6A4F;
  --vert-clair:     #52B788;
  --or-viking:      #C9A84C;
  --blanc-neige:    #F0F4F8;
  --gris-brume:     #8896A8;

  --gradient-brand: linear-gradient(135deg, var(--vert-aurore) 0%, var(--or-viking) 100%);
  --glow-vert:      0 0 60px rgba(45,106,79,0.15);
  --glow-or:        0 0 40px rgba(201,168,76,0.18);

  --nav-h: 72px;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--noir-polaire);
  color: var(--blanc-neige);
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--or-viking);
  color: var(--noir-polaire);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--noir-polaire); }
::-webkit-scrollbar-thumb { background: var(--vert-aurore); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  letter-spacing: .03em;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--or-viking);
  font-weight: 700;
  margin-bottom: .75rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}

.site-header.scrolled {
  background: rgba(10,14,26,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201,168,76,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 42px; height: 42px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--or-viking);
  background: #fff;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--blanc-neige);
  line-height: 1.3;
}

.nav-logo-text em {
  display: block;
  font-style: normal;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--or-viking);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a,
.nav-links button {
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blanc-neige);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem 0;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--or-viking);
  transition: width .3s;
}
.nav-links > a:hover::after,
.nav-links > a.active::after { width: 100%; }
.nav-links > a:hover { color: var(--or-viking); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > button::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--or-viking);
  transition: width .3s;
}
.nav-dropdown:hover > button::after { width: 100%; }
.nav-dropdown:hover > button { color: var(--or-viking); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10,16,28,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: .6rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .25s;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-menu a,
.nav-dropdown-menu span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.25rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gris-brume);
  transition: color .2s, background .2s;
  position: relative;
}
.nav-dropdown-menu a:hover {
  color: var(--or-viking);
  background: rgba(201,168,76,.05);
}
.nav-dropdown-menu span { cursor: default; }

.badge-soon {
  font-size: .58rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--or-viking);
  padding: .1rem .45rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .15rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 50px;
  padding: .18rem .3rem;
}

.lang-btn {
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  padding: .12rem .25rem !important;
  border-radius: 50px !important;
  transition: transform .2s, filter .2s !important;
  line-height: 1 !important;
  filter: grayscale(.35) opacity(.7);
}

.lang-btn.active {
  background: transparent !important;
  color: inherit !important;
  filter: grayscale(0) opacity(1);
  transform: scale(1.18);
}

.lang-btn:hover {
  filter: grayscale(0) opacity(.9);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  width: 40px;
  height: 40px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blanc-neige);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8,12,22,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  display: none;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--blanc-neige);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--or-viking); }

.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.nav-mobile-sub span {
  font-family: 'Raleway', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or-viking);
  margin-bottom: .25rem;
}

.nav-mobile-sub a {
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--gris-brume);
}

.nav-mobile-lang {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}

.nav-mobile-lang button {
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gris-brume);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .4rem 1.25rem;
  cursor: pointer;
  transition: all .2s;
}
.nav-mobile-lang button.active {
  background: var(--or-viking);
  border-color: var(--or-viking);
  color: var(--noir-polaire);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,26,.25) 0%,
    rgba(10,14,26,.45) 40%,
    rgba(10,14,26,.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 1.5rem;
  animation: fadeUp .9s ease-out both;
}

.hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--or-viking);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--blanc-neige);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 50px rgba(0,0,0,.6);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  color: rgba(240,244,248,.82);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gradient-brand);
  color: var(--noir-polaire);
  padding: .9rem 2.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(45,106,79,.4);
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(45,106,79,.55);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(240,244,248,.4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

.hero-sm {
  height: 65vh;
  min-height: 420px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-alt { background: var(--bleu-nuit); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--gris-brume);
  font-size: 1.02rem;
}

/* ============================================================
   DESTINATIONS CARDS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  display: block;
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.dest-card:hover img { transform: scale(1.07); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,14,26,.95) 0%,
    rgba(10,14,26,.2) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  transition: background .35s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top,
    rgba(10,14,26,.97) 0%,
    rgba(10,14,26,.4) 55%,
    rgba(45,106,79,.08) 100%
  );
}

.dest-card-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or-viking);
  font-weight: 700;
  margin-bottom: .4rem;
}

.dest-card h3 {
  font-size: 1.45rem;
  color: var(--blanc-neige);
  margin-bottom: .6rem;
}

.dest-card-desc {
  font-size: .82rem;
  color: rgba(240,244,248,.72);
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vert-clair);
  transition: gap .25s, color .2s;
}
.dest-card:hover .dest-card-link {
  gap: .65rem;
  color: var(--or-viking);
}

.dest-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(10,14,26,.7);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--or-viking);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .65rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.dest-card.coming-soon { cursor: default; }
.dest-card.coming-soon img { filter: grayscale(.6) brightness(.55); }

/* ============================================================
   ARGUMENTS
   ============================================================ */
.args-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.arg-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.arg-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-5px);
  box-shadow: var(--glow-or);
}

.arg-icon { font-size: 2.5rem; display: block; margin-bottom: 1.25rem; }

.arg-card h3 {
  font-size: 1rem;
  color: var(--or-viking);
  margin-bottom: .75rem;
}

.arg-card p {
  font-size: .875rem;
  color: var(--gris-brume);
  line-height: 1.65;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg,
    rgba(45,106,79,.12) 0%,
    rgba(201,168,76,.08) 100%
  );
  border-top: 1px solid rgba(45,106,79,.18);
  border-bottom: 1px solid rgba(45,106,79,.18);
  padding: 5.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--gris-brume);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gradient-brand);
  color: var(--noir-polaire);
  padding: .9rem 2.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(45,106,79,.4);
  font-family: 'Raleway', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(45,106,79,.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--blanc-neige);
  padding: .9rem 2.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid rgba(240,244,248,.2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: 'Raleway', sans-serif;
}
.btn-ghost:hover {
  border-color: var(--or-viking);
  color: var(--or-viking);
}

/* ============================================================
   GALLERY / LIGHTBOX
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  color: var(--gris-brume);
  padding: .5rem 1.35rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Raleway', sans-serif;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--or-viking);
  border-color: var(--or-viking);
  color: var(--noir-polaire);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  outline: none;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg {
  width: 44px; height: 44px;
  color: var(--blanc-neige);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,8,15,.97);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.8);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 1.75rem;
  color: rgba(240,244,248,.7);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
  z-index: 2001;
}
.lightbox-close:hover { color: var(--or-viking); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--blanc-neige);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2001;
  font-size: 1.2rem;
}
.lightbox-prev { left: -68px; }
.lightbox-next { right: -68px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(201,168,76,.18);
  border-color: rgba(201,168,76,.3);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--gris-brume);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
}
.about-text p:first-of-type {
  font-size: 1.12rem;
  color: var(--blanc-neige);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--or-viking);
  display: block;
  margin-bottom: .25rem;
  line-height: 1;
}

.stat-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-brume);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--gradient-brand);
  z-index: -1;
  opacity: .35;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Full bio page */
.bio-section p {
  color: var(--gris-brume);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.bio-section p:first-of-type {
  font-size: 1.2rem;
  color: var(--blanc-neige);
}

/* ============================================================
   DESTINATION PAGE
   ============================================================ */
.dest-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dest-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.dest-intro-text p {
  color: var(--gris-brume);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.dest-highlights {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.dest-highlights h3 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or-viking);
  margin-bottom: 1.25rem;
}

.dest-highlights li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
  color: var(--gris-brume);
}
.dest-highlights li:last-child { border-bottom: none; }

.dest-highlight-icon {
  color: var(--or-viking);
  flex-shrink: 0;
  margin-top: .05rem;
  font-size: .85rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--gris-brume);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius);
  color: var(--blanc-neige);
  transition: border-color .2s, background .2s;
}
.contact-link:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.04);
}

.contact-link-icon {
  width: 42px; height: 42px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-link-label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris-brume);
  display: block;
  margin-bottom: .15rem;
}

.contact-link-value {
  font-size: .9rem;
  font-weight: 600;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-title {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--or-viking);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gris-brume);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--blanc-neige);
  font-family: 'Raleway', sans-serif;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--vert-clair);
  background: rgba(82,183,136,.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,150,168,.45); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%238896A8' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--bleu-nuit); color: var(--blanc-neige); }

/* Checkboxes */
.checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--vert-clair);
  cursor: pointer;
}
.checkbox-item span {
  font-size: .88rem;
  color: var(--gris-brume);
}

.hp-field { display: none !important; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; color: var(--vert-clair); margin-bottom: .75rem; }
.form-success p { color: var(--gris-brume); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #070A13;
  border-top: 1px solid rgba(201,168,76,.07);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--gris-brume);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 1rem;
}

.footer-nav h4,
.footer-legal h4 {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or-viking);
  margin-bottom: 1.25rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-nav a,
.footer-legal a {
  font-size: .85rem;
  color: var(--gris-brume);
  transition: color .2s;
}
.footer-nav a:hover,
.footer-legal a:hover { color: var(--blanc-neige); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p,
.footer-credit {
  font-size: .75rem;
  color: rgba(136,150,168,.55);
}
.footer-credit a {
  color: var(--or-viking);
  transition: color .2s;
}
.footer-credit a:hover { color: var(--vert-clair); }

/* ============================================================
   WHATSAPP
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  animation: pulseWA 2.5s ease-in-out infinite;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulseWA {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,.75); }
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-bg { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
  .dest-intro { grid-template-columns: 1fr; }
  .dest-highlights { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .checkboxes-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .args-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

:focus-visible {
  outline: 2px solid var(--or-viking);
  outline-offset: 3px;
  border-radius: 3px;
}
