:root {
  --blue: #0b2e4f;
  --blue-light: #173f62;
  --yellow: #f6c343;
  --deep-red: #5c0f1a;
  --cream: #f9f5ec;
  --sand: #f2e3bf;
  --midnight: #071b34;
  --text: #0b1a2a;
  --muted: #6b7b8f;
  --border: rgba(11, 46, 79, 0.15);
  --shadow: 0 20px 50px rgba(7, 24, 45, 0.25);
  --nav-fixed-gap: 0px;
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

section {
  position: relative;
}

.section {
  padding: clamp(80px, 8vw, 120px) clamp(20px, 6vw, 140px);
}

.section-header,
.section-intro {
  max-width: 780px;
  margin-bottom: 3rem;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.hero .eyebrow,
.reviews .eyebrow {
  color: var(--yellow);
}

.info .eyebrow,
.contact .eyebrow {
  color: var(--blue);
}

.info .section-header h2,
.contact .section-header h2 {
  color: var(--blue);
}
.info .section-header h2,
.contact .section-header h2 {
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--midnight);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(20px, 6vw, 80px);
  background: var(--midnight);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.primary-nav a {
  color: var(--yellow);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  width: 100%;
}

.highlight-link {
  color: var(--yellow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 8vw, 140px);
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.1);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(11, 46, 79, 0.9), rgba(11, 46, 79, 0.4));
}

.hero-content {
  position: relative;
  max-width: 640px;
  z-index: 1;
}

.hero h1 {
  color: #fdf7dc;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}

.hero .lead {
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: #f7faff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.section.menu {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 45%, #fdf5ed 100%);
}

.menu-hero {
  margin: 2.5rem 0 3rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: 40px;
  background: linear-gradient(135deg, #07182d, #0f2f4f 60%, #154268);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 70px rgba(7, 24, 45, 0.45);
}

.menu-hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.75rem;
}
/* Ensure hero title is white (requested) */
.menu-hero__content h1,
.menu-hero__content h1[data-force-white] {
  color: #ffffff;
}

.menu-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(246, 195, 67, 0.95);
}

.menu-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0.2rem 0 1.2rem;
  max-width: 540px;
}

.menu-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.menu-hero__cta .btn.primary {
  box-shadow: 0 18px 40px rgba(246, 195, 67, 0.4);
}

.menu-hero__cta .btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.menu-hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.menu-hero__highlights li {
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-hero__highlights strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.menu-hero__highlights span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.menu-hero__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-hero__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.menu-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.15), rgba(7, 24, 45, 0.8));
}

.menu-hero__badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--midnight);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.menu-mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .menu-mobile-nav {
    display: block;
    position: sticky;
    top: var(--mobile-nav-offset, 0px);
    z-index: 20;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.35s ease;
  }

  .menu-mobile-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 320px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .menu-mobile-nav__inner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    border: 1px solid rgba(11, 46, 79, 0.08);
    padding: 0.85rem clamp(16px, 5vw, 32px);
    box-shadow: 0 18px 40px rgba(7, 24, 45, 0.25);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .menu-mobile-nav.is-visible .menu-mobile-nav__inner {
    transform: translateY(0);
  }

  .menu-mobile-nav.is-closing .menu-mobile-nav__inner {
    transform: translateY(-120%);
  }

  .menu-mobile-nav__row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .menu-mobile-nav__row::-webkit-scrollbar {
    display: none;
  }

  .menu-mobile-nav__row {
    width: 100%;
  }

  .menu-mobile-nav__row--icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-inline: clamp(8px, 4vw, 32px);
    min-height: 72px;
    overflow: visible;
  }

  .menu-mobile-nav__icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 18px;
    background: var(--sand);
    border: 1px solid rgba(11, 46, 79, 0.05);
    box-shadow: 0 12px 20px rgba(11, 46, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .menu-mobile-nav__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }

  .menu-mobile-nav__icon:focus-visible,
  .menu-mobile-nav__icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(11, 46, 79, 0.25);
  }

  .menu-mobile-nav__icon--close {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 28px rgba(7, 24, 45, 0.2);
    margin: 0 auto;
  }

  .menu-mobile-nav__icon--close img {
    width: 24px;
    height: 24px;
    display: block;
  }

  .menu-mobile-nav__row--icons button:nth-child(1) {
    margin-right: auto;
  }

  .menu-mobile-nav__row--icons button:nth-child(2) {
    margin: 0 auto;
  }

  .menu-mobile-nav__row--icons button:nth-child(3) {
    margin-left: auto;
  }

  .menu-mobile-nav__row--labels {
    flex-wrap: nowrap;
  }

  .menu-mobile-nav__row--labels button {
    flex: 0 0 auto;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: rgba(11, 46, 79, 0.08);
    color: var(--blue);
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    white-space: nowrap;
  }

  .menu-mobile-nav__row--labels button:focus-visible,
  .menu-mobile-nav__row--labels button:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
  }

  body.mobile-nav-active .menu-page {
    margin-top: var(--mobile-nav-placeholder-height, 140px);
  }
}

.menu-page {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.menu-navigation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 130px;
  align-self: start;
  z-index: 5;
}

.menu-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 2rem;
  align-items: start;
}

.menu-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-order-panel {
  position: sticky;
  top: 120px;
}

.menu-order-panel .order-summary {
  margin: 0;
  width: 100%;
  max-width: none;
}

@media (max-width: 1200px) {
  .menu-content {
    grid-template-columns: 1fr;
  }
  .menu-order-panel {
    position: static;
  }
  .menu-order-panel .order-summary {
    margin-top: 2.5rem;
  }
}

@media (max-width: 992px) {
  .menu-page {
    grid-template-columns: 1fr;
  }
  .menu-navigation {
    position: static;
  }
}

@media (max-width: 768px) {
  .menu-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-navigation {
    display: none;
  }
}

@media (max-width: 640px) {
  .section.menu {
    padding: 3.5rem 1.25rem;
  }
  .menu-hero {
    border-radius: 28px;
    padding: 1.75rem;
    gap: 1.5rem;
  }
  .menu-hero__content h1 {
    font-size: 2rem;
  }
  .menu-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-hero__cta .btn {
    width: 100%;
  }
  .menu-hero__highlights {
    grid-template-columns: 1fr;
  }
  .menu-hero__media {
    min-height: 220px;
  }
  .menu-hero__badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

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

.btn.primary {
  background: var(--yellow);
  color: var(--midnight);
  box-shadow: 0 12px 30px rgba(246, 195, 67, 0.4);
}

.btn.secondary {
  background: var(--blue);
  color: #fff;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* About */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-highlights {
  display: grid;
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(7, 24, 45, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
}

.about-image img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(7, 24, 45, 0.2);
}

/* Menu */
.menu {
  background: linear-gradient(180deg, #fff, #f5f8fb);
}

.menu-nav-panel {
  position: sticky;
  top: 80px;           /* tu peux descendre encore un peu si tu veux "remonter" visuellement */
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 40px rgba(7, 24, 45, 0.15);
  backdrop-filter: blur(6px);
  overflow: visible;
  max-height: none;
  border: none;
}

.menu-nav-panel.is-collapsed {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  padding: 0;
  max-height: 0;
  box-shadow: none;
  margin-bottom: 1rem;
}

.menu-primary-nav,
.menu-secondary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-primary-nav {
  justify-content: space-between;
}

.menu-primary-nav button,
.menu-secondary-nav button {
  border: 1px solid var(--border);
  background: #f4f7fb;
  color: var(--midnight);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-secondary-nav button {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: #fff;
}

.menu-primary-nav button:hover,
.menu-primary-nav button:focus-visible,
.menu-secondary-nav button:hover,
.menu-secondary-nav button:focus-visible {
  background: rgb(204, 226, 247);
}

.menu-primary-nav button.is-active,
.menu-secondary-nav button.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 15px 30px rgba(11, 46, 79, 0.25);
}

@media (max-width: 768px) {
  .menu-nav-panel {
    margin: 0 -1rem 2rem;
    border-radius: 24px;
    top: 70px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .menu-primary-nav {
    flex-direction: column;
  }
}

.menu-navigation.is-open .menu-nav-panel {
  display: flex;
}

@media (max-width: 768px) {
  .menu-nav-panel {
    display: none;
  }
  .menu-navigation.is-open .menu-nav-panel {
    display: flex;
  }
}

.menu-nav-toggle {
  position: sticky;
  top: 88px;
  margin-bottom: 0.5rem;
  margin-left: -0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(11, 46, 79, 0.2);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(7, 24, 45, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 11;
}

.menu-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--midnight);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-nav-toggle:hover,
.menu-nav-toggle:focus-visible {
  transform: scale(1.05);
  background: var(--yellow);
}

.menu-nav-toggle.is-collapsed span {
  transform: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .menu-nav-toggle {
    top: 70px;
    margin-left: 0;
  }
}

/* When small screen and user scrolls, make the toggle fixed to viewport so it follows the scroll */
@media (max-width: 768px) {
  .menu-nav-toggle.nav-fixed {
    position: fixed;
    right: 1rem;
    top: 14px; /* small offset from top to remain visible */
    margin: 0;
    z-index: 60;
    box-shadow: 0 18px 40px rgba(7,24,45,0.18);
    transform: translateY(0) !important;
  }
}

/* When the nav panel is opened on small screens, make it fixed so it follows the scroll
   and stays next to the content. This pairs with the JS which will add/remove .nav-fixed. */
@media (max-width: 768px) {
  .menu-nav-panel.nav-fixed {
    position: fixed;
    top: 64px; /* below header */
    left: 0.75rem;
    right: 0.75rem;
    max-height: calc(100vh - 80px);
    overflow: auto;
    z-index: 55;
    margin: 0;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  body.nav-panel-open .menu-content {
    margin-top: var(--nav-fixed-gap, 0px);
  }
}

/* If a duplicate fixed nav appears on mobile, hide the fixed instance to prevent two navs
   appearing simultaneously. This targets the nav when JS marks it as .nav-fixed. */
@media (max-width: 768px) {
  /* Hide the duplicate fixed navigation container on mobile (parent .menu-navigation) */
  .menu-navigation.nav-fixed {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .menu-page {
    gap: 1.5rem;
  }
  .menu-navigation {
    gap: 0.5rem;
  }
  .menu-primary-nav,
  .menu-secondary-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
    overflow: visible;
  }
  .menu-primary-nav button,
  .menu-secondary-nav button {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 140px;
  }
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.menu-gallery > .menu-interactive {
  grid-column: 1 / -1;
}

.menu-photo {
  position: relative;
  border-radius: 24px;
  padding: 0;
  width: 100%;
  aspect-ratio: 5 / 7;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(7, 24, 45, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.1), rgba(7, 24, 45, 0.8));
  transition: opacity 0.3s ease;
}

.menu-photo span {
  position: absolute;
  inset: auto 15% 1.2rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  background: midnightblue;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.menu-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px rgba(7, 24, 45, 0.3);
}

.menu-photo:hover::after {
  opacity: 0.7;
}

.menu-interactive {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 28px;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 25px 45px rgba(7, 24, 45, 0.1);
  scroll-margin-top: 150px;
}

.menu-interactive__section {
  scroll-margin-top: 140px;
}

.menu-theme-plats {
  background: linear-gradient(135deg, #ffffff, #fef3ec);
  border-color: #f5c9a0;
}

.menu-theme-entrees {
  background: linear-gradient(135deg, #fff, #f0fbf4);
  border-color: #a8dab5;
}

.menu-theme-menu {
  background: linear-gradient(135deg, #fff, #f0f5ff);
  border-color: #9fb8ff;
}

.menu-theme-desserts {
  background: linear-gradient(135deg, #fff, #fff0f5);
  border-color: #ffc2d9;
}

.menu-theme-boissons {
  background: linear-gradient(135deg, #fff, #f0fffb);
  border-color: #8fd4c2;
}

.menu-theme-vins {
  background: linear-gradient(135deg, #fdf7ff, #f2ebff);
  border-color: #c2a6ff;
}

.menu-formule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-formule {
  padding: 1rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(11, 46, 79, 0.1);
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.menu-formule h5 {
  margin: 0;
  font-size: 1rem;
}

.menu-formule p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-formule span {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.order-summary {
  margin: 4rem auto;
  width: min(1100px, calc(100% - 2rem));
  max-width: 1100px;
  color: #fff;
  border-radius: 36px;
  padding: 2.5rem;
  background: linear-gradient(135deg, #050f1f, #0f355a 60%, #133f79);
  box-shadow: 0 35px 70px rgba(7, 24, 45, 0.45);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.order-summary::before,
.order-summary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.order-summary::before {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 55%);
}

.order-summary::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%);
  mix-blend-mode: screen;
}

.order-summary.is-emphasized {
  box-shadow: 0 40px 80px rgba(7, 24, 45, 0.55), 0 0 0 4px rgba(246, 195, 67, 0.35);
}

.order-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.order-summary__header h3 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: 2rem;
}

.order-summary__tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 0.5rem;
}

.order-summary__hint {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}

.order-summary__body {
  background: rgba(3, 12, 24, 0.35);
  border-radius: 26px;
  padding: 1rem 1.25rem;
  max-height: 360px;
  overflow-y: auto;
  position: relative;
}

.order-summary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  align-items: center;
}

.order-summary__item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-summary__item-content strong {
  font-size: 1rem;
}

.order-summary__item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-summary__quantity {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.order-summary__note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.order-summary__price {
  font-weight: 600;
}

.order-summary__remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.order-summary__remove:hover,
.order-summary__remove:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #081c34;
  transform: scale(1.05);
}

.order-summary__empty {
  border: none;
  padding: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  background: transparent;
}

.order-summary__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  font-size: 1.1rem;
  position: relative;
  gap: 1rem;
}

.order-summary__footer strong {
  font-size: 1.5rem;
}

.order-summary__footer .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.order-summary__send {
  min-width: 210px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.order-summary__send:not([disabled]) {
  border-color: var(--yellow);
  color: var(--midnight);
  background: var(--yellow);
  font-weight: 700;
}

@media (max-width: 600px) {
  .order-summary {
    margin: 2.5rem 1rem;
    padding: 1.75rem;
  }
  .order-summary__body {
    max-height: 280px;
  }
  .order-summary__footer {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Safety: prevent accidental horizontal overflow on small screens */
@media (max-width: 1000px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  /* ensure main grid containers use border-box so padding doesn't add extra width */
  .menu-page,
  .menu-content,
  .menu-gallery,
  .menu-main {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}

/* Floating cart button (mobile) */
.floating-cart {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(7,24,45,0.3);
  border: none;
}
.floating-cart svg { display: block; }
.floating-cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--midnight);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .floating-cart {
    display: inline-flex;
  }
}
.floating-cart svg { display: block; }
.floating-cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--midnight);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: show order panel as bottom sheet when toggled */
@media (max-width: 1000px) {
  .menu-order-panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 70;
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0.75rem));
    background: rgba(7, 24, 45, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
  }
  .menu-order-panel.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-order-panel .order-summary {
    border-radius: 24px 24px 0 0;
    margin: 0;
    width: min(560px, 100%);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    transform: translateY(60px);
    transition: transform 320ms cubic-bezier(.22,.9,.19,1);
  }
  .menu-order-panel.is-open .order-summary {
    transform: translateY(0);
  }
}

.menu-interactive__header h3 {
  margin: 0.25rem 0 0.5rem;
}

.menu-interactive__header p {
  margin: 0;
}

.menu-interactive__sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Ensure drink lists can scroll internally instead of being clipped */
.drink-list {
  display: block;
}
.drink-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drink-item {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(11,46,79,0.05);
}

/* For very long lists on mobile, allow internal scrolling while keeping header visible */
@media (max-width: 900px) {
  .menu-interactive__sections {
    gap: 1rem;
  }
  .menu-interactive__section {
    max-height: none; /* allow natural flow */
  }
  .drink-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem; /* give room for scrollbar */
  }
}

.menu-interactive__section h4 {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.menu-section-muted h4 {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(11, 46, 79, 0.65);
}

.menu-card-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.menu-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fdfdfd;
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.menu-card:focus-visible {
  outline: 3px solid rgba(11, 46, 79, 0.4);
  outline-offset: 3px;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 18px 30px rgba(7, 24, 45, 0.18);
}

.menu-detail__actions {
  margin-top: 1.25rem;
}

.menu-detail__actions .btn {
  width: 100%;
}

.menu-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px 22px 0 0;
  background-image: var(--card-image, linear-gradient(135deg, #07182d, #113864));
  background-size: cover;
  background-position: center;
}

.menu-card--mini .menu-card__media {
  aspect-ratio: 3 / 2;
  max-height: 120px;
}

.menu-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1.1rem;
}

.menu-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--midnight);
}

.menu-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.menu-card__details {
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-card__details--beer div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.menu-card__details--beer span {
  font-size: 0.88rem;
  color: var(--midnight);
  font-weight: 600;
}

.menu-card__details--beer small {
  font-size: 0.78rem;
  color: rgba(7, 24, 45, 0.7);
}

.drink-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 640px) {
  .menu-interactive {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
  }
  .menu-card-grid {
    grid-template-columns: 1fr;
  }
  .menu-card {
    flex-direction: row;
    align-items: stretch;
  }
  .menu-card__media {
    flex: 0 0 110px;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
  }
  .menu-card__info {
    padding: 0.85rem 0.95rem;
  }
  .menu-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

.drink-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(7, 24, 45, 0.08);
}

.drink-group h5 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--midnight);
}

.drink-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.drink-item__title {
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.4rem;
}

.drink-item__options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drink-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(7, 24, 45, 0.08);
}

.drink-option-row:last-child {
  border-bottom: none;
}

.drink-option-row span {
  font-size: 0.95rem;
  color: rgba(7, 24, 45, 0.85);
}

.drink-option-button {
  border-radius: 20px;
  border: 1px solid var(--yellow);
  background: rgba(246, 195, 67, 0.15);
  color: var(--midnight);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drink-option-button:hover,
.drink-option-button:focus-visible {
  background: var(--yellow);
  color: var(--midnight);
  transform: translateY(-1px);
}

.wine-list {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wine-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.25rem 1.5rem;
  background: #fffdf7;
  box-shadow: 0 10px 30px rgba(7, 24, 45, 0.08);
}

.wine-card header {
  margin-bottom: 0.8rem;
}

.wine-card strong {
  display: block;
  font-size: 1rem;
  color: var(--midnight);
}

.wine-card small {
  color: rgba(7, 24, 45, 0.6);
}

.wine-card__options {
  display: flex;
  flex-direction: column;
}

.menu-card__price {
  font-weight: 600;
  color: var(--blue);
  min-width: 80px;
  text-align: left;
}

.menu-card__price:empty::after {
  content: attr(data-placeholder);
  font-weight: 500;
  color: rgba(32, 52, 89, 0.5);
  font-size: 0.85rem;
}

.menu-card__chevron {
  font-size: 1.4rem;
  color: rgba(7, 24, 45, 0.5);
}

.menu-detail {
  position: fixed;
  inset: 0;
  padding: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 25;
}

.menu-detail.is-open {
  display: flex;
}

.menu-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 45, 0.7);
}

.menu-detail__dialog {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 1rem;
  width: min(520px, 100%);
  z-index: 1;
  display: grid;
  gap: 1rem;
  box-shadow: 0 30px 55px rgba(7, 24, 45, 0.35);
}

.menu-detail__media {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  background: #0b2e4f;
  background-size: cover;
  background-position: center;
}

.menu-detail__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-detail__info-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(7, 24, 45, 0.15);
  background: #fff;
  color: var(--midnight);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-detail__info-btn:hover,
.menu-detail__info-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(7, 24, 45, 0.25);
  outline: none;
}

.menu-detail__description {
  margin: 0;
  color: rgba(7, 24, 45, 0.85);
}

.menu-detail__price {
  font-weight: 700;
  color: var(--blue);
  margin: 0.5rem 0 0;
}

.menu-detail__cooking {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-detail__cooking label {
  font-weight: 600;
  font-size: 0.9rem;
}

.menu-detail__cooking select {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
  background: #f8f9fb;
}

.menu-detail__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f5f7fa;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(7, 24, 45, 0.15);
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

[data-qty-value] {
  min-width: 2ch;
  text-align: center;
  font-weight: 700;
  color: var(--midnight);
}

.menu-detail__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(7, 24, 45, 0.25);
}

.menu-info {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.menu-info.is-visible {
  display: flex;
}

.menu-info__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 45, 0.55);
}

.menu-info__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  width: min(360px, 88%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(7, 24, 45, 0.4);
}

.menu-info__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.menu-info__section {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(7, 24, 45, 0.08);
}

.menu-info__section:first-of-type {
  border-top: none;
}

.menu-info__section img {
  width: 36px;
  height: 36px;
}

.menu-info__section strong {
  display: block;
  font-size: 0.95rem;
  color: var(--midnight);
}

.menu-info__section p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(7, 24, 45, 0.75);
}

.menu-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 40px rgba(7, 24, 45, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(7, 24, 45, 0.35);
}

.gallery-item:hover::after {
  opacity: 0.1;
}

/* Reviews */
.reviews {
  background: var(--blue);
  color: white;
}

.reviews h2,
.reviews p {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.review-text {
  margin: 0 0 0.8rem;
  line-height: 1.5;
}

.review-card:not(.is-expanded) .review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.review-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.review-toggle:hover,
.review-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.review-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.info-block {
  background: #fff;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(7, 24, 45, 0.1);
}

.contact-link {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-weight: 600;
}

.schedule {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.schedule li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(11, 46, 79, 0.15);
  padding-bottom: 0.4rem;
  font-size: 0.95rem;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.services span {
  background: var(--cream);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--blue);
}

.info-map iframe {
  border: none;
  width: 100%;
  min-height: 420px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(7, 24, 45, 0.2);
}

/* Contact */
.contact {
  background: var(--cream);
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 45px rgba(7, 24, 45, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card h3 {
  margin: 0;
  color: var(--midnight);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card small {
  color: var(--muted);
}

.contact-card .btn {
  align-self: flex-start;
}

.form-status {
  min-height: 1.2em;
  font-weight: 600;
}

.form-status.success {
  color: #0a8f5d;
}

.form-status.error {
  color: #b22727;
}

/* Footer */
.site-footer {
  padding: 2rem clamp(20px, 6vw, 80px);
  background: var(--midnight);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.footer-links a,
.footer-links button {
  color: var(--yellow);
  font-weight: 600;
}

.linkish {
  background: none;
}

.footer-languages {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #fff;
}

.lang-switcher {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.lang-switcher button {
  border: none;
  background: none;
  color: #fff;
  font-weight: 600;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lang-switcher button::after {
  content: '·';
  margin: 0 0.3rem;
  color: rgba(255, 255, 255, 0.6);
}

.lang-switcher button:hover,
.lang-switcher button:focus-visible {
  color: var(--yellow);
}

.lang-switcher button.active {
  color: var(--yellow);
}

.lang-switcher button:last-child::after {
  content: '';
}

.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #fff;
}

.footer-payments ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-payments li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.footer-payments img {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  width: 90px;
  height: auto;
  opacity: 0.8;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 45, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 5vw, 3rem);
  max-width: 600px;
  width: min(100%, 600px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-content.booking {
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.modal-content.lightbox {
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-width: 800px;
}

.zoom-wrapper {
  position: relative;
  max-height: 90vh;
  max-width: 90vw;
  overflow: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
  touch-action: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-content.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
  cursor: grab;
}

.modal-content.lightbox img.is-dragging {
  cursor: grabbing;
}

.booking {
  max-width: 640px;
}

.booking-step2 {
  background: radial-gradient(circle at top, #fff8e6, #ffffff);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(7, 24, 45, 0.18);
}

.booking-step2 form {
  margin-top: 1rem;
}

.booking-step2 .modal-close {
  background: rgba(255, 255, 255, 0.6);
}

.booking-sub {
  color: var(--muted);
  margin-top: 0;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking label {
  font-size: 0.95rem;
}

.booking select {
  appearance: none;
  border-radius: 14px;
  border: 1px solid rgba(11, 46, 79, 0.2);
  padding: 0.9rem 1rem;
  font: inherit;
}

.booking .time-picker {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.time-list {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid rgba(11, 46, 79, 0.15);
  border-radius: 16px;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.4rem;
}

.time-list button {
  border-radius: 12px;
  border: 1px solid rgba(11, 46, 79, 0.2);
  padding: 0.5rem 0.4rem;
  background: #fff;
  color: var(--midnight);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.time-list button:hover,
.time-list button:focus-visible {
  border-color: var(--blue);
}

.time-list button.active {
  background: var(--yellow);
  color: var(--midnight);
  border-color: var(--yellow);
}

.booking-summary {
  font-weight: 600;
  color: var(--midnight);
}

.booking-summary-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.08);
}

.booking-summary-card span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-summary-card strong {
  font-size: 1.1rem;
  color: var(--midnight);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  grid-column: 1 / -1;
}

.booking-row.duo {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
}

.booking-grid label.full {
  grid-column: 1 / -1;
}

.booking-grid label {
  background: #f7f7fb;
  border-radius: 18px;
  border: 1px solid rgba(11, 46, 79, 0.1);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 6px 14px rgba(7, 24, 45, 0.08);
}

.booking-grid label span {
  font-weight: 600;
  color: var(--midnight);
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .booking-row.duo {
    grid-template-columns: 1fr;
  }
}

.booking-grid label input,
.booking-grid label textarea {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.95rem;
}

.booking-grid label input:focus,
.booking-grid label textarea:focus {
  outline: none;
}

.booking-comforts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-comforts span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 700;
}

.booking-grid textarea {
  resize: vertical;
  min-height: 90px;
}

.reservation-toggle {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.8rem 1rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 15px 35px rgba(7, 24, 45, 0.35);
  cursor: pointer;
  z-index: 15;
}

.reservation-toggle:hover,
.reservation-toggle:focus-visible {
  background: var(--yellow);
  color: var(--midnight);
}

@media (max-width: 768px) {
  .reservation-toggle {
    display: none;
  }
}

.order-toggle {
  left: 0;
  right: auto;
  border-radius: 0 12px 12px 0;
  background: var(--yellow);
  color: var(--midnight);
}

.order-toggle:hover,
.order-toggle:focus-visible {
  background: var(--blue);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(11, 46, 79, 0.7);
  color: #fff;
  font-size: 1.8rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(246, 195, 67, 0.8);
  border-color: rgba(246, 195, 67, 0.9);
  color: var(--midnight);
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

#lightbox-modal.has-nav .lightbox-nav {
  display: flex;
}

.modal-content.legal {
  max-width: 700px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
  font-size: 1.5rem;
  line-height: 1;
}

/* Legal note small text for booking forms */
.legal-note {
  color: rgba(11, 46, 79, 0.8);
  margin-top: 0.85rem;
}
.legal-note.small {
  font-size: 0.72rem;
  line-height: 1.25;
  color: rgba(11, 46, 79, 0.65);
}

/* Booking footer: legal note left, actions right */
.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.6rem;
}
.booking-footer .legal-note {
  margin: 0;
  flex: 1 1 auto;
}
.booking-actions {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .booking-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-actions {
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
}

/* Compact legal details */
details.legal {
  margin: 0;
}
details.legal summary.legal-summary {
  list-style: none;
  cursor: pointer;
  color: rgba(11,46,79,0.75);
  font-weight: 600;
  font-size: 0.75rem;
}
details.legal summary.legal-summary::-webkit-details-marker {
  display: none;
}
details.legal .legal-body {
  margin-top: 0.35rem;
  color: rgba(11,46,79,0.6);
  font-size: 0.72rem;
}

/* Compact legal info button */
.legal-compact {
  background: transparent;
  border: 1px solid rgba(11,46,79,0.12);
  color: rgba(11,46,79,0.75);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: default;
  flex: 0 0 auto;
}

/* Details-based legal block: compact summary and scrollable body when opened */
.legal-details {
  margin: 0;
  width: 100%;
  max-width: 60%;
}
.legal-details summary {
  list-style: none;
  cursor: pointer;
  color: rgba(11,46,79,0.65);
  font-size: 0.9rem;
  padding: 0.15rem 0.3rem;
}
.legal-details summary::-webkit-details-marker {
  display: none;
}
.legal-details[open] summary {
  color: rgba(255,255,255,0.95);
}
.legal-content {
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  color: #302f42;
  font-size: 0.88rem;
  line-height: 1.35;
  max-height: 40vh; /* limit height to keep layout stable */
  overflow: auto;
}

@media (max-width: 720px) {
  .legal-details {
    max-width: 100%;
    order: -1; /* show above actions on very small screens */
    margin-bottom: 0.5rem;
  }
}


/* Fade animation */
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .primary-nav {
    position: fixed;
    inset: 0 0 auto;
    top: 70px;
    flex-direction: column;
    background: rgba(7, 24, 45, 0.97);
    padding: 2rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .primary-nav a {
    color: #fff;
    font-size: 1.2rem;
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .burger {
    display: flex;
  }

  .burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 1.5rem 80px;
  }

  .hero-badges {
    flex-direction: column;
    right: 1.5rem;
    bottom: 1.5rem;
  }

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

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

  .gallery-item {
    aspect-ratio: 3 / 4;
  }

  .menu-photo {
    border-radius: 18px;
  }

  .menu-photo span {
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    inset: auto 10% 0.8rem;
  }
}
.menu-card-grid__full {
  grid-column: 1 / -1;
}

.dessert-inline {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 2fr;
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.2rem;
  background: #fffdfa;
  box-shadow: 0 10px 30px rgba(7, 24, 45, 0.08);
}

.dessert-inline__media {
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background-image: var(--card-image, linear-gradient(135deg, #f9794b, #f6c343));
  background-size: cover;
  background-position: center;
}

.dessert-inline__content header {
  margin-bottom: 0.6rem;
}

.dessert-inline__content strong {
  font-size: 1.1rem;
  color: var(--midnight);
}

.dessert-inline__content small {
  display: block;
  color: rgba(7, 24, 45, 0.6);
}

.dessert-inline__options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dessert-inline__price {
  font-weight: 600;
  color: var(--blue);
  margin-right: auto;
}

@media (max-width: 640px) {
  .dessert-inline {
    grid-template-columns: 1fr;
  }
  .dessert-inline__media {
    min-height: 180px;
  }
  .drink-option-row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .drink-option-row span {
    width: 100%;
  }
}
  body.mobile-nav-active .menu-page {
    margin-top: var(--mobile-nav-placeholder-height, 140px);
  }
