/* 00-tokens.css */
:root {
  --espresso: #14100d;
  --espresso-2: #1f1813;
  --ink: #2a1f18;
  --cream: #f6eee0;
  --paper: #efe3cb;
  --paper-2: #e6d5b4;
  --wine: #8e2a22;
  --wine-bright: #b8382c;
  --basil: #2f6b45;
  --basil-bright: #4f9a68;
  --gold: #c9a15a;
  --muted: #6f5a49;
  --muted-dark: #b9a791;
  --line: rgb(42 31 24 / 0.16);
  --line-dark: rgb(246 238 224 / 0.14);

  --font-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --text-sm: 0.875rem;
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --text-h3: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  --text-h2: clamp(2.2rem, 1.4rem + 3.2vw, 4rem);
  --text-hero: clamp(3rem, 1.4rem + 6.6vw, 7.2rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);

  --wrap: min(1240px, 100% - 2rem);
  --radius-sm: 4px;
  --radius-lg: 18px;
  --shadow-lift: 0 30px 60px -28px rgb(20 16 13 / 0.55);
  --shadow-card: 0 1px 0 rgb(255 255 255 / 0.6) inset, 0 18px 40px -30px rgb(42 31 24 / 0.5);

  --duration-fast: 160ms;
  --duration-normal: 320ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --bar-height: 0px;
}
@media (max-width: 759px) {
  :root { --bar-height: calc(64px + env(safe-area-inset-bottom)); }
}

/* 10-base.css */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 132px; }
html.has-sheet { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
body {
  margin: 0;
  padding-bottom: var(--bar-height);
  background: var(--cream);
  color: var(--ink);
  font: 400 var(--text-base)/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.015em; text-wrap: balance; }
h2 { font-size: var(--text-h2); }
p { margin: 0; text-wrap: pretty; }
em { font-style: italic; }
address { font-style: normal; }
.wrap { width: var(--wrap); margin-inline: auto; }
.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: 0.75rem 1rem; background: var(--espresso); color: var(--cream); }
.skip:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--wine-bright); outline-offset: 3px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--space-sm);
  font: 700 0.72rem/1 var(--font-body); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: linear-gradient(90deg, var(--basil) 33%, var(--cream) 33% 66%, var(--wine-bright) 66%); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 52px; padding: 0 1.5rem;
  border: 1.5px solid currentColor; border-radius: 999px;
  font: 600 0.95rem/1 var(--font-body); letter-spacing: 0.01em; text-decoration: none;
  background: transparent;
  transition: transform var(--duration-fast) var(--ease-out-expo), background-color var(--duration-fast), color var(--duration-fast), box-shadow var(--duration-normal);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--wine); border-color: var(--wine); color: var(--cream); box-shadow: 0 14px 30px -16px rgb(142 42 34 / 0.9); }
.btn-primary:hover { background: var(--wine-bright); border-color: var(--wine-bright); }
.btn-ghost:hover { background: currentColor; }
.btn-ghost:hover > * { color: var(--espresso); }
.btn-whatsapp { width: 100%; background: #1f7a4a; border-color: #1f7a4a; color: #fff; }
.btn-whatsapp:hover { background: #229058; }
.btn:disabled { opacity: 0.45; pointer-events: none; }
.text-link { display: inline-block; margin-top: var(--space-sm); font-weight: 600; color: var(--wine); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link:hover { color: var(--wine-bright); }

/* 20-header.css */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(20 16 13 / 0.92); color: var(--cream);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; gap: var(--space-md); min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand strong { display: block; font: 600 1.3rem/1 var(--font-display); }
.brand small { display: block; margin-top: 4px; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }
.main-nav { display: none; gap: 1.6rem; font-size: 0.9rem; }
.main-nav a { text-decoration: none; opacity: 0.82; padding-block: 0.4rem; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size var(--duration-normal) var(--ease-out-expo), opacity var(--duration-fast); }
.main-nav a:hover { opacity: 1; background-size: 100% 1px; }
.open-pill { display: none; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: var(--muted-dark); }
.open-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--wine-bright); }
.open-pill.is-open { color: var(--cream); }
.open-pill.is-open::before { background: var(--basil-bright); box-shadow: 0 0 0 4px rgb(79 154 104 / 0.25); }
.header-cart, .lang-switch {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 42px; padding: 0 1rem; border-radius: 999px;
  border: 1px solid var(--line-dark); background: transparent;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: background-color var(--duration-fast), border-color var(--duration-fast);
}
.header-cart:hover, .lang-switch:hover { border-color: var(--cream); }
.page-carta .header-cart { background: var(--wine); border-color: var(--wine); }
.cart-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--wine-bright); color: #fff; font-size: 0.72rem; }
.cart-count[data-empty="true"] { background: rgb(246 238 224 / 0.18); }
@media (min-width: 760px) {
  .open-pill:not([hidden]) { display: inline-flex; }
}
@media (min-width: 1000px) {
  .main-nav { display: flex; }
}

/* Barra inferior de acciones locales (móvil) */
.mobile-actions {
  position: fixed; inset: auto 0 0 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr 1.3fr;
  height: var(--bar-height); padding-bottom: env(safe-area-inset-bottom);
  background: var(--espresso); color: var(--cream);
  border-top: 1px solid var(--line-dark);
}
.mobile-actions > * {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  border: 0; background: none; font-size: 0.72rem; font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
}
.mobile-actions .icon { width: 22px; height: 22px; }
.mobile-actions .action-order { flex-direction: row; gap: 0.5rem; margin: 8px 8px 8px 0; border-radius: 12px; background: var(--wine); font-size: 0.9rem; }
@media (min-width: 760px) { .mobile-actions { display: none; } }
.brand small, .brand strong { white-space: nowrap; }
@media (max-width: 759px) {
  .header-cart { display: none; }
  .header-inner { min-height: 60px; }
}

/* 30-hero.css */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 1rem + 5vw, 6rem) clamp(5rem, 3rem + 6vw, 9rem);
  background:
    radial-gradient(60% 70% at 85% 30%, rgb(142 42 34 / 0.28), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgb(47 107 69 / 0.18), transparent 70%),
    var(--espresso);
  color: var(--cream);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: var(--space-lg); align-items: center; }
.hero h1 { display: grid; gap: var(--space-md); }
.hero-kicker { font: 700 0.78rem/1.2 var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero-display { font-size: var(--text-hero); font-weight: 500; line-height: 0.94; letter-spacing: -0.035em; }
.hero-display em { display: block; color: #f0c9b6; font-weight: 500; }
.hero-lead { max-width: 34ch; margin-top: var(--space-md); font-size: var(--text-lg); color: rgb(246 238 224 / 0.8); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-lg); }
.hero-ctas .btn-ghost { color: var(--cream); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: var(--space-lg) 0 0; padding: 0; list-style: none; font-size: 0.88rem; color: var(--muted-dark); }
.rating { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; color: var(--cream); }
.rating .icon { color: var(--gold); }
.rating:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero-media { position: relative; min-height: 420px; }
.hero-media figure { margin: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main {
  width: 78%; margin-left: auto !important; aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.hero-photo-side {
  position: absolute; left: 0; bottom: -2rem; width: 46%; aspect-ratio: 1;
  border: 6px solid var(--espresso); border-radius: 50%;
  box-shadow: var(--shadow-lift);
}
.hero-stamp {
  position: absolute; top: 8%; left: 6%;
  display: grid; place-items: center; width: 108px; height: 108px; border-radius: 50%;
  background: var(--wine); color: var(--cream);
  font: 600 0.62rem/1.3 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 0 0 6px var(--espresso), 0 0 0 7px rgb(201 161 90 / 0.5);
}
.hero-stamp span { display: block; font: italic 500 1.25rem/1 var(--font-display); letter-spacing: 0; text-transform: none; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-media { min-height: 620px; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 900ms var(--ease-out-expo) both; }
  .hero-ctas { animation-delay: 120ms !important; }
  .hero-proof { animation-delay: 220ms !important; }
  .hero-photo-main { animation: rise 1100ms 80ms var(--ease-out-expo) both; }
  .hero-photo-side { animation: rise 1100ms 220ms var(--ease-out-expo) both; }
  .hero-stamp { animation: stamp 900ms 500ms var(--ease-out-expo) both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes stamp { from { opacity: 0; transform: rotate(-40deg) scale(0.6); } }

/* Banda de información local, montada sobre el hero */
.info-band { position: relative; z-index: 2; margin-top: clamp(-4.5rem, -3rem - 2vw, -3rem); }
.info-grid { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.info-card { padding: var(--space-md) var(--space-md) var(--space-lg); background: var(--cream); }
.info-card h2 { margin-bottom: 0.75rem; font-size: var(--text-h3); }
.info-card--accent { background: var(--paper); }
.info-status { margin-bottom: 0.75rem; font-weight: 600; color: var(--wine); }
.info-status.is-open { color: var(--basil); }
.hours { display: grid; gap: 0.35rem; margin: 0; font-size: 0.92rem; }
.hours div { display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.5rem; padding-bottom: 0.35rem; border-bottom: 1px dashed var(--line); }
.hours dt { font-weight: 600; }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; color: var(--muted); }
.steps { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.4rem; }
.steps li::marker { font-family: var(--font-display); font-weight: 700; color: var(--wine); }
@media (min-width: 760px) { .info-grid { grid-template-columns: 1.15fr 1fr 1fr; } }

/* 50-menu.css */
.menu { padding-top: var(--space-section); padding-bottom: var(--space-section); background: var(--paper); background-image: radial-gradient(rgb(42 31 24 / 0.06) 1px, transparent 1px); background-size: 14px 14px; }
.menu-intro { display: grid; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.menu-intro p:last-child { max-width: 52ch; color: var(--muted); }
.menu-intro a { color: var(--wine); font-weight: 600; }

.menu-nav { position: sticky; top: 68px; z-index: 30; background: rgb(239 227 203 / 0.94); backdrop-filter: blur(10px); border-block: 1px solid var(--line); }
.menu-nav ul { display: flex; gap: 0.4rem; width: var(--wrap); margin: 0 auto; padding: 0.6rem 0; list-style: none; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: block; white-space: nowrap; scroll-snap-align: start;
  padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid transparent;
  font-size: 0.88rem; font-weight: 600; text-decoration: none; color: var(--muted);
  transition: background-color var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}
.menu-nav a:hover { color: var(--ink); border-color: var(--line); }
.menu-nav a[aria-current] { background: var(--espresso); color: var(--cream); }

.menu-body { display: grid; gap: calc(var(--space-lg) * 1.6); padding-top: var(--space-lg); }
.menu-cat { display: grid; gap: var(--space-lg); scroll-margin-top: 140px; }
.menu-cat-head { display: grid; grid-template-columns: minmax(96px, 38%) 1fr; gap: var(--space-md); align-items: end; }
.menu-cat-photo { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px var(--radius-sm) var(--radius-sm); box-shadow: var(--shadow-card); }
.menu-cat-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out-expo); }
.menu-cat:hover .menu-cat-photo img { transform: scale(1.04); }
.menu-cat-num { font: italic 500 1.1rem/1 var(--font-display); color: var(--wine); }
.menu-cat-head h3 { margin: 0.35rem 0; font-size: var(--text-h2); }
.menu-cat-sub { color: var(--muted); }
.order-badge { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; padding: 0.3rem 0.7rem; border-radius: 999px; background: rgb(47 107 69 / 0.12); color: var(--basil); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.order-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.dish-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.dish-line { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 0.6rem; }
.dish-name { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; }
.dish-leader { flex: 1; min-width: 1.5rem; border-bottom: 1.5px dotted rgb(42 31 24 / 0.35); transform: translateY(-4px); }
.dish-price { font: 600 1.15rem/1 var(--font-display); font-variant-numeric: tabular-nums; color: var(--wine); white-space: nowrap; }
.dish-desc { font-size: 0.92rem; color: var(--muted); }
.add-btn {
  display: inline-flex; align-items: center; gap: 0.35rem; min-height: 40px; padding: 0 0.95rem;
  border: 1.5px solid var(--espresso); border-radius: 999px; background: transparent;
  font-size: 0.82rem; font-weight: 700;
  transition: background-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast) var(--ease-out-expo);
}
.add-btn span { font-size: 1.1rem; line-height: 1; }
.add-btn:hover { background: var(--espresso); color: var(--cream); }
.add-btn:active { transform: scale(0.95); }
.local-tag { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.extras-note { padding: var(--space-lg); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); }
.extras-note h3 { margin-bottom: var(--space-sm); font-size: var(--text-h3); }
.extras-note ul { display: grid; gap: 0.6rem; margin: 0; padding: 0; list-style: none; font-size: 0.92rem; color: var(--muted); }
.extras-note strong { display: inline-block; min-width: 5.5rem; color: var(--wine); font-family: var(--font-display); }
.menu-footnote { font-size: 0.82rem; color: var(--muted); }

@media (min-width: 900px) {
  .menu-cat { grid-template-columns: 260px 1fr; align-items: start; gap: var(--space-lg) clamp(2rem, 5vw, 5rem); }
  .menu-cat-head { position: sticky; top: 150px; grid-template-columns: 1fr; align-items: start; }
  .menu-cat-head h3 { font-size: var(--text-h3); }
  .dish-list.is-long { grid-template-columns: 1fr 1fr; column-gap: clamp(1.5rem, 3vw, 3rem); }
}

/* 60-story-social.css */
.story { padding-block: var(--space-section); }
.story-grid { display: grid; gap: var(--space-lg); align-items: center; }
.story-copy { display: grid; gap: var(--space-sm); max-width: 56ch; }
.story-copy h2 { margin-bottom: var(--space-sm); }
.story-copy p { color: var(--muted); }
.story-video, .story-photo { margin: 0; overflow: hidden; box-shadow: var(--shadow-lift); }
.story-video { border-radius: var(--radius-lg); aspect-ratio: 4 / 3; background: var(--espresso); }
.story-video video { width: 100%; height: 100%; object-fit: cover; }
.story-photo { width: 62%; margin-top: -5rem !important; margin-left: auto !important; aspect-ratio: 3 / 4; border-radius: 999px 999px var(--radius-sm) var(--radius-sm); border: 6px solid var(--cream); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1.1fr 0.55fr; }
  .story-photo { width: auto; margin: 6rem 0 0 -5rem !important; }
}

.social { padding-block: var(--space-section); background: var(--espresso); color: var(--cream); }
.social .eyebrow { color: var(--gold); }
.social-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-lg); }
.social-head h2 a { font-style: italic; font-weight: 500; text-decoration: none; background: linear-gradient(90deg, #f0c9b6, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.social-head .btn { color: var(--cream); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-block: 0; padding: 0; list-style: none; }
.social-grid a { display: block; height: 100%; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; }
.social-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out-expo), filter var(--duration-normal); }
.social-grid a:hover img { transform: scale(1.06); filter: saturate(1.15); }
@media (min-width: 760px) {
  .social-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
  .social-grid li:first-child { grid-column: span 2; grid-row: span 2; }
  .social-grid li:first-child a { aspect-ratio: auto; }
}
.review-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md);
  margin-top: var(--space-lg); padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  background: rgb(246 238 224 / 0.04);
}
.review-cta p { max-width: 60ch; color: var(--muted-dark); }
.review-cta strong { color: var(--cream); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); vertical-align: -3px; }

/* 70-location-faq-footer.css */
.location { padding-block: var(--space-section); background: var(--paper); }
.location-grid { display: grid; gap: var(--space-lg); align-items: stretch; }
.location-copy { display: grid; gap: var(--space-md); align-content: start; }
.location-copy h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); }
.nap { display: grid; gap: 0.2rem; }
.nap--large { font-size: var(--text-lg); }
.nap--large a { font-weight: 600; color: var(--wine); }
.location-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.location-ctas .btn-ghost { color: var(--ink); }
.location-ctas .btn-ghost:hover { color: var(--cream); background: var(--ink); }
.map-frame { position: relative; min-height: 380px; overflow: hidden; border-radius: var(--radius-lg); background: var(--espresso); box-shadow: var(--shadow-lift); }
.map-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-load { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); min-height: 48px; padding: 0 1.4rem; border: 0; border-radius: 999px; background: var(--cream); font-weight: 700; box-shadow: var(--shadow-lift); }
.map-load:hover { background: #fff; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 0.9fr 1.1fr; } .map-frame { min-height: 520px; } }

.faq { padding-block: var(--space-section); }
.faq-grid { display: grid; gap: var(--space-lg); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; cursor: pointer; list-style: none;
  font: 600 clamp(1.15rem, 1rem + 0.5vw, 1.4rem)/1.25 var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-body); font-weight: 400; color: var(--wine); transition: transform var(--duration-normal) var(--ease-out-expo); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.2rem; max-width: 64ch; color: var(--muted); }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; } }

.site-footer { padding-block: var(--space-lg); background: var(--espresso); color: var(--muted-dark); font-size: 0.9rem; }
.footer-grid { display: grid; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: grid; gap: var(--space-sm); color: var(--cream); }
.footer-brand p { color: var(--muted-dark); max-width: 36ch; }
.site-footer .nap strong { color: var(--cream); }
.footer-links { display: grid; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.footer-links a, .site-footer .nap a { text-decoration: none; }
.footer-links a:hover, .site-footer .nap a:hover { color: var(--cream); text-decoration: underline; }
.footer-note { padding-top: var(--space-md); font-size: 0.8rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* 80-sheets.css */
.sheet {
  width: min(520px, 100%); max-width: 100%; max-height: 100dvh; margin: auto 0 0 auto; padding: 0;
  border: 0; background: var(--cream); color: var(--ink);
  box-shadow: -30px 0 60px -30px rgb(0 0 0 / 0.5);
}
@media (min-width: 760px) { .sheet { height: 100dvh; margin: 0 0 0 auto; } }
@media (max-width: 759px) { .sheet { width: 100%; max-height: 92dvh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; } }
.sheet--small { height: auto; max-height: 92dvh; margin: auto; border-radius: var(--radius-lg); }
@media (max-width: 759px) { .sheet--small { margin: auto 0 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; } }
.sheet::backdrop { background: rgb(20 16 13 / 0.6); backdrop-filter: blur(3px); }
.sheet[open] { animation: sheet-in var(--duration-normal) var(--ease-out-expo); }
@keyframes sheet-in { from { transform: translateY(24px); opacity: 0; } }
.sheet-inner { display: flex; flex-direction: column; gap: var(--space-md); min-height: 100%; padding: var(--space-md); }
.sheet-head { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.sheet-head h2 { font-size: var(--text-h3); }
.sheet-head .eyebrow { margin-bottom: 0.4rem; }
.sheet-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.5rem; line-height: 1; }
.sheet-close:hover { background: var(--paper); }
.sheet-foot { position: sticky; bottom: calc(-1 * var(--space-md)); display: grid; gap: 0.75rem; margin: auto calc(-1 * var(--space-md)) calc(-1 * var(--space-md)); padding: var(--space-md); background: var(--cream); border-top: 1px solid var(--line); }
.sheet-note { font-size: 0.78rem; color: var(--muted); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-total strong { font: 600 1.6rem/1 var(--font-display); color: var(--wine); }
.cart-empty { color: var(--muted); }
.cart-lines { display: grid; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cart-line h3 { font-size: 1.2rem; }
.cart-line-extras { font-size: 0.82rem; color: var(--muted); }
.cart-line-price { font-family: var(--font-display); color: var(--wine); }
.cart-line .stepper { grid-column: 1 / -1; justify-self: start; }

.stepper { align-self: flex-start; display: inline-flex; align-items: center; border: 1.5px solid var(--ink); border-radius: 999px; }
.stepper button { width: 44px; height: 44px; border: 0; background: none; font-size: 1.3rem; }
.stepper button:disabled { opacity: 0.3; }
.stepper output { min-width: 2ch; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }
.stepper--small button { width: 36px; height: 36px; font-size: 1.1rem; }

.order-fields, .extras { display: grid; gap: 0.85rem; margin: 0; padding: 0; border: 0; min-width: 0; }
.order-fields legend, .extras legend { margin-bottom: 0.6rem; padding: 0; font: 600 1.25rem/1 var(--font-display); }
.order-fields label { display: grid; gap: 0.3rem; font-size: 0.85rem; font-weight: 600; }
.order-fields small { font-weight: 400; color: var(--muted); }
.order-fields input:not([type="radio"]), .order-fields textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0.9rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fffaf2; font: inherit; font-size: 1rem; color: var(--ink);
}
.order-fields input:focus, .order-fields textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgb(142 42 34 / 0.15); }
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.mode { position: relative; display: flex !important; align-items: center; gap: 0.5rem; padding: 0.8rem; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; }
.mode:has(input:checked) { border-color: var(--wine); background: rgb(142 42 34 / 0.06); }
.mode input { accent-color: var(--wine); }
.form-error { color: var(--wine-bright); font-weight: 600; font-size: 0.88rem; }
.form-error:empty { display: none; }
.item-desc { color: var(--muted); }
.extras { grid-template-columns: 1fr 1fr; gap: 0.4rem; max-height: 42dvh; overflow-y: auto; }
.extras legend { grid-column: 1 / -1; }
.extra { display: grid; grid-template-columns: auto 1fr; gap: 0 0.5rem; align-items: center; padding: 0.55rem 0.7rem; border: 1px solid var(--line); border-radius: 10px; font-size: 0.88rem; cursor: pointer; }
.extra small { grid-column: 2; color: var(--muted); }
.extra:has(input:checked) { border-color: var(--basil); background: rgb(47 107 69 / 0.08); }
.extra input { accent-color: var(--basil); }

.toast {
  position: fixed; left: 50%; bottom: calc(var(--bar-height) + 1rem); z-index: 60;
  padding: 0.8rem 1.2rem; border-radius: 999px; background: var(--espresso); color: var(--cream); font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  transform: translate(-50%, 150%); opacity: 0; transition: transform var(--duration-normal) var(--ease-out-expo), opacity var(--duration-normal);
  pointer-events: none;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.pickup-note { padding: 0.8rem; border: 1.5px solid var(--wine); border-radius: 10px; background: rgb(142 42 34 / 0.06); font-size: 0.92rem; }

/* 90-carta.css */
.carta-hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); background: var(--espresso); color: var(--cream); }
.carta-hero .eyebrow { color: var(--gold); }
.carta-hero h1 { font-size: var(--text-h2); font-weight: 500; }
.carta-hero h1 em { color: #f0c9b6; }
.carta-hero p { margin-top: var(--space-sm); max-width: 56ch; color: var(--muted-dark); }
.carta-nap a { color: var(--cream); }
.page-carta .menu { padding-top: 0; }
.page-carta .menu-nav { top: 68px; }

/* 95-motion.css */
/* Movimiento: solo transform/opacity. Todo se desactiva con prefers-reduced-motion. */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out-expo), transform 900ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Cinta de texto entre el horario y la carta */
.marquee {
  overflow: hidden;
  padding-block: 1.1rem;
  background: var(--wine);
  color: var(--cream);
  border-block: 1px solid rgb(0 0 0 / 0.2);
  margin-top: var(--space-lg);
}
.marquee-track {
  display: flex; gap: 2.2rem; width: max-content;
  font: italic 500 clamp(1.4rem, 1rem + 1.8vw, 2.4rem)/1 var(--font-display);
  animation: marquee 38s linear infinite;
}
.marquee-track i { font-style: normal; font-size: 0.6em; color: var(--gold); align-self: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sello con texto girando */
.hero-stamp { display: grid; place-items: center; }
.stamp-ring { position: absolute; inset: 6px; width: calc(100% - 12px); height: calc(100% - 12px); overflow: visible; animation: spin 22s linear infinite; }
.stamp-ring text { font: 700 9.4px/1 var(--font-body); letter-spacing: 0.18em; fill: var(--cream); }
.hero-stamp span { font-size: 1.05rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contador del pedido */
.cart-count.is-bumping { animation: bump 520ms var(--ease-out-expo); }
@keyframes bump { 30% { transform: scale(1.45); } 60% { transform: scale(0.92); } }

/* Botón agregar: brillo al pasar */
.add-btn { position: relative; overflow: hidden; }
.add-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgb(255 255 255 / 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
}
.add-btn:hover::after { transform: translateX(120%); transition: transform 700ms var(--ease-out-expo); }

/* Parallax suave con animaciones ligadas al scroll (navegadores compatibles) */
@supports (animation-timeline: view()) {
  .hero-photo-main img, .menu-cat-photo img, .story-photo img {
    animation: drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
    scale: 1.12;
  }
  .hero-photo-side { animation: float-up linear both; animation-timeline: view(); animation-range: exit 0% exit 100%; }
}
@keyframes drift { from { transform: translateY(-5%); } to { transform: translateY(5%); } }
@keyframes float-up { to { transform: translateY(-40px) rotate(-4deg); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .stamp-ring, .hero-photo-main img, .menu-cat-photo img, .story-photo img, .hero-photo-side { animation: none !important; }
  .marquee-track { flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-track > :nth-child(n + 13) { display: none; }
}
