/* =========================================================
   Le Lak Atao — Penmarc'h, Bretagne
   Inspiré du langage cinématique de canlis.com
   Palette : nuit atlantique · sable · laiton du phare
   ========================================================= */

:root {
  --nuit: #0d1620;
  --nuit-2: #131f2c;
  --ardoise: #1c2530;
  --sable: #f3ecdc;
  --sable-2: #ece2cc;
  --ivoire: #fbf7ee;
  --laiton: #b58a4b;
  --laiton-clair: #cda86b;
  --terre: #6f5a3a;
  --texte: #1c2530;
  --texte-mute: #5b6675;
  --ligne: rgba(28, 37, 48, 0.16);
  --ligne-claire: rgba(243, 236, 220, 0.22);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 2.6vw, 2.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--texte);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--nuit); color: var(--sable); padding: 0.75rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  color: var(--sable);
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              padding 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.nav__left { justify-self: start; }
.nav__links { justify-self: center; }
.lang { justify-self: end; }
.nav.is-solid {
  background: rgba(251, 247, 238, 0.92);
  color: var(--texte);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--ligne);
}

.nav__left {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: clamp(0.8rem, 1.6vw, 1.4rem);
  border-left: 1px solid currentColor;
  border-color: rgba(243, 236, 220, 0.35);
  transition: border-color 0.45s var(--ease);
}
.nav.is-solid .nav__socials { border-color: var(--ligne); }

.nav__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 0.78;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__socials a:hover {
  opacity: 1;
  color: var(--laiton);
  transform: translateY(-1px);
}
.nav.is-solid .nav__socials a:hover { color: var(--laiton); }
.nav__mark { display: inline-flex; opacity: 0.9; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding: 0.4rem 0;
  opacity: 0.92;
  transition: opacity 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  border: 1px solid currentColor;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  letter-spacing: 0.18em;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--laiton);
  color: var(--nuit);
  border-color: var(--laiton);
}

.lang {
  position: relative;
  margin-left: 1rem;
}
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
}
.lang__toggle:hover { opacity: 1; }
.lang__current { line-height: 1; }
.lang__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: rgba(251, 247, 238, 0.98);
  color: var(--texte);
  border: 1px solid var(--ligne);
  border-radius: 4px;
  box-shadow: 0 14px 40px -20px rgba(13, 22, 32, 0.4);
  min-width: 130px;
  z-index: 60;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.lang__menu[hidden] { display: none; }
.lang__menu li { margin: 0; }
.lang__menu button {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.9rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  color: var(--texte);
  cursor: pointer;
  transition: background 0.15s var(--ease);
}
.lang__menu button:hover { background: rgba(181, 138, 75, 0.12); }

.nav__burger {
  display: none;
  width: 36px; height: 30px;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 100%; height: 1.5px; background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav__burger { display: flex; justify-self: end; position: relative; z-index: 130; }
  .nav__brand { position: relative; z-index: 130; }
  .nav__socials { display: none; }
  .nav__links {
    position: fixed; inset: 0;
    justify-self: stretch; align-self: stretch;
    width: 100vw; height: 100vh; height: 100dvh;
    z-index: 120;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem;
    background: var(--nuit);
    color: var(--sable);
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav.is-open { background: var(--nuit); color: var(--sable); }
  .nav.is-open .nav__socials {
    display: inline-flex;
    position: fixed;
    bottom: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    border: 0;
    padding: 0;
    gap: 1.4rem;
    color: var(--sable);
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sable);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease-soft) forwards;
  filter: brightness(0.55) saturate(1.08) contrast(1.06);
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(13, 22, 32, 0.35) 0%, rgba(13, 22, 32, 0.6) 60%, rgba(13, 22, 32, 0.88) 100%),
    linear-gradient(180deg, rgba(13, 22, 32, 0.45) 0%, rgba(13, 22, 32, 0.1) 35%, rgba(13, 22, 32, 0.55) 100%);
}
.hero__beam {
  position: absolute; top: -10%; left: 50%;
  width: 1200px; height: 120%;
  transform-origin: top center;
  background: conic-gradient(from 200deg at 50% 0%,
    rgba(255, 222, 170, 0) 0deg,
    rgba(255, 222, 170, 0.12) 15deg,
    rgba(255, 222, 170, 0) 30deg);
  mix-blend-mode: screen;
  animation: beam 16s linear infinite;
  pointer-events: none;
}
@keyframes beam {
  0%   { transform: translateX(-50%) rotate(-25deg); }
  50%  { transform: translateX(-50%) rotate(25deg); }
  100% { transform: translateX(-50%) rotate(-25deg); }
}

.hero__content {
  position: relative;
  padding: 0 var(--gutter);
  max-width: 880px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  line-height: 0.98;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.hero__title .serif { font-style: italic; }

.hero__tag {
  font-size: 0.92rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0.5rem 0 1.4rem;
  opacity: 0.92;
}
.hero__tag .dot { color: var(--laiton-clair); margin: 0 0.4em; }

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  margin: 0 auto 2.2rem;
  opacity: 0.95;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .hero__sub { white-space: normal; max-width: 38ch; }
}

.hero__cta {
  display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--sable);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scrollLine {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--sable) 0%, transparent 100%);
  animation: scrollHint 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* =========================================================
   ELEMENTS PARTAGÉS
   ========================================================= */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton);
  margin: 0 0 1.4rem;
}
.eyebrow--light { color: var(--laiton-clair); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 1.4rem;
  color: var(--texte);
}
.display em { font-style: italic; color: var(--terre); }
.display--light { color: var(--sable); }
.display--light em { color: var(--laiton-clair); }

.lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--texte);
  max-width: 56ch;
  margin: 0 0 1.4rem;
}
.lede--light { color: var(--sable-2); }
.body { color: var(--texte-mute); max-width: 56ch; margin: 0 0 1.2rem; }

.rule {
  display: inline-block; width: 48px; height: 1px;
  background: var(--laiton); margin-right: 0.8rem; vertical-align: middle;
}

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease),
              background 0.25s var(--ease),
              color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn__phone {
  margin: 0 0.5em;
  vertical-align: -0.18em;
}
.btn--gold {
  background: var(--laiton);
  color: var(--nuit);
}
.btn--gold:hover { background: var(--laiton-clair); }
.btn--ghost {
  border-color: currentColor;
  color: var(--sable);
}
.btn--ghost:hover { background: var(--sable); color: var(--nuit); }
.btn--ghost-light { color: var(--sable); }
.btn--dark {
  background: var(--nuit);
  color: var(--sable);
  margin-top: 0.6rem;
}
.btn--dark:hover { background: var(--ardoise); }

/* =========================================================
   MANIFESTE
   ========================================================= */
.manifeste {
  padding: clamp(6rem, 12vw, 11rem) var(--gutter);
  background: var(--ivoire);
  text-align: center;
}
.manifeste__inner {
  max-width: 960px; margin: 0 auto;
}
.manifeste .display {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.2;
  font-weight: 300;
}
.manifeste__sign {
  margin-top: 2.4rem;
  font-size: 0.85rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--texte-mute);
}

/* =========================================================
   CHAPTER (image + texte)
   ========================================================= */
.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.chapter--reverse .chapter__image { order: 2; }
.chapter--reverse .chapter__text  { order: 1; }

.chapter__image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -40px rgba(13, 22, 32, 0.4);
}
.chapter__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.chapter__image:hover img { transform: scale(1.04); }

/* Variant pour les photos panoramiques (ex. façade du restaurant) */
.chapter__image--wide { aspect-ratio: 5 / 4; }
.chapter__image--wide img { object-position: center center; }

.chapter__text { max-width: 580px; }

@media (max-width: 880px) {
  .chapter { grid-template-columns: 1fr; }
  .chapter--reverse .chapter__image { order: 1; }
  .chapter--reverse .chapter__text  { order: 2; }
  .chapter__image { aspect-ratio: 4 / 3; }
}

/* =========================================================
   IMMERSION (section pleine largeur, fond sombre)
   ========================================================= */
.immersion {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  color: var(--sable);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(181, 138, 75, 0.14) 0%, transparent 60%),
    var(--nuit);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.immersion__inner {
  max-width: 920px;
  margin: 0 auto;
}
.immersion .lede { margin-left: auto; margin-right: auto; }

.immersion__photo {
  margin: 2.4rem auto 2.8rem;
  max-width: 620px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7);
}
.immersion__photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.6s var(--ease-soft);
}
.immersion__photo:hover img { transform: scale(1.03); }
.immersion__stats {
  list-style: none; padding: 0; margin: 3.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  border-top: 1px solid var(--ligne-claire);
  padding-top: 2.4rem;
}
.immersion__stats li { }
.stat__num {
  display: block;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1;
  color: var(--sable);
  margin-bottom: 0.5rem;
}
.stat__lbl {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sable-2);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .immersion__stats { grid-template-columns: 1fr; }
}

/* =========================================================
   LE MENU
   ========================================================= */
.menu {
  background: var(--ivoire);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
}

.menu__head {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.menu__head .lede { margin-left: auto; margin-right: auto; }

.menu__suggestions {
  display: inline-block;
  margin: 1.4rem auto 0;
  padding: 0.7rem 1.4rem;
  border-top: 1px solid var(--laiton);
  border-bottom: 1px solid var(--laiton);
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--terre);
  letter-spacing: 0.02em;
}
.menu__suggestions em { font-style: italic; color: var(--laiton); }

.menu-cat {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--ligne);
}
.menu-cat:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-cat--reverse .menu-cat__photo { order: 2; }
.menu-cat--reverse .menu-cat__list { order: 1; }

.menu-cat--full { grid-template-columns: 1fr; }
.menu-cat--bar { grid-template-columns: 1.7fr 1fr; }

.bar-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
}
.bar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .menu-cat--bar { grid-template-columns: 1fr; }
  .bar-photo { aspect-ratio: 16 / 9; }
}

.bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem 3rem;
  margin-top: 2rem;
}
.bar-block .menu-sub {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.bar-block .menu-list { margin-top: 0.4rem; }

.menu-cat__photo {
  position: sticky;
  top: 90px;
}

.menu-cat__placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(28, 37, 48, 0.25);
  border-radius: 2px;
  background:
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(28, 37, 48, 0.04) 16px 17px),
    var(--sable);
  color: var(--texte-mute);
}
.menu-cat__placeholder span {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ivoire);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--ligne);
}

.menu-cat__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0.4rem 0 1rem;
  line-height: 1.1;
}
.menu-cat__title, .menu-cat__title em { color: #1e4d8c; }
.menu-cat__title em { font-style: italic; }

.menu-cat__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--texte-mute);
  margin: 0 0 1.8rem;
}

.menu-cat__note {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 2rem;
  color: var(--texte-mute);
  font-size: 0.98rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ligne);
  font-size: 1rem;
  line-height: 1.5;
}
.menu-list li:last-child { border-bottom: 0; }

.menu-list .d {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-list .d em {
  font-style: italic;
  color: var(--texte-mute);
  font-weight: 400;
}
.menu-list .d small {
  display: block;
  font-size: 0.84rem;
  color: var(--texte-mute);
  margin-top: 0.25rem;
  line-height: 1.45;
  font-weight: 400;
  font-style: normal;
}
.menu-list .p {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-style: italic;
  color: var(--terre);
  font-size: 1.08rem;
  white-space: nowrap;
}

.menu-list__sep {
  margin-top: 0.6rem;
  padding-top: 1.4rem !important;
  border-top: 1px solid var(--ligne);
}

.menu-list--dense li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
}

.menu-list--inline {
  display: flex;
  gap: 1.6rem 2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ligne);
}
.menu-list--inline li {
  border: 0;
  padding: 0;
  gap: 0.5rem;
}

.menu-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  margin: 2.4rem 0 0.6rem;
  color: var(--texte);
  border-top: 1px solid var(--ligne);
  padding-top: 1.6rem;
}
.menu-sub:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.menu-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2.4rem;
  margin: 1.6rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ligne);
}
.menu-twocol__label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--laiton);
  margin: 0 0 0.5rem;
}
.menu-twocol__items {
  font-family: var(--serif);
  font-style: italic;
  color: var(--texte);
  margin: 0;
  line-height: 1.55;
  font-size: 1rem;
}

.menu__allergens {
  max-width: 720px;
  margin: 3rem auto 1.4rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--texte-mute);
  letter-spacing: 0.04em;
  font-style: italic;
}

.menu__cta {
  text-align: center;
  margin-top: 1.6rem;
}

@media (max-width: 880px) {
  .menu-cat {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .menu-cat__photo { position: static; }
  .menu-cat--reverse .menu-cat__photo { order: 1; }
  .menu-cat--reverse .menu-cat__list { order: 2; }
  .menu-cat__placeholder { aspect-ratio: 5 / 4; }
  .menu-twocol { grid-template-columns: 1fr; }
}

/* =========================================================
   CARROUSEL — Galettes (rectangle portrait, fondu doux)
   ========================================================= */
.plate-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 0 0.6rem;
}

.plate-carousel::after {
  content: var(--carousel-disclaimer, "Photos non contractuelles");
  display: block;
  margin-top: -0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--texte-mute);
  opacity: 0.75;
  text-align: center;
}

.plate-carousel__frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sable);
  box-shadow:
    0 35px 70px -30px rgba(13, 22, 32, 0.45),
    0 0 0 1px rgba(28, 37, 48, 0.05);
  isolation: isolate;
}

.plate-carousel__slides {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}
.plate-carousel__slides li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease), transform 1.8s var(--ease-soft);
}
.plate-carousel__slides li.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.plate-carousel__slides img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
#glaces .plate-carousel__slides img { object-fit: contain; }

/* Vignette + halo doré : effet fondu doux sur les bords */
.plate-carousel__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    /* léger éclairage chaud en haut */
    radial-gradient(120% 60% at 50% 0%, rgba(255, 222, 170, 0.18) 0%, transparent 55%),
    /* vignette : assombrissement aux quatre coins */
    radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(13, 22, 32, 0.18) 88%, rgba(13, 22, 32, 0.4) 100%);
  mix-blend-mode: multiply;
}
/* Fondu doux à l'intérieur du cadre (bord effet "polaroid") */
.plate-carousel__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 30px 6px rgba(243, 236, 220, 0.55);
}
/* Liseré laiton fin */
.plate-carousel__frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(181, 138, 75, 0.35);
  border-radius: 2px;
  pointer-events: none;
  z-index: 4;
}

/* Petit sceau italique en haut */
.plate-carousel__seal {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--ivoire);
  padding: 0.3rem 1rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terre);
  border: 1px solid var(--laiton);
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 6;
  box-shadow: 0 8px 16px -10px rgba(13, 22, 32, 0.3);
}

/* Caption (nom du plat sous la photo) */
.plate-carousel__caption {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 2.4rem;
  text-align: center;
  margin-top: -0.6rem;
}
.plate-carousel__captionItem {
  position: absolute;
  inset: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--ardoise);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.plate-carousel__captionItem.is-active { opacity: 1; }

/* Dots */
.plate-carousel__dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.6rem;
}
.plate-carousel__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(28, 37, 48, 0.22);
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease);
}
.plate-carousel__dots button:hover { background: var(--laiton); }
.plate-carousel__dots button.is-active {
  background: var(--laiton);
  width: 22px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .plate-carousel__slides li { transition: opacity 0.001ms; transform: none; }
  .plate-carousel__slides li.is-active { transform: none; }
}

/* =========================================================
   TABLE CARDS (Restaurant / Crêperie / Brasserie) — legacy
   ========================================================= */
.tables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 2.4rem 0 0.6rem;
}
.table-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.6rem;
  background: var(--ivoire);
  border: 1px solid var(--ligne);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.table-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -32px rgba(13, 22, 32, 0.28);
}
.table-card__num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--laiton);
  opacity: 0.6;
  line-height: 1;
}
.table-card h3 {
  font-size: 1.55rem; margin: 0.2rem 0 0.8rem;
  font-style: italic;
}
.table-card p {
  font-size: 0.96rem;
  color: var(--texte-mute);
  margin: 0;
}

@media (max-width: 880px) {
  .tables { grid-template-columns: 1fr; }
}

/* =========================================================
   TERROIR
   ========================================================= */
.terroir {
  background: var(--sable);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}
.terroir__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.terroir__head .lede { margin-left: auto; margin-right: auto; }

.terroir__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.terroir__card {
  margin: 0;
  background: var(--ivoire);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ligne);
}
.terroir__card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s var(--ease);
}
.terroir__card:hover img { transform: scale(1.05); }
.terroir__card figcaption {
  padding: 1.2rem 1.2rem 1.4rem;
}
.terroir__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-style: italic;
}
.terroir__card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--texte-mute);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .terroir__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .terroir__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pull {
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  background: var(--ivoire);
  text-align: center;
}
.pull blockquote {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  font-weight: 300;
  color: var(--texte);
}
.pull__quote {
  position: absolute;
  top: -1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 6rem;
  color: var(--laiton);
  opacity: 0.55;
  line-height: 1;
}
.pull blockquote em { color: var(--terre); }

/* =========================================================
   RESERVER
   ========================================================= */
.reserve {
  background: var(--nuit);
  color: var(--sable);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(181, 138, 75, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.reserve__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.reserve__actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center;
  margin: 2.2rem 0 0;
}

.reserve__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2.6rem auto 0.8rem;
  padding: 1.4rem 2.6rem;
  border: 1px solid var(--laiton);
  border-radius: 4px;
  background: rgba(181, 138, 75, 0.06);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.reserve__phone:hover {
  background: rgba(181, 138, 75, 0.18);
  border-color: var(--laiton-clair);
  transform: translateY(-2px);
}
.reserve__phoneLabel {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton-clair);
}
.reserve__phoneNumber {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-style: italic;
  color: var(--sable);
  letter-spacing: 0.01em;
  line-height: 1;
}

.reserve__note {
  margin: 1rem auto 0;
  max-width: 44ch;
  font-size: 0.92rem;
  color: var(--sable-2);
  opacity: 0.75;
  font-style: italic;
}
.reserve__hours {
  margin: 4rem auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.4rem 2.6rem;
  border: 1px solid var(--laiton);
  border-radius: 4px;
  background: rgba(181, 138, 75, 0.06);
}
.reserve__hours div { text-align: center; }
.reserve__hours dt {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton-clair);
  margin-bottom: 0.6rem;
}
.reserve__hours dd {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
}

@media (max-width: 720px) {
  .reserve__hours { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* =========================================================
   VISITER (carte + adresse)
   ========================================================= */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(6rem, 10vw, 9rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.visit__text { max-width: 560px; }

.visit__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--texte);
  margin: 1.2rem 0 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--laiton);
}

.visit__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.visit__links a {
  display: inline-block;
  border-bottom: 1px solid var(--ligne);
  padding-bottom: 0.3rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.visit__links a:hover { color: var(--laiton); border-color: var(--laiton); }

.visit__map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(13, 22, 32, 0.4);
}
.visit__mapInner { aspect-ratio: 1 / 1; }
.visit__mapInner svg { width: 100%; height: 100%; display: block; }

@media (max-width: 880px) {
  .visit { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--nuit);
  color: var(--sable);
  padding: 4rem var(--gutter) 1.6rem;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--ligne-claire);
}
.foot__brand { display: flex; flex-direction: column; gap: 0.3rem; }
.foot__name { font-size: 1.6rem; font-style: italic; }
.foot__sub {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sable-2);
  opacity: 0.8;
}
.foot__nav {
  display: flex; flex-wrap: wrap; gap: 1rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.foot__nav a { opacity: 0.85; transition: opacity 0.25s var(--ease); }
.foot__nav a:hover { opacity: 1; color: var(--laiton-clair); }
.foot__contact {
  display: flex; flex-direction: column; gap: 0.3rem;
  align-items: flex-end;
  text-align: right;
}
.foot__contact .foot__socials { margin-top: 0.8rem; }
.foot__phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--sable);
  transition: color 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.foot__phone:hover { color: var(--laiton-clair); }
.foot__phoneIcon { flex-shrink: 0; }
.foot__phoneNote {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sable-2);
  opacity: 0.7;
}

.foot__bottom {
  max-width: var(--maxw);
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--sable-2);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__bottom { justify-content: flex-start; }
}

.foot__bottom { align-items: center; }
.foot__socials {
  display: flex;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot__socials a {
  color: var(--sable-2);
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}
.foot__socials a:hover { opacity: 1; color: var(--laiton-clair); }

.foot__legal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.foot__legal a {
  color: var(--sable-2);
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}
.foot__legal a:hover { opacity: 1; color: var(--laiton-clair); }
.foot__legalSep { opacity: 0.5; }

.legal {
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  border-top: 1px solid var(--ligne);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0 1.6rem;
  font-style: italic;
}
.legal__body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal__body strong { font-weight: 600; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { transform: none; }
}

/* =========================================================
   Mentions légales / Politique de confidentialité — modale
   ========================================================= */
.legal[hidden] { display: none; }
.legal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.legal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 32, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: legalFade 0.3s var(--ease) both;
}
.legal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 920px);
  background: var(--ivoire);
  color: var(--texte);
  border: 1px solid var(--ligne);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(13, 22, 32, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: legalRise 0.4s var(--ease) both;
}
.legal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  color: var(--texte-mute);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.legal__close:hover { color: var(--texte); background: var(--sable); }
.legal__scroll {
  overflow-y: auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  -webkit-overflow-scrolling: touch;
}
.legal__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laiton);
}
.legal__title {
  margin: 0 0 1.6rem;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--nuit);
}
.legal__sec { margin: 0 0 1.5rem; }
.legal__sec h3 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laiton);
}
.legal__sec p {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--texte);
}
.legal__sec a { color: var(--terre); text-decoration: underline; text-underline-offset: 2px; }
.legal__sec a:hover { color: var(--laiton); }
.legal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ligne);
}
.legal__list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ligne);
  font-size: 0.94rem;
}
.legal__list li > span:first-child {
  flex: 0 0 11rem;
  color: var(--texte-mute);
}
.legal__list li > span:last-child { flex: 1 1 14rem; font-weight: 500; }
.legal__updated {
  margin: 1.8rem 0 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--texte-mute);
}
body.legal-open { overflow: hidden; }
@keyframes legalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes legalRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .legal__overlay, .legal__panel { animation: none; }
}
@media (max-width: 520px) {
  .legal__list li > span:first-child { flex-basis: 100%; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(5rem, 9vw, 8rem);
  border-top: 1px solid var(--ligne);
}
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq .display {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0.4rem 0 2.4rem;
}
.faq__list {
  border-top: 1px solid var(--ligne);
}
.faq__item {
  border-bottom: 1px solid var(--ligne);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.35;
  color: var(--texte);
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--laiton);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--laiton); }
.faq__answer {
  overflow: hidden;
  padding: 0 0 1.5rem;
  max-width: 64ch;
}
.faq__answer p {
  margin: 0;
  color: var(--texte-mute);
  font-size: 1.02rem;
  line-height: 1.7;
}
.faq__item[open] summary { color: var(--laiton); }
@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] .faq__answer { animation: faqReveal 0.4s var(--ease); }
}
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
