*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --linen:#f5ede0;
  --linen-soft:#faf5ee;
  --linen-pale:#fdfaf6;
  --white:#fff;
  --ink:#1e160d;
  --ink-mid:#3a2d1f;
  --text:#2e2217;
  --muted:#7a6452;
  --gold:#b8924a;
  --gold-l:#d4aa6a;
  --gold-pale:rgba(184,146,74,.10);
  --gold-bd:rgba(184,146,74,.25);
  --line:rgba(30,22,13,.09);
  --line-mid:rgba(30,22,13,.14);
  --sh-sm:0 2px 14px rgba(30,22,13,.06);
  --sh-md:0 8px 36px rgba(30,22,13,.09);
  --sh-lg:0 20px 64px rgba(30,22,13,.11);
  --sh-xl:0 36px 90px rgba(30,22,13,.13);
  --r:22px;
  --r-lg:34px;
  --cont:1280px;
}

html{scroll-behavior:smooth}

body{
  font-family:'DM Sans',sans-serif;
  color:var(--text);
  background:var(--linen-pale);
  line-height:1.7;
  overflow-x:hidden;
}

body.nav-open{overflow:hidden}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
address{font-style:normal}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  font-weight:500;
  line-height:.96;
}

.container{
  width:min(calc(100% - 112px),var(--cont));
  margin-inline:auto;
}

/* POPUP */

.popup-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(30,22,13,.55);
  backdrop-filter:blur(7px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .32s ease;
}

.popup-overlay.open{
  opacity:1;
  pointer-events:auto;
}

.popup-card{
  background:#fdfaf6;
  border-radius:28px;
  width:100%;
  max-width:780px;
  max-height:90vh;
  overflow:hidden;
  box-shadow:0 40px 100px rgba(30,22,13,.22);
  display:flex;
  flex-direction:column;
  transform:translateY(24px) scale(.97);
  transition:transform .35s ease;
}

.popup-overlay.open .popup-card{
  transform:translateY(0) scale(1);
}

.popup-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid rgba(30,22,13,.08);
}

.popup-title{
  font-family:'Playfair Display',serif;
  font-size:1.3rem;
  color:var(--ink);
}

.popup-close{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1.5px solid rgba(30,22,13,.12);
  background:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  color:var(--muted);
  transition:.25s ease;
}

.popup-close:hover{
  background:var(--gold-pale);
  color:var(--ink);
  transform:rotate(90deg);
}

.popup-body iframe{
  width:100%;
  height:630px;
  border:0;
  display:block;
}

/* HEADER */

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:200;
  transition:background .4s ease,box-shadow .4s ease,border-color .4s ease;
}

.site-header.scrolled{
  background:rgba(253,250,246,.94);
  backdrop-filter:blur(18px) saturate(1.3);
  border-bottom:1px solid var(--line);
  box-shadow:0 1px 24px rgba(30,22,13,.06);
}

.header-inner{
  min-height:76px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-emblem{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1.5px solid var(--gold-bd);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--white);
  flex-shrink:0;
  transition:.3s ease;
}

.brand:hover .brand-emblem{
  transform:scale(1.06) rotate(-3deg);
  box-shadow:0 10px 24px rgba(184,146,74,.20);
  border-color:var(--gold);
}

.brand-picto{
  width:70%;
  height:70%;
  object-fit:contain;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:1px;
}

.brand-name{
  font-family:'Playfair Display',serif;
  font-size:.98rem;
  color:var(--ink);
  line-height:1.1;
}

.brand-sub{
  font-size:.62rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:2px;
}

.main-nav a{
  padding:9px 14px;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--ink-mid);
  transition:.25s ease;
}

.main-nav a:hover{
  background:var(--gold-pale);
  transform:translateY(-1px);
}

.btn-outline-nav{
  margin-left:6px;
  border:1.5px solid var(--gold-bd);
  color:var(--gold);
  padding:8px 20px;
  border-radius:999px;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.btn-outline-nav:hover{
  background:var(--gold);
  color:#fff;
  transform:translateY(-2px);
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}

.nav-toggle span{
  display:block;
  width:100%;
  height:1.5px;
  background:var(--ink);
  border-radius:2px;
  transition:.3s ease;
}

.nav-toggle.active span:first-child{
  transform:translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:last-child{
  transform:translateY(-3.5px) rotate(-45deg);
}

.lang-switcher{
  display:flex;
  align-items:center;
  gap:4px;
  margin:0 8px;
  padding:4px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.42);
}

.lang-switcher a{
  padding:5px 7px!important;
  font-size:.62rem!important;
  letter-spacing:.08em!important;
  border-radius:999px;
  color:var(--muted)!important;
}

.lang-switcher a.active{
  background:var(--gold);
  color:#fff!important;
}

/* BUTTONS */

.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:52px;
  padding:0 28px;
  border-radius:999px;
  font-family:'DM Sans',sans-serif;
  font-size:.77rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-gold{
  background:var(--gold);
  color:#fff;
  box-shadow:0 6px 24px rgba(184,146,74,.28);
}

.btn-gold:hover{
  background:var(--gold-l);
  box-shadow:0 14px 36px rgba(184,146,74,.35);
}

.btn-stroke{
  background:rgba(255,255,255,.55);
  color:var(--ink);
  border-color:var(--line-mid);
  backdrop-filter:blur(6px);
}

.btn-stroke:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.inline-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

/* HERO */

.hero{
  position:relative;
  min-height:88svh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#d6c4a0;
  border-bottom-left-radius:34px;
  border-bottom-right-radius:34px;
}

.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:108%;
  object-fit:cover;
  object-position:center 42%;
  z-index:0;
  transform:translateY(var(--hero-parallax,0px)) scale(1.02);
}

.hero-veil{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to right,rgba(253,250,246,.88) 0%,rgba(253,250,246,.65) 28%,rgba(253,250,246,.25) 55%,rgba(253,250,246,0) 100%),
    linear-gradient(to top,rgba(253,250,246,.72) 0%,rgba(253,250,246,.24) 36%,rgba(253,250,246,0) 70%);
}

.hero-inner{
  position:relative;
  z-index:3;
  width:100%;
  min-height:88svh;
  padding-top:150px;
  padding-bottom:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:56px;
}

.hero-content{
  flex:0 1 650px;
  max-width:650px;
  margin-left:clamp(20px,3vw,54px);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:11px;
  font-size:.69rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--gold);
  margin-bottom:22px;
}

.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--gold);
}

.hero-h1{
  font-size:clamp(4.2rem,6.4vw,7.4rem);
  letter-spacing:-.04em;
  color:var(--ink);
  margin-bottom:24px;
  line-height:.9;
  text-shadow:0 10px 40px rgba(253,250,246,.45);
}

.hero-h1 em{
  font-style:italic;
  color:var(--gold);
}

.hero-desc{
  font-size:1.02rem;
  color:var(--muted);
  max-width:480px;
  line-height:1.8;
  margin-bottom:36px;
  font-weight:300;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-side{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  max-width:240px;
  padding-right:10px;
}

.hero-stat{
  text-align:right;
  padding:14px 0;
}

.stat-label{
  display:block;
  font-size:.63rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:4px;
}

.stat-value{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(1.1rem,2vw,1.5rem);
  color:var(--ink);
  line-height:1.1;
}

.hero-rule{
  width:1px;
  height:24px;
  background:linear-gradient(to bottom,transparent,var(--gold-bd),transparent);
  align-self:flex-end;
}

/* SECTIONS */

.section{
  position:relative;
  padding:110px 0;
}

.section-tinted{
  background:var(--linen-soft);
}

.section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.67rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold);
  margin-bottom:16px;
}

.section-tag::before{
  content:"";
  width:16px;
  height:1px;
  background:var(--gold);
}

.section-h2{
  font-size:clamp(2.5rem,3.8vw,4.3rem);
  color:var(--ink);
  letter-spacing:-.025em;
  line-height:.97;
}

.section-h2 em{
  font-style:italic;
  color:var(--gold);
}

.intro-grid,
.split-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:76px;
  align-items:center;
}

.intro-right p,
.content-panel p{
  color:var(--muted);
  margin-bottom:16px;
  font-weight:300;
  font-size:1rem;
  line-height:1.8;
}

.section-head{
  margin-bottom:52px;
}

.moments-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  overflow:hidden;
  background:var(--white);
  box-shadow:var(--sh-sm);
}

.moment-card{
  position:relative;
  padding:42px 30px;
  border-right:1px solid var(--line);
  transition:.35s ease;
}

.moment-card:last-child{
  border-right:none;
}

.moment-card:hover{
  background:var(--gold-pale);
  transform:translateY(-4px);
}

.moment-num{
  display:block;
  font-size:.62rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:18px;
}

.moment-card h3{
  font-size:2rem;
  color:var(--ink);
  margin-bottom:11px;
}

.moment-card p{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.7;
  font-weight:300;
}

.split-reverse{
  direction:rtl;
}

.split-reverse>*{
  direction:ltr;
}

.media-shell{
  position:relative;
}

.media-frame{
  position:relative;
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:var(--sh-xl);
  transform:translateY(var(--float-y,0px));
  transition:.6s ease;
}

.media-visual{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.media-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(30,22,13,.28) 0%,transparent 50%);
}

.media-shell:hover .media-frame{
  box-shadow:0 42px 100px rgba(30,22,13,.18);
}

.media-shell:hover .media-visual{
  transform:scale(1.065);
  filter:saturate(1.06) contrast(1.03);
}

.media-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  z-index:1;
  font-size:.63rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  border:1px solid rgba(255,255,255,.3);
  padding:7px 14px;
  border-radius:999px;
  background:rgba(30,22,13,.22);
  backdrop-filter:blur(10px);
}

.media-float{
  position:absolute;
  right:-22px;
  bottom:54px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--sh-md);
  border-radius:var(--r);
  padding:17px 22px;
  min-width:154px;
}

.media-float-left{
  right:auto;
  left:-22px;
}

.float-label{
  display:block;
  font-size:.61rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:5px;
}

.float-value{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:1.3rem;
  color:var(--ink);
}

.content-panel h2{
  font-size:clamp(2.1rem,3vw,3.6rem);
  color:var(--ink);
  letter-spacing:-.025em;
  line-height:.97;
  margin:8px 0 20px;
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold);
  border:0;
  background:none;
  cursor:pointer;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.text-link::after{
  content:"→";
}

.quote-section{
  overflow:hidden;
}

.quote-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(184,146,74,.08),transparent 65%);
}

.quote-inner{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:780px;
  margin:auto;
}

.quote-ornament{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:8rem;
  color:var(--gold);
  opacity:.16;
  line-height:.4;
  margin-bottom:18px;
}

.quote-text{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.55rem,2.6vw,2.7rem);
  color:var(--ink);
  line-height:1.25;
  font-style:italic;
}

.quote-attr{
  display:block;
  margin-top:26px;
  font-size:.66rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
}

.menu-layout{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:76px;
  align-items:start;
}

.menu-intro p{
  color:var(--muted);
  margin-top:14px;
}

.menu-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.menu-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:32px 26px;
  box-shadow:var(--sh-sm);
  transition:.35s ease;
}

.menu-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sh-md);
  border-color:var(--gold-bd);
}

.menu-card h3{
  font-size:1.55rem;
  color:var(--ink);
  margin:4px 0 9px;
}

.menu-card p{
  color:var(--muted);
  font-size:.88rem;
  margin-bottom:20px;
}

.reservation-band{
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:62px 58px;
  box-shadow:var(--sh-lg);
  display:grid;
  grid-template-columns:1fr auto;
  gap:56px;
  align-items:center;
  overflow:hidden;
}

.reservation-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 0% 50%,rgba(184,146,74,.09),transparent 48%);
}

.resa-copy,
.resa-actions{
  position:relative;
  z-index:1;
}

.resa-h2{
  font-size:clamp(2.1rem,3vw,3.6rem);
  color:var(--ink);
  line-height:.97;
  margin:8px 0 13px;
}

.resa-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:205px;
}

.address-label{
  display:block;
  font-size:.63rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}

.address-text{
  font-size:1.02rem;
  color:var(--text);
  font-weight:300;
  line-height:1.75;
  margin-bottom:28px;
}

.contact-links{
  display:flex;
  flex-direction:column;
  gap:13px;
}

.contact-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--gold);
  font-weight:500;
  font-size:.88rem;
}

.contact-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}

.map-shell{
  border-radius:var(--r-lg);
  overflow:hidden;
  height:420px;
  border:1px solid var(--line);
  box-shadow:var(--sh-md);
  transition:.35s ease;
}

.map-shell:hover{
  transform:translateY(-5px);
  box-shadow:var(--sh-lg);
}

.map-shell iframe{
  width:100%;
  height:100%;
  border:0;
}

.site-footer{
  padding:34px 0 42px;
  border-top:1px solid var(--line);
  background:var(--linen-soft);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-emblem{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid var(--gold-bd);
}

.footer-name{
  font-family:'Playfair Display',serif;
  font-size:.93rem;
  color:var(--ink);
}

.footer-nav{
  display:flex;
  gap:2px;
  flex-wrap:wrap;
}

.footer-nav a{
  padding:7px 12px;
  font-size:.72rem;
  letter-spacing:.07em;
  text-transform:uppercase;
  color:var(--muted);
  border-radius:999px;
}

.footer-copy{
  font-size:.7rem;
  color:var(--muted);
  opacity:.75;
}

.footer-copy a{
  color:var(--gold);
}

.floating-cta{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:150;
  background:var(--gold);
  color:#fff;
  min-width:132px;
  height:50px;
  padding:0 22px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  box-shadow:0 8px 28px rgba(184,146,74,.32);
  opacity:0;
  pointer-events:none;
  border:none;
  cursor:pointer;
  transform:translateY(12px);
  transition:.35s ease;
}

.floating-cta.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

/* Animations sûres : le contenu reste visible si JS ne marche pas */

.fade-up{
  opacity:1;
  transform:none;
}

body.anim-ready .fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s ease,transform .8s ease;
}

body.anim-ready .fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* Cookies */

.cookie-banner{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%) translateY(20px);
  background:#fff;
  padding:18px 20px;
  border-radius:18px;
  box-shadow:0 14px 40px rgba(30,22,13,.16);
  display:none;
  align-items:center;
  gap:20px;
  z-index:9999;
  max-width:min(760px,calc(100% - 32px));
  opacity:0;
  transition:.35s ease;
}

.cookie-banner.show{
  display:flex;
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.cookie-copy strong{
  display:block;
  color:var(--ink);
  margin-bottom:4px;
}

.cookie-copy p{
  color:var(--muted);
  font-size:.88rem;
}

.cookie-actions{
  display:flex;
  gap:8px;
  flex-shrink:0;
}

.cookie-actions button{
  padding:10px 16px;
  border:0;
  cursor:pointer;
  border-radius:999px;
  font-weight:600;
}

.cookie-actions button:first-child{
  background:var(--gold);
  color:#fff;
}

.cookie-actions button:last-child{
  background:var(--linen-soft);
  color:var(--ink);
}

@media(max-width:1100px){
  .container{width:min(calc(100% - 72px),var(--cont))}

  .intro-grid,
  .split-grid,
  .menu-layout,
  .contact-grid{
    grid-template-columns:1fr;
    gap:48px;
  }

  .reservation-band{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero-side{
    display:none;
  }

  .hero-content{
    max-width:100%;
    margin-left:0;
  }

  .media-frame{
    aspect-ratio:16/9;
  }

  .moments-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .container{width:min(calc(100% - 40px),var(--cont))}

  .main-nav{
    display:none;
  }

  .nav-toggle{
    display:flex;
  }

  .main-nav.open{
    display:flex;
    flex-direction:column;
    position:fixed;
    inset:76px 0 0 0;
    background:rgba(253,250,246,.97);
    backdrop-filter:blur(16px);
    padding:28px 24px;
    gap:4px;
    align-items:flex-start;
    z-index:190;
    overflow-y:auto;
  }

  .main-nav.open a,
  .main-nav.open .btn-outline-nav{
    font-size:1rem;
    padding:14px 18px;
    width:100%;
    text-align:left;
  }

  .lang-switcher{
    width:100%;
    justify-content:flex-start;
    margin:12px 0;
    border-radius:var(--r);
    padding:10px;
  }

  .hero{
    min-height:72svh;
  }

  .hero-inner{
    min-height:72svh;
    padding-top:102px;
    padding-bottom:30px;
    justify-content:flex-end;
  }

  .hero-h1{
    font-size:clamp(2.6rem,9vw,4rem);
  }

  .hero-actions,
  .inline-actions{
    flex-direction:column;
    width:100%;
  }

  .hero-actions .btn,
  .inline-actions .btn{
    width:100%;
  }

  .section{
    padding:74px 0;
  }

  .moments-grid{
    grid-template-columns:1fr;
  }

  .menu-cards{
    grid-template-columns:1fr;
  }

  .media-float{
    display:none;
  }

  .resa-actions{
    min-width:0;
  }

  .resa-actions .btn{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .floating-cta{
    left:14px;
    right:14px;
    bottom:14px;
    width:auto;
  }

  .popup-overlay{
    padding:12px;
    align-items:flex-end;
  }

  .popup-card{
    border-radius:24px 24px 0 0;
  }

  .popup-body iframe{
    min-height:460px;
  }

  .cookie-banner{
    flex-direction:column;
    align-items:stretch;
  }

  .cookie-actions{
    width:100%;
  }

  .cookie-actions button{
    flex:1;
  }
}

@media(max-width:480px){
  .container{width:min(calc(100% - 32px),var(--cont))}

  .hero{
    min-height:68svh;
  }

  .hero-inner{
    min-height:68svh;
    padding-top:96px;
    padding-bottom:24px;
  }

  .hero-h1{
    font-size:clamp(2.2rem,11vw,3.4rem);
  }

  .section{
    padding:60px 0;
  }

  .section-h2,
  .resa-h2,
  .content-panel h2{
    font-size:clamp(1.9rem,7vw,2.8rem);
  }
}
.event-popup-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(30,22,13,.58);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.event-popup-overlay.open{
  opacity:1;
  pointer-events:auto;
}

.event-popup-card{
  position:relative;
  width:min(920px,100%);
  max-height:90vh;
  background:var(--linen-pale);
  border-radius:34px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  box-shadow:0 44px 120px rgba(30,22,13,.28);
  transform:translateY(24px) scale(.96);
  transition:transform .35s ease;
}

.event-popup-overlay.open .event-popup-card{
  transform:translateY(0) scale(1);
}

.event-popup-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(30,22,13,.36);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(8px);
}

.event-popup-media{
  min-height:520px;
  background:var(--linen);
}

.event-popup-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.event-popup-content{
  padding:52px 44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.event-popup-picto{
  width:58px;
  height:58px;
  object-fit:contain;
  margin-bottom:20px;
}

.event-popup-content h2{
  font-size:clamp(2rem,3.2vw,3.4rem);
  color:var(--ink);
  margin-bottom:18px;
}

.event-popup-content p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
  margin-bottom:28px;
}

@media(max-width:768px){
  .event-popup-overlay{
    padding:12px;
    align-items:flex-end;
  }

  .event-popup-card{
    grid-template-columns:1fr;
    border-radius:28px 28px 0 0;
    max-height:92vh;
    overflow:auto;
  }

  .event-popup-media{
    min-height:320px;
  }

  .event-popup-content{
    padding:34px 26px;
  }
}