/* ============================================================
   LA MAISON DU VOYAGE — Héritage Indo-Français
   Palette: or #C9A96E · crème #FAF8F5 · sombre #1C1B19
   Type: Playfair Display (titres) · Lato (texte)
   Signature: arches moghole, moucharabieh (jali), filets or
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A96E;
  --gold-light: #DFC28E;
  --gold-dark: #A8854E;
  --cream: #FAF8F5;
  --cream-dark: #F2EDE6;
  --dark: #1C1B19;
  --dark-mid: #3A3835;
  --muted: #7A7670;
  --white: #FFFFFF;
  --accent2: #A8854E;            /* tweakable second accent */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', Helvetica, Arial, sans-serif;
  --max-w: 1240px;
  --jali-o: 0.5;                  /* tweakable motif intensity */
  --hairline: rgba(28,27,25,0.14);
  --hairline-gold: rgba(201,169,110,0.45);
  --hairline-w: rgba(255,255,255,0.12);
}
html[data-type="cormorant"] { --font-serif: 'Cormorant Garamond', Georgia, serif; }
html[data-type="marcellus"] { --font-serif: 'Marcellus', Georgia, serif; }
html[data-palette="indigo"] { --accent2: #4A5490; }
html[data-palette="safran"] { --accent2: #B45F2D; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold-light); color: var(--dark); }

/* ===== Jali (moucharabieh) texture ===== */
.jali { position: relative; }
.jali::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke='%23C9A96E' stroke-width='0.8'%3E%3Cpath d='M32 5 59 32 32 59 5 32Z'/%3E%3Ccircle cx='32' cy='32' r='5.5'/%3E%3Cpath d='M32 0v5M32 59v5M0 32h5M59 32h5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
  opacity: calc(var(--jali-o) * 0.16);
}
.jali > * { position: relative; }

/* ===== Arches ===== */
.arch {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}
.arch-frame {
  position: relative;
  border-radius: 999px 999px 0 0;
  padding: 10px;
  border: 1px solid var(--hairline-gold);
}
.arch-frame > .arch { height: 100%; }

/* ===== Ornament divider: — ◆ — ===== */
.ornament {
  display: flex; align-items: center; gap: 14px;
  color: var(--accent2);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 48px; background: var(--hairline-gold);
}
.ornament .diamond { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent2); }
.ornament.centered { justify-content: center; }

/* ===== Typography helpers ===== */
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent2);
  display: flex; align-items: center; gap: 16px;
}
.eyebrow .num { color: var(--gold); font-weight: 400; font-family: var(--font-serif); font-size: 15px; font-style: italic; letter-spacing: 1px; }
.eyebrow::after { content: ""; width: 40px; height: 1px; background: var(--hairline-gold); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { content: ""; width: 40px; height: 1px; background: var(--hairline-gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 18px;
  text-wrap: balance;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--accent2); }
.section-sub {
  font-size: 16.5px; font-weight: 300;
  color: var(--muted);
  max-width: 560px; margin-top: 18px; line-height: 1.8;
  text-wrap: pretty;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, gap 0.25s ease;
}
.btn:hover { gap: 18px; }
.btn .arr { font-family: var(--font-serif); font-weight: 400; font-size: 15px; line-height: 1; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold-light); }
.link-caps {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent2);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 6px;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.link-caps:hover { gap: 16px; border-color: var(--accent2); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ===== Scroll reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
  }
  html.js .reveal.in { opacity: 1; transform: none; }
  html.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
  html.js .reveal[data-delay="2"] { transition-delay: 0.24s; }
  html.js .reveal[data-delay="3"] { transition-delay: 0.36s; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 11.5px; letter-spacing: 1.5px;
  display: flex; justify-content: center; gap: 28px;
  padding: 9px 24px;
  text-transform: uppercase; font-weight: 400;
}
.topbar b { color: var(--gold); font-weight: 700; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.4s ease;
}
.nav.scrolled { box-shadow: 0 10px 40px rgba(28,27,25,0.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 32px; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .l1 {
  font-family: var(--font-serif); font-size: 23px; font-weight: 600; color: var(--dark);
}
.nav-logo .l1 em { font-style: italic; font-weight: 400; color: var(--accent2); }
.nav-logo .l2 {
  font-size: 9px; font-weight: 700; letter-spacing: 3.4px; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 12.5px; font-weight: 400; letter-spacing: 0.8px;
  color: var(--dark-mid);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--accent2); border-color: var(--hairline-gold); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-phone {
  font-family: var(--font-serif); font-size: 16px; font-style: italic;
  color: var(--dark-mid);
}
.nav-phone:hover { color: var(--accent2); }
.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: 13px 26px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-dark); }

/* ============================================================
   HERO — variante "Arche" (défaut)
   ============================================================ */
.hero { background: var(--cream); overflow: hidden; }
.hero-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 90px 32px 110px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
  position: relative;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 600; line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--dark);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--accent2); }
.hero-sub {
  font-size: 17.5px; font-weight: 300; color: var(--muted);
  max-width: 460px; margin-top: 28px; line-height: 1.85;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.hero-vow {
  margin-top: 52px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; color: var(--muted);
}
.hero-vow::before { content: ""; width: 48px; height: 1px; background: var(--hairline-gold); }

.hero-figure { position: relative; justify-self: end; width: min(440px, 100%); }
.hero-figure .arch-frame { aspect-ratio: 4 / 5.4; }
.hero-figure .arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption {
  margin-top: 16px; text-align: center;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.hero-figure figcaption b { color: var(--accent2); font-weight: 700; }
/* small offset arch behind */
.hero-figure::before {
  content: "";
  position: absolute; inset: 26px -26px -26px 26px;
  border-radius: 999px 999px 0 0;
  background: var(--cream-dark);
  z-index: -1;
}

/* ===== HERO — variante "Plein écran" ===== */
html[data-hero="plein"] .hero { position: relative; background: var(--dark); }
html[data-hero="plein"] .hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1920&q=80'));
  background-size: cover; background-position: center 42%;
}
html[data-hero="plein"] .hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,27,25,0.42), rgba(28,27,25,0.62) 70%, rgba(28,27,25,0.82));
}
html[data-hero="plein"] .hero-grid {
  grid-template-columns: 1fr;
  justify-items: center; text-align: center;
  min-height: 78vh; align-content: center;
  z-index: 2; padding: 140px 32px 160px;
}
html[data-hero="plein"] .hero-figure { display: none; }
html[data-hero="plein"] .hero-title { color: var(--white); }
html[data-hero="plein"] .hero-title em { color: var(--gold-light); }
html[data-hero="plein"] .hero-sub { color: rgba(255,255,255,0.82); margin-inline: auto; }
html[data-hero="plein"] .hero-eyebrow { justify-content: center; }
html[data-hero="plein"] .hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--hairline-gold); }
html[data-hero="plein"] .hero-actions { justify-content: center; }
html[data-hero="plein"] .hero-vow { display: none; }
html[data-hero="plein"] .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,0.5); }
html[data-hero="plein"] .btn-ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold-light); }

/* ============================================================
   CONCIERGE — « Composez votre voyage »
   ============================================================ */
.concierge { background: var(--dark); }
.concierge-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px 32px 60px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 56px; align-items: center;
}
.concierge-label { display: flex; flex-direction: column; gap: 10px; }
.concierge-label .cap {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.concierge-label .sub { font-size: 12.5px; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 170px; line-height: 1.6; }
.concierge-sentence {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 400; color: rgba(255,255,255,0.92);
  line-height: 2.1;
}
.concierge-sentence .fill {
  display: inline-block;
  background: transparent; border: none;
  border-bottom: 1px solid var(--hairline-gold);
  color: var(--gold-light);
  font-family: var(--font-serif); font-style: italic;
  font-size: inherit; line-height: 1.4;
  padding: 0 6px 2px;
  cursor: pointer; outline: none;
  -webkit-appearance: none; appearance: none;
  text-align: center;
  transition: border-color 0.25s;
}
.concierge-sentence .fill:hover, .concierge-sentence .fill:focus { border-color: var(--gold); }
.concierge-sentence select.fill option { color: var(--dark); background: var(--white); font-style: normal; }
.concierge-sentence input.fill { cursor: text; width: 150px; }
.concierge-sentence input.fill::placeholder { color: rgba(223,194,142,0.55); }
.concierge-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.concierge-cta .note { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.35); text-transform: uppercase; }

/* ============================================================
   INTRO + CHIFFRES (fond sombre)
   ============================================================ */
.maison { background: var(--dark); border-top: 1px solid var(--hairline-w); }
.maison-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 110px 32px 0;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}
.maison h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600; line-height: 1.2; color: var(--white);
}
.maison h2 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.maison-text { align-self: end; }
.maison-text p {
  color: rgba(255,255,255,0.62); font-size: 16px; font-weight: 300; line-height: 1.95;
  text-wrap: pretty;
}
.maison-text p::first-letter {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 600; color: var(--gold);
  float: left; line-height: 0.85;
  padding: 6px 12px 0 0;
}
.numbers {
  max-width: var(--max-w); margin: 90px auto 0;
  padding: 48px 32px 96px;
  border-top: 1px solid var(--hairline-w);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.number-item { text-align: center; padding: 0 24px; border-right: 1px solid var(--hairline-w); }
.number-item:last-child { border-right: none; }
.number-val {
  font-family: var(--font-serif); font-size: 54px; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.number-val sup { font-size: 26px; font-style: italic; }
.number-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 14px;
}

/* ============================================================
   VOYAGES
   ============================================================ */
.voyages { padding: 130px 0 120px; }
.voyages-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px;
}
.voyage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.voyage-card { position: relative; cursor: pointer; }
.voyage-card.feature { grid-column: span 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--hairline); }
.voyage-card.feature .voyage-img-wrap { height: 100%; min-height: 420px; }
.voyage-card.feature .voyage-body { padding: 44px 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.voyage-img-wrap { position: relative; overflow: hidden; height: 300px; background: var(--cream-dark); }
.voyage-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.8s ease;
}
.voyage-card:hover .voyage-img-wrap img { transform: scale(1.05); }
.voyage-tag {
  position: absolute; top: 0; left: 24px;
  background: var(--dark); color: var(--gold-light);
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 9px 14px 8px;
}
.voyage-body { padding: 26px 4px 0; }
.voyage-card.feature .voyage-body { padding: 44px; }
.voyage-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--accent2);
}
.voyage-meta .dot { width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); }
.voyage-meta .dur { color: var(--muted); font-weight: 400; letter-spacing: 1.5px; }
.voyage-title {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  line-height: 1.25; margin-top: 12px;
}
.voyage-card.feature .voyage-title { font-size: 32px; }
.voyage-desc {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.75; margin-top: 10px; text-wrap: pretty;
}
.voyage-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.voyage-price { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.voyage-price b {
  display: block;
  font-family: var(--font-serif); font-size: 23px; font-weight: 600;
  color: var(--dark); letter-spacing: 0; text-transform: none; margin-top: 2px;
}
.voyage-go {
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  color: var(--accent2);
  display: inline-flex; gap: 8px; align-items: center;
  transition: gap 0.25s;
}
.voyage-card:hover .voyage-go { gap: 14px; }
.voyages-footer { text-align: center; margin-top: 72px; }

/* ============================================================
   DESTINATIONS (fond sombre)
   ============================================================ */
.destinations { background: var(--dark); padding: 120px 0; }
.destinations .section-title { color: var(--white); }
.destinations .section-sub { color: rgba(255,255,255,0.5); margin-inline: auto; }
.destinations-header { text-align: center; margin-bottom: 64px; }
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px; gap: 10px;
}
.dest-card { position: relative; overflow: hidden; }
.dest-card.tall { grid-row: span 2; }
.dest-card.tall .dest-bg-wrap { border-radius: 999px 999px 0 0; }
.dest-bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.dest-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.dest-card:hover .dest-bg { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,27,25,0.88), rgba(28,27,25,0.06) 55%);
}
.dest-content { position: absolute; bottom: 26px; left: 28px; right: 28px; }
.dest-name { font-family: var(--font-serif); font-size: 23px; font-weight: 600; color: var(--white); }
.dest-card.tall .dest-name { font-size: 31px; }
.dest-meta {
  display: flex; gap: 14px; align-items: center; margin-top: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
}
.dest-meta .sep { width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); }
.dest-meta .from { color: rgba(255,255,255,0.6); font-weight: 400; }
.dest-explore {
  margin-top: 14px;
  font-family: var(--font-serif); font-style: italic; font-size: 14.5px;
  color: var(--gold-light);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.dest-card:hover .dest-explore { opacity: 1; transform: none; }

/* ============================================================
   PROMESSE
   ============================================================ */
.promesse { padding: 130px 0; }
.promesse-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.promesse-figure { position: sticky; top: 120px; }
.promesse-figure .arch-frame { aspect-ratio: 4 / 5; }
.promesse-figure .arch img { width: 100%; height: 100%; object-fit: cover; }
.promesse-figure figcaption {
  margin-top: 16px; text-align: center;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
}
.promesse-list { margin-top: 56px; }
.promesse-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
}
.promesse-item:first-child { border-top: 1px solid var(--hairline); }
.promesse-num {
  font-family: var(--font-serif); font-style: italic; font-size: 30px;
  color: var(--gold); line-height: 1.2;
}
.promesse-item h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 600; line-height: 1.3; }
.promesse-item p {
  font-size: 14.5px; font-weight: 300; color: var(--muted);
  line-height: 1.8; margin-top: 8px; text-wrap: pretty;
}

/* ============================================================
   PAR ENVIE
   ============================================================ */
.envies { background: var(--cream-dark); padding: 120px 0 130px; border-top: 1px solid var(--hairline); }
.envies-header { text-align: center; margin-bottom: 70px; }
.envies-header .section-sub { margin-inline: auto; }
.envie-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.envie-card { text-align: center; cursor: pointer; }
.envie-card .arch-frame { aspect-ratio: 3 / 4.4; background: var(--cream); }
.envie-card .arch { height: 100%; }
.envie-card .arch img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.envie-card:hover .arch img { transform: scale(1.06); }
.envie-pour {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-top: 24px;
}
.envie-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-top: 6px; }
.envie-link {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.envie-card:hover .envie-link { color: var(--accent2); border-color: var(--hairline-gold); }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.avis { padding: 130px 0; }
.avis-inner { max-width: 880px; margin: 0 auto; padding: 0 32px; text-align: center; }
.avis-rating {
  margin-top: 22px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.avis-rating .stars { color: var(--gold); font-size: 15px; letter-spacing: 4px; }
.avis-quote-wrap { position: relative; margin-top: 56px; min-height: 220px; }
.avis-quote {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.avis-quote.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.avis-quote blockquote {
  font-family: var(--font-serif); font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 400; font-style: italic; line-height: 1.65;
  color: var(--dark-mid); text-wrap: balance;
}
.avis-quote blockquote::before { content: "« "; color: var(--gold); }
.avis-quote blockquote::after { content: " »"; color: var(--gold); }
.avis-who {
  margin-top: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent2);
}
.avis-who span { color: var(--muted); font-weight: 400; }
.avis-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; align-items: center; }
.avis-dot {
  width: 8px; height: 8px; transform: rotate(45deg);
  border: 1px solid var(--gold); background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.3s;
}
.avis-dot.active { background: var(--gold); }

/* ============================================================
   ÉDITORIAL / CONSEILS
   ============================================================ */
.editorial { background: var(--cream-dark); border-top: 1px solid var(--hairline); padding: 120px 0 130px; }
.editorial-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.edito-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.edito-feature {
  background: var(--white); border: 1px solid var(--hairline);
  display: grid; grid-template-rows: 300px 1fr;
  cursor: pointer;
}
.edito-img { overflow: hidden; background: var(--cream-dark); }
.edito-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.edito-feature:hover .edito-img img, .edito-item:hover .edito-img img { transform: scale(1.05); }
.edito-body { padding: 34px 38px 38px; }
.edito-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent2);
}
.edito-cat span { color: var(--muted); font-weight: 400; letter-spacing: 1.5px; }
.edito-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; line-height: 1.3; margin-top: 12px; }
.edito-sum { font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-top: 12px; text-wrap: pretty; }
.edito-side { display: grid; grid-template-rows: 1fr 1fr; gap: 40px; }
.edito-item {
  background: var(--white); border: 1px solid var(--hairline);
  display: grid; grid-template-columns: 170px 1fr;
  cursor: pointer; overflow: hidden;
}
.edito-item .edito-body { padding: 26px 28px; align-self: center; }
.edito-item .edito-title { font-size: 19px; margin-top: 10px; }
.edito-item .edito-sum { font-size: 13.5px; margin-top: 8px; }

/* ============================================================
   CONTACT / DEVIS
   ============================================================ */
.contact { position: relative; background: var(--dark); padding: 150px 0; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
  background-size: cover; background-position: center;
  opacity: 0.32;
}
.contact-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,27,25,0.55), rgba(28,27,25,0.85)); }
.contact-inner { position: relative; max-width: 780px; margin: 0 auto; padding: 0 32px; text-align: center; }
.contact-inner .section-title { color: var(--white); }
.contact-inner .section-sub { color: rgba(255,255,255,0.6); margin-inline: auto; }
.contact-phone {
  margin-top: 44px;
  font-family: var(--font-serif); font-size: clamp(30px, 3vw, 42px);
  font-weight: 400; color: var(--gold-light); display: inline-block;
}
.contact-hours { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 12px; }
.contact-actions { display: flex; gap: 18px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--cream); padding: 100px 0; }
.newsletter-inner {
  max-width: 680px; margin: 0 auto; padding: 0 32px; text-align: center;
}
.newsletter h3 { font-family: var(--font-serif); font-size: 34px; font-weight: 600; margin-top: 20px; }
.newsletter h3 em { font-style: italic; font-weight: 400; color: var(--accent2); }
.newsletter p { font-size: 15px; font-weight: 300; color: var(--muted); margin-top: 14px; line-height: 1.8; }
.newsletter-form {
  display: flex; gap: 0; margin-top: 40px;
  border-bottom: 1px solid var(--dark);
}
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font-serif); font-style: italic; font-size: 17px;
  color: var(--dark); padding: 14px 4px;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: transparent; border: none; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent2); padding: 14px 4px;
  transition: color 0.25s;
}
.newsletter-form button:hover { color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.55); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 90px 32px 60px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo .l1 { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--white); }
.footer-logo .l1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.footer-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 15.5px;
  color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 24px; max-width: 300px;
}
.footer-quote span { display: block; font-size: 11px; font-style: normal; letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; color: var(--gold); font-family: var(--font-sans); }
.footer-coords { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 300; }
.footer-coords a:hover { color: var(--gold-light); }
.footer-certs {
  margin-top: 28px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--hairline-w); }
.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 26px 32px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-figure { justify-self: center; }
  .concierge-inner { grid-template-columns: 1fr; gap: 32px; }
  .concierge-cta { align-items: flex-start; }
  .maison-inner { grid-template-columns: 1fr; gap: 40px; }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .number-item:nth-child(2) { border-right: none; }
  .voyage-grid { grid-template-columns: repeat(2, 1fr); }
  .voyage-card.feature { grid-column: span 2; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .promesse-grid { grid-template-columns: 1fr; }
  .promesse-figure { position: static; max-width: 440px; }
  .envie-grid { grid-template-columns: repeat(2, 1fr); }
  .edito-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .voyage-grid { grid-template-columns: 1fr; }
  .voyage-card.feature { grid-column: span 1; grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.tall { grid-row: span 1; }
  .envie-grid { grid-template-columns: 1fr; }
  .edito-item { grid-template-columns: 1fr; }
  .edito-item .edito-img { height: 180px; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .nav-phone { display: none; }
}
