/* La Perle du Lac — Édition 2026 */

:root {
  --brand: #64A3BE;
  --brand-dark: #3f7d98;
  --brand-deep: #24505f;
  --brand-light: #9fc8db;
  --brand-pale: #eef6fa;
  --ink: #14232a;
  --ink-soft: #47606a;
  --sand: #f6f2ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(20, 35, 42, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --max: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

::selection { background: var(--brand); color: #fff; }

/* Grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand-light), var(--brand)); z-index: 3000;
  transition: width .1s linear;
}

/* Nav — pilule flottante glassmorphism */
.nav {
  position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(100% - 2rem, var(--max));
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem .7rem .6rem 1.5rem; border-radius: 100px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px) saturate(160%);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), top .4s var(--ease);
}
.nav--scrolled {
  background: rgba(251,250,247,.85); border-color: var(--line);
  box-shadow: 0 10px 40px rgba(20,35,42,.08);
}
.nav__logo img { height: 34px; width: auto; transition: filter .4s var(--ease); }
.nav:not(.nav--scrolled) .nav__logo img { filter: brightness(0) invert(1); }
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.85);
  position: relative; transition: color .3s var(--ease);
}
.nav--scrolled .nav__link { color: var(--ink-soft); }
.nav__link:hover { color: #fff; }
.nav--scrolled .nav__link:hover { color: var(--brand); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--brand); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brand); color: #fff; font-size: .82rem; font-weight: 700;
  padding: .7rem 1.4rem; border-radius: 100px; transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__cta:hover { background: var(--brand-dark); transform: translateY(-2px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.nav--scrolled .nav__burger span { background: var(--ink); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,35,42,.45) 0%, rgba(20,35,42,.15) 35%, rgba(20,35,42,.75) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 8vh, 7rem); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 1.5rem; opacity: 0; animation: rise .9s var(--ease) .2s forwards;
}
.hero__eyebrow::before { content: ''; width: 42px; height: 1px; background: var(--brand-light); }
.hero__title {
  font-family: var(--font-display); font-weight: 300; color: #fff;
  font-size: clamp(3.2rem, 11vw, 10rem); line-height: .92; letter-spacing: -.02em;
}
.hero__title span { display: block; overflow: hidden; }
.hero__title span > i {
  display: inline-block; font-style: normal; transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero__title span:nth-child(1) > i { animation-delay: .35s; }
.hero__title span:nth-child(2) > i { animation-delay: .5s; font-style: italic; font-weight: 400; color: var(--brand-light); }
.hero__row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.hero__lede { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 40ch; opacity: 0; animation: rise .9s var(--ease) .7s forwards; }
.hero__actions { display: flex; gap: .8rem; opacity: 0; animation: rise .9s var(--ease) .85s forwards; }
.btn {
  display: inline-flex; align-items: center; gap: .6rem; cursor: pointer;
  font-size: .84rem; font-weight: 700; letter-spacing: .02em;
  padding: 1rem 1.8rem; border-radius: 100px; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn--solid { background: var(--brand); color: #fff; }
.btn--solid:hover { background: var(--brand-dark); transform: translateY(-3px); }
.btn--glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--glass:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--brand); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

/* Marquee */
.marquee {
  background: var(--ink); color: var(--paper); padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 3rem; animation: scroll 32s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: '✦'; color: var(--brand-light); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Section shell */
.section { padding: clamp(4.5rem, 10vh, 9rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; color: var(--brand-dark);
  font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brand); }
.h2 { font-family: var(--font-display); font-weight: 340; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
.h2 em { font-style: italic; color: var(--brand-dark); }

/* Intro éditorial */
.intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.intro__text p { color: var(--ink-soft); font-size: 1.08rem; margin: 1.5rem 0; max-width: 46ch; }
.intro__stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.intro__stat b { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; color: var(--brand-dark); display: block; line-height: 1; }
.intro__stat span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro__badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--white);
  border-radius: 18px; padding: 1.2rem 1.5rem; box-shadow: 0 20px 50px rgba(20,35,42,.14);
  display: flex; align-items: center; gap: .9rem;
}
.intro__badge i { color: var(--brand); font-size: 1.4rem; }
.intro__badge b { font-family: var(--font-display); display: block; font-size: 1.05rem; }
.intro__badge span { font-size: .78rem; color: var(--ink-soft); }

/* Bento */
.bento-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end; }
.tile__img { position: absolute; inset: 0; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover .tile__img img { transform: scale(1.06); }
.tile__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(20,35,42,.82)); }
.tile__label { position: relative; z-index: 2; color: #fff; }
.tile__label h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.tile__label p { font-size: .9rem; color: rgba(255,255,255,.8); margin-top: .3rem; }
.tile--wide { grid-column: span 2; }
.tile--tall { grid-row: span 2; }
.tile--brand { background: var(--brand); color: #fff; justify-content: space-between; }
.tile--brand .tile__k { font-family: var(--font-display); font-size: 3.4rem; font-weight: 300; line-height: 1; }
.tile--brand p { color: rgba(255,255,255,.85); font-size: .95rem; }
.tile--brand i { font-size: 1.6rem; }

/* Signature — scroll horizontal */
.dishes { padding: clamp(4.5rem, 10vh, 9rem) 0; background: var(--sand); overflow: hidden; }
.dishes__scroller {
  display: flex; gap: 1.5rem; padding: 0 clamp(1.25rem, 4vw, 3rem); overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.dishes__scroller::-webkit-scrollbar { display: none; }
.dish { flex: 0 0 340px; scroll-snap-align: start; }
.dish__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.05); }
.dish__row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; gap: 1rem; }
.dish__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.dish__price { color: var(--brand-dark); font-weight: 700; white-space: nowrap; }
.dish__desc { color: var(--ink-soft); font-size: .9rem; margin-top: .25rem; }

/* Quote parallax */
.quote { position: relative; padding: clamp(6rem, 16vh, 12rem) 0; text-align: center; overflow: hidden; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 130%; object-fit: cover; }
.quote__bg::after { content: ''; position: absolute; inset: 0; background: rgba(36,80,95,.78); }
.quote__text {
  position: relative; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 300;
  font-style: italic; font-size: clamp(1.6rem, 4vw, 3.2rem); line-height: 1.25; max-width: 20ch; margin: 0 auto;
}
.quote__author { position: relative; z-index: 2; color: var(--brand-light); margin-top: 1.5rem; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; }

/* CTA géant */
.cta { padding: clamp(4.5rem, 10vh, 9rem) 0; }
.cta__box {
  background: var(--brand); border-radius: calc(var(--radius) + 8px); padding: clamp(2.5rem, 6vw, 5rem);
  color: #fff; display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center;
}
.cta__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; }
.cta__meta { display: flex; flex-direction: column; gap: 1rem; }
.cta__meta-item { display: flex; align-items: center; gap: .8rem; font-size: .95rem; color: rgba(255,255,255,.9); }
.cta__meta-item i { width: 20px; }
.cta .btn--solid { background: #fff; color: var(--brand-dark); }
.cta .btn--solid:hover { background: var(--ink); color: #fff; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(3.5rem, 8vh, 6rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { height: 38px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer__tag { font-size: .95rem; line-height: 1.7; max-width: 34ch; }
.footer__h { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; font-size: .95rem; margin-bottom: .7rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .82rem; flex-wrap: wrap; gap: 1rem; }
.footer__social { display: flex; gap: .8rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }

@keyframes rise { to { transform: translateY(0); opacity: 1; } }

/* ===== SOUS-PAGES ===== */

/* Page hero */
.phero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: clamp(2.5rem, 6vh, 5rem); padding-top: 8rem; }
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 120%; object-fit: cover; }
.phero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,35,42,.5) 0%, rgba(20,35,42,.2) 45%, rgba(20,35,42,.7) 100%); }
.phero__inner { position: relative; z-index: 2; width: 100%; }
.phero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--brand-light); font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem; }
.phero__eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--brand-light); }
.phero__title { font-family: var(--font-display); font-weight: 300; color: #fff; font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .95; letter-spacing: -.02em; }
.phero__title em { font-style: italic; color: var(--brand-light); }

/* Menu / carte */
.menu-filter { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; position: sticky; top: 5.5rem; z-index: 100; margin-bottom: 3.5rem; }
.menu-filter__btn { padding: .6rem 1.4rem; border-radius: 100px; border: 1px solid var(--line); background: rgba(251,250,247,.8); backdrop-filter: blur(8px); font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .3s var(--ease); }
.menu-filter__btn:hover, .menu-filter__btn--active { background: var(--brand); border-color: var(--brand); color: #fff; }
.menu-cat { margin-bottom: 4.5rem; scroll-margin-top: 8rem; }
.menu-cat__head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2rem; }
.menu-cat__title { font-family: var(--font-display); font-weight: 340; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ink); white-space: nowrap; }
.menu-cat__line { flex: 1; height: 1px; background: var(--line); }
.menu-list { display: grid; gap: .4rem; }
.mrow { display: grid; grid-template-columns: 1fr auto; gap: 1rem 1.5rem; align-items: baseline; padding: 1.3rem 1.2rem; border-radius: 16px; transition: background .3s var(--ease); }
.mrow:hover { background: var(--sand); }
.mrow__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); }
.mrow__en { font-size: .86rem; color: var(--ink-soft); font-style: italic; margin-top: .2rem; }
.mrow__tag { display: inline-block; margin-left: .6rem; font-family: var(--font-body); font-size: .62rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; vertical-align: middle; padding: .18rem .55rem; border-radius: 100px; border: 1px solid var(--brand); color: var(--brand-dark); }
.mrow__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-dark); white-space: nowrap; }

/* Salons / privatisation */
.spaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.spc { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.spc:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(20,35,42,.1); }
.spc__head { background: var(--brand); color: #fff; padding: 1.4rem 1.6rem; }
.spc__name { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; }
.spc__loc { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: .2rem; }
.spc__body { padding: 1.4rem 1.6rem; }
.spc__row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spc__row:last-child { border-bottom: none; }
.spc__row span:first-child { color: var(--ink-soft); }
.spc__row span:last-child { color: var(--ink); font-weight: 600; }
.spc--feat { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.spc--feat .spc__head, .spc--feat .spc__body { display: flex; flex-direction: column; justify-content: center; }

/* Cartes salons avec image */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(20,35,42,.12); }
.room__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.room__loc { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .45rem; background: rgba(20,35,42,.6); backdrop-filter: blur(6px); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 100px; }
.room__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.room__name { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; color: var(--ink); line-height: 1.1; }
.room__note { color: var(--ink-soft); font-size: .88rem; margin-top: .5rem; }
.room__caps { display: flex; gap: .7rem; margin-top: auto; padding-top: 1.3rem; }
.cap { flex: 1; text-align: center; background: var(--brand-pale); border-radius: 14px; padding: .8rem .5rem; }
.cap b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--brand-dark); line-height: 1; }
.cap span { display: block; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }
.cap i { color: var(--brand); margin-bottom: .2rem; font-size: .9rem; }
.room--full { grid-column: 1 / -1; flex-direction: row; }
.room--full .room__media { flex: 1.2; aspect-ratio: auto; }
.room--full .room__body { flex: 1; justify-content: center; }
.room--full .room__caps { max-width: 380px; }

/* Modal Carte */
.mmodal { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.mmodal.open { visibility: visible; opacity: 1; }
.mmodal__overlay { position: absolute; inset: 0; background: rgba(20,35,42,.55); backdrop-filter: blur(6px); }
.mmodal__panel { position: relative; z-index: 2; width: min(720px, 100%); max-height: 90vh; display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 100px rgba(20,35,42,.4); transform: translateY(24px) scale(.98); transition: transform .5s var(--ease); }
.mmodal.open .mmodal__panel { transform: none; }
.mmodal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.6rem clamp(1.3rem, 3vw, 2.2rem); background: var(--brand); color: #fff; }
.mmodal__eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: .2rem; }
.mmodal__title { font-family: var(--font-display); font-weight: 340; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1; }
.mmodal__close { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: #fff; font-size: 1.1rem; cursor: pointer; display: grid; place-items: center; transition: background .3s var(--ease), transform .3s var(--ease); }
.mmodal__close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.mmodal__filter { display: flex; gap: .5rem; flex-wrap: wrap; padding: 1rem clamp(1.3rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; }
.mmodal__body { overflow-y: auto; padding: 1.8rem clamp(1.3rem, 3vw, 2.2rem) 1rem; -webkit-overflow-scrolling: touch; }
.mmodal__body .menu-cat { margin-bottom: 2.6rem; scroll-margin-top: 1rem; }
.mmodal__body .menu-cat__title { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.mmodal__body .mrow { padding: .9rem .8rem; }
.mmodal__body .mrow__name { font-size: 1.15rem; }
.mmodal__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.1rem clamp(1.3rem, 3vw, 2.2rem); border-top: 1px solid var(--line); background: var(--white); }
.mmodal__foot span { font-size: .8rem; color: var(--ink-soft); }
body.modal-open { overflow: hidden; }
@media (max-width: 680px) {
  .mmodal__foot { flex-direction: column; align-items: stretch; }
  .mmodal__foot .btn { justify-content: center; }
}

/* Forms */
.formwrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.forminfo h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--ink); margin-bottom: 1rem; }
.forminfo p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.forminfo__item { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; font-size: 1rem; }
.forminfo__item i { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-pale); color: var(--brand-dark); display: grid; place-items: center; flex-shrink: 0; }
.forminfo__item a:hover { color: var(--brand-dark); }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); }
.form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { margin-bottom: 1.1rem; }
.form__label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.form__input, .form__select, .form__textarea { width: 100%; padding: .9rem 1rem; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(100,163,190,.15); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit { width: 100%; justify-content: center; margin-top: .3rem; }
.form__ok { display: none; text-align: center; padding: 2rem 1rem; }
.form__ok i { font-size: 2.6rem; color: var(--brand); margin-bottom: 1rem; }
.form__ok h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin-bottom: .5rem; color: var(--ink); }
.form__ok p { color: var(--ink-soft); }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }

/* Widget de réservation */
.resv__widget { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); }
.resv__widget-title { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; color: var(--ink); margin-bottom: 1.4rem; }
.resv__widget-lede { color: var(--ink-soft); margin-bottom: 1.6rem; }
.resv__widget-btn { width: 100%; justify-content: center; }
.resv__widget-fallback { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.resv__widget-fallback a { color: var(--brand-dark); font-weight: 600; }

/* Réservation info */
.resv { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.resv__block { margin-bottom: 2.2rem; }
.resv__block h3 { display: flex; align-items: center; gap: .7rem; font-size: 1.15rem; color: var(--ink); margin-bottom: .6rem; }
.resv__block h3 i { color: var(--brand); }
.resv__block p, .resv__block dd { color: var(--ink-soft); font-size: .95rem; }
.resv__hours { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.5rem; }
.resv__hours dt { color: var(--ink); font-weight: 600; }
.resv__map { width: 100%; height: 260px; border: 0; border-radius: var(--radius); filter: grayscale(15%); margin-top: 1rem; }

.phero--flat { min-height: 42vh; background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark)); }
.phero--flat .phero__media { display: none; }

/* Legal */
.legal { max-width: 760px; margin: 0 auto; padding: 4rem clamp(1.25rem,4vw,3rem) 5rem; }
.legal h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.4rem,6vw,3.6rem); color: var(--ink); margin-bottom: 2rem; }
.legal h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--ink); margin: 2.2rem 0 .7rem; }
.legal p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.8; }
.legal a { color: var(--brand-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; }
  .intro__media { max-width: 520px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--wide { grid-column: span 2; }
  .cta__box { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .spaces { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .formwrap, .resv { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav__menu { display: none; position: fixed; top: 5rem; left: 1rem; right: 1rem; background: rgba(251,250,247,.97); backdrop-filter: blur(14px); flex-direction: column; align-items: flex-start; gap: 1.4rem; padding: 1.8rem; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20,35,42,.15); }
  .nav__menu.open { display: flex; }
  .nav__menu .nav__link { color: var(--ink); }
  .nav__burger { display: flex; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile--wide, .tile--tall { grid-column: auto; grid-row: auto; }
  .hero__actions { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .spaces { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .room--full { flex-direction: column; }
  .room--full .room__media { aspect-ratio: 4/3; }
  .spc--feat { grid-template-columns: 1fr; }
  .form__grid2 { grid-template-columns: 1fr; }
  .menu-cat__title { white-space: normal; }
  .mrow { grid-template-columns: 1fr; gap: .4rem; }
}
