:root {
  --accent: #c9a24b;
  --burgundy: #591a22;
  --burgundy-deep: #3a1018;
  --paper: #f4ecdd;
  --paper2: #ebe0cb;
  --ink: #2c1a13;
  --ink-soft: #6f5a48;
  --line: rgba(44, 26, 19, .14);
  --brick-img: repeating-linear-gradient(0deg, rgba(0,0,0,.13) 0 1px, transparent 1px 30px),
               repeating-linear-gradient(90deg, rgba(0,0,0,.13) 0 1px, transparent 1px 62px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Karla', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; }

@keyframes ppRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Accès clavier : lien d'évitement + anneau de focus cohérent avec la charte */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--burgundy);
  color: #f6ead2;
  padding: 14px 22px;
  border-radius: 0 0 10px 0;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Apparition en douceur des sections au défilement (activée uniquement par JS,
   donc le contenu reste visible même si le script ne se charge pas) */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.reveal-hidden { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .reveal-hidden { opacity: 1; transform: none; }
}

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 236, 221, .9);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(18px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: .2px;
  line-height: 1;
}
.brand-name .accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--burgundy);
  color: #fbf3e2 !important;
  font-weight: 700 !important;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(89, 26, 34, .28);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--accent); color: var(--burgundy-deep) !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--burgundy-deep);
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 10, 14, .45), rgba(36, 10, 14, .78));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 7vw, 96px) 24px;
  color: #f6ead2;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(56px, 11vw, 140px);
  line-height: .92;
  margin: 0;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero p {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  max-width: 34ch;
  margin: 22px auto 38px;
  color: #ecdcc2;
  font-weight: 300;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .4px;
  padding: 15px 32px;
  border-radius: 999px;
  transition: transform .2s, background .2s, border-color .2s;
  display: inline-block;
}
.btn-solid { background: var(--accent); color: var(--burgundy-deep); box-shadow: 0 10px 24px rgba(0, 0, 0, .3); }
.btn-solid:hover { transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(246, 234, 210, .6); color: #f6ead2; }
.btn-outline:hover { background: rgba(246, 234, 210, .12); border-color: var(--accent); }
.btn-reserve {
  padding: 17px 40px;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(201, 162, 75, .5);
  animation: btnPulse 2.4s ease-in-out infinite;
}
.btn-reserve:hover { animation: none; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(201, 162, 75, .45); transform: translateY(0); }
  50% { box-shadow: 0 16px 38px rgba(201, 162, 75, .75); transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-reserve { animation: none; }
}

/* ============ À PROPOS ============ */
.section { padding: clamp(72px, 10vw, 128px) clamp(24px, 6vw, 72px); }
.section-paper { background: var(--paper); }
.section-burgundy { background: var(--burgundy-deep); background-image: var(--brick-img); color: #f3e6cf; }

.apropos { position: relative; overflow: hidden; }
.apropos-quote-mark {
  position: absolute;
  top: -30px;
  right: 2vw;
  font-family: 'Playfair Display', serif;
  font-size: clamp(220px, 34vw, 440px);
  line-height: 1;
  color: var(--accent);
  opacity: .06;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.apropos-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.section-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
/* Sur fond clair, l'accent doré n'a pas assez de contraste (WCAG) : on fonce le texte */
.section-paper .section-label { color: var(--burgundy); }
.apropos-grid h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  margin: 0 0 24px;
  letter-spacing: -.5px;
}
.apropos-grid p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 54ch;
}
.apropos-grid p:last-of-type { margin-bottom: 34px; }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-card {
  flex: 1 1 140px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.stat-card .stat-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--burgundy);
  font-weight: 700;
}
.stat-card .stat-sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

.apropos-img-wrap { position: relative; }
.apropos-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(44, 26, 19, .22);
  display: block;
}
.apropos-bubble {
  position: absolute;
  left: 0;
  bottom: -28px;
  background: var(--burgundy);
  color: #f6ead2;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(89, 26, 34, .35);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  max-width: 200px;
  line-height: 1.2;
}

/* ============ CARTE (highlights) ============ */
.carte-wrap { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 64px);
  margin: 0;
  letter-spacing: -.5px;
}
.section-head p {
  font-size: 16.5px;
  color: #cdb89a;
  max-width: 46ch;
  margin: 18px auto 0;
  line-height: 1.6;
}
.section-paper .section-head p { color: var(--ink-soft); }

.subhead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.subhead::after { content: ''; flex: 1; height: 1px; background: rgba(201, 162, 75, .3); }
.subhead-note { font-size: 14.5px; color: #cdb89a; margin: -16px 0 24px; line-height: 1.5; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-bottom: 64px;
}
.card-grid:last-child { margin-bottom: 0; }
.menu-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 162, 75, .18);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.menu-card:hover { border-color: rgba(201, 162, 75, .5); transform: translateY(-3px); }
.menu-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.menu-card-body { padding: 18px 20px; }
.menu-card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-card-row h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  color: #f6ead2;
}
.menu-card-row .price { font-weight: 700; color: var(--accent); font-size: 16px; white-space: nowrap; }
.menu-card-body p { font-size: 14px; color: #c3ad8e; margin: 6px 0 0; line-height: 1.5; }

/* ============ AMBIANCE ============ */
.ambiance-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.ambiance-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  margin: 0;
  letter-spacing: -.5px;
}
.ambiance-head p { font-size: 16px; color: var(--ink-soft); max-width: 36ch; line-height: 1.6; margin: 0; }

.carousel-wrap { position: relative; max-width: 1240px; margin: 0 auto; }
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  -webkit-overflow-scrolling: touch;
}
.carousel-item {
  flex: none;
  width: clamp(240px, 32vw, 360px);
  scroll-snap-align: start;
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(44, 26, 19, .16);
  background: var(--burgundy-deep);
  aspect-ratio: 4 / 3;
  font-family: inherit;
  transition: transform .2s;
}
.carousel-item:hover { transform: translateY(-3px); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-item .expand-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(36, 10, 14, .55);
  backdrop-filter: blur(4px);
  color: #f6ead2;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(36, 10, 14, .8));
  color: #f6ead2;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .3px;
}
.carousel-nav {
  position: absolute;
  top: calc(50% - 28px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--burgundy);
  color: #f6ead2;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(89, 26, 34, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 5;
}
.carousel-nav:hover { background: var(--accent); color: var(--burgundy-deep); }
.carousel-nav.prev { left: -8px; }
.carousel-nav.next { right: -8px; }
.carousel-hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; text-align: center; max-width: 1240px; margin-left: auto; margin-right: auto; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 6, 9, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  animation: ppRise .25s ease both;
}
.lightbox.open { display: flex; }
.lightbox-btn {
  position: absolute;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(246, 234, 210, .12);
  color: #f6ead2;
  transition: background .2s, color .2s;
}
.lightbox-btn:hover { background: var(--accent); color: var(--burgundy-deep); }
.lightbox-close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 22px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 26px; }
.lightbox-prev { left: clamp(10px, 3vw, 40px); }
.lightbox-next { right: clamp(10px, 3vw, 40px); }
.lightbox figure { margin: 0; max-width: 1100px; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 70px rgba(0, 0, 0, .6); }
.lightbox figcaption { color: #f6ead2; font-family: 'Playfair Display', serif; font-size: 20px; text-align: center; }
.lightbox figcaption .counter { color: var(--accent); font-family: 'Karla', sans-serif; font-size: 14px; margin-left: 8px; }

/* ============ RÉSERVER ============ */
.reserver-wrap { max-width: 1200px; margin: 0 auto; }
.reserver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.infos-list { display: grid; gap: 20px; }
.infos-row { display: flex; gap: 16px; align-items: flex-start; }
.infos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  width: 96px;
  flex: none;
  padding-top: 4px;
}
.infos-row a { color: var(--ink); text-decoration: none; line-height: 1.5; font-weight: 500; font-size: 17px; transition: color .2s; }
.infos-row a:hover { color: var(--burgundy); }
.hr-line { height: 1px; background: var(--line); }
.hours { font-size: 15px; color: var(--ink); line-height: 1.7; }

/* Badge d'état en direct (ouvert/fermé), calculé depuis l'heure réelle de Genève */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.status-badge.is-open { color: #2f6b3f; border-color: rgba(47, 107, 63, .3); background: rgba(47, 107, 63, .08); }
.status-badge.is-closed { color: var(--burgundy); border-color: rgba(89, 26, 34, .25); background: rgba(89, 26, 34, .06); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.status-badge.is-open .status-dot { animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .status-badge.is-open .status-dot { animation: none; } }

.hours-row { display: flex; justify-content: space-between; gap: 18px; max-width: 280px; }
.hours-row .closed { color: var(--burgundy); font-weight: 600; }
.hours-row span:last-child:not(.closed) { color: var(--ink-soft); }
.contact-block { font-size: 15px; line-height: 1.8; }
.contact-block a { text-decoration: none; display: block; transition: color .2s; }
.contact-block a.muted { color: var(--ink); }
.contact-block a.muted:hover { color: var(--burgundy); }
.contact-block a.ig { color: var(--burgundy); font-weight: 600; }
.contact-block a.ig:hover { color: var(--accent); }

.map-embed-wrap {
  margin-top: 26px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(44, 26, 19, .16);
  border: 1px solid var(--line);
}
.map-embed { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; filter: sepia(.12) saturate(.85); }
.map-embed-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
}
.map-embed-cta:hover { color: var(--accent); }

.resa-panel {
  order: -1;
  background: var(--burgundy);
  background-image: var(--brick-img);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  color: #f6ead2;
  box-shadow: 0 24px 50px rgba(89, 26, 34, .32);
}
#reserver .section-head p { color: var(--ink-soft); }
.resa-panel h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; margin: 0 0 6px; }
.resa-panel > p { font-size: 14.5px; color: #d8c6aa; margin: 0 0 26px; line-height: 1.55; }

.resa-form { display: grid; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.form-field label .optional { text-transform: none; color: #bca684; font-weight: 400; }
.resa-form input,
.resa-form select,
.resa-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(246, 234, 210, .25);
  background: rgba(255, 255, 255, .06);
  color: #f6ead2;
  font-family: inherit;
  font-size: 15px;
}
.resa-form select option { color: #222; }
.resa-form textarea { resize: vertical; }
.resa-submit {
  margin-top: 6px;
  background: var(--accent);
  color: var(--burgundy-deep);
  border: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .4px;
  padding: 15px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: filter .2s;
}
.resa-submit:hover { filter: brightness(1.06); }

.resa-success {
  background: rgba(246, 234, 210, .1);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  animation: ppRise .5s ease both;
}
.resa-success .title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--accent); margin-bottom: 10px; }
.resa-success p { font-size: 15px; line-height: 1.6; color: #f0e2c8; margin: 0 0 22px; }
.resa-success button {
  background: var(--accent);
  color: var(--burgundy-deep);
  border: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.hidden { display: none !important; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--burgundy-deep);
  color: #d8c6aa;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 72px) 40px;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { max-width: 32ch; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-brand-row img { height: 62px; width: auto; object-fit: contain; }
.footer-brand-row .name { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 26px; color: #f6ead2; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin: 0; }
.footer-col { font-size: 14px; line-height: 1.9; }
.footer-col-title {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}
.footer-col a { color: #e7d6ba; text-decoration: none; display: block; }
.footer-col a.ig { color: var(--accent); font-weight: 600; }
.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 75, .2);
  font-size: 12.5px;
  color: #a8916f;
}

/* ============ MENU — LIVRE INTERACTIF ============ */
.menu-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.menu-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  margin: 0 0 12px;
  letter-spacing: -.5px;
}
.menu-head p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* Panneau du menu : simple, fiable, sans dépendance externe */
.menu-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: #fbf6ec;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 20px 44px rgba(44, 26, 19, .10);
}
.menu-pages { columns: 300px 2; column-gap: clamp(36px, 5vw, 64px); transition: opacity .2s ease; }
.menu-pages.switching { opacity: 0; }

/* Pestañas */
.menu-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.menu-tab {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  padding: 9px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-tab:hover { border-color: var(--accent); color: var(--ink); }
.menu-tab.active { background: var(--burgundy); color: #f6ead2; border-color: var(--burgundy); }

.menu-foot { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 26px; font-style: italic; }

/* --- Comida (acordeones) --- */
.food-cat { break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 30px; }
.food-cat h3, .drink-cat h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--burgundy);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.dish {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 2px;
  cursor: pointer;
  font: inherit;
  display: block;
  transition: background .15s;
}
.dish:hover { background: rgba(201, 162, 75, .07); }
.dish-row { display: flex; align-items: baseline; gap: 8px; }
.dish-chevron { color: var(--accent); font-size: 13px; transition: transform .3s ease; flex: none; transform: translateY(-1px); }
.dish.open .dish-chevron { transform: rotate(90deg) translateX(-1px); }
.dish-name { font-weight: 600; color: var(--ink); }
.dish-dots { flex: 1; border-bottom: 1px dotted rgba(44, 26, 19, .3); transform: translateY(-4px); }
.dish-price { font-weight: 700; color: var(--burgundy); white-space: nowrap; }
.dish-desc-inline { display: block; font-size: 12.5px; font-style: italic; color: var(--ink-soft); line-height: 1.45; margin: 4px 0 0; padding-left: 18px; }
.dish.open .dish-desc-inline { display: none; }
.dish-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.dish.open .dish-detail { grid-template-rows: 1fr; }
.dish-detail-clip { overflow: hidden; }
.dish-detail-inner { display: flex; flex-direction: column; gap: 12px; padding: 10px 0 6px; }
.dish-photo { width: 100%; height: clamp(160px, 30vw, 220px); border-radius: 12px; object-fit: cover; display: block; box-shadow: 0 10px 26px rgba(44, 26, 19, .28); }
.dish-photo-ph {
  width: 100%; height: 120px; border-radius: 12px;
  background: var(--paper2); border: 1px dashed rgba(44, 26, 19, .2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 34px; color: rgba(201, 162, 75, .55);
}
.dish-detail-text { flex: 1; min-width: 0; }
.dish-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.dish-allergens { font-size: 12px; color: var(--ink-soft); margin-top: 10px; display: flex; align-items: center; gap: 6px; opacity: .85; }
.dish-allergens::before { content: 'ⓘ'; color: var(--accent); font-size: 13px; }

/* --- Bebidas --- */
.drink-cat { break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 30px; }
.drink-note { font-size: 12.5px; font-style: italic; color: var(--ink-soft); margin: -6px 0 12px; }
.drink-subgroup-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--burgundy); margin: 14px 0 8px; }
.drink-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.drink-name { font-weight: 600; color: var(--ink); }
.drink-size { color: var(--ink-soft); font-size: 12.5px; margin-left: 5px; font-weight: 400; }
.drink-dots { flex: 1; border-bottom: 1px dotted rgba(44, 26, 19, .3); transform: translateY(-4px); }
.drink-price { font-weight: 700; color: var(--burgundy); white-space: nowrap; }
.drink-desc { font-size: 12.5px; font-style: italic; color: var(--ink-soft); margin: 0 0 10px; }
.supplements { margin-top: 10px; }

