    /* ==========================================
       TOKENS
    ========================================== */
    :root {
      --dark-green:      #1d3300;
      --medium-green:    #5c6b48;
      --olive-green:     #606930;
      --olive-dark:      #4b5b35;
      --light-green-bg:  #f5f9ef;
      --page-bg:         #faf6f6;
      --beige-bg:        #f5eee7;
      --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
      --ease-quart:  cubic-bezier(0.25, 1, 0.5, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
      --dur-xs: 300ms;
      --dur-sm: 500ms;
      --dur-md: 750ms;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background-color: var(--page-bg);
      color: var(--dark-green);
      overflow-x: hidden;
      max-width: 100%;
      opacity: 0;
      animation: pageLoad 600ms var(--ease-quart) 100ms forwards;
    }

    /* Safeguard global anti-débordement */
    img, picture, video, canvas, svg { max-width: 100%; }
    @keyframes pageLoad { to { opacity: 1; } }

    /* ==========================================
       SCROLL-REVEAL
    ========================================== */
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
      will-change: transform, opacity;
      transition: opacity var(--dur-md) var(--ease-expo), transform var(--dur-md) var(--ease-expo);
    }
    .reveal       { opacity: 0; transform: translateY(52px); }
    .reveal-left  { opacity: 0; transform: translateX(-60px); }
    .reveal-right { opacity: 0; transform: translateX(60px); }
    .reveal-scale { opacity: 0; transform: scale(0.88); }
    .reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view {
      opacity: 1; transform: none;
    }
    .d1 { transition-delay: 0ms; }
    .d2 { transition-delay: 120ms; }
    .d3 { transition-delay: 240ms; }
    .d4 { transition-delay: 360ms; }
    .d5 { transition-delay: 480ms; }
    .d6 { transition-delay: 600ms; }

    /* ==========================================
       STICKY NAV
    ========================================== */
    .sticky-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 72px; padding: 0 48px;
      background: rgba(29, 51, 0, 0.88);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      border-bottom: 0.5px solid rgba(255,255,255,0.08);
      transform: translateY(-100%); opacity: 0;
      transition: transform 600ms var(--ease-expo), opacity 600ms var(--ease-expo);
    }
    .sticky-nav.visible { transform: translateY(0); opacity: 1; }
    .sticky-nav .nav-link {
      color: white; font-size: 15px; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      position: relative; padding: 0;
      transition: opacity var(--dur-xs) ease;
    }
    .sticky-nav .nav-link::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; background: white; transform: scaleX(0);
      transform-origin: left; transition: transform var(--dur-xs) var(--ease-expo);
    }
    .sticky-nav .nav-link:hover::after { transform: scaleX(1); }
    .sticky-nav .nav-phone {
      color: white; font-size: 15px; font-weight: 700;
      text-decoration: none; white-space: nowrap;
    }
    .sticky-nav .nav-logo-sticky {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 80px; height: 56px; object-fit: contain;
    }

    /* ==========================================
       HERO
    ========================================== */
    .hero {
      position: relative; width: 100%; height: 744px;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 115%; top: -7.5%;
      object-fit: cover; object-position: center;
      opacity: 0;
      transition: opacity 1600ms ease-in-out;
      will-change: opacity, transform;
    }
    .hero-bg.active { opacity: 1; }
    .hero-overlay-top {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(20,40,0,0.55) 0%, rgba(20,40,0,0) 40%);
      pointer-events: none;
    }
    .hero-overlay-mid {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(20,40,0,0.45) 0%, rgba(20,40,0,0) 55%);
      pointer-events: none;
    }
    .header {
      position: absolute; top: 0; left: 0; right: 0; z-index: 50;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 102px;
    }
    .nav-group { display: flex; align-items: center; gap: 56px; }
    .nav-link {
      color: white !important; text-decoration: none; font-size: 18px;
      text-transform: uppercase; letter-spacing: 0.04em;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      position: relative; padding-bottom: 3px;
      transition: opacity var(--dur-xs) ease;
      opacity: 0; animation: navSlideDown 700ms var(--ease-expo) both;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 1px; background: white;
      transform: scaleX(0); transform-origin: left;
      transition: transform var(--dur-xs) var(--ease-expo);
    }
    .nav-link:hover { opacity: 1 !important; }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-link:nth-child(1) { animation-delay: 200ms; }
    .nav-link:nth-child(2) { animation-delay: 300ms; }
    .nav-group:last-child .nav-link:nth-child(1) { animation-delay: 350ms; }
    .nav-group:last-child .nav-link:nth-child(2) { animation-delay: 450ms; }
    .nav-phone {
      color: white; font-size: 18px; font-weight: 700; text-decoration: none;
      opacity: 0; animation: navSlideDown 700ms var(--ease-expo) 550ms both;
    }
    @keyframes navSlideDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .nav-logo {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 110px; height: 102px; object-fit: contain;
      opacity: 0; animation: logoReveal 900ms var(--ease-expo) 150ms both;
    }
    @keyframes logoReveal {
      from { opacity: 0; transform: translate(-50%, -62%); }
      to   { opacity: 1; transform: translate(-50%, -50%); }
    }
    .hero-content {
      position: relative; z-index: 10;
      display: flex; flex-direction: column;
      align-items: center; gap: 15px;
      text-align: center; margin-top: 60px;
    }
    .hero-label {
      font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
      color: white; letter-spacing: 4.2px; text-transform: uppercase;
      opacity: 0; animation: heroFadeUp 800ms var(--ease-expo) 400ms both;
    }
    .hero-title {
      font-family: 'Fraunces', serif; font-weight: 600; font-size: 60px;
      color: white; text-shadow: 0 4px 4px rgba(0,0,0,0.25); line-height: 1.1;
      opacity: 0; animation: heroFadeUp 1000ms var(--ease-expo) 600ms both;
    }
    .hero-tagline {
      font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
      font-size: 20px; color: white; letter-spacing: 5.6px;
      text-shadow: 0 4px 4px rgba(0,0,0,0.25);
      opacity: 0; animation: heroFadeUp 900ms var(--ease-expo) 800ms both;
    }
    .hero-cta {
      margin-top: 35px; filter: drop-shadow(0 2px 15px rgba(255,255,255,0.4));
      opacity: 0; animation: heroFadeUp 800ms var(--ease-expo) 1000ms both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-scroll-hint {
      position: absolute; bottom: 28px; left: 0; right: 0; z-index: 10;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: heroFadeUp 800ms var(--ease-expo) 1300ms both;
      background: none; border: none; cursor: pointer;
    }
    .hero-scroll-hint span {
      font-size: 11px; color: rgba(255,255,255,0.6);
      letter-spacing: 3px; text-transform: uppercase;
    }
    .scroll-arrow {
      width: 20px; height: 20px;
      border-right: 1.5px solid rgba(255,255,255,0.6);
      border-bottom: 1.5px solid rgba(255,255,255,0.6);
      transform: rotate(45deg);
      animation: arrowBounce 1.6s var(--ease-smooth) infinite;
    }
    @keyframes arrowBounce {
      0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
      60%       { transform: rotate(45deg) translateY(8px); opacity: 0.4; }
    }

    /* ==========================================
       BUTTONS (override Bootstrap .btn)
    ========================================== */
    .btn {
      position: relative; overflow: hidden;
      display: inline-flex; align-items: center; justify-content: center;
      border-radius: 50px; text-decoration: none; cursor: pointer; border: none;
      font-family: 'Laila', serif; font-size: 18px;
      transition: transform var(--dur-xs) var(--ease-spring),
                  box-shadow var(--dur-xs) var(--ease-expo),
                  background var(--dur-xs) ease;
    }
    .btn:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
    .btn:active { transform: scale(0.97); }
    .btn .ripple {
      position: absolute; border-radius: 50%;
      width: 4px; height: 4px; background: rgba(255,255,255,0.4);
      transform: scale(0); animation: rippleAnim 600ms var(--ease-expo) forwards;
      pointer-events: none;
    }
    @keyframes rippleAnim { to { transform: scale(120); opacity: 0; } }
    .btn-filled {
      background-color: var(--olive-green); color: white; padding: 12px 28px; min-width: 216px;
    }
    .btn-filled:hover { background-color: #707d38; color: white; }
    .btn-outline {
      background-color: white; color: var(--olive-green);
      border: 1px solid var(--olive-green); padding: 12px 28px;
    }
    .btn-outline:hover { background-color: var(--olive-green); color: white; }
    .btn-dark {
      background-color: var(--olive-green); color: white;
      font-family: 'Inter', sans-serif; font-weight: 500; font-size: 20px;
      padding: 14px 28px; border-radius: 50px;
    }
    .btn-dark:hover { background-color: #707d38; color: white; }
    .btn-lg { font-size: 20px; height: 53px; padding: 0 24px; }

    /* ==========================================
       SHARED
    ========================================== */
    .section-label {
      font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
      color: var(--dark-green); text-transform: uppercase; letter-spacing: 4.2px;
    }
    .section-title {
      font-family: 'Fraunces', serif; font-weight: 600; font-size: 38px;
      color: var(--dark-green); line-height: 1.25;
    }
    .section-body { font-size: 20px; line-height: 1.6; color: black; }
    .section-body p + p { margin-top: 1.1em; }
    .sep-line {
      display: block; width: 72px; height: 2px;
      background-color: var(--dark-green); opacity: 0; border: none;
      flex-shrink: 0; transform-origin: left; transform: scaleX(0);
      transition: transform 800ms var(--ease-expo), opacity 600ms var(--ease-expo);
    }
    .sep-line.in-view { transform: scaleX(1); opacity: 0.55; }

    /* ==========================================
       SECTION: PRÉSENTATION
    ========================================== */
    .section-presentation { background: var(--page-bg); padding: 52px 0 60px; position: relative; }

    .olive-branch {
      position: absolute; right: -60px; top: -30px;
      width: 320px; height: auto;
      z-index: 5; pointer-events: none; user-select: none;
      mix-blend-mode: multiply;
      opacity: 0;
      transform: translateX(100px) rotate(-110deg);
      transition: opacity 900ms var(--ease-expo) 150ms,
                  transform 1100ms var(--ease-expo) 150ms;
    }
    .olive-branch.in-view {
      opacity: 1;
      transform: translateX(0) rotate(-110deg);
    }
    @media (max-width: 853px) { .olive-branch { display: none; } }
    .pres-photo {
      width: 100%; height: 620px; border-radius: 10px; overflow: hidden;
    }
    .pres-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform 600ms var(--ease-expo);
    }
    .pres-photo:hover img { transform: scale(1.04); }
    .pres-content {
      display: flex; flex-direction: column; gap: 18px; padding: 10px 18px;
    }

    /* ==========================================
       SECTION: QUOTE
    ========================================== */
    .section-quote {
      background: var(--page-bg); padding: 80px 0 90px;
      position: relative; overflow: hidden;
      min-height: 420px; display: flex; align-items: center;
    }
    .filigram {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: min(860px, 100%);
      opacity: 0.15; pointer-events: none;
      animation: filigramFloat 9s ease-in-out infinite;
    }
    @keyframes filigramFloat {
      0%, 100% { transform: translate(-50%, -50%) translateY(0); }
      50%       { transform: translate(-50%, -50%) translateY(-10px); }
    }
    .quote-inner {
      position: relative; z-index: 1; width: 100%;
      display: flex; flex-direction: column; align-items: center;
      gap: 28px; padding: 0 180px; text-align: center;
    }
    .quote-deco { width: 70px; height: 64px; object-fit: contain; opacity: 0.9; }
    .quote-text {
      font-family: 'Fraunces', serif; font-style: italic;
      font-size: 36px; color: #33520b; line-height: 1.45;
      max-width: min(820px, 100%); word-break: break-word;
    }

    /* ==========================================
       SECTION: SPEAKEASY
    ========================================== */
    .section-speakeasy { background: var(--light-green-bg); padding: 60px 0; }
    .speakeasy-content { display: flex; flex-direction: column; gap: 24px; }
    .speakeasy-title {
      font-family: 'Fraunces', serif; font-weight: 600;
      font-size: 40px; color: var(--dark-green); line-height: 1.2;
    }
    .speakeasy-body { font-size: 20px; line-height: 1.6; color: black; }
    .speakeasy-body p + p { margin-top: 1em; }
    .speakeasy-images { width: 100%; height: 560px; border-radius: 10px; overflow: hidden; }
    .speakeasy-images img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 700ms var(--ease-expo);
    }
    .speakeasy-images:hover img { transform: scale(1.04); }

    /* ==========================================
       SECTION: PRIVATISATION
    ========================================== */
    .section-privatisation { background: white; padding: 80px 0; position: relative; }
    .priv-photo {
      width: 100%; height: 483px; border-radius: 10px; overflow: hidden;
    }
    .priv-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      transition: transform 700ms var(--ease-expo);
    }
    .priv-photo:hover img { transform: scale(1.05); }
    .priv-content { display: flex; flex-direction: column; gap: 24px; }
    .priv-title {
      font-family: 'Fraunces', serif; font-weight: 400;
      font-size: 40px; color: var(--dark-green);
    }

    /* ==========================================
       GALERIE — INFINITE SLIDER
    ========================================== */
    .section-galerie { background: var(--page-bg); padding: 60px 0; overflow: hidden; }
    .galerie-header {
      display: flex; flex-direction: column;
      align-items: center; gap: 24px; margin-bottom: 48px;
    }
    .galerie-title {
      font-family: 'Fraunces', serif; font-weight: 400;
      font-size: 38px; color: var(--dark-green);
    }
    .gal-slider { position: relative; padding: 0 72px; }
    .gal-viewport { overflow: hidden; border-radius: 12px; }
    .gal-track { display: flex; gap: 16px; will-change: transform; }
    .gal-track.is-animating { transition: transform 600ms var(--ease-expo); }
    .gal-slide {
      flex-shrink: 0; height: 340px; border-radius: 10px;
      overflow: hidden; position: relative; cursor: pointer;
    }
    .gal-slide img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 600ms var(--ease-expo); display: block;
    }
    .gal-slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(29,51,0,0.4));
      opacity: 0; transition: opacity var(--dur-sm) ease;
    }
    .gal-slide:hover img { transform: scale(1.07); }
    .gal-slide:hover::after { opacity: 1; }
    .gal-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; background: white;
      border: none; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10; color: var(--dark-green);
      box-shadow: 0 4px 20px rgba(29,51,0,0.15);
      transition: transform var(--dur-xs) var(--ease-spring), box-shadow var(--dur-xs) ease;
    }
    .gal-btn:hover { transform: translateY(-50%) scale(1.12); box-shadow: 0 8px 28px rgba(29,51,0,0.25); }
    .gal-prev { left: 12px; }
    .gal-next { right: 12px; }
    .gal-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
    .gal-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--dark-green);
      opacity: 0.2; border: none; cursor: pointer; padding: 0;
      transition: opacity var(--dur-xs), width var(--dur-xs) var(--ease-spring);
    }
    .gal-dot.active { opacity: 0.7; width: 20px; border-radius: 3px; }

    /* ==========================================
       SECTION: LE PETIT LOUVRE
    ========================================== */
    .section-lpl { background: var(--page-bg); padding: 60px 0; }
    .lpl-title {
      font-family: 'Fraunces', serif; font-weight: 400;
      font-size: 38px; color: var(--dark-green);
      text-align: center; margin-bottom: 43px;
    }
    .lpl-photo {
      width: 100%; height: 499px; border-radius: 10px; overflow: hidden;
    }
    .lpl-photo img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 700ms var(--ease-expo);
    }
    .lpl-photo:hover img { transform: scale(1.05); }
    .lpl-text { font-size: 20px; line-height: 1.6; color: black; }
    .lpl-text p + p { margin-top: 1em; }

    /* ==========================================
       SECTION: NOS PLATS
    ========================================== */
    .section-nosplats { background: rgba(255,255,255,0.5); padding: 60px 0; overflow: hidden; }
    .nosplats-header {
      display: flex; flex-direction: column;
      align-items: center; gap: 24px; margin-bottom: 40px;
    }
    .nosplats-title {
      font-family: 'Fraunces', serif; font-weight: 400;
      font-size: 38px; color: var(--dark-green);
    }
    .nosplats-cta { display: flex; justify-content: center; margin-top: 40px; }

    /* ==========================================
       SECTION: AVIS
    ========================================== */
    .section-avis { background: var(--beige-bg); padding: 80px 0; overflow: hidden; }
    .avis-header {
      text-align: center; margin-bottom: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 16px;
    }
    .avis-slider {
      position: relative; max-width: 1200px;
      margin: 0 auto; padding: 0 80px;
    }
    .avis-viewport { overflow: hidden; }
    .avis-track { display: flex; gap: 24px; will-change: transform; }
    .avis-track.is-animating { transition: transform 600ms var(--ease-expo); }
    .avis-card {
      flex-shrink: 0; background: white; border-radius: 16px;
      padding: 36px 40px; display: flex; flex-direction: column; gap: 20px;
      box-shadow: 0 4px 24px rgba(29,51,0,0.07);
      transition: box-shadow 300ms ease, transform 300ms var(--ease-expo);
    }
    .avis-card:hover { box-shadow: 0 8px 40px rgba(29,51,0,0.12); transform: translateY(-3px); }
    .avis-stars { color: #f4b92b; font-size: 22px; letter-spacing: 2px; }
    .avis-quote { font-size: 18px; font-style: italic; line-height: 1.65; color: #2a2a2a; flex: 1; }
    .avis-author { display: flex; align-items: center; gap: 14px; }
    .avis-avatar {
      width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
      background: var(--medium-green); display: flex;
      align-items: center; justify-content: center;
      color: white; font-weight: 600; font-size: 16px; font-family: 'Inter', sans-serif;
    }
    .avis-name { font-weight: 600; font-size: 15px; color: #1a1a1a; line-height: 1.3; margin: 0; }
    .avis-via { font-size: 13px; color: #888; margin: 2px 0 0; }
    .avis-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; background: white; border: none;
      border-radius: 50%; cursor: pointer; color: var(--dark-green);
      box-shadow: 0 4px 20px rgba(29,51,0,0.15);
      display: flex; align-items: center; justify-content: center;
      transition: background var(--dur-xs) ease, transform var(--dur-xs) var(--ease-spring);
    }
    .avis-btn:hover { background: var(--dark-green); color: white; transform: translateY(-50%) scale(1.08); }
    .avis-prev { left: 12px; }
    .avis-next { right: 12px; }
    .avis-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
    .avis-dot {
      width: 6px; height: 6px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
      background: var(--dark-green); opacity: 0.2;
      transition: opacity 300ms, width 300ms, border-radius 300ms;
    }
    .avis-dot.active { opacity: 0.7; width: 20px; border-radius: 3px; }

    /* ==========================================
       FOOTER
    ========================================== */
    .footer {
      background: linear-gradient(180deg, #5c6b48 0%, #1d3300 100%);
      padding: 60px 0 0; color: white;
    }
    .footer-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .footer-desc { font-size: 18px; color: #fdfdfd; text-align: center; line-height: 1.6; }
    .footer-heading {
      font-weight: bold; font-size: 18px;
      text-transform: uppercase; letter-spacing: 0.04em; text-align: center; color: white;
    }
    .footer-links { list-style: none; text-align: center; padding: 0; margin: 0; }
    .footer-links li a {
      display: block; font-size: 20px; color: white;
      text-decoration: none; line-height: 2;
      position: relative; transition: opacity var(--dur-xs);
    }
    .footer-links li a::after {
      content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
      height: 1px; background: white;
      transition: left var(--dur-xs) var(--ease-expo), right var(--dur-xs) var(--ease-expo);
    }
    .footer-links li a:hover { opacity: 0.85; }
    .footer-links li a:hover::after { left: 10%; right: 10%; }
    .footer-text { font-size: 20px; color: white; text-align: center; line-height: 1.7; margin: 0; }
    .footer-social { display: flex; gap: 12px; align-items: center; }
    .social-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: white; color: var(--dark-green);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; flex-shrink: 0;
      transition: box-shadow 300ms var(--ease-expo), transform 300ms var(--ease-spring), background 200ms ease;
    }
    .social-icon svg { display: block; flex-shrink: 0; }
    .social-icon:hover {
      background: white;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.25), 0 0 20px rgba(255,255,255,0.45);
      transform: scale(1.1);
      color: var(--dark-green);
    }
    .footer-map-btn {
      border: 0.5px solid white; border-radius: 50px;
      width: 136px; height: 36px;
      display: inline-flex; align-items: center; justify-content: center;
      color: white; text-decoration: none; font-size: 18px;
      transition: background var(--dur-xs), transform var(--dur-xs) var(--ease-spring);
    }
    .footer-map-btn:hover { background: rgba(255,255,255,0.15); transform: scale(1.04); }
    .footer-divider { height: 0.5px; background: rgba(255,255,255,0.3); margin: 0 40px 22px; }
    .footer-bottom {
      font-family: 'Laila', serif; font-size: 14px; color: white;
      padding: 0 40px 30px;
    }

    /* ==========================================
       FLOATING RESERVE BUTTON
    ========================================== */
    .float-reserve {
      position: fixed; bottom: 100px; right: 28px; z-index: 200;
      background: var(--olive-green); color: white;
      padding: 13px 22px; border-radius: 50px;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      box-shadow: 0 6px 28px rgba(96,105,48,0.42);
      opacity: 0; transform: translateY(16px);
      transition: opacity 400ms var(--ease-expo), transform 400ms var(--ease-expo),
                  box-shadow 200ms ease;
      pointer-events: none;
      white-space: nowrap;
    }
    .float-reserve.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .float-reserve:hover {
      background: var(--dark-green); color: white;
      box-shadow: 0 10px 40px rgba(29,51,0,0.45);
      transform: translateY(-3px);
    }
    @media (max-width: 853px) {
      .float-reserve { bottom: 16px; right: 16px; font-size: 12px; padding: 11px 18px; }
    }

    /* ==========================================
       HERO URGENCY NOTE
    ========================================== */
    .hero-availability {
      font-size: 12px; letter-spacing: 0.12em; color: rgba(255,255,255,0.65);
      text-transform: uppercase; margin-top: 14px; margin-bottom: 0;
    }
    .hero-availability::before { content: '✓ '; }

    /* ==========================================
       AVIS SCORE BADGE
    ========================================== */
    .avis-score-row {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-bottom: 36px;
    }
    .avis-score-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; border-radius: 50px;
      padding: 10px 20px;
      box-shadow: 0 2px 16px rgba(29,51,0,0.1);
    }
    .avis-score-num {
      font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600;
      color: var(--dark-green); line-height: 1;
    }
    .avis-score-stars { color: #f4b92b; font-size: 17px; letter-spacing: 1px; }
    .avis-score-count { font-size: 13px; color: #666; letter-spacing: 0.04em; }

    /* ==========================================
       SCROLL TO TOP
    ========================================== */
    .scroll-top {
      position: fixed; bottom: 30px; right: 30px;
      width: 57px; height: 57px; z-index: 999;
      display: block; opacity: 0; pointer-events: none;
      transform: translateY(16px);
      transition: opacity var(--dur-sm) var(--ease-expo), transform var(--dur-sm) var(--ease-expo);
    }
    .scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .scroll-top img { width: 100%; height: 100%; transition: transform var(--dur-xs) var(--ease-spring); }
    .scroll-top:hover img { transform: scale(1.12) translateY(-3px); }

    /* ==========================================
       REDUCED MOTION
    ========================================== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
      .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
    }

    /* ==========================================
       MOBILE HAMBURGER BUTTONS
    ========================================== */
    .mobile-menu-btn,
    .sticky-mobile-btn {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: 8px; z-index: 60; flex-shrink: 0;
      position: relative;
      -webkit-tap-highlight-color: transparent;
    }
    .mobile-menu-btn span,
    .sticky-mobile-btn span {
      display: block; width: 24px; height: 2px;
      background: white; border-radius: 2px;
      transition: transform 300ms var(--ease-expo), opacity 200ms ease;
    }
    .mobile-menu-btn.open span:nth-child(1),
    .sticky-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.open span:nth-child(2),
    .sticky-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .mobile-menu-btn.open span:nth-child(3),
    .sticky-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ==========================================
       MOBILE NAV OVERLAY
    ========================================== */
    .mobile-nav-overlay {
      position: fixed; inset: 0; z-index: 250;
      background: var(--dark-green);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      transform: translateX(100%);
      transition: transform 500ms var(--ease-expo);
      pointer-events: none;
    }
    .mobile-nav-overlay.open {
      transform: translateX(0);
      pointer-events: auto;
    }
    /* Bouton fermeture overlay */
    .overlay-close {
      position: absolute; top: 0; right: 20px;
      height: 58px; width: 44px;
      background: none; border: none; color: white;
      cursor: pointer; z-index: 10;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; line-height: 1; opacity: 1;
      -webkit-tap-highlight-color: transparent;
      transition: opacity 200ms ease, transform 300ms var(--ease-expo);
    }
    .overlay-close:hover { opacity: 0.7; transform: rotate(90deg); }
    .overlay-logo {
      width: 110px; height: auto; object-fit: contain; margin-bottom: 32px;
      opacity: 0; transform: translateY(-12px);
      transition: opacity 400ms var(--ease-expo), transform 400ms var(--ease-expo);
    }
    .mobile-nav-overlay.open .overlay-logo { opacity: 1; transform: translateY(0); }
    .overlay-sep {
      width: 40px; height: 1px;
      background: rgba(255,255,255,0.2); margin: 12px 0;
    }
    .overlay-nav { display: flex; flex-direction: column; align-items: center; gap: 0; }
    .overlay-link {
      color: white; text-decoration: none;
      font-family: 'Fraunces', serif; font-size: 28px;
      font-weight: 400; padding: 10px 32px; letter-spacing: 0.02em;
      text-decoration: underline;
      text-underline-offset: 7px;
      text-decoration-color: rgba(255,255,255,0.25);
      opacity: 0; transform: translateY(16px);
      transition: opacity 400ms var(--ease-expo), transform 400ms var(--ease-expo),
                  text-decoration-color 200ms ease;
    }
    .overlay-link:hover { text-decoration-color: rgba(255,255,255,0.8); }
    .mobile-nav-overlay.open .overlay-nav .overlay-link:nth-child(1) { opacity:1; transform:none; transition-delay:80ms; }
    .mobile-nav-overlay.open .overlay-nav .overlay-link:nth-child(2) { opacity:1; transform:none; transition-delay:150ms; }
    .mobile-nav-overlay.open .overlay-nav .overlay-link:nth-child(3) { opacity:1; transform:none; transition-delay:220ms; }
    .mobile-nav-overlay.open .overlay-nav .overlay-link:nth-child(4) { opacity:1; transform:none; transition-delay:290ms; }
    .mobile-nav-overlay.open .overlay-nav .overlay-link:nth-child(5) { opacity:1; transform:none; transition-delay:360ms; }
    .overlay-phone-link {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 15px; letter-spacing: 0.1em;
      margin-top: 22px;
      opacity: 0; transform: translateY(10px);
      transition: opacity 400ms var(--ease-expo) 450ms, transform 400ms var(--ease-expo) 450ms;
    }
    .mobile-nav-overlay.open .overlay-phone-link { opacity: 1; transform: translateY(0); }

    /* ==========================================
       RESPONSIVE — TABLET (≤ 991px)
    ========================================== */
    @media (max-width: 991.98px) {
      .section-title  { font-size: 32px; }
      .speakeasy-title{ font-size: 32px; }
      .quote-inner    { padding: 0 60px; }
      .quote-text     { font-size: 28px; }
      .pres-photo     { height: 460px; }
      .speakeasy-images { height: 420px; }
      .priv-photo     { height: 360px; }
      .lpl-photo      { height: 360px; }
    }

    /* ==========================================
       RESPONSIVE — MOBILE (≤ 767px)
    ========================================== */
    @media (max-width: 853px) {
      /* Hero header — hide links, show burger */
      .nav-group { display: none !important; }
      .nav-phone { display: none !important; }
      .header { padding: 0 20px; height: 68px; }
      .nav-logo { width: 68px; height: 68px; }
      .mobile-menu-btn { display: flex; }

      /* Hero */
      .hero { height: 100svh; min-height: 560px; }
      .hero-title   { font-size: 34px; }
      .hero-tagline { font-size: 13px; letter-spacing: 3px; }
      .hero-cta     { margin-top: 20px; }

      /* Sticky nav — hide links, show burger + logo only */
      .sticky-nav { padding: 0 20px; height: 58px; justify-content: flex-end !important; }
      .sticky-nav-group        { display: none !important; }
      .sticky-nav .nav-logo-sticky { width: 54px; height: 40px; }
      .sticky-mobile-btn { display: flex; margin-left: 0; }

      /* Sections */
      .section-presentation  { padding: 40px 0 48px; }
      .section-quote         { padding: 52px 0; min-height: auto; }
      .section-speakeasy     { padding: 40px 0 48px; }
      .section-privatisation { padding: 40px 0 48px; }
      .section-galerie       { padding: 36px 0; }
      .section-lpl           { padding: 40px 0; }
      .section-nosplats      { padding: 40px 0; }
      .section-avis          { padding: 52px 0; }

      /* Typography */
      .section-title   { font-size: 24px; line-height: 1.35; }
      .section-body    { font-size: 16px; }
      .speakeasy-title { font-size: 24px; }
      .speakeasy-body  { font-size: 16px; }
      .priv-title      { font-size: 24px; }
      .lpl-title       { font-size: 24px; margin-bottom: 24px; }
      .galerie-title, .nosplats-title { font-size: 24px; }
      .lpl-text        { font-size: 16px; line-height: 1.6; }
      .galerie-header, .nosplats-header, .avis-header { margin-bottom: 24px; }

      /* Quote */
      .quote-inner { padding: 0 24px; gap: 16px; }
      .quote-text  { font-size: 18px; line-height: 1.5; }
      .filigram    { width: 260px; }

      /* Photo heights — compact on mobile */
      .pres-photo       { height: 240px; }
      .speakeasy-images { height: 240px; }
      .priv-photo       { height: 220px; }
      .lpl-photo        { height: 220px; }

      /* Pres content padding */
      .pres-content { padding: 0 4px; }

      /* Sliders — 1 slide, no arrows, full width */
      .gal-slider  { padding: 0 20px; }
      .gal-slide   { height: 240px; }
      .gal-btn     { display: none !important; }
      .avis-slider { padding: 0 20px; }
      .avis-btn    { display: none !important; }
      .avis-card   { padding: 24px 20px; gap: 14px; }
      .avis-quote  { font-size: 15px; }

      /* Buttons */
      .btn-lg { font-size: 16px; height: 46px; }
      .btn-row {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
      }
      .btn-row .btn { width: 100%; max-width: 320px; justify-content: center; }

      /* Footer */
      .footer-logo-img { width: 72px !important; }
      .footer { padding: 44px 0 0; }
      .footer-divider { margin: 0 20px 16px; }
      .footer-bottom {
        flex-direction: column; gap: 6px; text-align: center;
        padding: 0 20px 24px; font-size: 12px;
      }
    }
