/* =====================================================================
   Gesti-Voyage — Site vitrine · Design system « MÉDINA PREMIUM » (2026)
   Sable chaud · Émeraude profond · Accent or safran (Maroc)
   Playfair Display (éditorial) + Poppins (texte) + labels espacés.
   Mêmes noms de classes que la v1 → aucune page PHP à modifier.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--slate-800); background: var(--paper); line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--brand-200); color: var(--brand-900); }

/* ---------- Tokens ---------- */
:root {
  /* Émeraude profond (marque) */
  --brand-50:#e8f4ef; --brand-100:#c8e6da; --brand-200:#93cfba; --brand-300:#57b295;
  --brand-400:#2c9576; --brand-500:#0e7c62; --brand-600:#0a6250; --brand-700:#094e40;
  --brand-800:#0a3f35; --brand-900:#0a3129;
  /* Pétrole / nuit (sections sombres & dégradés) */
  --ocean-50:#e9f1f3; --ocean-100:#c9dde1; --ocean-200:#9bc0c7; --ocean-300:#6aa0aa;
  --ocean-400:#3f818d; --ocean-500:#1f6674; --ocean-600:#17515e; --ocean-700:#123f49;
  --ocean-800:#0e333b; --ocean-900:#0b2a30;
  /* Or safran (accent unique) */
  --gold-300:#f0cf94; --gold-400:#e8bd6a; --gold-500:#dca63f; --gold-600:#c1892a; --gold-700:#9c6c1e;
  --gold: var(--gold-500);
  /* Sable / papier chaud */
  --paper:#fcfaf5; --sand:#f4efe4; --sand-2:#efe8d9;
  /* Neutres chauds */
  --slate-100:#eef0ec; --slate-200:#dfe3dd; --slate-300:#c4ccc4; --slate-400:#8b968d;
  --slate-500:#5f6b62; --slate-600:#47514a; --slate-700:#333c37; --slate-800:#202824; --slate-900:#131a16;
  --shadow-sm: 0 1px 3px rgba(20,30,25,.06);
  --shadow-md: 0 6px 20px rgba(20,30,25,.09);
  --shadow-lg: 0 16px 44px rgba(15,50,40,.14);
  --shadow-xl: 0 28px 70px rgba(10,49,41,.22);
  --shadow-gold: 0 10px 26px rgba(220,166,63,.38);
  --radius: 16px; --radius-lg: 24px;
  --maxw: 1340px;
  --ring: 0 0 0 3px rgba(14,124,98,.18);
  /* Alias hérités (compat.) */
  --texte:var(--slate-800); --muted:var(--slate-500); --bleu:var(--ocean-600);
  --or:var(--gold-500); --or-fonce:var(--gold-600); --nuit:var(--brand-900);
  --bord:var(--slate-200); --gris:var(--sand); --blanc:#ffffff;
}

/* ---------- Layout ---------- */
.container, .conteneur { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section-sand { background: var(--sand); }
.text-center { text-align: center; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--brand-900); line-height: 1.12; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.32rem; font-weight: 600; }
p { text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold-500)); }
.eyebrow--center { justify-content: center; }
.lead { color: var(--slate-500); font-size: 1.12rem; max-width: 640px; }
.text-gradient { background: linear-gradient(90deg, var(--brand-500), var(--gold-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.section-head { text-align: center; margin-bottom: 54px; }
.section-head .eyebrow { justify-content: center; }
.section-head .lead { margin: 14px auto 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: .93rem; letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
/* Primaire = OR safran (le geste audacieux, réservé aux actions clés) */
.btn-primary, .btn--or {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #241605;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .btn--or:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(220,166,63,.5); }
/* Émeraude plein (alias --bleu conservé) */
.btn--bleu { background: var(--brand-500); color: #fff; box-shadow: 0 8px 22px rgba(14,124,98,.28); }
.btn--bleu:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn-outline, .btn--ligne { border: 1.5px solid var(--brand-500); color: var(--brand-700); background: transparent; }
.btn-outline:hover, .btn--ligne:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }
.btn-ghost { color: var(--slate-700); background: var(--sand-2); }
.btn-ghost:hover { background: var(--slate-200); }
.btn-white { background: #fff; color: var(--brand-800); }
.btn-white:hover { background: var(--sand); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .84rem; }

/* ---------- Bandeau promo ---------- */
.promo { background: var(--brand-900); color: var(--gold-300); text-align: center; font-size: .82rem; font-weight: 500; letter-spacing: .02em; padding: 9px 16px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--brand-900); color: #fff; font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; }
.topbar-info { display: flex; gap: 22px; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.86); }
.topbar-info a:hover { color: var(--gold-300); }
.topbar-info svg { width: 14px; height: 14px; }
.topbar-tag { opacity: .7; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(252,250,245,.88); backdrop-filter: blur(12px); transition: box-shadow .3s ease, background .3s ease; border-bottom: 1px solid transparent; }
.header.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--slate-200); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--brand-600), var(--ocean-700)); position: relative;
  display: grid; place-items: center; transition: transform .5s ease; overflow: hidden;
  box-shadow: inset 0 0 0 1.5px rgba(220,166,63,.35);
}
.logo:hover .logo-icon { transform: rotate(-10deg); }
.logo-icon svg { width: 24px; height: 24px; color: var(--gold-300); }
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-text h1 { font-size: 1.24rem; line-height: 1; margin: 0; color: var(--brand-900); }
.logo-text span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.logo-img { max-height: 46px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a { position: relative; padding: 8px 15px; font-size: .89rem; font-weight: 500; color: var(--slate-600); transition: color .25s ease; }
.nav-desktop a::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px; background: var(--gold-500); border-radius: 2px; transform: scaleX(0); transition: transform .25s ease; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--brand-800); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.tel-lien { font-weight: 600; color: var(--brand-700); font-size: .9rem; }
.tel-lien:hover { color: var(--gold-700); }
.menu-toggle { width: 46px; height: 46px; border-radius: 13px; border: 1px solid var(--slate-200); display: grid; place-items: center; background: #fff; transition: all .25s ease; }
.menu-toggle:hover { border-color: var(--gold-400); background: var(--sand); }
.menu-toggle svg { width: 22px; height: 22px; color: var(--slate-700); }
@media (max-width: 1024px) { .nav-desktop { display: none; } }
@media (max-width: 560px) { .tel-lien { display: none; } }

/* ---------- Menu latéral ---------- */
.lateral-overlay { position: fixed; inset: 0; background: rgba(10,49,41,.5); backdrop-filter: blur(4px); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.lateral-overlay.open { opacity: 1; pointer-events: auto; }
.lateral-menu { position: fixed; top: 0; left: 0; height: 100%; width: 300px; max-width: 86vw; background: var(--paper); z-index: 210; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .45s cubic-bezier(.22,1,.36,1); }
.lateral-menu.open { transform: translateX(0); }
.lateral-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--slate-200); }
.lateral-close { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; transition: background .25s; }
.lateral-close:hover { background: var(--sand); }
.lateral-close svg { width: 20px; height: 20px; color: var(--slate-500); }
.lateral-nav { flex: 1; overflow-y: auto; padding: 14px 0; }
.lateral-nav a { display: flex; align-items: center; gap: 14px; padding: 13px 24px; font-size: .95rem; font-weight: 500; color: var(--slate-600); border-left: 4px solid transparent; transition: all .25s ease; }
.lateral-nav a:hover { background: var(--sand); color: var(--brand-700); }
.lateral-nav a.active { background: var(--brand-50); color: var(--brand-700); border-left-color: var(--gold-500); }
.lateral-nav a svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s; }
.lateral-nav a:hover svg { transform: scale(1.15); }
.lateral-foot { padding: 20px 24px; border-top: 1px solid var(--slate-200); }
.lateral-foot p { font-size: .75rem; color: var(--slate-400); margin-bottom: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center; background: var(--brand-900); }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slides .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s ease; }
.hero__slides .slide.actif { opacity: 1; }
.hero__slides .slide__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__slides .slide.actif .slide__img { animation: heroZoom 10s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__voile { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(10,49,41,.94) 0%, rgba(11,42,48,.82) 46%, rgba(11,42,48,.34) 100%); }
.hero__voile::after { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 380px at 78% 12%, rgba(220,166,63,.22), transparent 62%); }
.hero__canvas { position: absolute; inset: 0; z-index: 1; opacity: .92; pointer-events: none; }
.hero .container { position: relative; z-index: 2; padding: 112px 24px; width: 100%; }
.hero__contenu { max-width: 680px; }
.hero-badge, .hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 17px; border-radius: 999px; background: rgba(220,166,63,.14); backdrop-filter: blur(6px); color: var(--gold-300); border: 1px solid rgba(220,166,63,.4); font-size: .82rem; font-weight: 500; letter-spacing: .02em; margin-bottom: 24px; }
.hero-badge svg, .hero__badge svg { width: 16px; height: 16px; }
.hero h1 { color: #fff; margin-bottom: 0; }
.hero h1 em, .hero__titre em { font-style: italic; color: var(--gold-300); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.16rem; margin-top: 22px; max-width: 560px; }
.hero__cta, .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-social { display: flex; align-items: center; gap: 18px; margin-top: 40px; }
.hero-stars { display: flex; gap: 2px; color: var(--gold-400); }
.hero-stars svg { width: 17px; height: 17px; fill: currentColor; }
.hero-social p { font-size: .85rem; color: rgba(255,255,255,.85); }
.hero-social strong { color: #fff; font-weight: 600; }
.hero__points { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero__point { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; border: 0; padding: 0; }
.hero__point.actif { background: var(--gold-400); width: 30px; border-radius: 6px; }
@media (max-width: 640px) { .hero { min-height: 600px; } .hero .container { padding: 88px 24px; } }

/* ---------- Recherche rapide ---------- */
.quick-search { position: relative; z-index: 10; margin-top: -46px; }
.quick-search-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200); padding: 20px; display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 16px; align-items: end; }
.qs-field { display: flex; align-items: center; gap: 12px; }
.qs-field > svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }
.qs-field label { display: block; font-size: .68rem; color: var(--slate-400); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.qs-field input, .qs-field select { width: 100%; border: none; font-size: .92rem; font-weight: 500; color: var(--slate-700); background: transparent; padding: 0; }
.qs-field input:focus, .qs-field select:focus { outline: none; }
.qs-divider { border-left: 1px solid var(--slate-200); padding-left: 20px; }
@media (max-width: 900px) { .quick-search-card { grid-template-columns: 1fr 1fr; } .quick-search-card .btn { grid-column: 1 / -1; } .qs-divider { border: none; padding-left: 0; } }
@media (max-width: 520px) { .quick-search-card { grid-template-columns: 1fr; } }

/* ---------- Cartes ---------- */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.card-body { padding: 24px; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { text-align: center; padding: 32px 22px; background: #fff; }
.feature-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 17px; background: linear-gradient(140deg, var(--brand-50), var(--sand-2)); display: grid; place-items: center; transition: transform .3s ease; box-shadow: inset 0 0 0 1px var(--brand-100); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }
.feature-icon svg { width: 28px; height: 28px; color: var(--brand-600); }
.feature-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--slate-500); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 350px; box-shadow: var(--shadow-md); display: block; }
.dest-card img, .dest-card .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-card:hover img, .dest-card:hover .cover { transform: scale(1.12); }
.dest-card .ph-cover { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3rem; background: linear-gradient(135deg, var(--ocean-700), var(--brand-600)); color: rgba(255,255,255,.65); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,49,41,.94), rgba(10,49,41,.1) 58%, transparent); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; color: #fff; }
.dest-info .country { font-size: .76rem; color: var(--gold-300); display: inline-flex; align-items: center; gap: 4px; letter-spacing: .04em; }
.dest-info .country svg { width: 12px; height: 12px; }
.dest-info h3 { color: #fff; font-size: 1.55rem; margin: 4px 0; }
.dest-info .price { font-size: .85rem; color: rgba(255,255,255,.9); font-weight: 500; }
.dest-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--gold-300); opacity: 0; transform: translateX(-8px); transition: all .3s ease; margin-top: 10px; }
.dest-card:hover .dest-cta { opacity: 1; transform: translateX(0); }
.dest-cta svg { width: 16px; height: 16px; }
.dest-count { position: absolute; top: 14px; right: 14px; background: rgba(252,250,245,.94); color: var(--brand-700); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats-band { background: linear-gradient(120deg, var(--brand-800), var(--ocean-800)); color: #fff; position: relative; overflow: hidden; }
.stats-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 260px at 85% 120%, rgba(220,166,63,.22), transparent 60%); pointer-events: none; }
.stats-band .container { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 60px 24px; text-align: center; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; color: var(--gold-300); }
.stat-label { font-size: .86rem; opacity: .85; margin-top: 8px; letter-spacing: .02em; }
@media (max-width: 600px) { .stats-band .container { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ---------- CTA ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 64px 44px; text-align: center; background: linear-gradient(125deg, var(--brand-800), var(--ocean-800)); color: #fff; box-shadow: var(--shadow-xl); }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 320px at 80% -20%, rgba(220,166,63,.28), transparent 62%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner .lead { color: rgba(255,255,255,.86); margin: 14px auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; min-height: 360px; overflow: hidden; display: flex; background: var(--brand-900); }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .92; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,49,41,.95), rgba(11,42,48,.76) 55%, rgba(11,42,48,.48)); }
.page-hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 124px 24px 46px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.68); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb svg { width: 13px; height: 13px; }
.breadcrumb a { color: rgba(255,255,255,.68); }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: rgba(220,166,63,.14); border: 1px solid rgba(220,166,63,.4); color: var(--gold-300); font-size: .78rem; font-weight: 500; letter-spacing: .04em; margin-bottom: 14px; width: fit-content; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 1.1rem; max-width: 640px; }

/* ---------- Deux colonnes ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.two-col__media { position: relative; }
.two-col__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 450px; object-fit: cover; }
.two-col__badge { position: absolute; bottom: -22px; left: 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 22px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--slate-200); }
.two-col__badge .n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-600); line-height: 1; }
.two-col__badge span { font-size: .82rem; color: var(--slate-500); }
.check-list { margin-top: 26px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--slate-700); }
.check-list svg { width: 22px; height: 22px; color: var(--brand-500); flex-shrink: 0; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 42px; } .two-col__media img { height: 320px; } }

/* ---------- Valeurs ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 36px 26px; background: #fff; }
.value-icon { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 19px; background: linear-gradient(140deg, var(--brand-600), var(--ocean-700)); display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px rgba(220,166,63,.35); }
.value-icon svg { width: 32px; height: 32px; color: var(--gold-300); }
.value-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.value-card p { font-size: .9rem; color: var(--slate-500); }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 4px; }
.timeline-line { position: absolute; left: 17px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold-400), var(--brand-300)); }
.timeline-item { position: relative; padding-left: 52px; margin-bottom: 30px; }
.timeline-dot { position: absolute; left: 9px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px var(--gold-300); }
.timeline-item .year { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--brand-700); }
.timeline-item p { font-size: .92rem; color: var(--slate-600); margin-top: 4px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { padding: 32px 26px; background: #fff; }
.service-icon { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 20px; transition: transform .3s ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(6deg); }
.service-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--slate-500); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200); }
.process-step .num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.process-step h3 { margin-top: 6px; }
.process-step p { font-size: .88rem; color: var(--slate-500); margin-top: 6px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Formulaires ---------- */
.form-card, .form-carte { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200); padding: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group, .champ { display: flex; flex-direction: column; gap: 7px; }
.form-group.full, .champ--full { grid-column: 1 / -1; }
.form-group label, .champ label, .champ__label { font-size: .82rem; font-weight: 600; color: var(--slate-700); letter-spacing: .01em; }
.req { color: #d1493f; }
.input, .select, .textarea, .saisie,
.champ input, .champ textarea, .champ select {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--slate-300);
  background: var(--paper); color: var(--slate-800); transition: border-color .25s ease, box-shadow .25s ease, background .25s;
}
.input:focus, .select:focus, .textarea:focus, .saisie:focus,
.champ input:focus, .champ textarea:focus, .champ select:focus { outline: none; border-color: var(--brand-400); background: #fff; box-shadow: var(--ring); }
.textarea, .champ textarea { resize: vertical; min-height: 120px; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-card { flex: 1; min-width: 140px; padding: 14px; border: 2px solid var(--slate-200); border-radius: 12px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all .25s ease; font-size: .9rem; }
.radio-card input { accent-color: var(--brand-500); }
.radio-card:hover { border-color: var(--brand-300); }
.radio-card.selected { border-color: var(--brand-500); background: var(--brand-50); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Alertes ---------- */
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: .9rem; display: flex; align-items: flex-start; gap: 10px; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; }
.alert-success { background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-200); }
.alert-error { background: #fdf0ee; color: #a13328; border: 1px solid #f0c8c2; }
.alert-error ul { margin: 0; padding-left: 2px; list-style: none; }
.alert[hidden] { display: none; }

/* ---------- Filtres ---------- */
.filtres { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; background: #fff; padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200); }
.filtres input[type=text], .filtres input[type=search], .filtres select { flex: 1; min-width: 180px; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--slate-300); background: var(--paper); }
.filtres input:focus, .filtres select:focus { outline: none; border-color: var(--brand-400); background: #fff; box-shadow: var(--ring); }

/* ---------- Offres (façon boarding-pass) ---------- */
.offres, .offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offre, .offer-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.offre:hover, .offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.offre__media, .offer-img { position: relative; height: 224px; overflow: hidden; display: block; }
.offre__media img, .offer-img img, .offer-img .cover { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.offre:hover .offre__media img, .offer-card:hover .offer-img img, .offer-card:hover .offer-img .cover { transform: scale(1.1); }
.offre__media .ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; background: linear-gradient(135deg, var(--brand-100), var(--ocean-100)); color: var(--brand-600); }
.offre__tag, .offer-badge { position: absolute; top: 14px; left: 14px; background: rgba(10,49,41,.82); backdrop-filter: blur(4px); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .03em; }
.offre__promo { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #241605; padding: 6px 12px; border-radius: 999px; font-size: .74rem; font-weight: 700; box-shadow: var(--shadow-gold); }
.offre__corps, .offer-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.offre__meta, .offer-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--slate-400); margin-bottom: 10px; flex-wrap: wrap; }
.offre__meta span, .offer-meta span { display: inline-flex; align-items: center; gap: 4px; }
.offre__meta svg, .offer-meta svg { width: 14px; height: 14px; color: var(--gold-600); }
.offre h3, .offer-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.offre h3 a:hover, .offer-card h3 a:hover { color: var(--brand-700); }
.offre__desc, .offer-card .desc { font-size: .88rem; color: var(--slate-500); margin-bottom: 18px; flex: 1; }
/* perforation « boarding-pass » avant le prix */
.offre__pied, .offer-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; position: relative; }
.offre__pied::before, .offer-footer::before { content: ''; position: absolute; top: 0; left: -24px; right: -24px; border-top: 2px dashed var(--slate-200); }
.offre__prix, .offer-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--brand-800); line-height: 1.1; }
.offre__prix small, .offer-price small { display: block; font-size: .68rem; font-weight: 600; color: var(--gold-700); font-family: 'Poppins', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.offre__prix del, .offer-price del { font-size: .78rem; color: var(--slate-400); font-weight: 400; }
@media (max-width: 900px) { .offres, .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offres, .offer-grid { grid-template-columns: 1fr; } }

/* ---------- État vide ---------- */
.vide { text-align: center; padding: 74px 20px; background: #fff; border-radius: var(--radius); border: 1px dashed var(--slate-300); }
.vide__ico { font-size: 3rem; margin-bottom: 14px; }
.vide p { color: var(--slate-500); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info-card { background: linear-gradient(140deg, var(--brand-800), var(--ocean-800)); color: #fff; border-radius: var(--radius-lg); padding: 38px; position: relative; overflow: hidden; }
.contact-info-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(360px 220px at 90% 8%, rgba(220,166,63,.24), transparent 62%); pointer-events: none; }
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(220,166,63,.16); border: 1px solid rgba(220,166,63,.3); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ci-icon svg { width: 20px; height: 20px; color: var(--gold-300); }
.contact-item .ci-label { font-size: .72rem; opacity: .72; letter-spacing: .06em; text-transform: uppercase; }
.contact-item .ci-value { font-size: .95rem; font-weight: 500; color: #fff; }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; transition: background .25s; }
.contact-socials a:hover { background: var(--gold-500); }
.contact-socials svg { width: 18px; height: 18px; color: #fff; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer, .pied { background: var(--brand-900); color: rgba(255,255,255,.68); margin-top: 88px; }
.footer-newsletter { background: linear-gradient(100deg, var(--brand-700), var(--ocean-800)); position: relative; overflow: hidden; }
.footer-newsletter::after { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 12% 120%, rgba(220,166,63,.24), transparent 60%); pointer-events: none; }
.footer-newsletter .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 36px 24px; flex-wrap: wrap; }
.footer-newsletter h3 { color: #fff; font-size: 1.55rem; }
.footer-newsletter p { color: rgba(255,255,255,.86); font-size: .9rem; margin-top: 4px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { padding: 13px 18px; border-radius: 999px; border: none; background: #fff; color: var(--slate-800); width: 260px; max-width: 100%; }
.newsletter-form input:focus { outline: none; box-shadow: var(--ring); }
.newsletter-form button { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #241605; font-weight: 600; transition: transform .25s; }
.newsletter-form button:hover { transform: translateY(-1px); }
.newsletter-form button svg { width: 16px; height: 16px; }
.footer-main .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: 60px 24px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text h1 { color: #fff; }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 320px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .25s; }
.footer-socials a:hover { background: var(--gold-500); }
.footer-socials svg { width: 16px; height: 16px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li { font-size: .88rem; transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .88rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; flex-wrap: wrap; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.68); }
.footer-bottom a:hover { color: var(--gold-300); }
@media (max-width: 900px) { .footer-main .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main .container { grid-template-columns: 1fr; } .footer-newsletter .container { flex-direction: column; align-items: flex-start; } }

/* ---------- WhatsApp flottant (CORRIGÉ : dimensionnement svg) ---------- */
.wa-flottant { position: fixed; bottom: 24px; right: 24px; z-index: 120; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s; }
.wa-flottant:hover { transform: scale(1.08) translateY(-2px); }
.wa-flottant svg { width: 30px; height: 30px; display: block; fill: currentColor; }

/* ---------- Interactions dynamiques ---------- */
/* Filet doré animé au survol des cartes */
.feature-card, .value-card, .service-card { position: relative; }
.feature-card::after, .value-card::after, .service-card::after {
  content: ''; position: absolute; left: 24px; right: 24px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--brand-400), var(--gold-500)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.feature-card:hover::after, .value-card:hover::after, .service-card:hover::after { transform: scaleX(1); }
.feature-card:hover .feature-icon { background: linear-gradient(140deg, var(--brand-100), var(--gold-300)); }

/* Apparition en cascade dans les grilles */
.feature-grid .reveal:nth-child(2), .offer-grid .reveal:nth-child(2), .dest-grid .reveal:nth-child(2), .values-grid .reveal:nth-child(2), .services-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .09s; }
.feature-grid .reveal:nth-child(3), .offer-grid .reveal:nth-child(3), .dest-grid .reveal:nth-child(3), .values-grid .reveal:nth-child(3), .services-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .18s; }
.feature-grid .reveal:nth-child(4), .offer-grid .reveal:nth-child(4), .dest-grid .reveal:nth-child(4), .services-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .27s; }
.offer-grid .reveal:nth-child(5), .dest-grid .reveal:nth-child(5), .services-grid .reveal:nth-child(5) { transition-delay: .36s; }
.offer-grid .reveal:nth-child(6), .dest-grid .reveal:nth-child(6), .services-grid .reveal:nth-child(6) { transition-delay: .45s; }

/* ---------- Animations ---------- */
@keyframes floatUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible, .reveal.vu { opacity: 1; transform: translateY(0); }
.animate-floatUp { animation: floatUp .7s ease-out both; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--brand-400); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-600); }

@supports (padding: max(0px)) { .header { padding-top: env(safe-area-inset-top); } }

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__slides .slide.actif .slide__img { animation: none; }
}
