/* =========================================================================
   Casa Marea · showroom 92 Media House
   Un seul fichier CSS, sans framework. Les couleurs et polices sont des
   variables : pour un client, on change les six premières lignes.
   ========================================================================= */

:root {
  --sand: #f3ece0;
  --cream: #faf7f0;
  --ink: #1c2a2b;
  --ink-2: #33494a;
  --muted: #6d7879;
  --line: rgba(28, 42, 43, 0.14);
  --ocean: #1f5c60;
  --ocean-2: #2a7c80;
  --terra: #c9673b;
  --wa: #128c7e;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 10px;
  --shadow: 0 20px 50px -30px rgba(28, 42, 43, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(56px, 9vw, 124px); }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: clamp(26px, 3vw, 38px); }
p { margin: 0 0 1em; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 60ch; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: var(--terra); margin: 0 0 14px;
}
.kicker-light { color: #f0c9ad; }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lead { margin-top: 10px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  font: 600 15px/1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--ocean); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: #0f7a6d; }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--cream); }
.btn-small { padding: 10px 16px; font-size: 13px; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---------- Ruban de démonstration ---------- */
.ribbon {
  background: var(--ink); color: var(--sand);
  font-size: 13.5px; text-align: center; padding: 10px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ribbon p { margin: 0; }
.ribbon a { color: #f0c9ad; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; }
.ribbon a:hover { text-decoration: underline; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--gutter);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled { background: rgba(250, 247, 240, 0.92); color: var(--ink); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.brand { font-family: var(--font-display); font-size: 26px; font-weight: 500; text-decoration: none; letter-spacing: 0.01em; white-space: nowrap; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; opacity: 0.9; }
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid currentColor; border-radius: 999px; padding: 3px; opacity: 0.9; }
.lang a { text-decoration: none; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 10px; border-radius: 999px; line-height: 1; }
.lang a[aria-current="true"] { background: currentColor; }
.nav .lang a[aria-current="true"] { color: var(--ink); background: var(--white); }
.nav.scrolled .lang a[aria-current="true"] { color: var(--cream); background: var(--ink); }
.footer .lang a[aria-current="true"] { color: var(--ink); background: var(--sand); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end;
  margin-top: calc(-1 * (28px + 2 * 14px)); /* passe sous la nav */
  color: var(--white); isolation: isolate; overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20, 30, 31, 0.35) 0%, rgba(20, 30, 31, 0.05) 35%, rgba(20, 30, 31, 0.72) 100%);
}
.hero-inner { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; padding: 120px 0 64px; }
.hero h1 { margin-bottom: 8px; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25); }
.hero-sub { font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 2.6vw, 32px); margin: 0 0 28px; opacity: 0.95; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-guide { min-height: min(80vh, 760px); }
.scroll-hint { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-top: 30px; }

/* ---------- Intro ---------- */
.intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 90px); align-items: center; padding: clamp(64px, 9vw, 128px) 0; }
.intro-media img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.facts { list-style: none; padding: 0; margin: 36px 0 0; display: flex; gap: 32px; flex-wrap: wrap; }
.facts li { display: flex; flex-direction: column; }
.facts strong { font-family: var(--font-display); font-size: 48px; line-height: 1; font-weight: 500; }
.facts span { font-size: 13px; color: var(--muted); max-width: 14ch; margin-top: 4px; }

/* ---------- Bungalows / offres ---------- */
.rooms { padding: clamp(48px, 7vw, 96px) 0 0; background: linear-gradient(180deg, var(--cream), var(--sand) 12%, var(--sand)); }
.rooms-list { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 110px); }
.room { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(24px, 5vw, 72px); align-items: start; }
.room-alt { grid-template-columns: 7fr 5fr; }
.room-alt .room-media { order: 2; }
.room-media { position: sticky; top: 90px; margin: 0; }
.room-media img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.room-media figcaption { position: absolute; top: 16px; left: 16px; background: rgba(250, 247, 240, 0.92); color: var(--ink); border-radius: 999px; padding: 6px 12px 6px 8px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; display: flex; gap: 8px; align-items: center; }
.room-media figcaption span { background: var(--ink); color: var(--cream); border-radius: 999px; width: 22px; height: 22px; display: grid; place-items: center; font-size: 11px; }
.room-body header { margin-bottom: 20px; }
.room-body h3 { font-size: clamp(38px, 4.5vw, 60px); margin-bottom: 8px; }
.tagline { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 46ch; }
.features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.features li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 15px; }
.features svg { color: var(--ocean); flex: none; margin-top: 4px; }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin: 0 0 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.price .from { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price .amount { font-family: var(--font-display); font-size: 42px; font-weight: 600; line-height: 1; }
.price .sub { font-size: 14px; color: var(--muted); }

.booking { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset; }
.booking-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--terra); margin: 0 0 4px; }
.booking-test { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--ink-2); margin: 0 0 16px; }
.widget { display: grid; gap: 12px; }
.widget label { display: grid; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.widget input, .widget textarea {
  font: 15px/1.4 var(--font-body); color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; width: 100%;
}
.widget input:focus, .widget textarea:focus { outline: 2px solid var(--ocean-2); outline-offset: 1px; border-color: transparent; }
.widget textarea { resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.widget .btn { justify-self: start; }

.bubble {
  position: relative; background: #dcf8c6; color: #1b2b1b; border-radius: 14px 14px 14px 4px; padding: 12px 14px; font-size: 14.5px; line-height: 1.45; max-width: 44ch;
}
.bubble::after { content: '12:04 ✓✓'; display: block; text-align: right; font-size: 10.5px; color: #5b7a5b; margin-top: 4px; }

/* Calendrier */
.synced { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ocean); font-weight: 600; margin: 0; }
.cal { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.cal-month { }
.cal-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 0 0 8px; text-transform: capitalize; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-wd { font-size: 10.5px; text-align: center; color: var(--muted); font-weight: 700; padding: 4px 0; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; font-size: 13px; border-radius: 6px; background: var(--white); border: 1px solid transparent; cursor: pointer; user-select: none; }
.cal-day:hover { border-color: var(--ocean-2); }
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.past { color: #b9c0c0; cursor: default; background: transparent; }
.cal-day.booked { background: repeating-linear-gradient(135deg, #e4dccd 0 3px, #f3ece0 3px 6px); color: #a09786; cursor: not-allowed; text-decoration: line-through; }
.cal-day.sel { background: var(--ocean); color: var(--white); }
.cal-day.range { background: #cfe3e2; color: var(--ink); }
.legend { list-style: none; padding: 0; margin: 0; display: flex; gap: 16px; font-size: 12.5px; color: var(--muted); }
.legend li { display: flex; align-items: center; gap: 6px; }
.sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; border: 1px solid var(--line); }
.sw-free { background: var(--white); }
.sw-booked { background: repeating-linear-gradient(135deg, #e4dccd 0 3px, #f3ece0 3px 6px); }
.sw-sel { background: var(--ocean); }
.cal-summary { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.cal-summary strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }

/* Moteur */
.engine-bar { display: grid; grid-template-columns: 1fr 1fr 0.7fr auto; gap: 10px; align-items: end; }
.engine-results { display: grid; gap: 10px; }
.engine-results h4 { margin: 4px 0 0; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.er { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; }
.er-name { font-weight: 700; margin: 0; }
.er-desc { margin: 0; font-size: 13px; color: var(--muted); }
.er-price { text-align: right; }
.er-price strong { font-family: var(--font-display); font-size: 26px; font-weight: 600; display: block; line-height: 1; }
.er-price small { color: var(--muted); font-size: 12px; }
.er-cta { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.er-left { font-size: 12px; color: var(--terra); font-weight: 700; }
.er.sold { opacity: 0.55; }
.er.sold .er-left { color: var(--muted); }

/* Inclus */
.included { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; padding: clamp(56px, 8vw, 110px) 0; }
.included-box { background: var(--ink); color: var(--sand); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px); }
.included-box h3 { color: var(--white); font-size: 28px; margin-bottom: 18px; }
.included-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.included-box li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.included-box svg { color: #f0c9ad; flex: none; margin-top: 4px; }
.monthly-note { font-size: 15px; color: var(--ink-2); border-left: 3px solid var(--terra); padding-left: 18px; }

/* ---------- Tableau comparatif ---------- */
.compare { padding: clamp(56px, 8vw, 110px) 0; }
.compare h2 { margin-bottom: 30px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare th[scope="row"] { text-align: left; font-weight: 500; color: var(--ink-2); }
.compare th[scope="row"] small { display: block; font-size: 12px; color: var(--muted); }
.compare thead th { font-family: var(--font-display); font-size: 24px; font-weight: 600; border-bottom: 2px solid var(--ink); }
.compare thead th:first-child { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.th-kicker { display: block; white-space: nowrap; font: 600 11px/1.2 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.compare .yes { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--ocean); color: var(--white); }
.compare .no { color: #c4c9c9; }
.compare tfoot td { font-family: var(--font-display); font-size: 20px; font-weight: 600; border-bottom: 0; }
.compare tfoot small { display: block; font: 12px/1.3 var(--font-body); color: var(--muted); }

/* ---------- Avis ---------- */
.reviews { background: var(--sand); padding: clamp(56px, 8vw, 110px) 0; }
.review-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--cream); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.stars { color: var(--terra); display: flex; gap: 2px; margin: 0 0 12px; }
.review blockquote { margin: 0 0 14px; font-family: var(--font-display); font-size: 22px; line-height: 1.3; }
.who { font-size: 13px; color: var(--muted); margin: 0; letter-spacing: 0.04em; }
.note-center { text-align: center; color: var(--muted); font-size: 14px; margin: 28px 0 0; }

/* ---------- Histoire ---------- */
.story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: center; padding: clamp(64px, 9vw, 128px) 0; }
.story-media img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-text p { font-size: 17px; color: var(--ink-2); max-width: 58ch; }
.signature-line { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 22px; }

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--sand); padding: clamp(56px, 8vw, 110px) 0; }
.process h2 { color: var(--white); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.steps li { border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 22px; }
.step-n { font-family: var(--font-display); font-size: 44px; color: #f0c9ad; display: block; line-height: 1; margin-bottom: 14px; }
.steps h3 { color: var(--white); font-size: 28px; }
.steps p { color: rgba(243, 236, 224, 0.82); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 8vw, 110px) 0; }
.faq-list { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 22px; height: 22px; flex: none; }
.plus::before, .plus::after { content: ''; position: absolute; background: var(--ink); inset: 50% auto auto 50%; transform: translate(-50%, -50%); transition: transform 0.2s ease; }
.plus::before { width: 16px; height: 1.5px; }
.plus::after { width: 1.5px; height: 16px; }
details[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details p { margin: -6px 0 22px; color: var(--ink-2); max-width: 66ch; }

/* ---------- Contact ---------- */
.contact { background: var(--ocean); color: var(--white); padding: clamp(64px, 9vw, 128px) 0; text-align: center; }
.contact h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.contact .lead { color: rgba(255, 255, 255, 0.85); margin-inline: auto; }
.contact .hero-ctas { justify-content: center; margin-top: 8px; }

/* ---------- Footer et signature 92 Media House ---------- */
.footer { background: var(--ink); color: var(--sand); padding: 48px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.footer .brand { font-size: 28px; margin: 0 0 8px; }
.muted { color: rgba(243, 236, 224, 0.65); font-size: 13.5px; margin: 0 0 6px; }
.footer-lang { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.footer .lang { border-color: rgba(243, 236, 224, 0.4); }
.sig { display: flex; align-items: center; gap: 20px; padding: 18px 22px 18px 18px; border: 1px solid rgba(243, 236, 224, 0.18); border-radius: var(--radius); }
.sig img { width: 88px; height: 88px; flex: none; }
.sig-made { margin: 0; font-size: 13px; color: rgba(243, 236, 224, 0.7); }
.sig-made strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--white); line-height: 1.1; letter-spacing: 0.02em; }
.sig-tag { margin: 4px 0 8px; font-size: 13px; color: rgba(243, 236, 224, 0.7); }
.sig-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #f0c9ad; text-decoration: none; }
.sig-link:hover { text-decoration: underline; }

/* ---------- Modal et toast ---------- */
.modal[hidden], .toast[hidden], [hidden] { display: none !important; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(28, 42, 43, 0.55); backdrop-filter: blur(4px); }
.modal-card { position: relative; background: var(--cream); color: var(--ink); border-radius: 14px; padding: 32px; width: min(540px, 100%); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5); }
.modal-card h3 { font-size: 30px; margin-bottom: 10px; padding-right: 30px; }
.modal-card p { color: var(--ink-2); font-size: 15px; }
.modal-card pre { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px; font: 13.5px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: pre-wrap; margin: 0 0 16px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink); }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 110; background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 999px; font-size: 14px; box-shadow: var(--shadow); }
.receipt { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; margin: 0 0 16px; display: grid; gap: 4px; font-size: 14.5px; }
.receipt .total { display: flex; justify-content: space-between; font-weight: 700; border-top: 1px solid var(--line); padding-top: 8px; margin-top: 4px; }
.receipt .total span:last-child { font-family: var(--font-display); font-size: 22px; }

/* ---------- Guide d'accueil ---------- */
.guide-page .g-welcome { text-align: center; padding: clamp(56px, 8vw, 100px) 0 clamp(24px, 4vw, 40px); max-width: 780px; }
.g-quote { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); line-height: 1.3; font-style: italic; }
.g-section { padding: clamp(40px, 6vw, 80px) 0; }
.g-cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.g-cards-3 { grid-template-columns: repeat(3, 1fr); }
.g-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.g-card h3 { font-size: 24px; margin-bottom: 6px; }
.g-card p { margin: 0; color: var(--ink-2); font-size: 15px; }
.g-icon { font-size: 26px; display: block; margin-bottom: 10px; }
.g-card-row { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.g-card-row .g-icon { margin: 0; }
.g-map { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ocean); text-decoration: none; }
.g-arrival { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.g-arrival figure { margin: 0; }
.g-arrival img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.g-eat { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.g-eat figure { margin: 0; position: sticky; top: 90px; }
.g-eat img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.g-list { list-style: none; padding: 0; margin: 0; }
.g-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.g-list h3 { font-size: 26px; margin-bottom: 4px; display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.g-list h3 small { font: 600 11px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); }
.g-list p { margin: 0; color: var(--ink-2); }
.g-n { font-family: var(--font-display); font-size: 22px; color: var(--muted); padding-top: 4px; }
.g-review { text-align: center; padding: clamp(56px, 8vw, 100px) 0; max-width: 640px; }
.g-review .stars { justify-content: center; }
.g-review .lead { margin-inline: auto; }

/* ---------- Apparition au scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .room { grid-template-columns: 1fr; }
  .room-alt .room-media { order: 0; }
  .room-media { position: relative; }
  .room-media img { aspect-ratio: 16 / 10; }
  .included { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .g-cards-3 { grid-template-columns: 1fr; }
  .g-eat { grid-template-columns: 1fr; }
  .g-eat figure { position: static; }
  .g-eat img { aspect-ratio: 16 / 9; }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .intro, .story { grid-template-columns: 1fr; }
  .intro-media { order: -1; }
  .intro-media img, .story-media img { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr; }
  .g-arrival { grid-template-columns: 1fr; }
  .g-cards { grid-template-columns: 1fr; }
  .engine-bar { grid-template-columns: 1fr 1fr; }
  .engine-bar .btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 520px) {
  .hero-inner { padding-top: 90px; }
  .nav { gap: 10px; padding-inline: 16px; }
  .nav .brand { font-size: 22px; }
  .nav-right { gap: 8px; }
  .lang a { padding: 5px 8px; }
  .nav .btn-small { padding: 10px 12px; }
  .grid-2 { grid-template-columns: 1fr; }
  .facts { gap: 20px; }
  .facts strong { font-size: 40px; }
  .sig { flex-direction: column; align-items: flex-start; }
  .nav .btn-small span { display: none; }
  .booking { padding: 16px; }
  .bubble { max-width: 100%; }
  .cal { grid-template-columns: 1fr; }
}
