/* Polices hébergées sur le site (fichiers variables : un seul fichier par famille et par style) */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-normal-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-italic-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/assets/fonts/raleway-normal-300.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #07080c;
  --bg-2: #0d0f15;
  --bg-3: #13161e;
  --line: rgba(201, 162, 75, 0.22);
  --gold: #c9a24b;
  --gold-2: #e6cb86;
  --cream: #f3ede0;
  --text: #d9d3c7;
  --muted: #9a948a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --accent: "Playfair Display", Georgia, serif;
  --sans: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; scroll-padding-bottom: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 12px 18px; background: var(--gold); color: #0b0b0b; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; transform: translateY(-200%); }
.skip:focus { transform: none; }
main:focus { outline: none; }

/* ---------- En-tête ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.82) 0%, rgba(7, 8, 12, 0.45) 60%, rgba(7, 8, 12, 0) 100%);
}
.site-header.is-scrolled { background: rgba(7, 8, 12, 0.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: auto; }
.brand-name { font-family: var(--serif); font-size: 21px; letter-spacing: 0.18em; color: var(--cream); line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.34em; color: var(--gold); margin-top: 5px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.nav a { color: var(--text); transition: color 0.25s; }
.nav a:hover { color: var(--gold-2); }
.nav .lang { border: 1px solid var(--line); padding: 6px 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--cream); width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px;
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--gold); transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold { background: var(--gold); color: #0b0b0b; }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ghost { color: var(--cream); }
.btn-ghost:hover { background: rgba(201, 162, 75, 0.12); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Ouverture ---------- */
.hero { min-height: 100vh; min-height: 100svh; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 130px var(--gutter) 80px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); }
.eyebrow { font-size: 11.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0 0 26px; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 6.2vw, 88px); line-height: 1.02; color: var(--cream); margin: 0 0 28px; letter-spacing: -0.01em; }
.hero h1 em { font-family: var(--accent); font-style: italic; color: var(--gold-2); font-size: 0.86em; }
.hero h1 .eyebrow { display: block; font-family: var(--sans); font-size: 11.5px; line-height: 1.7; letter-spacing: 0.32em; font-weight: 500; font-style: normal; color: var(--gold); margin: 0 0 26px; }
.hero p.lead { font-size: 18px; max-width: 30em; color: var(--text); margin: 0 0 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(7, 8, 12, 0) 28%), linear-gradient(0deg, rgba(7, 8, 12, 0.55) 0%, rgba(7, 8, 12, 0) 35%); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { display: flex; align-items: center; gap: 14px; font-size: 11.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0 0 20px; }
.kicker::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.4vw, 58px); line-height: 1.08; color: var(--cream); margin: 0 0 26px; }
h2 em { font-family: var(--accent); font-style: italic; color: var(--gold-2); font-size: 0.88em; }
h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; line-height: 1.2; color: var(--cream); margin: 0 0 12px; }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 70px); }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }

/* Manifeste */
.manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.manifesto p { font-size: 19px; margin: 0 0 20px; }
.manifesto .quote { font-family: var(--accent); font-style: italic; font-size: clamp(24px, 2.5vw, 32px); line-height: 1.4; color: var(--gold-2); border-left: 1px solid var(--gold); padding-left: 26px; margin-top: 34px; }
.manifesto figure { margin: 0; position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.manifesto figure img { width: 100%; height: 100%; object-fit: cover; }
.manifesto figure::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(230, 203, 134, 0.35); z-index: 1; pointer-events: none; }

/* Services */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service { background: var(--bg); padding: 44px 32px 48px; transition: background 0.35s; }
.service:hover { background: var(--bg-3); }
.service .num { font-family: var(--serif); font-size: 15px; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 30px; }
.service p { color: var(--muted); font-size: 16px; margin: 0; }
.service p a { color: var(--cream); border-bottom: 1px solid var(--line); transition: color 0.25s, border-color 0.25s; }
.service p a:hover { color: var(--gold-2); border-bottom-color: var(--gold); }

/* Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.dest { position: relative; z-index: 0; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; grid-column: span 2; }
.dest.wide { grid-column: span 3; min-height: 380px; }
.dest img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.dest:hover img { transform: scale(1.05); }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7, 8, 12, 0.95) 0%, rgba(7, 8, 12, 0.72) 50%, rgba(7, 8, 12, 0.12) 100%); }
.dest-body { padding: 30px; }
.dest-link::before { content: ""; position: absolute; inset: 0; }   /* toute la carte mène à la page dédiée */
/* Flèche en pastille, dans le coin de la carte : elle ne coupe jamais le titre */
.dest-link svg { position: absolute; top: 22px; right: 22px; z-index: 1; width: 40px; height: 40px; padding: 10px; border: 1px solid rgba(230, 203, 134, 0.45); border-radius: 50%; background: rgba(7, 8, 12, 0.55); color: var(--gold-2); transition: transform 0.3s, background 0.3s; }
.dest-link:hover, .dest:hover .dest-link { color: var(--gold-2); }
.dest:hover .dest-link svg { transform: translateX(3px); background: rgba(7, 8, 12, 0.8); }
.dest-link:focus-visible { outline: none; }
.dest-link:focus-visible::before { outline: 2px solid var(--gold-2); outline-offset: -6px; }
.dest-body h3 { font-size: 31px; margin-bottom: 8px; }
.dest-body p { margin: 0; font-size: 15.5px; color: var(--text); max-width: 26em; }
.beyond { margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.beyond a { color: var(--cream); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color 0.25s, border-color 0.25s; }
.beyond a:hover { color: var(--gold-2); border-color: var(--gold); }

/* Véhicules */
.vehicles { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.vehicles-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vehicles-media figure { margin: 0; background: #000; border: 1px solid var(--line); overflow: hidden; }
.vehicles-media figure.tall { grid-row: span 2; }
.vehicles-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicles-media figcaption { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding: 12px 14px; border-top: 1px solid var(--line); }
.vehicles ul { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.vehicles li { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; font-size: 16px; }
.vehicles li span:last-child { color: var(--muted); text-align: right; }

/* Mer et airs */
.band { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 8, 12, 0.9) 0%, rgba(7, 8, 12, 0.55) 50%, rgba(7, 8, 12, 0.1) 100%); }
.band .wrap { position: relative; z-index: 1; }
.band-text { max-width: 560px; }
.band-text p { font-size: 18px; }
.section-head .kicker, .manifesto .kicker, .band-text .kicker { font-size: 11.5px; color: var(--gold); margin: 0 0 20px; }

/* Étapes */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); counter-reset: step; }
.step { border-top: 1px solid var(--gold); padding-top: 28px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 54px; line-height: 1; color: var(--gold); display: block; margin-bottom: 18px; }
.step p { color: var(--muted); margin: 0; font-size: 16px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.contact-list li { border-bottom: 1px solid var(--line); }
.contact-list a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; transition: color 0.25s, padding 0.25s; }
.contact-list a:hover { color: var(--gold-2); padding-left: 12px; }
.contact-list .label { font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.contact-list .value { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); color: var(--cream); }
.contact-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.contact .note { color: var(--muted); font-size: 15.5px; margin-top: 26px; }

/* Pied de page */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 40px; font-size: 14px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h2 { font-family: var(--sans); font-size: 11px; line-height: 1.7; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 16px; }
.footer-grid .brand + p { margin-top: 20px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; }

/* Bouton WhatsApp flottant */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: #0b0b0b; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); transition: transform 0.25s, background 0.25s, opacity 0.3s, visibility 0.3s; }
.wa-float.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.wa-float:hover { transform: translateY(-3px); background: var(--gold-2); }
.wa-float svg { width: 28px; height: 28px; }

/* Pages de texte */
.page { padding: 150px 0 100px; }
.page .wrap { max-width: 860px; }
.page h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 60px); color: var(--cream); margin: 0 0 40px; line-height: 1.1; }
.page h2 { font-size: 28px; margin: 48px 0 14px; }
.page p, .page li { font-size: 16.5px; }
.page a { color: var(--gold-2); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }

/* Crédits photo */
.credits { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line); }
.credits > li { padding: 26px 0; border-bottom: 1px solid var(--line); }
.page .credits h2 { font-size: 26px; margin: 0 0 12px; }
.credits dl { display: grid; grid-template-columns: 136px 1fr; gap: 6px 22px; margin: 0; font-size: 15.5px; }
.credits dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.credits dd { margin: 0; min-width: 0; }
@media (max-width: 600px) {
  .credits dl { grid-template-columns: 1fr; gap: 2px; }
  .credits dd { margin-bottom: 10px; }
}

/* Apparition au défilement */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .dest img, .dest-link svg { transition: none; }
  .dest:hover .dest-link svg { transform: none; }
  .wa-float, .contact-list a { transition: none; }
  .wa-float:hover { transform: none; }
  .contact-list a:hover { padding-left: 4px; }
}

/* ---------- Adaptation écrans ---------- */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest, .dest.wide { grid-column: span 1; min-height: 360px; }
  .dest.wide:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav { position: fixed; inset: 76px 0 auto 0; background: rgba(7, 8, 12, 0.98); flex-direction: column; align-items: stretch; gap: 0; padding: 10px var(--gutter) 24px; border-bottom: 1px solid var(--line); display: none; }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-header { background: rgba(7, 8, 12, 0.94); }
  .nav .lang { border: none; padding: 16px 0; }
  .js .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; height: 58vh; min-height: 360px; margin-top: 76px; }
  .hero-media img { object-position: 50% 20%; }
  .hero-media::after { background: linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 12, 0) 45%); }
  .hero-text { padding: 10px var(--gutter) 70px; }
  .site-footer { padding-bottom: 100px; }   /* bouton flottant visible en bas de page : dernière ligne dégagée */
  .manifesto, .vehicles, .contact { grid-template-columns: 1fr; }
  .manifesto figure { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .band::after { background: linear-gradient(180deg, rgba(7, 8, 12, 0.62) 0%, rgba(7, 8, 12, 0.8) 28%, rgba(7, 8, 12, 0.8) 72%, rgba(7, 8, 12, 0.62) 100%); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brand-name { font-size: 18px; }
  .brand img { width: 40px; }
  .services { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest, .dest.wide, .dest.wide:last-child { grid-column: span 1; min-height: 340px; }
  .vehicles-media { grid-template-columns: 1fr; }
  .vehicles-media figure.tall { grid-row: auto; }
  .vehicles li { flex-direction: column; gap: 2px; }
  .vehicles li span:last-child { text-align: left; }
  .hero-actions .btn { width: 100%; }
  .band { min-height: 80vh; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .brand-name { font-size: 16px; letter-spacing: 0.12em; white-space: nowrap; }
}
