/* =========================================================
   bysunita, Maquette "Modern Indian Chic"
   Direction : MINIMALISTE • ÉPURÉ • COLORÉ (blocs de couleur plats)
   Palette : Bubblegum / Marigold / Brown Sugar / Malachite / Lagoon
   Fond : #EDEEE8, Polices : Plus Jakarta Sans + Inter
   ========================================================= */

:root {
  --bg:          #EDEEE8;   /* fond crème */
  --bubblegum:   #F46493;   /* rose */
  --marigold:    #F1A43A;   /* safran / orange */
  --brown-sugar: #B96C34;   /* terracotta */
  --malachite:   #15494C;   /* vert profond */
  --lagoon:      #5DB5B1;   /* turquoise */
  --ink:         #16201F;
  --red-dot:     #E4002B;
  --paper:       #FFFFFF;
  --cream-2:     #E3E4DC;
  --line:        rgba(21,73,76,.14);

  --maxw: 1200px;
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 14px 40px -26px rgba(21,73,76,.5);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(.4,.01,.16,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, .display {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brown-sugar);
}
/* coloured keyword highlight inside headings */
.hl   { color: var(--bubblegum); }
.hl-m { color: var(--marigold); }
.hl-l { color: var(--lagoon); }
.hl-i { font-style: italic; }

/* small Indian block-print dotted divider, the only ornament */
.dots-strip {
  height: 10px;
  background: radial-gradient(circle at 6px 5px, var(--marigold) 2.5px, transparent 3px) 0 0/18px 10px repeat-x;
  opacity: .9;
}

/* =========================================================
   HEADER
   ========================================================= */
.topbar { background: var(--malachite); color: var(--bg); font-size: .76rem; }
.topbar .wrap { display: flex; justify-content: center; gap: 8px; padding: 7px 0; text-align: center; }
.topbar b { color: var(--marigold); font-family: var(--font-head); }

header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(237,238,232,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.045em; color: var(--ink); line-height: 1; }
.logo .dot { color: var(--red-dot); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .94rem;
  color: var(--malachite); position: relative; padding: 4px 0;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--bubblegum); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--bubblegum); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-tools { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line); transition: .2s var(--ease); color: var(--malachite); }
.icon-btn:hover { background: var(--marigold); color: #fff; transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; }

.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem; background: var(--paper); }
.lang-toggle button { padding: 7px 12px; color: var(--malachite); transition: .2s; }
.lang-toggle button.active { background: var(--malachite); color: var(--bg); }

.subscribe-btn { background: var(--bubblegum); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .88rem; padding: 11px 20px; border-radius: 999px; transition: .2s var(--ease); }
.subscribe-btn:hover { transform: translateY(-2px); background: var(--brown-sugar); }

.burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border-radius: 12px;
  align-items: center; justify-content: center; background: var(--paper); border: 1px solid var(--line); }
.burger span { width: 20px; height: 2px; background: var(--malachite); transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(21,73,76,.5); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center; padding-top: 16vh; }
.search-overlay.open { display: flex; }
.search-box { width: min(90%, 620px); background: var(--paper); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow); animation: pop .35s var(--ease); }
.search-box input { width: 100%; font-size: 1.4rem; font-family: var(--font-head); font-weight: 700; border: none;
  border-bottom: 2px solid var(--marigold); background: transparent; padding: 10px 4px; outline: none; }
.search-hint { margin-top: 14px; font-size: .85rem; color: var(--brown-sugar); }
@keyframes pop { from { transform: translateY(-12px) scale(.97); opacity: 0; } }

/* =========================================================
   ROUTING
   ========================================================= */
.page { display: none; }
.page.active { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }

/* =========================================================
   GENERIC SECTION + colour-block bands
   ========================================================= */
section.block { padding: 72px 0; }
.band { padding: 78px 0; }
.band--teal    { background: var(--malachite); color: var(--bg); }
.band--marigold{ background: var(--marigold); color: #3a2300; }
.band--lagoon  { background: var(--lagoon); color: #06302e; }
.band--pink    { background: var(--bubblegum); color: #fff; }
.band--cream   { background: var(--cream-2); }
.band--teal .eyebrow, .band--pink .eyebrow { color: var(--marigold); }
.band--teal h2, .band--pink h2 { color: #fff; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 38px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-head .link { font-family: var(--font-head); font-weight: 700; color: var(--brown-sugar); display: inline-flex; gap: 7px; align-items: center; transition: gap .2s; }
.band--teal .section-head .link, .band--pink .section-head .link { color: var(--marigold); }
.section-head .link:hover { gap: 12px; }

.page-hero { padding: 64px 0 8px; }
.page-hero .eyebrow { margin-bottom: 14px; display: block; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--malachite); max-width: 16ch; }
.page-hero p { max-width: 58ch; margin-top: 20px; color: #3a4645; font-size: 1.08rem; }

/* =========================================================
   HERO (Accueil), minimal, big type, one image
   ========================================================= */
.hero { padding: 60px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-kicker .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--bubblegum); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(244,100,147,.5); } 70% { box-shadow: 0 0 0 10px rgba(244,100,147,0); } }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.8rem); color: var(--malachite); }
.hero p.lead { font-size: 1.15rem; max-width: 44ch; margin: 24px 0 32px; color: #34403f; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.tag { font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: 7px 15px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.tag-flag { width: 1.2em; height: .8em; object-fit: cover; border-radius: 2px; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.tag.in { background: var(--marigold); color: #4a2c00; }
.tag.ca { background: var(--lagoon); color: #053b39; }
.tag.fr { background: var(--bubblegum); color: #fff; }

.btn-primary { background: var(--malachite); color: var(--bg); padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; transition: .2s var(--ease); display: inline-flex; align-items: center; gap: 9px; }
.btn-primary:hover { transform: translateY(-2px); background: var(--brown-sugar); }
.btn-ghost { padding: 14px 24px; border-radius: 999px; border: 1.5px solid var(--malachite); color: var(--malachite);
  font-family: var(--font-head); font-weight: 700; transition: .2s var(--ease); display: inline-flex; align-items: center; gap: 9px; }
.btn-ghost:hover { background: var(--malachite); color: var(--bg); }
.btn-light { background: #fff; color: var(--malachite); padding: 14px 26px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; transition: .2s var(--ease); display: inline-flex; gap: 9px; align-items: center; }
.btn-light:hover { transform: translateY(-2px); background: var(--marigold); color: #fff; }

.hero-visual { position: relative; }
.hero-visual .photo { aspect-ratio: 4/5; border-radius: 200px 200px var(--r) var(--r); overflow: hidden; box-shadow: var(--shadow); }
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .chip-float { position: absolute; bottom: 22px; left: -16px; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.hero-visual .chip-float .av { width: 36px; height: 36px; border-radius: 50%; background: var(--marigold); display: grid; place-items: center; color: #fff; }

/* =========================================================
   BIO / À PROPOS
   ========================================================= */
.bio-photo { aspect-ratio: 4/5; border-radius: 200px 200px var(--r) var(--r); overflow: hidden; box-shadow: var(--shadow); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-text h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--malachite); margin-bottom: 18px; }
.bio-text p { font-size: 1.12rem; color: #34403f; margin-bottom: 16px; max-width: 46ch; }
.bio-text p b { color: var(--brown-sugar); font-weight: 700; }
.bio-text .sign { font-family: var(--font-head); font-style: italic; font-weight: 700; color: var(--bubblegum); font-size: 1.25rem; }

/* =========================================================
   3 PORTES D'ENTRÉE (Articles / Rencontres / Voyages)
   ========================================================= */
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.entry { border-radius: var(--r-lg); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px;
  color: #fff; min-height: 340px; transition: transform .3s var(--ease); }
.entry:hover { transform: translateY(-7px); }
.entry .num-tag { font-family: var(--font-head); font-weight: 800; font-size: .85rem; letter-spacing: .18em; opacity: .8; }
.entry h3 { font-size: 1.7rem; }
.entry p { flex: 1; opacity: .96; font-size: 1rem; line-height: 1.55; }
.entry .cta { align-self: flex-start; background: #fff; color: var(--malachite); font-family: var(--font-head);
  font-weight: 700; padding: 12px 22px; border-radius: 999px; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; transition: gap .2s, transform .2s; display: inline-flex; gap: 8px; align-items: center; }
.entry:hover .cta { transform: translateX(4px); }
.entry--pink     { background: var(--bubblegum); }
.entry--teal     { background: var(--malachite); }
.entry--marigold { background: var(--marigold); color: #4a2300; }
.entry--marigold .cta { color: var(--brown-sugar); }

/* =========================================================
   STATS row (chiffres-clés like references)
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { border-radius: var(--r); padding: 30px 26px; }
.stat:nth-child(1) { background: var(--bubblegum); color: #fff; }
.stat:nth-child(2) { background: var(--marigold); color: #4a2c00; }
.stat:nth-child(3) { background: var(--lagoon); color: #06302e; }
.stat:nth-child(4) { background: var(--malachite); color: var(--bg); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1; letter-spacing: -.03em; }
.stat .lab { margin-top: 8px; font-weight: 600; font-size: .92rem; }

/* =========================================================
   CARDS (posts / articles thumbnails)
   ========================================================= */
.card-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.card { background: var(--paper); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .3s var(--ease); }
.card:hover { transform: translateY(-6px); }
.card .thumb { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .thumb img { transform: scale(1.06); }
.pill { position: absolute; top: 13px; left: 13px; font-family: var(--font-head); font-weight: 700; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 999px; color: #fff; }
.pill.inde { background: var(--marigold); color: #4a2c00; }
.pill.caraibes { background: var(--lagoon); color: #053b39; }
.pill.france { background: var(--bubblegum); }
.pill.video { background: var(--malachite); }
.pill.recits { background: var(--marigold); color: #4a2c00; }
.pill.reflexions { background: var(--bubblegum); }
.pill.podcast { background: var(--malachite); }
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .meta { font-size: .76rem; color: var(--brown-sugar); font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; }
.card h3 { font-size: 1.22rem; color: var(--malachite); line-height: 1.2; }
.card p { font-size: .92rem; color: #43504e; }
.card .read { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--bubblegum); display: inline-flex; gap: 7px; align-items: center; padding-top: 6px; transition: gap .2s; }
.card:hover .read { gap: 12px; }

/* video play overlay */
.play-badge { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(21,73,76,.16); opacity: 0; transition: .3s; }
.thumb.has-video:hover .play-badge, .thumb.always .play-badge { opacity: 1; }
.play-badge .circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; }
.play-badge .circle svg { width: 22px; height: 22px; margin-left: 3px; color: var(--bubblegum); }

/* =========================================================
   FEATURED video band
   ========================================================= */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; background: #0e3739; color: var(--bg); box-shadow: var(--shadow); }
.feature .txt { padding: 52px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.feature .txt .eyebrow { color: var(--marigold); }
.feature .txt h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); color: #fff; }
.feature .txt p { opacity: .85; }
.feature .media { position: relative; min-height: 380px; }
.feature .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature .media .play-badge { opacity: 1; background: rgba(14,55,57,.25); }

/* =========================================================
   MOSAIC
   ========================================================= */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 12px; }
.mosaic figure { overflow: hidden; border-radius: 14px; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mosaic figure:hover img { transform: scale(1.07); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* =========================================================
   GALERIE, mur d'images (masonry en colonnes)
   ========================================================= */
.gallery-grid { columns: 4 240px; column-gap: 14px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 14px; border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gallery-grid img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(21,73,76,.0)); transition: background .3s; }
.gallery-grid figure:hover img { transform: scale(1.06); }
@media (max-width: 600px) { .gallery-grid { columns: 2 140px; } }

/* =========================================================
   VOYAGES
   ========================================================= */
.travel-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.map-card { background: var(--paper); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow); }
.map-card .pin { font-family: var(--font-head); font-weight: 800; color: var(--brown-sugar); }
.story { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; background: var(--paper);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); margin-top: 26px; }
.story:nth-child(even) .story-img { order: 2; }
.story-img { min-height: 300px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-txt { padding: 38px; align-self: center; }
.story-txt h3 { font-size: 1.6rem; color: var(--malachite); margin-bottom: 12px; }
.story-txt .loc { color: var(--bubblegum); font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .04em; margin-bottom: 14px; display: inline-flex; gap: 6px; }

/* =========================================================
   VOYAGES, hero overlay + destinations
   ========================================================= */
.travel-hero { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 460px;
  display: grid; place-items: center; text-align: center; padding: 60px; color: #fff; }
.travel-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.travel-hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(13,40,42,.5), rgba(11,34,36,.72)); }
.travel-hero .th-inner { position: relative; z-index: 2; max-width: 62ch; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.travel-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; }
.travel-hero h1 em { font-style: italic; color: var(--marigold); }
.travel-hero p { margin-top: 16px; opacity: .95; font-size: 1.05rem; }
.travel-hero .sign { margin-top: 22px; display: inline-block; font-family: var(--font-head); font-weight: 800;
  font-style: italic; color: var(--marigold); font-size: 1.3rem; }

.intro-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-copy p { font-size: 1.12rem; color: #34403f; margin-bottom: 18px; }
.intro-copy p b { color: var(--brown-sugar); }

.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dest { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest:hover img { transform: scale(1.08); }
.dest figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: .98rem; letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(13,40,42,.9)); }
.dest figcaption small { display: block; font-weight: 600; font-size: .68rem; opacity: .85; letter-spacing: .14em; margin-top: 3px; }

/* =========================================================
   ARTICLES list + Updates/Events two-column
   ========================================================= */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.chip { font-family: var(--font-head); font-weight: 700; font-size: .85rem; padding: 9px 18px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); color: var(--malachite); transition: .2s; }
.chip:hover, .chip.active { background: var(--malachite); color: var(--bg); border-color: var(--malachite); }

.list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.list-col h3.col-title { font-size: 1.3rem; color: var(--malachite); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--marigold); }
.list-item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); transition: .2s var(--ease); }
.list-item:hover { transform: translateX(4px); }
.list-item .li-thumb { width: 92px; height: 68px; border-radius: 12px; overflow: hidden; position: relative; }
.list-item .li-thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-item .li-meta { font-size: .74rem; color: var(--brown-sugar); font-family: var(--font-head); font-weight: 600; }
.list-item h4 { font-size: 1.02rem; color: var(--malachite); font-weight: 700; }
.list-item:hover h4 { color: var(--bubblegum); }
.mini-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(21,73,76,.2); }
.mini-play svg { width: 22px; height: 22px; color: #fff; }

/* =========================================================
   RENCONTRES, Point of YOU
   ========================================================= */
.pov-hero { background: var(--bubblegum); border-radius: var(--r-lg); color: #fff; padding: 52px;
  display: grid; grid-template-columns: 1fr .8fr; gap: 44px; align-items: center; }
.pov-hero .eyebrow { color: #fff; opacity: .8; }
.pov-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.pov-hero p { opacity: .95; margin-top: 16px; }
.pov-hero .portrait { aspect-ratio: 1; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.pov-hero .portrait img { width: 100%; height: 100%; object-fit: cover; }

.episode { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center; background: var(--paper);
  border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); margin-bottom: 18px; }
.episode .cover { width: 150px; height: 150px; border-radius: 14px; overflow: hidden; position: relative; }
.episode .cover img { width: 100%; height: 100%; object-fit: cover; }
.episode .cover .play-badge { opacity: 1; background: rgba(21,73,76,.18); }
.episode .cover .circle { width: 46px; height: 46px; }
.episode h3 { font-size: 1.32rem; color: var(--malachite); }
.episode .ep-meta { color: var(--brown-sugar); font-family: var(--font-head); font-weight: 600; font-size: .8rem; margin: 4px 0 8px; }
.stars { color: var(--marigold); letter-spacing: 3px; }
.player { display: flex; align-items: center; gap: 14px; margin-top: 14px; background: var(--bg); border-radius: 999px; padding: 8px 14px; max-width: 420px; }
.player .pp { width: 34px; height: 34px; border-radius: 50%; background: var(--malachite); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.player .pp svg { width: 14px; height: 14px; }
.player .bar { flex: 1; height: 5px; border-radius: 5px; background: var(--cream-2); position: relative; overflow: hidden; }
.player .bar i { position: absolute; left: 0; top: 0; height: 100%; width: 32%; background: var(--bubblegum); }
.player .time { font-size: .74rem; color: var(--brown-sugar); font-variant-numeric: tabular-nums; }

/* =========================================================
   NEWSLETTER / CONTACT
   ========================================================= */
.news-form { display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 999px; border: none; font-family: var(--font-body); font-size: 1rem; outline: none; }
.news-form button { background: var(--malachite); color: #fff; font-family: var(--font-head); font-weight: 700; padding: 15px 28px; border-radius: 999px; transition: .2s var(--ease); }
.news-form button:hover { background: var(--brown-sugar); transform: translateY(-2px); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-card { background: var(--paper); border-radius: var(--r); padding: 36px; box-shadow: var(--shadow); }
.contact-card label { font-family: var(--font-head); font-weight: 700; font-size: .84rem; color: var(--malachite); display: block; margin: 16px 0 6px; }
.contact-card input, .contact-card textarea { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); font-family: var(--font-body); font-size: .95rem; outline: none; transition: .2s; }
.contact-card input:focus, .contact-card textarea:focus { border-color: var(--bubblegum); }
.contact-card textarea { min-height: 120px; resize: vertical; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 46px; height: 46px; border-radius: 12px; background: var(--malachite); color: #fff; display: grid; place-items: center; transition: .2s var(--ease); }
.socials a:hover { background: var(--bubblegum); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* =========================================================
   VIDEO MODAL
   ========================================================= */
.video-modal { position: fixed; inset: 0; z-index: 90; background: rgba(13,30,30,.86); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.open { display: flex; }
.video-modal .frame { width: min(92%, 920px); aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; animation: pop .4s var(--ease); }
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal .close { position: absolute; top: -50px; right: 0; color: #fff; font-family: var(--font-head); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.video-modal .close .x { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #fff; display: grid; place-items: center; }

/* =========================================================
   FOOTER, big colourful wordmark
   ========================================================= */
footer.site { background: var(--malachite); color: var(--bg); margin-top: 0; padding: 60px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
footer .logo { color: var(--bg); margin-bottom: 14px; }
footer p.tagline { opacity: .75; max-width: 30ch; font-size: .92rem; }
footer h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); margin-bottom: 16px; }
footer ul li { margin-bottom: 9px; }
footer ul a { opacity: .82; font-size: .92rem; transition: .2s; }
footer ul a:hover { opacity: 1; color: var(--lagoon); padding-left: 4px; }
.big-wordmark { font-family: var(--font-head); font-weight: 800; letter-spacing: -.04em; text-align: center;
  font-size: clamp(3.5rem, 16vw, 13rem); line-height: .9; margin: 36px 0 10px;
  background: linear-gradient(100deg, var(--bubblegum), var(--marigold) 45%, var(--lagoon)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.big-wordmark .dot { -webkit-text-fill-color: var(--red-dot); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; opacity: .72; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid, .travel-intro, .feature, .pov-hero, .contact-grid, .list-2col { grid-template-columns: 1fr; }
  .story, .story:nth-child(even) { grid-template-columns: 1fr; }
  .story:nth-child(even) .story-img { order: 0; }
  .feature .media { min-height: 280px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .entry-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  /* le backdrop-filter crée un bloc englobant qui casse le position:fixed du menu, on le retire en mobile */
  header.site { background: var(--bg); backdrop-filter: none; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80%, 320px); background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 8px; padding: 90px 30px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow); z-index: 70; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 8px 0; }
  .burger { display: flex; }
  .nav-tools .subscribe-btn { display: none; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .episode { grid-template-columns: 1fr; }
  .episode .cover { width: 100%; height: 200px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .feature .txt, .pov-hero, .contact-card { padding: 28px; }
  section.block, .band { padding: 48px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   OVERRIDES THÈME WORDPRESS (multi-pages)
   ========================================================= */
.page { display: block; }                 /* plus de routing SPA */
.admin-bar header.site { top: 32px; }
@media (max-width: 782px){ .admin-bar header.site { top: 46px; } }

/* contenu d'article (single.php) */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.7rem; color: var(--malachite); margin: 1.6em 0 .5em; }
.article-body h3 { font-size: 1.3rem; color: var(--malachite); margin: 1.3em 0 .4em; }
.article-body p { margin-bottom: 1.1em; font-size: 1.08rem; }
.article-body img { border-radius: var(--r); margin: 1.4em 0; }
.article-body a { color: var(--bubblegum); text-decoration: underline; }
.article-body blockquote { border-left: 4px solid var(--marigold); padding-left: 20px; margin: 1.4em 0; font-style: italic; color: #34403f; }
.article-hero { position: relative; min-height: 320px; display: grid; place-items: end start; padding: 40px; border-radius: var(--r-lg); overflow: hidden; color:#fff; margin-bottom: 40px; }
.article-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.article-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent, rgba(13,40,42,.82)); z-index:1; }
.article-hero .inner { position:relative; z-index:2; }
.article-hero h1 { color:#fff; font-size:clamp(1.8rem,4vw,3rem); max-width:20ch; }

/* lecteur audio / embed épisode */
.episode .embed { margin-top:14px; }
.episode .embed iframe { width:100%; border:0; border-radius:12px; }
.episode audio { width:100%; margin-top:14px; }

/* messages formulaire (CF natif si besoin) */
.wpcf7 .news-form, .wpcf7 .contact-card { }

/* =========================================================
   Contact Form 7 (intégré au design .contact-card)
   ========================================================= */
.contact-card .wpcf7-form p { margin: 0; }
.contact-card .wpcf7-form input[type="submit"] {
  margin-top: 18px; width: 100%;
  background: var(--malachite); color: #fff; font-family: var(--font-head); font-weight: 700;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer; transition: .2s var(--ease); font-size: 1rem;
}
.contact-card .wpcf7-form input[type="submit"]:hover { background: var(--brown-sugar); transform: translateY(-2px); }
.contact-card .wpcf7-spinner { margin: 12px auto 0; display: block; }
.wpcf7-response-output {
  margin: 18px 0 0 !important; padding: 12px 16px !important; border-radius: 12px;
  border: none !important; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  background: var(--cream-2); color: var(--malachite);
}
.wpcf7-mail-sent-ok .wpcf7-response-output { background: var(--lagoon); color: #06302e; }
.wpcf7-validation-errors .wpcf7-response-output,
.wpcf7-mail-sent-ng .wpcf7-response-output { background: #fde2e9; color: #9a1740; }
.wpcf7-not-valid-tip { color: #c01c46; font-size: .8rem; font-family: var(--font-head); }
.contact-card .wpcf7-not-valid { border-color: #c01c46 !important; }

/* =========================================================
   MOBILE : destinations en carrousel horizontal (swipe)
   ========================================================= */
@media (max-width: 760px) {
  .dest-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 16px;
    margin-inline: -4px;
    scrollbar-width: none;            /* Firefox */
  }
  .dest-grid::-webkit-scrollbar { display: none; }   /* Chrome/Safari */
  .dest-grid .dest {
    flex: 0 0 76%;                    /* la carte suivante dépasse -> indique qu'on peut scroller */
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }
}

/* =========================================================
   FLOATING HEADER (variante en test) — adapté à bysunita
   ========================================================= */
.wtl-fh {
  --wtl-fh-ink: #15494C;            /* malachite */
  --wtl-fh-bone: #ffffff;
  --wtl-fh-accent: #F46493;         /* bubblegum */
  --wtl-fh-radius: 18px;
  --wtl-fh-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wtl-fh-gutter: clamp(1rem, 0.4rem + 3vw, 3rem);
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  font-family: var(--font-head); transition: color 0.45s ease;
}
.bs-floating main { padding-top: 88px; }            /* offset du header flottant */
.admin-bar .wtl-fh { top: 32px; }
@media (max-width: 782px){ .admin-bar .wtl-fh { top: 46px; } }

.wtl-fh__wrap { max-width: 1200px; margin: 0 auto; padding: 0.75rem var(--wtl-fh-gutter) 0; }
.wtl-fh__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  height: 64px; padding: 0 0.6rem 0 1.25rem; border-radius: 999px; color: var(--wtl-fh-ink);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.7); backdrop-filter: blur(18px) saturate(1.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 34px rgba(26,22,19,0.12), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: background-color .5s ease, border-color .5s ease, color .45s ease, box-shadow .5s ease;
}
.wtl-fh.is-scrolled .wtl-fh__bar { background: rgba(255, 255, 255, 0.82); }
.wtl-fh.is-light .wtl-fh__bar {
  color: var(--wtl-fh-bone); background: rgba(21, 73, 76, 0.42);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.wtl-fh.is-light.is-scrolled .wtl-fh__bar { background: rgba(21, 73, 76, 0.6); }

.wtl-fh__logo { color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.45rem; letter-spacing: -0.045em; line-height: 1; }
.wtl-fh__logo .dot { color: var(--red-dot); }
.wtl-fh.is-light .wtl-fh__logo { color: #fff; }

.wtl-fh__nav { display: none; align-items: center; gap: 0.1rem; }
.wtl-fh__link {
  color: inherit; opacity: 0.82; white-space: nowrap; text-decoration: none; font-weight: 600;
  font-size: 0.9rem; padding: 0.52rem 0.9rem; border-radius: 999px; line-height: 1;
  transition: background-color .3s var(--wtl-fh-ease), opacity .3s ease, color .3s ease;
}
.wtl-fh__link:hover { opacity: 1; background: rgba(21,73,76,0.07); }
.wtl-fh.is-light .wtl-fh__link:hover { background: rgba(255,255,255,0.14); }
.wtl-fh__link.is-active { opacity: 1; color: var(--wtl-fh-accent); }

.wtl-fh__actions { display: flex; align-items: center; gap: 0.4rem; }
.wtl-fh__icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: none; color: inherit; cursor: pointer; transition: background-color .25s ease; }
.wtl-fh__icon svg { width: 18px; height: 18px; }
.wtl-fh__icon:hover { background: rgba(21,73,76,0.07); }
.wtl-fh.is-light .wtl-fh__icon:hover { background: rgba(255,255,255,0.14); }

.wtl-fh__cta {
  display: none; align-items: center; gap: 0.5rem; white-space: nowrap; text-decoration: none;
  font-size: 0.85rem; font-weight: 700; padding: 0.68rem 1.25rem; border-radius: 999px;
  background: var(--wtl-fh-ink); color: #fff; border: 1px solid var(--wtl-fh-ink);
  transition: background-color .35s var(--wtl-fh-ease), color .35s, border-color .35s;
}
.wtl-fh__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wtl-fh-accent); transition: transform .35s var(--wtl-fh-ease); }
.wtl-fh__cta:hover { background: var(--wtl-fh-accent); border-color: var(--wtl-fh-accent); }
.wtl-fh__cta:hover .wtl-fh__dot { transform: scale(2.2); background: #fff; }
.wtl-fh.is-light .wtl-fh__cta { background: #fff; color: var(--wtl-fh-ink); border-color: #fff; }
.wtl-fh.is-light .wtl-fh__cta:hover { background: var(--wtl-fh-accent); color: #fff; border-color: var(--wtl-fh-accent); }

.wtl-fh__burger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; border-radius: 999px; color: inherit; background: transparent; border: none; cursor: pointer; }
.wtl-fh__burger span { display: block; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; }
.wtl-fh__burger:hover { background: rgba(21,73,76,0.07); }
.wtl-fh.is-light .wtl-fh__burger:hover { background: rgba(255,255,255,0.14); }

.wtl-fh__mobile { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem;
  border-radius: var(--wtl-fh-radius); color: var(--ink); background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(18px) saturate(1.6); backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(21,73,76,0.09); box-shadow: 0 30px 80px rgba(21,73,76,0.18); }
.wtl-fh__mobile a { padding: 0.6rem 0.75rem; border-radius: 10px; text-decoration: none; color: inherit; font-weight: 600; }
.wtl-fh__mobile a:hover { background: rgba(21,73,76,0.06); color: var(--bubblegum); }
.wtl-fh__mobile.is-hidden { display: none; }

@media (min-width: 640px) { .wtl-fh__cta { display: inline-flex; } }
@media (min-width: 1024px) { .wtl-fh__nav { display: flex; } .wtl-fh__burger, .wtl-fh__mobile { display: none; } }

/* Réseaux sociaux dans le floating header */
.wtl-fh__socials { display: none; align-items: center; gap: 2px; }
.wtl-fh__socials a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: inherit; opacity: .82; transition: background-color .25s ease, opacity .2s ease; }
.wtl-fh__socials a:hover { opacity: 1; background: rgba(21,73,76,0.07); }
.wtl-fh.is-light .wtl-fh__socials a:hover { background: rgba(255,255,255,0.14); }
.wtl-fh__socials svg { width: 17px; height: 17px; }
@media (min-width: 1024px) { .wtl-fh__socials { display: flex; } }
.wtl-fh__mobile-socials { display: flex; gap: 8px; padding: 10px 4px 2px; margin-top: 6px; border-top: 1px solid rgba(21,73,76,.1); }
.wtl-fh__mobile-socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--malachite); background: rgba(21,73,76,.06); }
.wtl-fh__mobile-socials svg { width: 18px; height: 18px; }

/* =========================================================
   HERO — couverture magazine (accueil)
   ========================================================= */
.bs-floating.home main { padding-top: 0; }   /* le hero remonte derrière le header flottant */
.hero-cover {
  position: relative; min-height: clamp(560px, 90vh, 780px);
  display: flex; align-items: flex-end; overflow: hidden; color: #fff;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.hero-cover__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; }
.hero-cover::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,40,42,.55) 0%, rgba(13,40,42,.12) 26%, rgba(13,40,42,.30) 58%, rgba(13,40,42,.86) 100%); }
.hero-cover__inner { position: relative; z-index: 3; padding: 130px 0 64px; }
.hero-cover .hero-kicker { color: #fff; opacity: .95; }
.hero-cover h1 { color: #fff; font-size: clamp(2.7rem, 7.5vw, 5.4rem); max-width: 15ch; text-shadow: 0 2px 40px rgba(0,0,0,.45); }
.hero-cover .lead { max-width: 46ch; margin: 20px 0 30px; font-size: 1.12rem; line-height: 1.6; opacity: .96; text-shadow: 0 1px 16px rgba(0,0,0,.35); }
.hero-cover .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cover .btn-ghost { border-color: rgba(255,255,255,.85); color: #fff; }
.hero-cover .btn-ghost:hover { background: #fff; color: var(--malachite); }
/* taches de couleur (punch) */
.hero-cover__blob { position: absolute; z-index: 2; border-radius: 50%; filter: blur(2px); opacity: .9; mix-blend-mode: screen; }
.hero-cover__blob--1 { width: 150px; height: 150px; background: radial-gradient(circle at 30% 30%, var(--bubblegum), transparent 70%); top: 16%; right: 8%; }
.hero-cover__blob--2 { width: 120px; height: 120px; background: radial-gradient(circle at 30% 30%, var(--marigold), transparent 70%); bottom: 22%; right: 22%; }
/* sticker récits choisis */
.hero-cover__sticker {
  position: absolute; z-index: 4; top: 120px; right: clamp(1rem, 4vw, 4rem);
  background: var(--bubblegum); color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: .92rem; line-height: 1.15; padding: 14px 18px; border-radius: 16px;
  transform: rotate(4deg); box-shadow: 0 14px 34px rgba(21,73,76,.35);
}
@media (max-width: 760px) {
  .hero-cover { min-height: clamp(480px, 78vh, 620px); border-radius: 0 0 var(--r) var(--r); }
  .hero-cover__inner { padding: 110px 0 44px; }
  .hero-cover__sticker, .hero-cover__blob { display: none; }
}

/* Couverture d'article (en-tête éditorial épuré) */
.article-cover { max-width: 1000px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: auto; display: block; }

/* Centrage homogène des icônes sociales (header, menu mobile, contact) */
.wtl-fh__socials a, .wtl-fh__mobile-socials a, .socials a { display: inline-grid; place-items: center; line-height: 0; }
.wtl-fh__socials svg, .wtl-fh__mobile-socials svg, .socials svg { display: block; }

/* Icônes sociales : sans fond + plus grandes */
.wtl-fh__socials a { background: transparent !important; width: auto; height: auto; padding: 6px; opacity: .8; }
.wtl-fh__socials a:hover { background: transparent !important; opacity: 1; transform: translateY(-1px); }
.wtl-fh__socials svg { width: 23px; height: 23px; }
.wtl-fh__mobile-socials a { background: transparent !important; width: auto; height: auto; padding: 4px; }
.wtl-fh__mobile-socials svg { width: 27px; height: 27px; }
.wtl-fh__mobile-socials { gap: 16px; }

/* =========================================================
   DÉCORATIONS / MOTIFS ANIMÉS (site-wide)
   ========================================================= */
.deco { position: absolute; pointer-events: none; z-index: 2; }
@keyframes deco-spin    { to { transform: rotate(360deg); } }
@keyframes deco-float   { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-16px) rotate(8deg); } }
@keyframes deco-twinkle { 0%,100% { transform: scale(.6); opacity: .5; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes deco-sway    { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes deco-flutter { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(4deg); } }
.deco--sun        { width: 64px; height: 64px; color: var(--marigold); animation: deco-spin 26s linear infinite; }
.deco--flower     { width: 60px; height: 60px; color: var(--bubblegum); animation: deco-float 6s ease-in-out infinite; }
.deco--spark, .deco--sparkc { width: 26px; height: 26px; color: var(--marigold); animation: deco-twinkle 3.2s ease-in-out infinite; }
.deco--leaf       { width: 54px; height: 54px; color: var(--lagoon); animation: deco-float 7s ease-in-out infinite; }
.deco--flower-stem, .deco--sprig { width: 58px; height: 76px; transform-origin: 50% 100%; animation: deco-sway 5s ease-in-out infinite; }
.deco--flower-stem { color: var(--bubblegum); }
.deco--sprig      { color: var(--malachite); }
.deco--paisley    { width: 62px; height: 62px; color: var(--brown-sugar); animation: deco-float 6s ease-in-out infinite; }
.deco--lotus      { width: 84px; height: 58px; color: var(--bubblegum); animation: deco-float 5.5s ease-in-out infinite; }
.deco--star       { width: 34px; height: 34px; color: var(--marigold); animation: deco-twinkle 3s ease-in-out infinite; }
.deco--butterfly  { width: 52px; height: 52px; color: var(--lagoon); animation: deco-flutter 4s ease-in-out infinite; }
.deco--inline     { position: static; display: inline-block; width: 1em; height: 1em; margin-left: .3em; vertical-align: .55em; }
main > section { position: relative; }   /* ancre les décos dispersées */
@media (prefers-reduced-motion: reduce) { .deco { animation: none !important; } }
@media (max-width: 1100px) { .deco--auto { transform: scale(.7); } }
@media (max-width: 760px)  { .deco--auto { transform: scale(.55); } }

/* =========================================================
   BANDES de section : tops/bottoms arrondis (effet bloc souple)
   ========================================================= */
.band { border-radius: 0; }

/* =========================================================
   EN IMAGES : 2 rangées horizontales défilant en sens opposés
   ========================================================= */
.img-marquee { width: 100%; overflow: hidden; display: flex; flex-direction: column; gap: 14px; margin-top: 10px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.img-marquee__row { display: flex; gap: 14px; width: max-content; will-change: transform; }
.img-marquee__row img { height: 210px; width: 280px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); flex: 0 0 auto; display: block; }
.img-marquee__row--left  { animation: imgmarq-left 48s linear infinite; }
.img-marquee__row--right { animation: imgmarq-right 48s linear infinite; }
@keyframes imgmarq-left  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes imgmarq-right { from { transform: translateX(-50%); }  to { transform: translateX(0); } }
.img-marquee:hover .img-marquee__row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .img-marquee__row { animation: none; } }
@media (max-width: 760px) { .img-marquee__row img { height: 150px; width: 200px; } }

/* =========================================================
   COMPOSANTS portés depuis la maquette v2
   ========================================================= */
/* Galerie bio : 2 colonnes verticales en sens opposés */
.bio-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 540px; overflow: hidden; border-radius: var(--r-lg); position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.bio-gallery__col { display: flex; flex-direction: column; gap: 14px; will-change: transform; }
.bio-gallery__col img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; display: block; box-shadow: var(--shadow); }
.bio-gallery__col--up   { animation: bgcol-up 30s linear infinite; }
.bio-gallery__col--down { animation: bgcol-down 30s linear infinite; }
.bio-gallery:hover .bio-gallery__col { animation-play-state: paused; }
@keyframes bgcol-up   { from { transform: translateY(0); }     to { transform: translateY(-50%); } }
@keyframes bgcol-down { from { transform: translateY(-50%); }  to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .bio-gallery__col { animation: none; } }
@media (max-width: 900px) { .bio-gallery { height: 420px; } }

/* À la une */
.alaune { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.alaune__media { position: relative; min-height: 380px; }
.alaune__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.alaune__media .badge { position: absolute; top: 18px; left: 18px; background: var(--bubblegum); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: 8px 14px; border-radius: 999px; }
.alaune__txt { padding: 48px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.alaune__txt .meta { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--brown-sugar); }
.alaune__txt h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--malachite); line-height: 1.1; }
.alaune__txt p { color: #43504e; font-size: 1.05rem; }
@media (max-width: 900px) { .alaune { grid-template-columns: 1fr; } .alaune__media { min-height: 260px; } .alaune__txt { padding: 30px; } }

/* Teaser Point of YOU */
.pov-teaser { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; }
.pov-teaser__img { aspect-ratio: 1; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.pov-teaser__img img { width: 100%; height: 100%; object-fit: cover; }
.pov-teaser__img .play-badge { opacity: 1; background: rgba(21,73,76,.2); }
@media (max-width: 900px) { .pov-teaser { grid-template-columns: 1fr; } }

/* Strip Voyages (scroll horizontal) */
.voy-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.voy-strip::-webkit-scrollbar { display: none; }

/* =========================================================
   MES DESTINATIONS — scroll cards 3D (GSAP ScrollTrigger)
   ========================================================= */
.wtl-scroll-cards { --wtl-sc-card-w: clamp(220px, 22vw, 320px); position: relative; background: #142625; color: #fff; font-family: var(--font-head); }
.wtl-scroll-cards__pin { height: 100vh; overflow: hidden; display: flex; align-items: center; position: relative; }
.wtl-scroll-cards__head { position: absolute; top: clamp(2.4rem, 7vh, 5rem); left: 0; right: 0; text-align: center; z-index: 3; pointer-events: none; padding: 0 1.5rem; }
.wtl-scroll-cards__head .eyebrow { display: block; margin-bottom: 10px; }
.wtl-scroll-cards__head h2 { margin: 0; font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem); letter-spacing: -.045em; line-height: 1; color: #fff; }
.wtl-scroll-cards__head p { margin: .9rem auto 0; max-width: 46ch; color: rgba(255,255,255,.6); font-weight: 500; font-size: clamp(.95rem, .9rem + .3vw, 1.15rem); font-family: var(--font-body); }
.wtl-scroll-cards__track { display: flex; gap: clamp(60px, 7vw, 130px); padding-left: 4vw; will-change: transform; }
.wtl-scroll-card { flex: 0 0 auto; width: var(--wtl-sc-card-w); will-change: transform; filter: drop-shadow(0 24px 40px rgba(0,0,0,.45)); }
.wtl-scroll-card svg { width: 100%; height: auto; display: block; }
.wtl-scroll-card__name { font-family: var(--font-head); font-weight: 800; }
.wtl-scroll-cards__hint { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: rgba(255,255,255,.45); }
.wtl-scroll-cards.is-static { padding: 3rem 0 3.5rem; }
.wtl-scroll-cards.is-static .wtl-scroll-cards__head { position: static; padding: 0 1.2rem 1.4rem; }
.wtl-scroll-cards.is-static .wtl-scroll-cards__pin { height: auto; overflow-x: auto; display: block; padding: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.wtl-scroll-cards.is-static .wtl-scroll-cards__pin::-webkit-scrollbar { display: none; }
.wtl-scroll-cards.is-static .wtl-scroll-cards__track { padding: 0 1.2rem; gap: 18px; }
.wtl-scroll-cards.is-static .wtl-scroll-card { width: clamp(180px, 60vw, 240px); }

/* MES DESTINATIONS — version simple sur mobile */
.dest-simple { display: none; }
@media (max-width: 900px) {
  .wtl-scroll-cards .wtl-scroll-cards__pin { display: none !important; }
  .wtl-scroll-cards { min-height: 0; }
  .wtl-scroll-cards__head { position: static !important; text-align: left; padding: 88px 1.2rem 1.2rem; }
  .wtl-scroll-cards__head p { display: none; }
  .dest-simple { display: flex; gap: 14px; overflow-x: auto; padding: 0 1.2rem 2.2rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .dest-simple::-webkit-scrollbar { display: none; }
  .dest-simple a { flex: 0 0 72%; }
  .dest-simple .dest { aspect-ratio: 3/4; }
}

/* =========================================================
   FINITIONS retour cliente
   ========================================================= */
/* Logo : point du "i" en rouge (i sans point + pastille rouge) */
.logo .i-dot, .wtl-fh__logo .i-dot, .big-wordmark .i-dot { position: relative; }
.logo .i-dot::after, .wtl-fh__logo .i-dot::after, .big-wordmark .i-dot::after {
  content: ""; position: absolute; left: 50%; top: 0.12em; transform: translateX(-50%);
  width: 0.2em; height: 0.2em; border-radius: 50%; background: var(--red-dot);
}
.big-wordmark .i-dot::after { -webkit-text-fill-color: var(--red-dot); }
.big-wordmark .i-dot { -webkit-text-fill-color: var(--lagoon); color: var(--lagoon); }

/* Footer : ne plus couper le "y" (descendante) du grand wordmark */
.big-wordmark { line-height: 1.02; padding-bottom: .14em; overflow: visible; }

/* Décos : glyphes indiens (Om, devanagari) + mandala */
.deco--glyph { font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", system-ui, serif; font-weight: 700; line-height: 1;
  font-size: 44px; color: var(--brown-sugar); animation: deco-float 6s ease-in-out infinite; }
.deco--om { color: var(--bubblegum); animation: deco-spin 30s linear infinite; }
.deco--mandala { width: 64px; height: 64px; color: var(--marigold); animation: deco-spin 34s linear infinite; }
@media (max-width: 760px) { .deco--glyph { font-size: 30px; } }
