:root {
  --bg: #062b3b;
  --bg-alt: #0b3f56;
  --accent: #e08b24;
  --accent-soft: #f5b668;
  --accent-dark: #b86a16;
  --text: #e7d8c3;
  --text-muted: rgba(231, 216, 195, 0.82);
  --card-bg: #0b3f56;
  --border-subtle: rgba(90, 43, 23, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --gap: 24px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #0b3f56 0, #062b3b 45%, #021721 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER & NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(6, 43, 59, 0.97),
      rgba(6, 43, 59, 0.94)
    )
    border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 72px;
  padding: 10px 0;
}

.logo {
  position: absolute;
  left: -130px;
  top: 100%;
  transform: translateY(-30%);
  z-index: 25;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.65));
}

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--accent);
  color: #1b120f;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  background:
    radial-gradient(circle at top left, rgba(224, 139, 36, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(90, 43, 23, 0.45), transparent 60%),
    #062b3b;
  overflow: hidden;
}

/* Remplace l'image de fond ici quand tu ajouteras une vraie photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(6, 43, 59, 0.93) 0%,
      rgba(6, 43, 59, 0.72) 32%,
      rgba(6, 43, 59, 0.28) 58%,
      rgba(6, 43, 59, 0.02) 100%
    ),
    url("IMAGES/facade-omg-restaurant-saint-beauzire.webp");
  background-size: cover;
  background-position: 62% center;
  opacity: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(2, 14, 20, 0.9), transparent),
    radial-gradient(circle at top right, rgba(2, 14, 20, 0.7), transparent);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  padding: 60px 0 40px;
  max-width: 620px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.84rem;
  color: var(--accent-soft);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.5vw, 3.5rem);
  margin: 0 0 18px;
  line-height: 1.06;
}

.hero-text {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.title-main {
  color: var(--accent);
}

.title-sub {
  color: var(--text);
  font-size: 1.2rem;
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}


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

.phone-link {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--accent);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1f3a;
  box-shadow: 0 12px 30px rgba(15, 20, 41, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 20, 41, 0.8);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent-soft);
  background: rgba(26, 31, 58, 0.7);
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1b120f;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(224, 139, 36, 0.35);
  transform: translateY(-1px);
}

/* GENERIC SECTIONS */

.page {
  flex: 1;
}

.section {
  padding: 70px 0;
}

.section-about {
  background: radial-gradient(circle at top, #0b3f56 0, #062b3b 55%, #021721 100%);
}

.section-highlight {
  background: radial-gradient(circle at bottom, #0b3f56 0, #062b3b 55%, #021721 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-contact,
.section-reservation {
  background: #062b3b;
}

.section h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--accent-soft);
}

.section h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 6px;
  background: var(--accent);
  border-radius: 2px;
}

.section-intro {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.section-text p {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.section-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: flex-start;
}

.section-text p + p {
  margin-top: 10px;
}

.section-card {
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 139, 36, 0.15);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
}

.section-card h3,
.section-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.4rem;
  color: var(--accent-soft);
}

.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent-soft);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.big-phone {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 4px 0 8px;
}

.hero-phone-number {
  white-space: nowrap;
}

.small-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.info-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  align-items: baseline;
}

.info-list li span:first-child {
  color: var(--text-muted);
}

.info-list li span:last-child {
  text-align: right;
}

.service-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.info-list li:has(.service-lines) span:last-child {
  text-align: left;
}

.service-lines strong {
  color: var(--accent);
  font-weight: 600;
}

.phone-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: radial-gradient(circle at top, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(224, 139, 36, 0.12);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.7);
}

.card li + li {
  margin-top: 6px;
}

.section-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* HERO PHONE */

.hero-phone {
  margin-top: 20px;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(11, 63, 86, 0.6);
  border: 1px solid rgba(224, 139, 36, 0.25);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.hero-phone-link:hover {
  background: rgba(224, 139, 36, 0.15);
  border-color: rgba(224, 139, 36, 0.5);
}

.hero-phone-icon {
  color: var(--accent-soft);
  flex-shrink: 0;
}

.hero-phone-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-phone-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

/* ANIMATIONS DYNAMIQUES */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.3s ease-out;
  will-change: opacity, transform;
}

.reveal--from-left {
  transform: translateX(-26px);
}

.reveal--from-right {
  transform: translateX(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.reveal-card.is-visible {
  box-shadow: 0 20px 45px rgba(15, 20, 41, 0.8);
}

/* MENU PAGE */

.page-hero {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top, #0b3f56 0, #062b3b 55%, #021721 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero .hero-kicker {
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0 0 12px;
  color: var(--accent-soft);
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.menu-intro-card {
  margin: 34px 0 28px;
  padding: 18px 18px 14px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border: 1px solid rgba(224, 139, 36, 0.14);
}

.menu-intro-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--accent-soft);
}

.menu-intro-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 0.93rem;
}

.menu-intro-card li + li {
  margin-top: 4px;
}

.menu-intro-card .price {
  color: var(--accent-soft);
  font-weight: 600;
}

.menu-week-card {
  margin: 24px 0 22px;
  padding: 18px 20px 16px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border: 1px solid rgba(224, 139, 36, 0.14);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.65);
}

.menu-week-title {
  margin-top: 0;
  margin-bottom: 4px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--accent-soft);
}

.menu-week-subtitle {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.menu-week-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 18px;
  font-size: 0.85rem;
}

.menu-week-day {
  line-height: 1.3;
}

.menu-week-day strong {
  display: block;
  margin-bottom: 2px;
  color: var(--accent-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-block {
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(224, 139, 36, 0.14);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.65);
}

.menu-block h2 {
  font-size: 1.35rem;
  margin: 0 0 10px;
  color: var(--accent-soft);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 500;
  color: var(--text);
}

.menu-list li + li {
  margin-top: 10px;
  margin-bottom: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-list p {
  margin: 4px 0 0;
}

.price {
  color: var(--accent-soft);
  white-space: nowrap;
}

/* FORMULAIRE DE RÉSERVATION */

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 20, 41, 0.9);
  padding: 9px 11px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 227, 215, 0.45);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(252, 159, 40, 0.5);
  background: rgba(20, 25, 50, 0.96);
}

.form-feedback {
  font-size: 0.86rem;
  margin-top: 4px;
}

.form-feedback--success {
  color: #9ae6b4;
}

.form-feedback--error {
  color: #feb2b2;
}

/* FOOTER */

.footer {
  background: #0f1429;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  color: var(--accent-soft);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.social-cta-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin: 0 0 4px;
}

.social-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-review-google {
  background: #fff;
  color: #3c3c3c;
}

.btn-review-tripadvisor {
  background: #34e0a1;
  color: #000;
}

.btn-review-google svg,
.btn-review-tripadvisor svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-note {
  opacity: 0.76;
}

/* HERO GALLERY */

.hero-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 28px;
  width: 100%;
  max-width: 620px;
}

.hero-gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  justify-content: flex-start;
}

.hero-gallery-track::-webkit-scrollbar {
  display: none;
}

.hero-gallery-item {
  flex: 0 0 190px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(0) scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero-gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.hero-gallery-item img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 63, 86, 0.78);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  transition: background 0.18s ease;
  z-index: 2;
}

.gallery-nav-prev {
  left: -20px;
}

.gallery-nav-next {
  right: -20px;
}

.gallery-nav:hover {
  background: rgba(224, 139, 36, 0.9);
  color: #1b120f;
}

.gallery-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 20px 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 21, 0.58);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  max-height: 82vh;
  transform: scale(0.92) translateY(14px);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.lightbox.is-open .lightbox-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 43, 59, 0.85);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(224, 139, 36, 0.95);
  color: #1b120f;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.lightbox-trigger {
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(11, 63, 86, 0.88);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(224, 139, 36, 0.95);
  color: #1b120f;
}

.lightbox-prev {
  left: -22px;
}

.lightbox-next {
  right: -22px;
}

/* RESPONSIVE */

@media (max-width: 840px) {
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .logo {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }

  .logo-img {
    height: 70px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
  }

  .nav {
    margin-left: auto;
  }

  .header-inner {
    min-height: 64px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 20px;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 20, 41, 0.98);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links.nav-links--open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 70px 0 60px;
  }

  .cards,
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-buttons {
    flex-direction: column;
  }

  .hero-gallery-wrapper {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-gallery-item {
    flex: 0 0 150px;
    border-radius: 16px;
  }

  .hero-gallery-item img {
    height: 108px;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .lightbox-dialog {
    width: min(96vw, 96vw);
  }

  .lightbox-close {
    top: -10px;
    right: -6px;
  }

  .lightbox-nav {
  width: 40px;
  height: 40px;
  font-size: 1.7rem;
}

.lightbox-prev {
  left: -8px;
}

.lightbox-next {
  right: -8px;
}

  .info-list li {
    align-items: flex-start;
  }

.link-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px dashed rgba(224, 139, 36, 0.4);
  transition: all 0.2s ease;
}

.link-map:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.map-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: #e04040;
  stroke-width: 1.7;
  opacity: 0.95;
}

.map-container {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(224, 139, 36, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

strong,
b {
  font-weight: 700;
}

/* MENU PAGE — harmonisation accueil */

.section-menu {
  background: radial-gradient(circle at top, #0b3f56 0, #062b3b 55%, #021721 100%);
}

.menu-group-past-section {
  margin-top: 50px;
  padding: 28px;
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 139, 36, 0.15);
  box-shadow: var(--shadow-soft);
}

.menu-group-past-section h2 {
  margin-top: 0;
}

.past-meals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.menu-block {
  padding: 22px;
}

.menu-block h2 {
  font-size: 1.5rem;
}

.menu-list li {
  margin-bottom: 12px;
}

