/* ============================================================
   RESTAURANT L'ENVIE — STYLESHEET
   Cuisine française contemporaine · Aix-en-Provence
   ============================================================ */

/* 1. TOKENS ================================================ */
/* Palette inspirée de la carte du restaurant :
   eucalyptus aquarelle, crème chaud, vert sauge, brun naturel  */
:root {
  --ink:        #252420;   /* charbon warm */
  --surface:    #212a1e;   /* olive profond (sections dark) */
  --surface2:   #2c3828;   /* olive légèrement plus clair */
  --parchment:  #f5f0e8;   /* crème parchment */
  --cream:      #faf8f4;   /* fond principal */
  --stone:      #e4ddd4;   /* séparateurs, bordures claires */
  --muted:      #8a7e74;   /* texte secondaire warm */
  --sage:       #7a9470;   /* vert sauge (eucalyptus) — accent principal */
  --sage-light: #a5bc9e;   /* sauge clair */
  --sage-pale:  #d4e0d0;   /* sauge très pâle */
  --brown:      #a8845a;   /* brun naturel (tiges) */

  /* Aliases utilisés dans les composants */
  --gold:       #7a9470;
  --gold-dim:   rgba(122,148,112,0.22);
  --gold-glow:  rgba(122,148,112,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --section-py: 6rem;
  --wrap:       1160px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 2. RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 3. LAYOUT ================================================ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: var(--section-py); }
.section--dark  { background: var(--surface);  color: var(--parchment); }
.section--ink   { background: var(--ink);       color: var(--parchment); }
.section--cream { background: var(--cream);     color: var(--ink); }
.section--stone { background: var(--stone);     color: var(--ink); }

/* 4. SCROLL REVEAL ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* 5. TYPOGRAPHY ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 56ch;
}
.section--dark .section-body,
.section--ink .section-body { color: #c4cec0; }

/* Eyebrow sur fond sombre : sage-light (#a5bc9e) → contraste ~6.7:1 */
.section--dark .eyebrow,
.section--ink  .eyebrow { color: var(--sage-light); }
.section--dark .eyebrow::before,
.section--dark .eyebrow::after,
.section--ink  .eyebrow::before,
.section--ink  .eyebrow::after { background: var(--sage-light); }

.gold-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-block: 1.75rem;
}

/* 6. BUTTONS =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--sage);
  color: #fff;
}
.btn--primary:hover {
  background: #688560;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122,148,112,0.38);
}
.btn--ghost {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.btn--ghost:hover {
  background: var(--gold-glow);
  border-color: rgba(196,137,77,0.50);
}
.btn--ghost-light {
  color: var(--parchment);
  border: 1px solid #6e7a6a;
}
.btn--ghost-light:hover {
  background: rgba(246,240,232,0.07);
  border-color: rgba(246,240,232,0.58);
}

/* 7. NAVIGATION ============================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.6rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(14,13,11,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 1rem;
  border-bottom: 1px solid rgba(196,137,77,0.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--parchment);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo em { font-style: italic; color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav__links a {
  color: #ccd8c8;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--parchment); }
.nav__cta .btn { padding: 0.6rem 1.4rem; font-size: 0.7rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--parchment);
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

/* Mobile overlay menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--parchment);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { transition: color 0.25s; }
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { font-size: 0.8rem; margin-top: 1rem; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* 8. HERO ================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 38% 48%, #2c3828 0%, #1a2018 62%);
}

/* CSS grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* Vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(14,13,11,0.65) 100%);
  pointer-events: none;
}

/* Optional hero background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s;
}
.hero__bg.loaded { opacity: 0.22; }

/* Ambient botanical glows */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--tl {
  top: -10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(122,148,112,0.10), transparent 65%);
}
.hero__glow--br {
  bottom: -10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(122,148,112,0.07), transparent 65%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 9rem 1.5rem 5rem;
  max-width: 820px;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sage-light);
  opacity: 0.55;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--parchment);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--sage-light);
  font-size: 0.6em;
  letter-spacing: 0.02em;
  margin-top: 0.15em;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: #c8d4c4;
  line-height: 1.55;
  margin-top: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease) forwards;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #b8c4b4;               /* était #8e9c8a — plus visible */
  opacity: 0;
  animation: fadeUp 0.9s 1.0s var(--ease) forwards;
}
.hero__badge strong { color: #e2ecda; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #8e9c8a;               /* était #6e7a6a — plus lisible */
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollPulse 2.8s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.8rem;
  background: linear-gradient(to bottom, rgba(122,148,112,0.7), transparent);
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
  from { opacity: 0; transform: translateY(24px); }
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.28; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.50; }
}

/* 8b. BOTANICAL DECORATION ================================= */
/* Feuilles d'eucalyptus CSS dans les sections claires */
.botanical-corner {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}
.botanical-corner--tl { top: 0; left: 0; transform: rotate(0deg); }
.botanical-corner--tr { top: 0; right: 0; transform: rotate(90deg); }
.botanical-corner--bl { bottom: 0; left: 0; transform: rotate(-90deg); }

/* 9. STORY / INTRO ========================================= */
.intro__grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1fr 1fr; }
}

.intro__quote {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}
.intro__quote em { font-style: italic; color: var(--gold); }

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
  padding: 1.4rem 0.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  transition: background 0.3s;
}
.stat:hover { background: var(--gold-glow); }
.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
}
.stat__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* 10. MENU PREVIEW ========================================= */
.menu-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.menu-preview__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.menu-preview__link:hover { gap: 0.7rem; }
.menu-preview__grid {
  display: grid;
  gap: 1.5px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.dish-card {
  padding: 2.2rem;
  background: rgba(196,137,77,0.04);
  border: 1px solid rgba(196,137,77,0.13);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.dish-card:hover {
  background: rgba(196,137,77,0.09);
  border-color: rgba(196,137,77,0.38);
}
.dish-card__cat {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);     /* #a5bc9e — contraste 6.7:1 sur --surface */
  margin-bottom: 0.8rem;
}
.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--parchment);
  margin-bottom: 0.7rem;
}
.dish-card__desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: #c4cec0;
}

/* 11. AMBIANCE ============================================= */
.ambiance__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ambiance__layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.ambiance__gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 260px 200px;
  gap: 0.75rem;
}
.ambiance__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.ambiance__gallery-item:first-child { grid-row: span 2; }
.ambiance__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ambiance__gallery-item:hover img { transform: scale(1.06); }

/* Placeholder for missing photos */
.photo-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--surface2);
  border: 1px dashed rgba(196,137,77,0.22);
  color: rgba(196,137,77,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.ambiance__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.ambiance__feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.ambiance__feature-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.ambiance__feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.ambiance__feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* 12. REVIEWS ============================================== */
.reviews__scores {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.score-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid rgba(196,137,77,0.18);
  border-radius: 2px;
}
.score-badge__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--sage-light);
  line-height: 1;
}
.score-badge__info { font-size: 0.72rem; color: #c4cec0; }
.score-badge__info strong { display: block; color: #e2ecda; letter-spacing: 0.06em; }

.reviews__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.review-card {
  padding: 2.5rem;
  border: 1px solid rgba(196,137,77,0.13);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(196,137,77,0.35); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(196,137,77,0.12);
  pointer-events: none;
  user-select: none;
}
.review-card__stars { color: var(--sage); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.review-card__text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--parchment);
  margin-bottom: 1.8rem;
}
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(122,148,112,0.12);
  border: 1px solid rgba(122,148,112,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage);
  flex-shrink: 0;
}
.review-card__name { font-size: 0.78rem; font-weight: 500; color: var(--parchment); }
.review-card__src {
  font-size: 0.62rem;
  color: #8e9c8a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 13. INFO SECTION ========================================= */
.info__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .info__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.info__block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--stone); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.65rem 0; font-size: 0.875rem; }
.hours-table td:first-child { color: var(--muted); width: 55%; }
.hours-table .closed td { color: #a05040; font-style: italic; opacity: 0.75; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.contact-row__icon {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
}
.contact-row p { color: var(--muted); }
.contact-row a { color: var(--ink); font-weight: 400; }
.contact-row a:hover { color: var(--gold); }

/* 14. RESERVATION CTA ====================================== */
.resa-cta {
  text-align: center;
  padding-block: 8rem;
}
.resa-cta .section-title { color: var(--parchment); margin-inline: auto; }
.resa-cta .section-body { margin-inline: auto; margin-block: 1.5rem 3rem; font-size: 1rem; }
.resa-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* 15. FOOTER =============================================== */
.footer {
  background: var(--ink);
  color: var(--parchment);          /* base : texte clair sur fond sombre */
  border-top: 1px solid rgba(196,137,77,0.10);
  padding-block: 5rem 3rem;
}
.footer__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}
.footer__logo em { font-style: italic; color: var(--gold); }
.footer__tagline {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #b8c4b4;
  margin-bottom: 1.75rem;
}
.footer__col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links li {
  font-size: 0.8rem;
  color: #b8c4b4;               /* li simples (adresse, horaires…) lisibles */
}
.footer__links a {
  font-size: 0.8rem;
  color: #b8c4b4;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--parchment); }
.footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,137,77,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  color: #7a8a76;               /* suffisamment contrasté sur --ink */
}

/* 16. CARTE PAGE =========================================== */
.page-hero {
  background: var(--ink);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(122,148,112,0.10), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  color: var(--parchment);
  position: relative;
  z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: #c4cec0;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.menu-cat { padding-block: 4.5rem; }
.menu-cat:nth-child(even) { background: var(--surface); }
.menu-cat:nth-child(odd)  { background: var(--cream); }

.menu-cat__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.menu-cat__line { flex: 1; height: 1px; background: var(--gold-dim); }
.menu-cat__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  white-space: nowrap;
}
.menu-cat:nth-child(even) .menu-cat__title { color: var(--parchment); }
.menu-cat:nth-child(odd)  .menu-cat__title { color: var(--ink); }

.menu-items { display: grid; gap: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.6rem 0;
}
.menu-cat:nth-child(even) .menu-item { border-bottom: 1px solid rgba(196,137,77,0.10); }
.menu-cat:nth-child(odd)  .menu-item { border-bottom: 1px solid var(--stone); }
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.menu-cat:nth-child(even) .menu-item__name { color: var(--parchment); }
.menu-cat:nth-child(odd)  .menu-item__name { color: var(--ink); }
.menu-item__desc {
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 56ch;
}
.menu-cat:nth-child(even) .menu-item__desc { color: #b8c4b4; }
.menu-cat:nth-child(odd)  .menu-item__desc { color: var(--muted); }
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* Tags (allergens, vege) */
.menu-item__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 1px;
}
.tag--vege {
  background: rgba(122,148,112,0.13);
  color: var(--sage);
  border: 1px solid rgba(122,148,112,0.28);
}
.tag--sign {
  background: rgba(168,132,90,0.10);
  color: var(--brown);
  border: 1px solid rgba(168,132,90,0.28);
}

/* 17. MOBILE =============================================== */
@media (max-width: 640px) {
  :root { --section-py: 4rem; }
  .hero__inner { padding-top: 7rem; padding-bottom: 3rem; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .ambiance__gallery { display: block; }
  .ambiance__gallery-item { height: 240px; margin-bottom: 0.75rem; }
  .resa-cta { padding-block: 5rem; }
  .menu-item { flex-direction: column; gap: 0.5rem; }
  .menu-item__price { align-self: flex-end; }
}
