/* ============================================================
   La Mandragore — Menton · bistrot Place aux Herbes
   Light-warm Sud · ocre / lemon / olive / sea-night
   ============================================================ */

:root {
  --color-bg:            #FAF4E8;
  --color-bg-soft:       #F2E8D5;
  --color-bg-elevated:   #FFFFFF;
  --color-bg-darker:     #1E1A14;

  --color-text:          #2A2218;
  --color-text-muted:    rgba(42, 34, 24, 0.68);
  --color-text-dim:      rgba(42, 34, 24, 0.42);
  --color-text-invert:   #FAF4E8;

  --color-accent:        #C9802E;
  --color-accent-soft:   #A86A24;
  --color-accent-pale:   #E8B86C;

  --color-lemon:         #E8C547;
  --color-lemon-soft:    #D4B23A;

  --color-olive:         #6E7748;
  --color-olive-soft:    #8A9460;

  --color-sea-night:     #1F3A4A;
  --color-sea-deep:      #0F2230;

  --color-line:          rgba(42, 34, 24, 0.14);
  --color-line-soft:     rgba(42, 34, 24, 0.07);
  --color-glow:          rgba(232, 197, 71, 0.22);

  --gradient-mesh:
    conic-gradient(from 220deg at 60% 40%,
      rgba(232, 197, 71, 0.30) 0deg,
      rgba(201, 128, 46, 0.26) 90deg,
      rgba(110, 119, 72, 0.22) 180deg,
      rgba(31, 58, 74, 0.26) 270deg,
      rgba(232, 197, 71, 0.30) 360deg);

  --gradient-hero-overlay:
    linear-gradient(180deg,
      rgba(30, 26, 20, 0.28) 0%,
      rgba(30, 26, 20, 0.44) 50%,
      rgba(30, 26, 20, 0.82) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 197, 71, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 128, 46, 0.12) 0%, transparent 60%);

  --shadow-elevation-1: 0 2px 8px rgba(42, 34, 24, 0.05);
  --shadow-elevation-2: 0 8px 32px rgba(42, 34, 24, 0.10);
  --shadow-elevation-3: 0 24px 80px rgba(42, 34, 24, 0.16);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-mid: 400ms;
  --dur-slow: 800ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(232,197,71,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(201,128,46,0.05) 0%, transparent 45%);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 380; color: var(--color-olive); }
.on-dark em { color: var(--color-lemon); }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.container-wide { max-width: 1320px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 11vh, 8rem); position: relative; }
.section-place { background: var(--color-bg-soft); }
.section-marche { background: var(--color-bg); }
.section-citron { background: var(--color-bg-soft); }
.section-galerie { background: var(--color-bg); }
.section-avis { background: var(--color-bg-soft); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-2.reverse .figure-col { order: 2; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-olive); margin-bottom: 1rem;
}
.eyebrow-lemon { color: var(--color-lemon-soft); }
.eyebrow-light { color: var(--color-accent-pale); }

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 380; line-height: 1.08; letter-spacing: -0.015em; color: var(--color-text); }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.02; color: #fff; font-weight: 340; }
.hero-title em { color: var(--color-lemon); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.25rem; }
h2.on-dark { color: #fff; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 440; line-height: 1.2; }
.lead { font-size: 1.08rem; color: var(--color-text-muted); max-width: 46ch; margin-top: 0.5rem; }
.muted { color: var(--color-text-muted); }
.footnote { font-size: 0.85rem; color: var(--color-text-dim); margin-top: 1rem; }
.footnote.on-dark { color: rgba(250,244,232,0.6); }
.section-head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-inline: auto; }
.text-col p { margin-bottom: 1rem; max-width: 52ch; }

/* ---------- Icons ---------- */
.ic { width: 1.15em; height: 1.15em; flex: none; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ic-star { fill: currentColor; stroke: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: 0.9rem 1.6rem; border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
.btn-xl { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-elevation-1); }
.btn-primary:hover { background: var(--color-accent-soft); transform: translateY(-2px); box-shadow: var(--shadow-elevation-2); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--color-lemon); background: rgba(232,197,71,0.12); transform: translateY(-2px); }
.btn-pulse { animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,128,46,0.36);} 50% { box-shadow: 0 0 0 12px rgba(201,128,46,0);} }

/* ---------- Cursor + progress ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); opacity: 0; transition: opacity .3s; }
.cursor-dot { width: 6px; height: 6px; background: var(--color-accent); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid var(--color-accent-soft); transition: width .25s var(--ease), height .25s var(--ease), opacity .3s, background .25s; }
.cursor-ring.hovering { width: 52px; height: 52px; background: rgba(201,128,46,0.08); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9998; background: linear-gradient(90deg, var(--color-accent), var(--color-lemon)); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Nav ---------- */
.nav-glass {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem clamp(1.25rem, 5vw, 2.5rem);
  background: rgba(250,244,232,0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; transition: border-color var(--dur-mid), background var(--dur-mid), box-shadow var(--dur-mid);
}
.nav-glass.scrolled { border-color: var(--color-line); box-shadow: var(--shadow-elevation-1); }
.logo-script { font-family: 'Pinyon Script', cursive; font-size: 1.85rem; color: var(--color-accent-soft); line-height: 1; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--color-text-muted); position: relative; transition: color var(--dur-fast); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--color-accent); transition: width var(--dur-mid) var(--ease); }
.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.7rem; }
.lang-switch { background: none; border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 0.35rem 0.6rem; font-family: 'Inter'; font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); cursor: pointer; display: flex; gap: 0.35rem; transition: border-color var(--dur-fast); }
.lang-switch:hover { border-color: var(--color-accent); }
.lang-switch .active { color: var(--color-accent); }
.lang-switch .lang-div { color: var(--color-text-dim); }
.nav-burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: var(--color-bg-elevated); z-index: 999; transform: translateX(100%); transition: transform var(--dur-mid) var(--ease); display: flex; flex-direction: column; gap: 0.5rem; padding: 6rem 2rem 2rem; box-shadow: var(--shadow-elevation-3); }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { font-family: 'Fraunces'; font-size: 1.3rem; color: var(--color-text); padding: 0.6rem 0; border-bottom: 1px solid var(--color-line-soft); }
.mobile-drawer .btn { margin-top: 1rem; justify-content: center; font-family: 'Inter'; font-size: 0.95rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; padding-block: clamp(6rem, 14vh, 9rem); overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero-overlay); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); text-align: center; }
.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 1.25rem auto 2rem; max-width: 40ch; }
.hero-sub em { color: var(--color-lemon); }
.hero-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.25rem; padding: 0.5rem 1rem; border-radius: 100px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); color: #fff; font-size: 0.9rem; font-weight: 500; }
.hero-badge .ic-star { color: var(--color-lemon); }
.hero-scroll-hint { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); animation: bob 2s var(--ease) infinite; }
.hero-scroll-hint .ic { width: 28px; height: 28px; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(8px);} }

/* ---------- Marquee ---------- */
.marquee-strip { background: var(--color-bg-darker); color: var(--color-text-invert); padding: 1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 1.5rem; align-items: center; animation: marquee 38s linear infinite; will-change: transform; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Fraunces'; font-style: italic; font-weight: 340; font-size: 1.1rem; color: rgba(250,244,232,0.85); }
.marquee-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-lemon); display: inline-block; font-style: normal; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Parallax stack (Place) ---------- */
.parallax-stack { position: relative; min-height: 480px; }
.parallax-layer { position: relative; }
.parallax-layer img { border-radius: var(--radius-lg); box-shadow: var(--shadow-elevation-2); object-fit: cover; width: 100%; }
.parallax-back img { height: 480px; }
.parallax-front { position: absolute; bottom: -2rem; right: -1.5rem; width: 52%; }
.parallax-front img { height: 320px; border: 5px solid var(--color-bg-elevated); }

/* ---------- Cards spécialités ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card-spec { background: var(--color-bg-elevated); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-elevation-1); transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid); }
.card-spec:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevation-3); }
.card-img { overflow: hidden; aspect-ratio: 3/2; position: relative; }
.card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(201,128,46,0.18)); opacity: 0; transition: opacity var(--dur-mid); }
.card-spec:hover .card-img::after { opacity: 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.card-spec:hover .card-img img { transform: scale(1.07); }
.card-spec h3 { padding: 1.1rem 1.25rem 0.3rem; }
.card-spec p { padding: 0 1.25rem 1.3rem; font-size: 0.92rem; }

/* ---------- Formules ---------- */
.formules-band { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(2.5rem, 5vw, 4rem); padding: 2rem; background: var(--color-bg-elevated); border-radius: var(--radius-lg); box-shadow: var(--shadow-elevation-1); border: 1px solid var(--color-line-soft); flex-wrap: wrap; }
.formule { text-align: center; display: flex; flex-direction: column; gap: 0.25rem; }
.formule-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-olive); font-weight: 600; }
.formule-price { font-family: 'Fraunces'; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 360; color: var(--color-accent); line-height: 1; }
.formule-note { font-size: 0.88rem; color: var(--color-text-muted); }
.divider-v { width: 1px; height: 70px; background: var(--color-line); }

/* ---------- Showreel ---------- */
.section-showreel { background: var(--color-bg-darker); }
.showreel-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-elevation-3); aspect-ratio: 16/9; max-width: 980px; margin-inline: auto; border: 1px solid rgba(250,244,232,0.1); }
.showreel-frame video { width: 100%; height: 100%; object-fit: cover; }
.showreel-caption { text-align: center; color: rgba(250,244,232,0.8); margin-top: 1.5rem; font-size: 1.05rem; }
.showreel-caption em { color: var(--color-lemon); }

/* ---------- Citron ---------- */
.citron-stack { position: relative; }
.citron-main { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-elevation-2); object-fit: cover; aspect-ratio: 4/5; }
.citron-side { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 44%; border-radius: var(--radius-md); border: 5px solid var(--color-bg-soft); box-shadow: var(--shadow-elevation-2); object-fit: cover; aspect-ratio: 3/4; }
.badge-igp { position: absolute; top: 1rem; right: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; background: var(--color-lemon); color: var(--color-bg-darker); font-weight: 600; font-size: 0.82rem; padding: 0.5rem 0.85rem; border-radius: 100px; box-shadow: 0 4px 16px var(--color-glow); }
.section-citron .text-col:hover ~ .figure-col .badge-igp { box-shadow: 0 0 16px var(--color-glow); }

/* ---------- Masonry ---------- */
.masonry { columns: 4 240px; column-gap: 1rem; }
.masonry figure { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-elevation-1); }
.masonry img { width: 100%; height: auto; transition: transform var(--dur-slow) var(--ease); }
.masonry figure:hover img { transform: scale(1.06); }

/* ---------- Counters / avis ---------- */
.counters { display: flex; justify-content: center; gap: clamp(2rem, 6vw, 5rem); margin-top: 1.75rem; flex-wrap: wrap; }
.counter-item { display: flex; flex-direction: column; align-items: center; }
.counter-num { display: inline-flex; align-items: baseline; }
.counter, .counter-suffix { font-family: 'Fraunces'; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 360; color: var(--color-accent); line-height: 1; }
.counter-suffix { margin-left: 1px; }
.counter-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-olive); margin-top: 0.5rem; white-space: nowrap; }
.grid-avis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 980px; margin-inline: auto; }
.card-avis { padding: 1.75rem; border-radius: var(--radius-md); transition: transform var(--dur-mid) var(--ease); }
.glass { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.6); box-shadow: var(--shadow-elevation-1); }
.card-avis .stars { display: flex; gap: 2px; color: var(--color-lemon-soft); margin-bottom: 0.85rem; }
.card-avis .stars .ic { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.card-avis blockquote { font-family: 'Fraunces'; font-style: italic; font-weight: 340; font-size: 1.08rem; line-height: 1.5; color: var(--color-text); }
.card-avis blockquote em { color: inherit; }
.card-avis footer { margin-top: 0.9rem; font-size: 0.82rem; color: var(--color-text-dim); font-weight: 500; }

/* ---------- CTA section ---------- */
.section-cta { background: var(--color-sea-deep); overflow: hidden; }
.gradient-mesh-bg { position: absolute; inset: -30%; background: var(--gradient-mesh); filter: blur(80px); opacity: 0.5; animation: spin 60s linear infinite; z-index: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.section-cta .container { position: relative; z-index: 1; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.info-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.9rem; }
.info-list li { display: flex; align-items: center; gap: 0.8rem; color: rgba(250,244,232,0.9); font-size: 1.02rem; }
.info-list .ic { width: 22px; height: 22px; color: var(--color-lemon); }
.info-list a { transition: color var(--dur-fast); }
.info-list a:hover { color: var(--color-lemon); }
.info-list em { color: var(--color-lemon); }
.cta-text .btn-xl { margin-top: 0.5rem; }
.cta-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-elevation-3); aspect-ratio: 4/3; }
.cta-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

/* ---------- Footer ---------- */
.footer { background: var(--color-bg-darker); color: var(--color-text-invert); padding-top: clamp(3.5rem, 7vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { font-size: 2rem; color: var(--color-lemon); display: block; margin-bottom: 0.75rem; }
.footer-col h4 { font-family: 'Inter'; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent-pale); margin-bottom: 1rem; font-weight: 600; }
.footer-col p { color: rgba(250,244,232,0.72); font-size: 0.92rem; margin-bottom: 0.55rem; }
.footer-col p em { color: var(--color-lemon); }
.footer-col a { color: rgba(250,244,232,0.82); transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--color-lemon); }
.footer .footnote { color: rgba(250,244,232,0.5); }
.social-link { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-base { border-top: 1px solid rgba(250,244,232,0.12); padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; max-width: 1200px; margin-inline: auto; }
.footer-base p { font-size: 0.8rem; color: rgba(250,244,232,0.5); }
.footer-base a { color: rgba(250,244,232,0.7); text-decoration: underline; }
.footer-credit a { color: var(--color-accent-pale); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 900; display: none; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem; border-radius: var(--radius-md); background: var(--color-accent); color: #fff; font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow-elevation-3); transform: translateY(150%); transition: transform var(--dur-mid) var(--ease); }
.sticky-cta.show { transform: translateY(0); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30,26,20,0.6); backdrop-filter: blur(4px); }
.modal-card { position: relative; background: var(--color-bg-elevated); border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 2.25rem; box-shadow: var(--shadow-elevation-3); max-height: 85vh; overflow-y: auto; }
.modal-card h3 { margin-bottom: 1.25rem; }
.modal-body p { font-size: 0.92rem; color: var(--color-text-muted); margin-bottom: 0.9rem; }
.modal-close { position: absolute; top: 1rem; right: 1.1rem; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--color-text-dim); cursor: pointer; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn-sm span { display: none; }
  .nav-actions .btn-sm { padding: 0.55rem; }
  .grid-2, .cta-grid { grid-template-columns: 1fr; }
  .grid-2.reverse .figure-col { order: 0; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .parallax-front { position: relative; bottom: 0; right: 0; width: 70%; margin-top: 1rem; margin-left: auto; }
  .parallax-back img { height: auto; }
  .citron-side { position: relative; bottom: 0; left: 0; width: 60%; margin-top: 1rem; border-width: 4px; }
  .sticky-cta { display: flex; }
  .grid-avis { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .grid-cards { grid-template-columns: 1fr; }
  .masonry { columns: 2 130px; }
  .footer-grid { grid-template-columns: 1fr; }
  .formules-band { flex-direction: column; }
  .divider-v { width: 70px; height: 1px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero-video { display: none; }
  .hero { background: var(--color-bg-darker); }
  .reveal { opacity: 1; transform: none; }
}
