@import url("/assets/fonts.css");

: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%; }
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; }

/* ---------- 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 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% 60%; }
.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; }

/* Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.dest { position: relative; 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; 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; background: linear-gradient(0deg, rgba(7, 8, 12, 0.92) 0%, rgba(7, 8, 12, 0.35) 45%, rgba(7, 8, 12, 0.05) 100%); }
.dest-body { position: relative; z-index: 1; padding: 30px; }
.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 */
.fleet { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.fleet-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fleet-media figure { margin: 0; background: #000; border: 1px solid var(--line); overflow: hidden; }
.fleet-media figure.tall { grid-row: span 2; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-media figcaption { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding: 12px 14px; border-top: 1px solid var(--line); }
.fleet ul { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.fleet li { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; font-size: 16px; }
.fleet 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; }

/* É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.4fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 16px; }
.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; }
.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); }

/* 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 { transition: none; }
}

/* ---------- 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; }
}
@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; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; height: 58vh; min-height: 360px; }
  .hero-media::after { background: linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 12, 0) 45%); }
  .hero-text { padding: 10px var(--gutter) 70px; }
  .manifesto, .fleet, .contact { grid-template-columns: 1fr; }
  .manifesto figure { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@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; }
  .fleet-media { grid-template-columns: 1fr; }
  .fleet-media figure.tall { grid-row: auto; }
  .fleet li { flex-direction: column; gap: 2px; }
  .fleet li span:last-child { text-align: left; }
  .hero-actions .btn { width: 100%; }
  .band { min-height: 80vh; }
}

/* ---------- Pages par ville et par service ---------- */
.subhero { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 78vh; }
.subhero-text { display: flex; flex-direction: column; justify-content: center; padding: 140px var(--gutter) 70px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); }
.subhero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 70px); line-height: 1.05; color: var(--cream); margin: 0 0 24px; }
.subhero h1 em { font-family: var(--accent); font-style: italic; color: var(--gold-2); font-size: 0.86em; }
.subhero .lead { font-size: 18px; max-width: 32em; margin: 0 0 36px; }
.subhero-media { position: relative; overflow: hidden; }
.subhero-media img { width: 100%; height: 100%; object-fit: cover; }
.subhero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(7, 8, 12, 0) 30%); }
.crumbs { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.crumbs a { color: var(--gold); }
.article { display: grid; grid-template-columns: 1fr 340px; gap: clamp(36px, 6vw, 90px); align-items: start; }
.prose h2 { font-size: clamp(30px, 3.2vw, 42px); margin: 0 0 18px; }
.prose h2:not(:first-child) { margin-top: 56px; }
.prose p { margin: 0 0 18px; }
.ticks { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid var(--line); }
.ticks li { padding: 14px 0 14px 30px; border-bottom: 1px solid var(--line); position: relative; }
.ticks li::before { content: ""; position: absolute; left: 4px; top: 25px; width: 12px; height: 1px; background: var(--gold); }
.times { width: 100%; border-collapse: collapse; margin: 6px 0 12px; }
.times th, .times td { padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 300; }
.times td { text-align: right; color: var(--gold-2); white-space: nowrap; padding-left: 16px; }
.small { font-size: 14px; color: var(--muted); }
.aside-card { position: sticky; top: 100px; border: 1px solid var(--line); background: var(--bg-2); padding: 34px 30px; }
.aside-card .btn { width: 100%; margin: 8px 0 20px; }
.aside-links { font-size: 15px; margin: 0; }
.aside-links a { color: var(--cream); }
.aside-links a:hover { color: var(--gold-2); }
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 36px 22px 0; font-family: var(--serif); font-size: 23px; color: var(--cream); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 26px; color: var(--gold); transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--muted); }
.see-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.see-card { display: flex; flex-direction: column; gap: 10px; padding: 28px 24px; border: 1px solid var(--line); transition: background 0.3s, border-color 0.3s; }
.see-card:hover { background: var(--bg-3); border-color: var(--gold); }
.see-card .kicker { margin: 0; }
.see-title { font-family: var(--serif); font-size: 24px; color: var(--cream); line-height: 1.2; }
.service .more { display: inline-block; margin-top: 18px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.service .more:hover { color: var(--gold-2); }
a.dest { color: inherit; }
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
@media (max-width: 1080px) { .see-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .subhero { grid-template-columns: 1fr; min-height: 0; }
  .subhero-media { order: -1; height: 46vh; min-height: 300px; }
  .subhero-media::after { background: linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 12, 0) 50%); }
  .subhero-text { padding: 10px var(--gutter) 60px; }
  .article { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .see-grid, .footer-grid { grid-template-columns: 1fr; } .faq summary { font-size: 20px; } }
