/* ─── Asador El Bodegón — Carta Visual ─── */

:root {
  --paper:   #FAF6EE;
  --surface: #F2EAD8;
  --ink:     #1C1510;
  --gold:    #B8892E;
  --goldLt:  #D4A84B;
  --rust:    #8B3A1E;
  --muted:   #7A6A58;
  --rule:    rgba(184,137,46,0.35);
  --display: 'Cinzel', serif;
  --body:    'Cormorant Garamond', Georgia, serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }

/* paper texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.012) 3px, rgba(0,0,0,0.012) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0,0,0,0.008) 3px, rgba(0,0,0,0.008) 4px);
  pointer-events: none;
  z-index: 0;
}

#root { position: relative; z-index: 1; }

/* ─── Generic typography ─── */
.eyebrow {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.eyebrow-light { color: var(--goldLt); }

.page-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin: 12px 0 6px;
}
.page-title-light { color: var(--paper); }

.page-sub {
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.page-sub-light { color: rgba(250,246,238,0.82); }

/* ─── Ornaments ─── */
.ornament {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin: 12px 0;
}
.orn-line { display:inline-block; height: 0.5px; background: var(--gold); }
.orn-dot { display:inline-block; width: 4px; height: 4px; background: var(--goldLt); border-radius: 50%; }
.orn-diamond { display:inline-block; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.ornament-sm .orn-line { background: var(--rule); }

.rule-gold {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px 0;
}
.rule-gold .line { width: 80px; height: 0.5px; background: var(--rule); }
.rule-gold .gem { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.rule-gold-light .line { background: rgba(212,168,75,0.5); }
.rule-gold-light .gem { background: var(--goldLt); }

/* ─── Brand mark ─── */
.brand {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 2px;
  cursor: pointer;
}
.brand-a {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}
.brand-b {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.brand-sm .brand-b { font-size: 18px; }
.brand-md .brand-b { font-size: 28px; }
.brand-lg .brand-b { font-size: 64px; }

/* ─── Photo ─── */
.photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
[data-photos="off"] .photo { display: none !important; }

/* ─── Placeholder ─── */
.ph {
  position: relative;
  width: 100%;
  overflow: hidden;
}
[data-photos="off"] .ph { display: none !important; }
[data-photos="off"] .sec-card-art,
[data-photos="off"] .combo-art { display: none !important; }
[data-photos="off"] .sec-detail-hero { min-height: 280px; background: var(--ink); }
[data-photos="off"] .sec-detail-art { display: none; }
[data-photos="off"] .gallery { display: none; }
[data-photos="off"] .hero-bg { display: none; }
[data-photos="off"] .hero { background: var(--paper); }
[data-photos="off"] .hero .hero-asador,
[data-photos="off"] .hero .hero-name { color: var(--ink); }
[data-photos="off"] .hero .hero-tagline,
[data-photos="off"] .hero .hero-place,
[data-photos="off"] .hero .hero-foot { color: var(--muted); }

.ph-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ph-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 0.5px solid currentColor;
  opacity: 0.6;
}
.ph-tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.ph-tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.ph-bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.ph-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.ph-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
  border: 0.5px solid rgba(0,0,0,0.08);
  color: inherit;
}
.ph-dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }

/* dark variant label */
.ph[style*="0.22"] .ph-label {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.12);
}

/* ─── TOP BAR ─── */
.topbar {
  position: sticky; top: 0;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--rule);
  z-index: 50;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.topnav {
  display: flex; gap: 28px;
  justify-content: center;
}
.topnav-item {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 0.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topnav-item:hover { color: var(--ink); }
.topnav-item.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.topbar-meta {
  justify-self: end;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph { height: 100%; aspect-ratio: auto !important; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.85) 100%),
    linear-gradient(180deg, rgba(20,15,10,0.4), rgba(20,15,10,0.7));
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--paper);
  padding: 60px 32px;
  max-width: 720px;
}
.hero-mark { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-asador {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--goldLt);
  text-transform: uppercase;
  margin: 24px 0 10px;
}
.hero-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.16em;
  color: var(--paper);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
}
.hero-tagline {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,246,238,0.85);
  margin: 18px auto 8px;
  max-width: 440px;
}
.hero-place {
  font-family: 'Cormorant SC', var(--display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--goldLt);
  text-transform: uppercase;
  margin: 16px 0 36px;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 16px 32px;
  border: 0.5px solid var(--goldLt);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn-gold:hover {
  background: var(--goldLt);
  color: var(--ink);
}
.btn-caret { font-size: 14px; letter-spacing: 0; }

.hero-foot {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: center; align-items: center; gap: 18px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(212,168,75,0.8);
  text-transform: uppercase;
}
.hero-foot .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; opacity: 0.7; }

/* ─── CARTA (landing) ─── */
.carta-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}
.carta-intro {
  text-align: center;
  margin-bottom: 56px;
}
.carta-intro .page-title { margin-top: 10px; }

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.sec-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  text-align: left;
  background: transparent;
  transition: transform 0.3s ease;
}
.sec-card:hover { transform: translateY(-4px); }
.sec-card:hover .sec-cta .caret { transform: translateX(6px); }
.sec-card:hover .sec-title { color: var(--rust); }

.sec-card-art {
  position: relative;
  border: 0.5px solid var(--rule);
  background: var(--surface);
  margin-bottom: 18px;
  overflow: hidden;
}
.sec-card-art .ph { aspect-ratio: 4/5; }
.sec-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink);
  background: rgba(250,246,238,0.92);
  padding: 6px 10px;
  border: 0.5px solid var(--rule);
}
.sec-card-body { padding: 0 4px; }
.sec-card-body .sec-label {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.sec-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 8px 0 8px;
  transition: color 0.2s;
}
.sec-blurb {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.sec-cta {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.sec-cta .caret { transition: transform 0.25s; }

/* ─── SECTION DETAIL ─── */
.sec-detail-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  overflow: hidden;
}
.sec-detail-art { position: absolute; inset: 0; }
.sec-detail-art .ph { height: 100%; aspect-ratio: auto !important; }
.sec-detail-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background:
    radial-gradient(ellipse at center, rgba(20,15,10,0.5), rgba(20,15,10,0.8));
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px 40px 60px;
  color: var(--paper);
}
.back-link {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--goldLt);
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
}
.back-link:hover { color: var(--paper); }
.back-link .caret { transition: transform 0.25s; }
.back-link:hover .caret { transform: translateX(-4px); }
.sec-detail-title { text-align: center; max-width: 720px; margin: 60px auto 0; }
.sec-detail-title .eyebrow { color: var(--goldLt); }

.sec-detail-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

/* ── grid list (compartir, postres) ── */
.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.dish-item {
  display: flex; align-items: baseline; gap: 10px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.dish-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.dish-detail {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.dish-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.22);
  margin: 0 6px 4px;
  min-width: 12px;
}
.dish-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── meat list ── */
.meat-list { display: flex; flex-direction: column; }
.meat-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.meat-item:last-of-type { border-bottom: 0; }
.meat-num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  padding-top: 4px;
}
.meat-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.meat-weight {
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.meat-note {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}
.meat-desc {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 560px;
}
.meat-price {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 2px;
}

/* ── wine list ── */
.wine-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.wine-tabs {
  display: flex; flex-direction: column;
  gap: 2px;
  border-right: 0.5px solid var(--rule);
  padding-right: 24px;
}
.wine-tab {
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  color: var(--muted);
  transition: color 0.2s;
}
.wine-tab:last-child { border-bottom: 0; }
.wine-tab-name {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wine-tab-count {
  font-family: var(--display);
  font-size: 11px;
  color: var(--gold);
  opacity: 0.55;
}
.wine-tab:hover { color: var(--ink); }
.wine-tab.is-active { color: var(--ink); }
.wine-tab.is-active .wine-tab-count { opacity: 1; }
.wine-tab.is-active .wine-tab-name { font-weight: 500; }

.wine-region-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 22px;
}
.wine-region-eyebrow {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.wine-region-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.wine-region-line {
  flex: 1;
  height: 0.5px;
  background: var(--rule);
}
.wine-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.wine-item {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.wine-idx {
  font-family: var(--display);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
  width: 24px;
  flex-shrink: 0;
}
.wine-name { font-size: 16px; color: var(--ink); flex-shrink: 1; }
.wine-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.18);
  margin: 0 4px 4px;
  min-width: 10px;
}
.wine-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── cocktail ── */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.combo-card {
  background: var(--surface);
  border: 0.5px solid var(--rule);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.combo-art { width: 100%; }
.combo-art .ph { aspect-ratio: 1/1; }
.combo-body { padding: 22px 22px 26px; text-align: center; }
.combo-idx {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.combo-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 10px 0 10px;
}
.combo-desc {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.combo-price {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--rust);
  display: inline-block;
  padding-top: 10px;
  border-top: 0.5px solid var(--rule);
  white-space: nowrap;
}

/* ─── Gallery strip ─── */
.gallery {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}
.gallery-2 { grid-template-columns: 1fr 1fr; }
.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  display: flex; flex-direction: column;
  gap: 10px;
}
.gallery-item .photo,
.gallery-item .ph {
  border: 0.5px solid var(--rule);
  background: var(--surface);
}
.gallery-item figcaption {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .gallery-3, .gallery-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .gallery-2, .gallery-3, .gallery-4 { grid-template-columns: 1fr; }
}

/* ─── Dessert grid ─── */
.dessert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}
.dessert-card {
  background: var(--surface);
  border: 0.5px solid var(--rule);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.dessert-art .photo,
.dessert-art .ph { aspect-ratio: 4/3; }
.dessert-body {
  padding: 20px 22px 24px;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.dessert-body .combo-name { margin: 4px 0 6px; }
.dessert-body .combo-price {
  border-top: 0.5px solid var(--rule);
  padding-top: 10px;
}
@media (max-width: 900px) {
  .dessert-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .dessert-grid { grid-template-columns: 1fr; }
}

/* ─── Pager ─── */
.sec-pager {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule);
}
.pager-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  transition: color 0.2s;
}
.pager-btn:hover { color: var(--ink); }
.pager-btn .caret { color: var(--gold); }
.pager-home { color: var(--gold); }

/* ─── Site foot ─── */
.sitefoot {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 40px;
  margin-top: 40px;
}
.sitefoot-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.sitefoot .brand-a { color: var(--goldLt); }
.sitefoot .brand-b { color: var(--paper); font-size: 22px; }
.sitefoot-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sitefoot-meta {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.sitefoot-meta .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

/* ─── Noir palette tweaks ─── */
[data-palette="noir"] body, [data-palette="noir"] html { background: var(--paper); }
[data-palette="noir"] .topbar { background: rgba(21,17,12,0.92); }
[data-palette="noir"] .sitefoot { background: #0B0907; }
[data-palette="noir"] .sec-card-art { background: var(--surface); }
[data-palette="noir"] .combo-card { background: var(--surface); }
[data-palette="noir"] .sec-num { background: rgba(21,17,12,0.92); color: var(--paper); }
[data-palette="noir"] .ph-label { background: rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
[data-palette="noir"] .dish-item,
[data-palette="noir"] .meat-item,
[data-palette="noir"] .wine-item { border-bottom-color: rgba(255,255,255,0.06); }
[data-palette="noir"] .dish-dots,
[data-palette="noir"] .wine-dots { border-bottom-color: rgba(255,255,255,0.18); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .section-grid { grid-template-columns: 1fr 1fr; }
  .topnav { display: none; }
  .topbar-inner { grid-template-columns: 1fr auto; }
  .wine-block { grid-template-columns: 1fr; gap: 24px; }
  .wine-tabs { flex-direction: row; overflow-x: auto; padding-right: 0; border-right: 0; border-bottom: 0.5px solid var(--rule); }
  .wine-tab { padding: 10px 16px; border-bottom: 0; border-right: 0.5px solid rgba(0,0,0,0.06); }
  .wine-cols { grid-template-columns: 1fr; gap: 0; }
  .dish-grid { grid-template-columns: 1fr; gap: 0; }
  .combo-grid { grid-template-columns: 1fr; }
  .meat-item { grid-template-columns: 1fr auto; }
  .meat-num { display: none; }
  .page-title { font-size: 36px; }
}
@media (max-width: 600px) {
  .section-grid { grid-template-columns: 1fr; }
  .carta-page, .sec-detail-body { padding-left: 24px; padding-right: 24px; }
  .topbar-inner { padding: 14px 24px; }
}
