/* ==========================================================
   DKP - Döner Kebab Premium - Hossegor
   Fond blanc, noir et orange à parts égales
   ========================================================== */

:root {
  --bg: #ffffff;
  --ink: #17130f;
  --ink-soft: #55493d;
  --on-dark: #ffffff;
  --on-dark-dim: #cfc3b4;
  --orange: #f3790f;
  --orange-2: #ffb400;
  --gradient: linear-gradient(135deg, var(--orange-2), var(--orange) 70%);
  --line: #e7ded2;
  --line-dark: rgba(255,255,255,.14);
  --tint: rgba(23,19,15,.03);
  --tint-orange: rgba(243,121,15,.08);
  --maxw: 1180px;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(23,19,15,.1);
  --shadow-dark: 0 20px 50px rgba(0,0,0,.35);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img, iframe, embed, video, blockquote { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--orange);
  display: inline-block;
  margin-bottom: .2em;
  transform: rotate(-2deg);
}

.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-title span { color: var(--orange); }
.section-lead { max-width: 620px; color: var(--ink-soft); font-size: 1.05rem; }

section { padding: 100px 0; position: relative; scroll-margin-top: 100px; }

/* Full-bleed color blocks */
.block-black { background: var(--ink); color: var(--on-dark); }
.block-black h1, .block-black h2, .block-black h3, .block-black h4 { color: #fff; }
.block-black .section-lead, .block-black p { color: var(--on-dark-dim); }
.block-black .eyebrow { color: var(--orange-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .3px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #1a1208;
  box-shadow: 0 10px 26px rgba(243,121,15,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(243,121,15,.4); }

.btn-outline {
  border-color: rgba(23,19,15,.25);
  color: var(--ink);
  background: rgba(23,19,15,.02);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.btn-outline.on-dark {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-outline.on-dark:hover { border-color: var(--orange-2); color: var(--orange-2); }

.btn-black {
  background: var(--ink);
  color: #fff;
}
.btn-black:hover { transform: translateY(-3px); background: #000; }

.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, padding .3s ease, border-color .3s ease;
}
header.scrolled {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23,19,15,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600;  flex-shrink: 0; white-space: nowrap; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; font-size: .92rem; font-weight: 500;  white-space: nowrap; }
.nav-links a { opacity: .85; position: relative; padding: 4px 0; color: var(--ink); }
.nav-links a:hover { opacity: 1; color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--ink); opacity: .85;  white-space: nowrap; flex-shrink: 0; }
.nav-phone:hover { color: var(--orange); opacity: 1; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }

.lang-switch { display: flex; align-items: center; gap: 2px; font-size: .8rem; font-weight: 700; }
.lang-switch button { padding: 4px 7px; border-radius: 6px; color: var(--ink-soft); background: none; border: none; font: inherit; font-weight: 700; cursor: pointer; }
.lang-switch button.active { color: var(--orange); background: var(--tint-orange); }
.lang-switch button:hover { color: var(--orange); }
.mobile-nav .lang-switch { font-size: 1rem; gap: 8px; }
.mobile-nav .lang-switch button { color: var(--on-dark-dim); }
.mobile-nav .lang-switch button.active { color: var(--orange-2); background: rgba(255,255,255,.08); }

/* ---------- Press block ---------- */
.press-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.press-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--tint); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; font-size: .88rem;
}
.press-card:hover { border-color: var(--orange); }
.press-card .press-logo {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--orange-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: .95rem;
}
.press-card .press-text b { display: block; color: var(--ink); }
.press-card .press-text span { color: var(--ink-soft); font-size: .82rem; }

/* ---------- Hero ---------- */
.hero { padding-top: 160px; padding-bottom: 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tint-orange);
  border: 1px solid rgba(243,121,15,.3);
  color: var(--orange);
  padding: 8px 16px; border-radius: 100px;
  font-size: .8rem; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 22px; font-weight: 600;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: .3em; }
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-info { display: flex; gap: 28px; flex-wrap: wrap; font-size: .88rem; color: var(--ink-soft); }
.hero-info div { display: flex; align-items: center; gap: 10px; }
.hero-info svg { flex: none; color: var(--orange); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--ink);
  aspect-ratio: 4/5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  max-width: 190px;
}
.hero-media .float-card .num { font-family:'Fraunces', serif; font-size: 1.7rem; font-weight: 700; }
.hero-media .float-card .lbl { font-size: .76rem; font-weight: 600; }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--ink);
  color: var(--orange-2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.strip-track { display: inline-flex; animation: marquee 26s linear infinite; }
.strip-track span { display: inline-flex; align-items: center; padding: 0 26px; }
.strip-track span::after { content: "\2726"; margin-left: 26px; opacity: .7; font-size: .8rem; color: var(--orange-2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.story-media { position: relative; }
.story-media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.story-media .float-card {
  position: absolute; bottom: -26px; right: -26px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow); max-width: 210px;
}
.story-media .float-card .num { font-family:'Fraunces', serif; font-size: 1.8rem; font-weight: 700; }
.story-media .float-card .lbl { font-size: .78rem; font-weight: 600; }

.story-body p { color: var(--ink-soft); }
.tag-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 34px; }
.tag {
  display: flex; align-items: center; gap: 10px;
  background: var(--tint);
  border: 1px solid var(--line);
  padding: 12px 16px; border-radius: 12px; font-size: .85rem; color: var(--ink);
}
.tag svg { color: var(--orange); flex: none; }

/* ---------- Private events ---------- */
.events { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.events-media { position: relative; }
.events-media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.events-media .float-card {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--ink); color: #fff;
  border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow); max-width: 220px;
}
.events-media .float-card .num { font-family:'Fraunces', serif; font-size: 1.7rem; font-weight: 700; }
.events-media .float-card .lbl { font-size: .78rem; font-weight: 600; color: var(--on-dark-dim); }

.event-quote {
  margin: 28px 0 30px; padding: 20px 24px;
  border-left: 3px solid var(--orange);
  background: var(--tint);
  border-radius: 0 12px 12px 0;
}
.event-quote p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--ink); margin: 0 0 8px; }
.event-quote cite { font-size: .82rem; color: var(--ink-soft); font-style: normal; }

/* ---------- Menu ---------- */
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.menu-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
  background: var(--bg);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card .badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--tint-orange); color: var(--orange);
  font-size: .7rem; padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(243,121,15,.3);
  text-transform: uppercase; letter-spacing: .5px;
}
.menu-card h3 { font-size: 1.5rem; margin-bottom: .3em; }
.menu-card .price { font-family: 'Fraunces', serif; font-size: 2.1rem; color: var(--orange); margin: 14px 0 12px; }
.menu-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* Black feature card */
.menu-card.card-black { background: var(--ink); border-color: var(--ink); }
.menu-card.card-black h3, .menu-card.card-black h4 { color: #fff; }
.menu-card.card-black p { color: var(--on-dark-dim); }
.menu-card.card-black .price { color: var(--orange-2); }
.menu-card.card-black .badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }

/* Orange feature card */
.menu-card.card-orange { background: var(--gradient); border-color: transparent; }
.menu-card.card-orange h3 { color: var(--ink); }
.menu-card.card-orange p { color: rgba(23,19,15,.75); }
.menu-card.card-orange .price { color: var(--ink); }
.menu-card.card-orange .badge { background: rgba(23,19,15,.12); color: var(--ink); border-color: rgba(23,19,15,.2); }

.menu-sub-title {
  font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--orange);
  margin: 0 0 18px; display: flex; align-items: center; gap: 12px;
}
.menu-sub-title::after { content:""; height:1px; flex:1; background: var(--line); }

.formula-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 54px; }
.formula-col { background: var(--tint); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.formula-col h4 { font-size: 1.05rem; margin-bottom: 14px; color: var(--ink); }
.formula-row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-top: 1px dashed var(--line); font-size: .88rem; }
.formula-row:first-of-type { border-top: none; }
.formula-row .name { color: var(--ink-soft); }
.formula-row .val { color: var(--orange); font-weight: 600; white-space: nowrap; }

.extras-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.extra-item {
  background: var(--tint); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; font-size: .88rem;
}
.extra-item .val { color: var(--orange); font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gallery a { border-radius: 14px; overflow: hidden; position: relative; display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery a:nth-child(2) { grid-column: 2 / 4; grid-row: 1 / 2; }
.gallery a:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.gallery a:nth-child(4) { grid-column: 2 / 5; grid-row: 2 / 3; }
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery a:hover::after { opacity: 1; }
.gallery .cta-tile {
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; padding: 20px; font-family: 'Fraunces', serif;
}
.gallery .cta-tile strong { font-size: 1.3rem; color: var(--orange-2); }
.gallery .cta-tile span { font-size: .8rem; opacity: .8; }

/* ---------- Avis Google ---------- */
.avis-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.avis-card .g-icon {
  width: 46px; height: 46px; margin: 0 auto 18px;
}
.avis-stars { display: flex; justify-content: center; gap: 6px; margin: 14px 0 18px; color: var(--orange); }
.avis-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.avis-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 26px; }
.avis-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 46px auto 0; }
.review-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: 26px; text-align: left; box-shadow: var(--shadow-dark);
  display: flex; flex-direction: column; gap: 12px;
}
.stars-5 { color: var(--orange); letter-spacing: 2px; font-size: .95rem; }
.stars-5::before { content: "★★★★★"; }
.review-text { color: var(--ink); font-size: .92rem; line-height: 1.55; flex: 1; margin: 0; }
.review-author { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 12px; }
.review-author .name { font-weight: 600; font-size: .88rem; }
.review-author .meta { font-size: .76rem; color: var(--ink-soft); text-align: right; }

/* ---------- Rencontres ---------- */
.rencontres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 10px; }
.rencontre-card { text-align: center; }
.rencontre-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 3/4; margin-bottom: 14px; }
.rencontre-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rencontre-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.rencontre-role { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Video feature (KindaBreak) ---------- */
.video-feature { margin-top: 46px; padding-top: 40px; border-top: 1px solid var(--line); text-align: center; }
.video-feature .eyebrow { display: block; margin-bottom: 8px; }
.video-feature h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; margin: 0 0 22px; }
.ig-embed-wrap { display: flex; justify-content: center; max-width: 100%; overflow: hidden; }
.ig-embed-wrap iframe { border-radius: var(--radius) !important; }
.ig-embed-wrap, .ig-embed-wrap > * { max-width: 100% !important; width: 100% !important; min-width: 0 !important; }
.ig-embed-wrap iframe { max-width: 100% !important; }

/* ---------- Find us ---------- */
.find { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-card { border-radius: var(--radius); padding: 36px; }
.info-line { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-dark); }
.info-line:first-child { border-top: none; padding-top: 0; }
.info-line svg { color: var(--orange-2); flex: none; margin-top: 3px; }
.info-line h4 { margin: 0 0 4px; font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; }
.info-line p { margin: 0; color: var(--on-dark-dim); font-size: .9rem; }
.info-line a:hover { color: var(--orange-2); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 4px 0; font-size: .88rem; color: var(--on-dark-dim); }
.hours-table td:last-child { text-align: right; color: #fff; font-weight: 500; }
.hours-table tr.closed td { opacity: .55; }
.hours-note { margin-top: 12px; font-size: .8rem; color: var(--orange-2); }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--orange);
  height: 100%; min-height: 340px; position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.social-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 100px;
  background: rgba(23,19,15,.03); border: 1px solid var(--line); font-size: .88rem; font-weight: 500; color: var(--ink);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.social-btn.on-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; }
.social-btn.on-dark:hover { border-color: var(--orange-2); color: var(--orange-2); }

/* ---------- Instagram teaser ---------- */
.insta { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.insta-phone {
  position: relative; max-width: 260px; margin: 0 auto;
  border-radius: 28px; overflow: hidden;
  border: 6px solid var(--orange);
  box-shadow: var(--shadow);
}
.insta-phone img { width: 100%; }
.insta-phone .ring {
  position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); padding: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; font-weight: 700;
}

/* ---------- Footer ---------- */
footer { padding: 60px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 52px; }
.footer-brand div { color: #fff; font-family: 'Fraunces', serif; }
.footer-brand div span { display:block; font-size: .8rem; color: var(--on-dark-dim); font-family: 'Poppins', sans-serif; }
.footer-links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.footer-links a:hover { color: var(--orange-2); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--on-dark-dim);
  padding-top: 24px; border-top: 1px solid var(--line-dark);
}

/* ---------- Sticky order bar (mobile) ---------- */
.sticky-order {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
}
.sticky-order .btn { flex: 1; justify-content: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav-links, .nav-phone-wrap, header .lang-switch { display: none; }
  .burger { display: flex; }
}
@media (max-width: 980px) {
  .nav-links, .nav-phone-wrap, header .lang-switch { display: none; }
  .burger { display: flex; }
  .hero-grid, .story, .find, .insta, .events { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-media { order: -1; max-width: 420px; width: 100%; margin: 0 auto 20px; }
  .hero-media .float-card { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
  .story-media .float-card { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
  .events-media .float-card { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
  .events-media { order: -1; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .formula-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery a:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery a:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery a:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery a:nth-child(4) { grid-column: 1 / 3; grid-row: 3 / 4; }
  section { padding: 70px 0; }
  .sticky-order { display: flex; }
  body { padding-bottom: 74px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rencontres-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .menu-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .hero-info { gap: 16px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .avis-card { padding: 28px; }
  .press-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rencontres-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: .8rem; }
  .video-feature h3 { font-size: 1.2rem; }
}

/* mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  font-size: 1.4rem;
  font-family: 'Fraunces', serif;
  color: #fff;
  transform: translateY(-100%);
  transition: transform .4s ease;
}
.mobile-nav a { color: #fff; }
.mobile-nav a:hover { color: var(--orange-2); }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; background:none; border:none; color: #fff; font-size: 1.8rem; cursor:pointer; }
