/* ================================================
   ALPSLIGO — STYLESHEET
   Kenya × Suisse · Luxury Travel
   ================================================ */

:root {
  --gold: #C8973E;
  --gold-light: #e8b96a;
  --gold-dark: #9a7020;
  --gold-ultra: #fdf5e4;
  --green-deep: #0D1F17;
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --sunset: #C85A2A;
  --sand: #F5E6D0;
  --sand-dark: #e8d4b4;
  --cream: #FBF7F0;
  --white: #ffffff;
  --black: #080d09;
  --gray-100: #f4f1ec;
  --gray-200: #e8e2d8;
  --gray-300: #cfc7b8;
  --gray-500: #8a7f6e;
  --gray-700: #4a4238;
  --gray-900: #1a1510;
  --font: 'Inter', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --shadow: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --shadow-xl: 0 24px 72px rgba(0,0,0,.22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --t: 0.28s cubic-bezier(.4,0,.2,1);
}

/* =============== RESET =============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-900); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* =============== LOADER =============== */
.loader {
  position: fixed; inset: 0;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(200,151,62,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* =============== TYPOGRAPHY =============== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 1.5rem;
}
.label-tag::before,
.label-tag::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 1rem; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.label-tag::before { left: 0; }
.label-tag::after { right: 0; }
.label-tag.light { color: rgba(200,151,62,0.85); }
.label-tag.light::before, .label-tag.light::after { background: rgba(200,151,62,0.5); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--sand); }
.section-title.light em { color: var(--gold-light); }
.section-desc { font-size: 1rem; color: var(--gray-500); margin-top: 0.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-desc.light { color: rgba(245,230,208,0.7); }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.04em;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,151,62,.35);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--sand);
  border-color: rgba(245,230,208,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(245,230,208,0.6);
}
.btn-large { padding: 1rem 2.2rem; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn-nav-cta {
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--t);
  letter-spacing: 0.04em;
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,151,62,.3);
}

/* =============== HEADER =============== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s ease;
}
.header.scrolled {
  background: rgba(13,31,23,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--sand);
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-left: 0.2rem;
  margin-top: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245,230,208,0.8);
  border-radius: 4px;
  transition: all var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-size: 0.82rem;
  color: rgba(245,230,208,0.5);
  font-weight: 500;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--sand); border-radius: 2px;
  transition: all 0.3s;
}

/* =============== HERO =============== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-canvas {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,31,23,0.85) 0%,
    rgba(13,31,23,0.5) 50%,
    rgba(13,31,23,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 5rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); opacity: 0.9;
  margin-bottom: 1.5rem;
}
.eyebrow-flag { font-size: 1rem; }
.eyebrow-divider { opacity: 0.4; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--sand);
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245,230,208,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 580px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,151,62,0.15);
  border-radius: 8px;
  padding: 1rem 0;
  display: inline-flex;
}
.hstat {
  padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center;
}
.hstat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.hstat span { font-size: 0.72rem; color: rgba(245,230,208,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.hstat-sep { width: 1px; height: 40px; background: rgba(200,151,62,0.2); }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(245,230,208,0.4); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,230,208,0.4), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* =============== DESTINATIONS =============== */
.destinations {
  padding: 7rem 0;
  background: var(--cream);
}
.destinations-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.dest-card.dest-main {
  grid-row: 1 / 3;
  display: flex; flex-direction: column;
}
.dest-card.dest-main .dest-visual { height: 300px; }
.dest-visual {
  height: 180px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1a0d05;
}
.dest-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Destination themes — background-image set via inline style in HTML */
.masai-mara, .diani, .amboseli, .samburu, .laikipia, .mombasa {
  background-color: #1a0d05;
}

.dest-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dest-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.dest-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}
.dest-info p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.dest-meta {
  display: flex; flex-direction: column; gap: 0.2rem;
  font-size: 0.76rem; color: var(--gray-500);
  margin: 0.75rem 0;
}
.dest-link {
  font-size: 0.83rem; font-weight: 600;
  color: var(--gold);
  transition: color var(--t);
}
.dest-link:hover { color: var(--gold-dark); }

/* =============== VOYAGES =============== */
.voyages { padding: 7rem 0; }
.voyages-bg {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.voyages-bg::before {
  content: 'KENYA';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,62,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,151,62,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,151,62,0.3), 0 12px 48px rgba(0,0,0,.5);
}
.package-visual {
  height: 220px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #0d1a10;
}
/* Package visuals — background-image set via inline style in HTML */
.pkg-mara, .pkg-safari-beach, .pkg-diani, .pkg-luxury, .pkg-famille {
  background-color: #0d1a10;
  background-size: cover;
  background-position: center;
}

.pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  z-index: 2;
}
.pkg-badge.gold { background: var(--gold); color: var(--green-deep); }
.pkg-badge.blue { background: #4ab8d4; color: #0a2a3d; }
.pkg-badge.dark { background: rgba(255,255,255,0.1); color: var(--gold); border: 1px solid var(--gold); }
.pkg-badge.green { background: #8bc34a; color: #1a2a0a; }
.pkg-icon { font-size: 2.5rem; position: relative; z-index: 2; padding-bottom: 1rem; }
.package-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkg-duration {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.package-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--sand); margin-bottom: 0.6rem;
  line-height: 1.25;
}
.package-body p { font-size: 0.85rem; color: rgba(245,230,208,0.6); line-height: 1.65; flex: 1; }
.pkg-highlights {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin: 1rem 0;
}
.pkg-highlights span { font-size: 0.78rem; color: rgba(245,230,208,0.7); }
.pkg-footer {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(200,151,62,0.1);
}
.pkg-price { display: flex; align-items: baseline; gap: 0.3rem; flex-wrap: wrap; }
.price-from { font-size: 0.72rem; color: var(--gold); opacity: 0.6; }
.price-amount { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); font-weight: 600; }
.price-pp { font-size: 0.7rem; color: rgba(200,151,62,0.5); }

/* Custom package card */
.package-custom {
  background: rgba(200,151,62,0.06);
  border-color: rgba(200,151,62,0.3);
  padding: 2rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  justify-content: center;
}
.custom-icon {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.package-custom h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--sand); line-height: 1.2;
}
.package-custom p { font-size: 0.88rem; color: rgba(245,230,208,0.6); line-height: 1.65; }
.custom-list {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.custom-list li {
  font-size: 0.83rem;
  color: rgba(245,230,208,0.7);
  padding-left: 1.2rem;
  position: relative;
}
.custom-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
}

/* =============== EXPÉRIENCES =============== */
.experiences { padding: 7rem 0; background: var(--cream); }
.exp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.exp-item {}
.exp-item.exp-large:first-child { grid-row: 1 / 3; }
.exp-item.exp-large:last-child { grid-column: 2 / 4; }
.exp-visual {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex; align-items: flex-end;
  cursor: pointer;
  transition: transform var(--t);
  background-size: cover;
  background-position: center;
  background-color: #0d1a10;
}
.exp-visual:hover { transform: scale(1.02); }

/* Exp color themes — background-image set via inline style in HTML */
.exp-migration, .exp-balloon, .exp-maasai,
.exp-sundowner, .exp-diving, .exp-bush-walk {
  background-color: #0d1a10;
  background-size: cover;
  background-position: center;
}

.exp-content {
  position: relative; z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 80%);
  width: 100%;
}
.exp-num {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 0.3rem;
}
.exp-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--sand); margin-bottom: 0.3rem;
}
.exp-content p { font-size: 0.8rem; color: rgba(245,230,208,0.65); line-height: 1.55; }

/* =============== POURQUOI =============== */
.pourquoi {
  padding: 7rem 0;
  background: var(--green-deep);
}
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.pourquoi-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--sand); line-height: 1.2;
  margin-bottom: 1.25rem;
}
.pourquoi-title em { color: var(--gold); font-style: italic; }
.pourquoi-left > p {
  font-size: 0.95rem; color: rgba(245,230,208,0.65);
  line-height: 1.75; margin-bottom: 2rem;
}
.founder-quote {
  background: rgba(200,151,62,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem; color: var(--gold);
  opacity: 0.3; line-height: 0.5;
  margin-bottom: 0.5rem;
}
.founder-quote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(245,230,208,0.8);
  line-height: 1.7; font-style: italic;
  margin-bottom: 1rem;
}
.founder-sign strong { display: block; font-size: 0.88rem; color: var(--gold); }
.founder-sign span { font-size: 0.78rem; color: rgba(245,230,208,0.4); }

.pourquoi-right { display: flex; flex-direction: column; gap: 1.75rem; }
.avantage {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(200,151,62,0.08);
}
.avantage:last-child { border-bottom: none; padding-bottom: 0; }
.avantage-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.avantage h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--sand); margin-bottom: 0.3rem;
}
.avantage p { font-size: 0.85rem; color: rgba(245,230,208,0.55); line-height: 1.65; }

/* =============== TÉMOIGNAGES =============== */
.temoignages { padding: 7rem 0; background: var(--cream); overflow: hidden; }
.temoignages-slider { position: relative; }
.temo-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  padding-bottom: 0.5rem;
}
.temo-card {
  flex-shrink: 0;
  width: calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
  transition: all var(--t);
}
.temo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.temo-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.temo-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700); line-height: 1.7;
  flex: 1; margin-bottom: 1.5rem;
}
.temo-author { display: flex; align-items: center; gap: 0.75rem; }
.temo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  color: white; flex-shrink: 0;
}
.temo-author strong { display: block; font-size: 0.88rem; color: var(--green-deep); }
.temo-author span { font-size: 0.75rem; color: var(--gray-500); }
.temo-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.temo-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  transition: all var(--t);
}
.temo-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.temo-dots { display: flex; gap: 0.4rem; }
.temo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer; transition: all var(--t);
}
.temo-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* =============== PRATIQUE =============== */
.pratique { padding: 6rem 0; background: var(--sand); }
.pratique-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pratique-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--sand-dark);
  transition: all var(--t);
}
.pratique-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pratique-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pratique-card h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 0.5rem;
}
.pratique-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* =============== CONTACT =============== */
.contact { padding: 7rem 0; }
.contact-bg {
  background: linear-gradient(160deg, var(--green-deep) 0%, #162b20 60%, #1a2a0a 100%);
  position: relative; overflow: hidden;
}
.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,151,62,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,151,62,0.04) 0%, transparent 50%);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--sand); line-height: 1.2;
  margin-bottom: 1rem; margin-top: 0.75rem;
}
.contact-title em { color: var(--gold); font-style: italic; }
.contact-desc {
  font-size: 0.93rem; color: rgba(245,230,208,0.65);
  line-height: 1.7; margin-bottom: 2.5rem;
}
.contact-infos { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.cinfo { display: flex; align-items: center; gap: 0.85rem; }
.cinfo > span { font-size: 1.1rem; }
.cinfo div { display: flex; flex-direction: column; }
.cinfo strong {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,230,208,0.4);
}
.cinfo a, .cinfo span:last-child {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(245,230,208,0.8);
  transition: color var(--t);
}
.cinfo a:hover { color: var(--gold); }
.certifs { display: flex; flex-direction: column; gap: 0.6rem; }
.certif-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; color: rgba(245,230,208,0.4);
}
.certif-icon { color: var(--gold); opacity: 0.6; }

/* =============== FORM =============== */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gray-700); letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font); font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-900); background: var(--white);
  transition: border-color var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,62,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--gold); text-decoration: underline; }
.form-note { text-align: center; font-size: 0.73rem; color: var(--gray-300); margin-top: 0.75rem; }

/* =============== FOOTER =============== */
.footer { background: var(--black); color: rgba(245,230,208,0.4); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,230,208,0.06);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-logo .logo-mark {
  width: 32px; height: 32px;
  font-size: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; margin-bottom: 1rem; }
.footer-flags { font-size: 0.78rem; color: rgba(245,230,208,0.25); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(245,230,208,0.7); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.83rem; transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; transition: color var(--t); }
.footer-legal a:hover { color: rgba(245,230,208,0.7); }
.footer-copy { font-size: 0.72rem; color: rgba(245,230,208,0.2); }

/* =============== TOAST =============== */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--white);
  border: 1.5px solid #bbf7d0; border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-900);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =============== BLOG SECTION =============== */
.blog-section { padding: 5rem 0; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--t);
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-visual {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.blog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.blog-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--green-deep);
  padding: 0.25rem 0.65rem; border-radius: 100px; z-index: 2;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.7rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--green-deep); margin-bottom: 0.6rem;
  line-height: 1.25;
}
.blog-card-body p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.blog-card-link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold); margin-top: 0.75rem;
  transition: color var(--t);
}
.blog-card:hover .blog-card-link { color: var(--gold-dark); }

/* =============== SCROLL REVEAL =============== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============== ACCESSIBILITY =============== */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--green-deep);
  padding: 0.5rem 1rem; border-radius: 4px;
  font-weight: 600; z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* =============== ENHANCED ANIMATIONS =============== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Smooth entrance for hero content */
.hero-content {
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1) 0.3s both;
}

/* Staggered card entrance on scroll */
.dest-card, .package-card, .pratique-card,
.housing-card, .retire-card, .step-item,
.prop-card, .plot-zone {
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
              transform 0.6s cubic-bezier(.4,0,.2,1),
              box-shadow var(--t);
}

/* Smooth hover lift for all interactive cards */
.dest-card:hover,
.pratique-card:hover,
.housing-card:hover,
.retire-card:hover,
.step-item:hover,
.prop-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Pulsing CTA subtle animation */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* =============== SCROLL MARGIN =============== */
section[id] { scroll-margin-top: 80px; }

/* =============== RESPONSIVE =============== */
@media (max-width: 1100px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-card.dest-main { grid-row: auto; }
  .dest-card.dest-main .dest-visual { height: 180px; }

  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pourquoi-grid { grid-template-columns: 1fr; gap: 3rem; }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .exp-item.exp-large:first-child { grid-row: auto; grid-column: 1 / 3; }
  .exp-item.exp-large:last-child { grid-column: 1 / 3; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(13,31,23,0.98);
    backdrop-filter: blur(16px);
    padding: 2rem; gap: 0.5rem;
    border-top: 1px solid rgba(200,151,62,0.15);
  }
  .nav-links.open a { color: rgba(245,230,208,0.8); padding: 0.8rem 1rem; border-radius: 4px; }
  .nav-links.open a:hover { color: var(--gold); }

  .temo-card { width: calc(100% - 0px); }

  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; display: flex; background: none; border: none; padding: 0; gap: 0.5rem; }
  .hstat { flex-direction: row; gap: 0.5rem; align-items: center; padding: 0; }
  .hstat-sep { width: 40px; height: 1px; }

  .pratique-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .hero-title { font-size: 2.8rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .exp-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .exp-item { height: 200px; }
  .exp-item.exp-large:first-child,
  .exp-item.exp-large:last-child { grid-column: auto; height: 220px; }

  .pratique-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .hero-stats { flex-direction: column; display: flex; background: none; border: none; padding: 0; gap: 0.5rem; }
  .hstat { flex-direction: row; gap: 0.5rem; align-items: center; padding: 0; }
  .hstat-sep { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section-title { font-size: 1.7rem; }
  .nav { height: 64px; }
  .logo-text { font-size: 1.1rem; }
  .footer-nav { grid-template-columns: 1fr; gap: 1.5rem; }
  .exp-item { height: 180px; }
  .contact-form { padding: 1rem; }
  .toast { width: calc(100% - 2rem); white-space: normal; font-size: 0.85rem; padding: 0.85rem 1rem; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .hero-content { max-width: 780px; }
  .hero-title { font-size: clamp(3rem, 5.5vw, 5rem); }
}

/* =============== HERO PHOTO — Ken Burns =============== */
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1%, 0.5%); }
  100% { transform: scale(1.05) translate(0.5%, -0.5%); }
}

/* =============== PRINT STYLES =============== */
@media print {
  .header, .nav, .hero-scroll-hint, .btn, .toast, .footer-social { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 2rem 0; }
}
