/* ==========================================================================
   Golf de Beaune Levernois — feuille de style unique (refonte 09/2026)
   Remplace Elementor + thème Gofo. Aucune dépendance.
   ========================================================================== */

/* Polices auto-hébergées (sous-ensemble latin, variables) — remplace Google Fonts (perf 09/2026) */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("/assets/gdb/fonts/inter-latin.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: "Outfit"; font-style: normal; font-weight: 500 800; font-display: swap; src: url("/assets/gdb/fonts/outfit-latin.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: "Roboto"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/gdb/fonts/roboto-800-latin.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 {
  --green-950: #0d2419;
  --green-900: #13301f;
  --green-800: #1b4029;
  --green-700: #245236;
  --green-500: #3b8a4f;
  --green-100: #e6efe6;
  --gold: #c7a15a;
  --gold-600: #a9843f;
  --gold-100: #f4ecd9;
  --red: #b23a31;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --ink: #18221c;
  --ink-2: #45524a;
  --ink-3: #6e7a72;
  --line: #e4ddcd;
  --white: #fff;

  --font-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(19, 48, 31, .25);
  --shadow-lg: 0 24px 60px -20px rgba(19, 48, 31, .35);
  --header-h: 76px;
  --container: 1200px;
  --gutter: clamp(16px, 5vw, 32px);
  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--green-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
strong, b { font-weight: 650; }
::selection { background: var(--gold); color: var(--green-950); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--gold); color: var(--green-950); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-900); color: #e7eee8; }
.section--green h2, .section--green h3, .section--green h4 { color: #fff; }
.section--pattern { background: var(--cream) url("/gofo.b-cdn.net/wp-content/uploads/2021/11/grass-bg.webp") center/cover; }
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split > *, .grid > *, [class*="-grid"] > * { min-width: 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.section--green .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); line-height: 1.7; }
.section--green .lead { color: #c9d6cc; }
.muted { color: var(--ink-3); font-size: .92rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-800); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px; border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, border-color .25s;
  white-space: nowrap; max-width: 100%;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
@media (hover: hover) { .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); } }
@media (hover: hover) { .btn:hover svg { transform: translateX(3px); } }
.btn--gold {
  --fg: var(--green-950);
  background: var(--gold) url("/assets/gdb/img/motif-or.webp") center/220px repeat;
  border-radius: 4px; letter-spacing: .14em; font-weight: 700; padding-inline: 32px;
}
@media (hover: hover) { .btn--gold:hover { background-color: #d4b06a; box-shadow: 0 12px 30px -10px rgba(199, 161, 90, .7); } }
.btn--outline { --bg: transparent; --fg: var(--green-800); border-color: currentColor; }
@media (hover: hover) { .btn--outline:hover { --bg: var(--green-800); --fg: #fff; border-color: var(--green-800); } }
.btn--ghost { --bg: rgba(255,255,255,.08); --fg: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(6px); border-radius: 4px; letter-spacing: .12em; }
@media (hover: hover) { .btn--ghost:hover { --bg: #fff; --fg: var(--green-900); border-color: #fff; } }
.btn--light { --bg: #fff; --fg: var(--green-900); }
.btn--sm { min-height: 40px; padding: 8px 18px; font-size: .82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center .btn-row { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--green-700); border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: gap .2s, color .2s; }
.link-arrow svg { width: 16px; height: 16px; }
@media (hover: hover) { .link-arrow:hover { gap: 12px; color: var(--green-900); } }
.section--green .link-arrow { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  background: rgba(255, 253, 248, .96); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(24, 34, 28, .08);
  transition: background-color .35s, border-color .35s, box-shadow .35s, transform .35s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(0,0,0,.35); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 20px; max-width: 1360px; margin-inline: auto; padding-inline: var(--gutter); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }
.brand .logo-light { display: none; }
.main-nav { margin-inline: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(4px, 1.2vw, 18px); }
.main-nav a {
  position: relative; display: block; padding: 10px 6px; white-space: nowrap;
  font-family: var(--font-head); font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
  transition: color .2s;
}
.main-nav a::after { content: ""; position: absolute; left: 6px; right: 6px; bottom: 4px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) { .main-nav a:hover::after { transform: scaleX(1); } }
.main-nav a[aria-current="page"] { color: var(--green-700); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header-phone { display: flex; align-items: center; gap: 10px; font-size: .85rem; line-height: 1.25; color: var(--ink); padding-right: 6px; }
.header-phone svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.header-phone small { display: block; color: var(--ink-3); font-size: .75rem; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--green-800); background: transparent; transition: background .2s, color .2s, border-color .2s; }
.icon-btn svg { width: 19px; height: 19px; }
@media (hover: hover) { .icon-btn:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); } }
.nav-toggle { display: none; }

/* Header transparent au-dessus d'un hero */
.has-hero .site-header:not(.is-scrolled) { background: linear-gradient(180deg, rgba(8, 22, 14, .55), rgba(8, 22, 14, 0)); border-color: transparent; backdrop-filter: none; }
.has-hero .site-header:not(.is-scrolled) .main-nav a,
.has-hero .site-header:not(.is-scrolled) .header-phone { color: #fff; }
.has-hero .site-header:not(.is-scrolled) .header-phone small { color: rgba(255,255,255,.75); }
.has-hero .site-header:not(.is-scrolled) .header-phone svg { background: rgba(255,255,255,.15); color: #fff; }
.has-hero .site-header:not(.is-scrolled) .icon-btn { color: #fff; border-color: rgba(255,255,255,.45); }
.has-hero .site-header:not(.is-scrolled) .brand .logo-dark { display: none; }
.has-hero .site-header:not(.is-scrolled) .brand .logo-light { display: block; }
.has-hero .site-header:not(.is-scrolled) .btn--outline { --fg: #fff; border-color: rgba(255,255,255,.7); }
@media (hover: hover) { .has-hero .site-header:not(.is-scrolled) .btn--outline:hover { --bg: #fff; --fg: var(--green-900); border-color: #fff; } }
.has-hero .site-header:not(.is-scrolled) .main-nav a[aria-current="page"] { color: #fff; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; overflow: hidden; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(8, 20, 13, .55); opacity: 0; transition: opacity .3s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: var(--green-900); color: #fff; padding: 22px 26px 32px;
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s var(--ease);
}
.drawer.is-open { visibility: visible; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__top img { height: 42px; width: auto; }
.drawer__close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; display: grid; place-items: center; }
.drawer__close svg { width: 20px; height: 20px; }
.drawer nav ul { list-style: none; padding: 0; margin: 0; }
.drawer nav a { display: flex; justify-content: space-between; align-items: center; padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; }
.drawer nav a[aria-current="page"] { color: var(--gold); }
.drawer nav a svg { width: 18px; height: 18px; opacity: .5; }
.drawer__contact { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; font-size: .95rem; color: #cfdcd2; }
.drawer__contact a { display: flex; gap: 12px; align-items: center; }
.drawer__contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.drawer .btn { margin-top: 18px; width: 100%; }
body.no-scroll { overflow: hidden; }

/* ---------- Hero accueil (vidéo) ---------- */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh; display: grid; place-items: center;
  color: #fff; text-align: center; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + 30px) var(--gutter) 150px;
}
@supports (min-height: 100svh) { .hero { min-height: 100svh; } }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media > * { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(6, 20, 12, .45), rgba(6, 20, 12, 0) 75%),
    linear-gradient(180deg, rgba(6, 20, 12, .35) 0%, rgba(6, 20, 12, .1) 35%, rgba(6, 20, 12, .45) 100%);
}
.hero__content { max-width: 860px; }
.hero__logo { width: clamp(130px, 14vw, 180px); margin: 0 auto 18px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); }
.hero h1 {
  color: #fff; font-family: "Roboto", var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem); letter-spacing: .01em; line-height: 1.12;
  text-shadow: 0 3px 24px rgba(0,0,0,.35); margin-bottom: 22px; text-wrap: balance;
}
.hero__text { font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.75; max-width: 760px; margin: 0 auto 34px; color: rgba(255,255,255,.95); text-shadow: 0 1px 12px rgba(0,0,0,.45); text-wrap: pretty; }
.hero .btn-row { justify-content: center; }
.hero__scroll { position: absolute; left: 50%; bottom: 110px; transform: translateX(-50%); width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.85); border-radius: 16px; display: block; }
.hero__scroll::after { content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: scroll-dot 1.8s var(--ease) infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
.hero__curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(40px, 7vw, 110px); color: var(--paper); z-index: 1; }

/* ---------- Hero pages intérieures ---------- */
.page-hero {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(90px, 11vw, 150px);
  background: var(--green-900);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8, 24, 15, .88) 0%, rgba(8, 24, 15, .6) 50%, rgba(8, 24, 15, .25) 100%); }
.page-hero h1 { color: #fff; max-width: 820px; text-wrap: balance; }
.page-hero .lead { color: rgba(255,255,255,.9); max-width: 680px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .btn-row { margin-top: 28px; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.75); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
@media (hover: hover) { .breadcrumb a:hover { color: #fff; text-decoration: underline; } }
.page-hero .hero__curve { height: clamp(28px, 5vw, 70px); }

/* ---------- Cards / features ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 1px 0 rgba(0,0,0,.02); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
@media (hover: hover) { .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; } }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-2); }
.card .link-arrow { margin-top: 18px; }
.card--link { display: flex; flex-direction: column; }
.card--link .link-arrow { margin-top: auto; padding-top: 18px; border: 0; }
.feature-icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--green-100); color: var(--green-700);
}
.feature-icon img { width: 38px; height: 38px; object-fit: contain; }
.feature-icon svg { width: 30px; height: 30px; }
.section--green .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--green .card p { color: #c9d6cc; }

/* Image card (photo + texte) */
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--green-900); color: #fff; min-height: 340px; display: flex; align-items: flex-end; isolation: isolate; }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.media-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,24,15,0) 30%, rgba(8,24,15,.88) 100%); }
@media (hover: hover) { .media-card:hover img { transform: scale(1.05); } }
.media-card__body { padding: clamp(22px, 3vw, 32px); }
.media-card h3 { color: #fff; margin-bottom: .3em; }
.media-card p { color: rgba(255,255,255,.85); font-size: .95rem; }
.media-card .link-arrow { color: #fff; margin-top: 14px; }

/* Framed photo */
.photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame { position: relative; }
.photo-frame::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.split--reverse .photo-frame::before { inset: 22px 22px -22px -22px; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23245236' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }
.section--green .checklist li::before { background-color: rgba(199,161,90,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7a15a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.stat { padding: clamp(22px, 3.2vw, 38px) 16px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 700; line-height: 1; color: var(--green-800); font-variant-numeric: tabular-nums; }
.stat__label { margin-top: 8px; color: var(--ink-3); font-size: .9rem; letter-spacing: .04em; }
.stats--overlap { position: relative; z-index: 2; margin-top: clamp(-90px, -7vw, -50px); }

/* ---------- Pricing ---------- */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; position: relative; }
.price-card--featured { background: var(--green-900); color: #fff; border-color: var(--green-900); box-shadow: var(--shadow-lg); }
.price-card--featured h3 { color: #fff; }
.price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--green-950); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.price-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.price-card--featured .price-list li { border-color: rgba(255,255,255,.18); }
.price-list li:last-child { border-bottom: 0; }
.price-list .label { color: var(--ink-2); }
.price-card--featured .price-list .label { color: #c9d6cc; }
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--green-800); white-space: nowrap; }
.price-card--featured .price { color: var(--gold); }
.price small { font-size: .8rem; font-weight: 500; color: var(--ink-3); }
.price-card .btn { margin-top: auto; width: 100%; padding-inline: 14px; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); background: var(--cream); }
.price-table td:last-child { text-align: right; font-family: var(--font-head); font-weight: 700; color: var(--green-800); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.note { display: flex; gap: 12px; align-items: flex-start; background: var(--gold-100); border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 8px; color: var(--ink-2); font-size: .95rem; }
.note svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 4; background: var(--green-100); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
@media (hover: hover) { .gallery figure:hover img { transform: scale(1.06); } }
.gallery figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--green-900); font-family: var(--font-head); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.gallery button { all: unset; cursor: zoom-in; display: block; width: 100%; height: 100%; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6, 16, 10, .92); display: none; place-items: center; padding: 20px; }
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 88vh; width: auto; border-radius: 8px; }
.lightbox button { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 26px; line-height: 1; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--green-100); margin-bottom: 16px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
@media (hover: hover) { .team-card:hover .team-card__photo img { transform: scale(1.04); } }
.team-card h3 { margin-bottom: 2px; font-size: 1.2rem; }
.team-card p { color: var(--gold-600); font-family: var(--font-head); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- News ---------- */
.news-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); height: 100%; }
@media (hover: hover) { .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); } }
.news-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-100); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
@media (hover: hover) { .news-card:hover .news-card__img img { transform: scale(1.05); } }
.news-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__meta { font-size: .8rem; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 8px; }
.news-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.news-card p { color: var(--ink-2); font-size: .93rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .link-arrow { margin-top: auto; padding-top: 14px; border: 0; font-size: .92rem; }

/* ---------- Partners ---------- */
.partners { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.partners a { display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; min-height: 110px; transition: transform .3s var(--ease), box-shadow .3s; }
@media (hover: hover) { .partners a:hover { transform: translateY(-3px); box-shadow: var(--shadow); } }
.partners img { max-height: 70px; width: auto; object-fit: contain; filter: grayscale(.2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; text-align: center; padding-block: clamp(80px, 11vw, 140px); background: var(--green-900); }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8, 24, 15, .66); }
.cta-band h2 { color: #fff; max-width: 780px; margin-inline: auto; }
.cta-band p { max-width: 660px; margin: 0 auto 30px; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.cta-band .cta-logo { width: 120px; margin: 0 auto 22px; }

/* ---------- Info list / contact ---------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); }
.info-list .ico svg { width: 21px; height: 21px; }
.info-list strong { display: block; font-family: var(--font-head); color: var(--green-900); }
@media (hover: hover) { .info-list a:hover { color: var(--green-500); text-decoration: underline; } }

/* Forms */
.form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field, .form-row > * { min-width: 0; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px; min-height: 50px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(59, 138, 79, .15); }
.form-hint { font-size: .85rem; color: var(--ink-3); }
.form-status { font-size: .92rem; padding: 12px 14px; border-radius: 8px; background: var(--green-100); color: var(--green-800); display: none; }
.form-status.is-visible { display: block; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--green-100); }
.map iframe { width: 100%; height: 100%; border: 0; }
.map { position: relative; }
.map-facade { all: unset; box-sizing: border-box; position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; overflow: hidden; }
.map-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.map-facade::before { content: ""; position: absolute; inset: 0; background: rgba(8, 24, 15, .35); transition: background .3s; }
.map-facade__cta { position: relative; display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: 999px; background: #fff; color: var(--green-900); font-family: var(--font-head); font-weight: 600; box-shadow: var(--shadow); }
.map-facade__cta svg { width: 18px; height: 18px; color: var(--gold-600); }
.map-facade:focus-visible .map-facade__cta { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (hover: hover) { .map-facade:hover::before { background: rgba(8, 24, 15, .2); } }

/* ---------- Weather ---------- */
.weather { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 1080px) and (min-width: 861px) { .weather { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .weather { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); } .weather__day { flex: 0 0 38%; scroll-snap-align: start; } }
.weather__day { text-align: center; padding: 16px 6px; min-width: 0; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.weather__day:first-child { background: rgba(199,161,90,.16); border-color: rgba(199,161,90,.5); }
.weather__day .d { font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; color: #fff; }
.weather__day .i { font-size: 2rem; line-height: 1; margin: 10px 0; }
.weather__day .t { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: #fff; }
.weather__day .t span { color: #9fb3a5; font-weight: 400; font-size: .95rem; }
.weather__day .w { font-size: .78rem; color: #9fb3a5; margin-top: 4px; }
.weather__loading { grid-column: 1 / -1; flex: 1 0 100%; color: #9fb3a5; font-size: .95rem; }

/* ---------- Prose (articles, mentions) ---------- */
.prose { font-size: 1.05rem; color: var(--ink-2); }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 2em 0 .6em; }
.prose h3 { font-size: 1.25rem; margin: 1.8em 0 .5em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--green-700); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose img, .prose figure { margin: 2em 0; border-radius: var(--radius-sm); }
.prose figure img { margin: 0; }
.prose figcaption { font-size: .85rem; color: var(--ink-3); margin-top: 8px; }
.prose blockquote { margin: 2em 0; padding: 18px 24px; border-left: 4px solid var(--gold); background: var(--cream); border-radius: 0 10px 10px 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--green-900); }
.prose > :first-child { margin-top: 0; }
.big-number { display: flex; align-items: center; gap: 22px; margin: 2em 0; padding: 22px 26px; background: var(--green-900); color: #dfe8e1; border-radius: var(--radius); }
.big-number strong { font-family: var(--font-head); font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--gold); font-weight: 800; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.tags li { font-size: .8rem; padding: 5px 12px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-weight: 500; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.article-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 18px; }
.aside-post { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: center; padding: 10px; border-radius: 12px; transition: background .2s; }
@media (hover: hover) { .aside-post:hover { background: var(--cream); } }
.aside-post img { width: 84px; height: 64px; object-fit: cover; border-radius: 8px; }
.aside-post span { font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--green-900); line-height: 1.3; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: #b9c8bd; font-size: .95rem; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-block: clamp(56px, 7vw, 90px) 40px; }
.footer-brand img { width: 190px; margin-bottom: 20px; }
.footer-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-points li { display: flex; gap: 10px; align-items: flex-start; }
.footer-points svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 5px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { transition: color .2s; }
@media (hover: hover) { .site-footer a:hover { color: #fff; } }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); color: #fff; }
@media (hover: hover) { .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-950); } }
.footer-social svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; min-width: 0; min-height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; padding: 0 18px; font: inherit; }
.newsletter input::placeholder { color: #8fa596; }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button { min-height: 48px; border-radius: 999px; border: 0; padding: 0 20px; background: var(--gold); color: var(--green-950); font-family: var(--font-head); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .85rem; }
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1340px) { /* le téléphone laisse la place au menu (sinon 2 entrées passent sur 2 lignes vers 1280 px) */
  .header-phone { display: none; }
}
@media (max-width: 1180px) {
  .header-actions .hide-md { display: none; }
  .main-nav ul { gap: 2px; }
  .main-nav a { font-size: .82rem; letter-spacing: .04em; padding-inline: 7px; }
  .main-nav a::after { left: 7px; right: 7px; }
}
@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: grid; }
  .brand img { height: 42px; }
}
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { gap: 32px; }
}
@media (max-width: 699px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-frame::before, .split--reverse .photo-frame::before { inset: 12px -8px -12px 12px; }
  .photo-frame { margin-right: 8px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .stat { padding: 18px 6px; }
  .stat__num { font-size: 1.9rem; }
  .stat__label { font-size: .74rem; line-height: 1.3; letter-spacing: 0; }
  .stats--overlap { margin-top: -36px; }
  .partners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn-row .btn { flex: 1 1 100%; }
  .hero { padding-bottom: 120px; }
  .hero__scroll { display: none; }
  .hero__text { font-size: .98rem; line-height: 1.65; }
  .header-actions .btn { display: none; }
  .price-table th, .price-table td { padding: 12px 12px; }
  .newsletter { flex-direction: column; }
  .big-number { flex-direction: column; align-items: flex-start; gap: 8px; }
  .post-nav { flex-direction: column; }
  .action-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 248, .97); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform .35s var(--ease);
  }
  .action-bar.is-visible { transform: none; }
  .action-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 12px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
  .action-bar a svg { width: 18px; height: 18px; }
  .action-bar .call { background: var(--green-100); color: var(--green-800); }
  .action-bar .book { background: var(--green-800); color: #fff; }
}
@media (max-width: 380px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .partners { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Passe mobile 2 (24/09/2026) — système commun, du plus large au plus étroit
   ========================================================================== */

/* Titres : jamais de débordement de mot long */
h1, h2, h3, h4 { overflow-wrap: break-word; }
.hero h1, .page-hero h1 { text-wrap: balance; }

/* Défilement horizontal (rails) — utilitaire commun : <div class="grid grid-4 m-rail"> */
.m-rail::-webkit-scrollbar { display: none; }

/* Tables de la prose et tables de prix : jamais plus larges que l'écran */
.prose table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; -webkit-overflow-scrolling: touch; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose img, .prose video, .prose iframe { max-width: 100%; height: auto; }
.price-table td:first-child { overflow-wrap: anywhere; }

/* Menu mobile : défilement interne contenu, zones de sécurité */
.drawer__panel { overscroll-behavior: contain; padding-top: calc(22px + env(safe-area-inset-top)); padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
.drawer nav a { min-height: 52px; }
.drawer__contact a { min-height: 40px; }

/* Lightbox : navigation */
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: 12px; max-width: min(1100px, 100%); }
.lightbox figcaption { color: rgba(255,255,255,.85); font-size: .9rem; text-align: center; }
.lightbox img { max-width: 100%; max-height: 80vh; max-height: 80svh; object-fit: contain; }
.lightbox .lb-close { top: calc(16px + env(safe-area-inset-top)); right: 16px; }
.lightbox .lb-prev, .lightbox .lb-next { top: 50%; transform: translateY(-50%); font-size: 30px; background: rgba(0,0,0,.25); }
.lightbox .lb-prev { left: 12px; right: auto; }
.lightbox .lb-next { right: 12px; }
.lightbox .lb-count { position: absolute; left: 50%; bottom: calc(18px + env(safe-area-inset-bottom)); transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; font-family: var(--font-head); letter-spacing: .08em; }

/* Pied de page : allègement du rendu hors écran */
.site-footer { content-visibility: auto; contain-intrinsic-size: auto 720px; }

/* Grilles 2 colonnes : la dernière carte orpheline prend toute la largeur */
@media (min-width: 641px) and (max-width: 860px) {
  .grid-3 > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* Tablette */
@media (max-width: 1080px) {
  .article-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .article-aside > * { min-width: 0; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --header-h: 64px; --section-y: 60px; --radius: 16px; }
  body { font-size: 16px; line-height: 1.65; padding-bottom: calc(68px + env(safe-area-inset-bottom)); }

  h1 { font-size: clamp(1.75rem, 8.2vw, 2.25rem); line-height: 1.12; }
  h2 { font-size: clamp(1.45rem, 6.6vw, 1.85rem); line-height: 1.18; }
  h3 { font-size: 1.15rem; }
  .lead { font-size: 1.02rem; line-height: 1.65; }
  .eyebrow { font-size: .74rem; letter-spacing: .14em; margin-bottom: 10px; }
  .eyebrow::before, .center .eyebrow::after { width: 20px; }
  .section--tight { padding-block: 44px; }
  .section-head { margin-bottom: 28px; }

  /* En-tête */
  .brand img { height: 40px; }
  .icon-btn { width: 44px; height: 44px; }
  .header-inner { gap: 12px; }

  /* Boutons : texte sur 2 lignes plutôt que débordement */
  .btn { white-space: normal; text-align: center; line-height: 1.25; padding-inline: 20px; }
  .btn--gold { letter-spacing: .1em; padding-inline: 20px; }
  .link-arrow { padding-block: 8px 3px; }

  /* Formulaires : 16 px minimum (pas de zoom automatique iOS) */
  input, textarea, select, .field input, .field textarea, .field select, .newsletter input { font-size: 16px; }

  /* Hero accueil : tout tient dans 100svh, bouton visible sur iPhone SE */
  .hero { padding: calc(var(--header-h) + 18px) var(--gutter) 84px; }
  .hero__logo { width: 104px; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(1.5rem, 7.4vw, 1.95rem); margin-bottom: 14px; }
  .hero__text { font-size: .94rem; line-height: 1.6; margin-bottom: 24px; }
  .hero .btn-row { gap: 10px; }
  .hero__curve { height: 34px; }

  /* Hero pages intérieures */
  .page-hero { padding: calc(var(--header-h) + 34px) 0 70px; }
  .page-hero::before { background: linear-gradient(180deg, rgba(8, 24, 15, .78) 0%, rgba(8, 24, 15, .7) 60%, rgba(8, 24, 15, .82) 100%); }
  .page-hero .lead { font-size: 1rem; }
  .page-hero .btn-row { margin-top: 22px; gap: 10px; }
  .page-hero .hero__curve { height: 26px; }
  .breadcrumb { margin-bottom: 14px; font-size: .8rem; }
  .breadcrumb a { display: inline-block; padding-block: 4px; }

  /* Cartes */
  .card { padding: 22px 20px; }
  .feature-icon { width: 54px; height: 54px; margin-bottom: 14px; border-radius: 14px; }
  .feature-icon img { width: 32px; height: 32px; }
  .media-card { min-height: 280px; }
  .price-card { padding: 24px 20px; }
  .price { font-size: 1.35rem; }
  .price-list li { padding: 11px 0; }
  .price-table { font-size: .95rem; }
  .price-table th, .price-table td { padding: 12px 12px; }
  .note { padding: 12px 14px; font-size: .92rem; }
  .news-card__body { padding: 18px 18px 20px; }
  .photo-frame::before, .split--reverse .photo-frame::before { inset: 10px -6px -10px 10px; }
  .photo-frame { margin-right: 6px; }
  .split { gap: 36px; }

  /* Rails horizontaux */
  .m-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 14px; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .m-rail > * { flex: 0 0 82%; scroll-snap-align: start; }

  /* Galerie, partenaires */
  .gallery { gap: 10px; }
  .gallery figcaption { left: 8px; bottom: 8px; font-size: .7rem; padding: 4px 8px; }
  .partners { gap: 10px; }
  .partners a { min-height: 88px; padding: 14px; }
  .partners img { max-height: 54px; }

  /* Bandeau CTA */
  .cta-band { padding-block: 64px; }
  .cta-band p { font-size: 1rem; margin-bottom: 24px; }
  .cta-band .cta-logo { width: 92px; margin-bottom: 16px; }

  /* Info-list / carte */
  .info-list .ico { width: 42px; height: 42px; }
  .map { aspect-ratio: 4 / 3; }

  /* Articles */
  .prose { font-size: 1rem; }
  .prose h2 { margin-top: 1.6em; }
  .prose blockquote { padding: 14px 18px; font-size: 1.08rem; }
  .article-aside { grid-template-columns: 1fr; }
  .big-number { padding: 20px; }

  /* Pied de page compact : marque + newsletter pleine largeur, liens et contact côte à côte */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 18px; padding-block: 52px 28px; }
  .footer-top > .footer-brand, .footer-top > :last-child { grid-column: 1 / -1; }
  .footer-brand img { width: 104px !important; margin-bottom: 16px; }
  .site-footer h4 { margin-bottom: 12px; font-size: .78rem; }
  .footer-links { gap: 0; }
  .footer-links a { display: inline-block; padding-block: 7px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-bottom { padding-block: 18px 22px; gap: 10px; font-size: .82rem; }
  .footer-bottom ul a { display: inline-block; padding-block: 6px; }

  /* Barre d'actions */
  .action-bar { padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)); box-shadow: 0 -10px 24px -18px rgba(0,0,0,.4); }
  body.no-scroll .action-bar { transform: translateY(110%); }

  /* Lightbox */
  .lightbox { padding: 12px; }
  .lightbox .lb-prev, .lightbox .lb-next { width: 42px; height: 42px; font-size: 24px; }
}

/* Très petits écrans (iPhone SE 1re gén., Galaxy mini) */
@media (max-width: 360px) {
  :root { --section-y: 52px; }
  .hero__logo { width: 88px; }
  .hero__text { font-size: .9rem; }
  .btn { padding-inline: 14px; font-size: .88rem; }
  .btn--gold { letter-spacing: .08em; }
  .stat__num { font-size: 1.65rem; }
  .gallery { gap: 8px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* Téléphone en paysage */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 24px); padding-bottom: 70px; }
  .hero__logo { width: 80px; }
  .hero__scroll { display: none; }
}

/* Hero accueil sur petits écrans bas (iPhone SE…) : texte replié sur 4 lignes + « Lire la suite » pour garder le bouton Réserver visible */
.hero__more { display: none; }
@media (max-width: 640px) and (max-height: 760px) {
  .hero__text.is-clampable:not(.is-open) { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; line-clamp: 4; overflow: hidden; margin-bottom: 6px; }
  .hero__text.is-clampable + .hero__more { display: inline-flex; align-items: center; gap: 6px; min-height: 40px; margin: 0 auto 16px; padding: 4px 14px; border: 0; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; font-family: var(--font-head); font-size: .85rem; font-weight: 600; letter-spacing: .04em; backdrop-filter: blur(4px); }
  .hero__text.is-open + .hero__more { margin-top: 10px; }
}

/* ==========================================================================
   Bulle de traduction (gdb.js) — bas droite, au-dessus de la barre mobile
   ========================================================================== */
.lang-fab { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px)); z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; transition: bottom .35s var(--ease), opacity .25s; font-family: var(--font-body); }
.lang-fab__btn { display: inline-flex; align-items: center; gap: 6px; height: 48px; min-width: 48px; padding: 0 14px 0 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: var(--green-900); color: #fff; box-shadow: 0 10px 28px -10px rgba(8,24,15,.6); cursor: pointer; transition: transform .25s var(--ease), background-color .25s; }
.lang-fab__btn svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.lang-fab__code { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .08em; }
.lang-fab.is-open .lang-fab__btn { background: var(--green-700); }
@media (hover: hover) { .lang-fab__btn:hover { transform: translateY(-2px); background: var(--green-800); } }
.lang-fab__panel { width: 230px; max-height: min(70vh, 460px); overflow-y: auto; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 12px; transform-origin: bottom right; animation: lang-in .22s var(--ease); }
.lang-fab__panel[hidden] { display: none; }
@keyframes lang-in { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
.lang-fab__title { font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); margin: 2px 6px 8px; }
.lang-fab__panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.lang-fab__panel button { width: 100%; display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 8px 10px; border: 0; border-radius: 10px; background: transparent; color: var(--ink); font: inherit; font-size: .95rem; text-align: left; cursor: pointer; }
.lang-fab__panel button .flag { display: inline-grid; place-items: center; width: 30px; height: 22px; border-radius: 6px; background: var(--cream); color: var(--green-800); font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .05em; flex: none; }
.lang-fab__panel button[aria-current="true"] .flag { background: var(--green-800); color: #fff; }
.lang-fab__panel button small { margin-left: auto; font-size: .68rem; color: var(--ink-3); letter-spacing: .04em; }
.lang-fab__panel button[aria-current="true"] { background: var(--green-100); color: var(--green-800); font-weight: 600; }
@media (hover: hover) { .lang-fab__panel button:hover { background: var(--cream); } }
.lang-fab__note { margin: 8px 6px 2px; font-size: .72rem; color: var(--ink-3); line-height: 1.4; }
@media (max-width: 640px) {
  .lang-fab__btn { height: 44px; min-width: 44px; padding: 0 12px 0 10px; }
  .action-bar.is-visible ~ .lang-fab { bottom: calc(76px + env(safe-area-inset-bottom)); }
  body.no-scroll .lang-fab { opacity: 0; pointer-events: none; }
}
@media print { .lang-fab { display: none; } }
/* Google Traduction : masquer sa barre et ses infobulles, garder la page à sa place */
.gt-hidden { display: none !important; }
html.gt-on body { top: 0 !important; position: static !important; }
.goog-te-banner-frame, iframe.skiptranslate, body > .skiptranslate, #goog-gt-tt, .goog-te-balloon-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; visibility: hidden !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Sélecteur de langue FR/EN (en-tête + menu mobile) */
.lang-btn { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .06em; }
.drawer__lang { display: flex; gap: 10px; align-items: center; margin: 18px 0 0; font-size: .95rem; color: #cfdcd2; }
.drawer__lang a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
