/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --verde:        #4F7A5C;
  --verde-dark:   #3B5C46;
  --verde-deep:   #22331F;
  --verde-deeper: #17241A;
  --crema:        #F3EFDD;
  --crema-2:      #EAE2C8;
  --crema-paper:  #FBF9F1;
  --dorado:       #C7A542;
  --dorado-dark:  #9C7F2E;
  --ink:          #262A20;
  --ink-soft:     #4A4E3E;
  --ink-mute:     #6E7260;
  --line:         rgba(38,42,32,0.14);
  --line-on-dark: rgba(243,239,221,0.18);

  --serif-script: "Caveat", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 18px 40px -14px rgba(23,36,26,0.28), 0 4px 12px -4px rgba(23,36,26,0.18);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
::selection { background: var(--verde); color: var(--crema); }

:focus-visible {
  outline: 2px solid var(--dorado-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--verde-deeper); color: var(--crema);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verde-dark);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title em {
  font-family: var(--serif-script);
  font-style: normal;
  font-weight: 700;
  color: var(--verde);
  font-size: 1.15em;
  padding-inline: .05em;
}
.section-lead {
  max-width: 56ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons — WhatsApp and Llamar always same visual weight */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(23,36,26,0.1), 0 1px 3px rgba(23,36,26,0.08);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(23,36,26,0.22); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-icon { width: 18px; height: 18px; flex: none; }

.btn-whatsapp { background: var(--verde); color: var(--crema-paper); }
.btn-whatsapp:hover { background: var(--verde-dark); }
.btn-call { background: var(--verde-deeper); color: var(--crema-paper); }
.btn-call:hover { background: #0E1712; }
.btn-ghost {
  background: transparent; color: var(--verde-deeper);
  box-shadow: inset 0 0 0 1.5px var(--verde-deeper);
}
.btn-ghost:hover { background: var(--verde-deeper); color: var(--crema-paper); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn-cta { padding: .6rem 1.1rem; font-size: .88rem; }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(243,239,221,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -18px rgba(23,36,26,0.35);
}
.nav-inner { display: flex; align-items: center; gap: 1.2rem; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.nav-brand-seal {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; object-position: 50% 40%;
  box-shadow: 0 0 0 2px var(--crema-paper), 0 0 0 3.5px var(--dorado), 0 6px 16px rgba(23,36,26,0.3);
}
.nav-brand-word {
  font-family: var(--serif-script);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--verde-deeper);
  line-height: 1;
}
.nav-brand-word em { font-style: normal; color: var(--verde); }

.nav-links { display: none; gap: 1.6rem; margin-inline: auto; }
.nav-link {
  position: relative; padding: .3rem 0;
  font-weight: 500; font-size: .95rem; color: var(--verde-deeper);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--dorado);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; align-items: center; gap: .6rem; flex: none; }

.nav-burger {
  margin-left: auto; width: 42px; height: 42px; flex: none;
  display: grid; place-items: center; gap: 5px;
  border-radius: 50%;
}
.nav-burger span {
  display: block; width: 20px; height: 2px; background: var(--verde-deeper);
  transition: transform .35s var(--ease-soft), opacity .35s var(--ease-soft);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--verde-deeper); color: var(--crema);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  pointer-events: none;
}
.nav-mobile.is-open { clip-path: inset(0); pointer-events: auto; }
.nav-mobile-link { font-family: var(--serif-script); font-size: 2rem; font-weight: 600; }

/* Sticky bottom CTA bar — mobile only, keeps both actions equally visible */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: var(--crema-paper);
  box-shadow: 0 -8px 24px rgba(23,36,26,0.18);
}
.mobile-cta-bar .btn { flex: 1 1 0; }

/* Cards */
.card { border-radius: var(--radius); }

/* =============================================================
   6. Sections — Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }

/* White-painted wood plank wall — built entirely in CSS so it's always
   crisp (no photo compression), free to use, and matches the logo's
   whitewashed board backdrop exactly instead of approximating a stock photo. */
.hero-bg-wood {
  background-color: #F6F1E3;
  background-image:
    /* dark seam between each plank */
    repeating-linear-gradient(90deg,
      rgba(30, 26, 16, 0.16) 0px,
      rgba(30, 26, 16, 0.16) 2px,
      transparent 2px,
      transparent 108px),
    /* soft highlight/shadow across each plank for a painted-board feel */
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.55) 0px,
      rgba(255,255,255,0) 14px,
      rgba(255,255,255,0) 70px,
      rgba(34,30,20,0.05) 100px,
      rgba(34,30,20,0.05) 108px),
    /* faint horizontal wood grain */
    repeating-linear-gradient(0deg,
      rgba(34,30,20,0.025) 0px,
      rgba(34,30,20,0.025) 1px,
      transparent 1px,
      transparent 5px);
  animation: woodDrift 50s linear infinite;
}
@keyframes woodDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 540px 0, 540px 0, 0 0; }
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 8%, rgba(34,30,20,0.1), transparent 60%),
    linear-gradient(0deg, rgba(243,239,221,0.65) 0%, rgba(243,239,221,0.1) 30%, transparent 55%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: .05; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { padding-block: 7rem 4rem; color: var(--ink); max-width: 760px; }
.kicker {
  font-weight: 600; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dorado-dark); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--serif-script);
  font-weight: 700;
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  line-height: .92;
  color: var(--verde-deeper);
  max-width: 14ch;
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; color: var(--verde); }
.hero-sub {
  font-size: 1.15rem; line-height: 1.6; max-width: 46ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.4rem; }
.hero-note { font-size: .88rem; font-weight: 600; color: var(--verde-dark); }

/* Ticker */
.ticker {
  background: var(--verde-deeper);
  color: var(--crema);
  overflow: hidden;
  padding-block: .85rem;
}
.ticker-track {
  display: inline-flex; gap: 1.4rem; white-space: nowrap;
  font-family: var(--serif-script); font-size: 1.5rem; font-weight: 600;
  padding-inline: .7rem;
  animation: tickerScroll 24s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-dot { color: var(--dorado); font-family: var(--sans); font-size: 1rem; }

/* =============================================================
   Historia
   ============================================================= */
.historia { padding-block: 6rem; background: var(--crema); }
.historia-grid { display: grid; gap: 2.6rem; }
.historia-figure {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.historia-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%; }
.historia-figure figcaption {
  padding: .9rem 1.1rem; background: var(--crema-paper);
  font-size: .85rem; color: var(--ink-mute); font-style: italic;
}
.historia-text { display: flex; flex-direction: column; }
.historia-body { display: grid; gap: 1.1rem; font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 58ch; }
.historia-body strong { color: var(--verde-dark); }
.historia-strip { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card); }
.historia-strip img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; object-position: 50% 70%; }
.historia-strip figcaption { padding: .7rem .9rem; background: var(--crema-2); font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   Menú semanal
   ============================================================= */
.menu-semanal { padding-block: 6rem; background: var(--crema-2); }

.day-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.day-tab {
  padding: .55rem 1.1rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem;
  background: var(--crema-paper); color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background-color .3s, color .3s, box-shadow .3s;
}
.day-tab:hover { background: var(--crema); }
.day-tab.is-active {
  background: var(--verde); color: var(--crema-paper);
  box-shadow: none;
}
.day-tab.is-today::before {
  content: "Hoy"; display: inline-block; margin-right: .4rem;
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--dorado); color: var(--verde-deeper);
  padding: .1rem .4rem; border-radius: 999px; vertical-align: middle;
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
.menu-loading { color: var(--ink-mute); }
.menu-sin-platos {
  background: var(--crema-paper);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  max-width: 56ch;
}

.menu-columns { display: grid; gap: 2rem; }
.menu-col-title {
  font-family: var(--serif-script); font-size: 1.7rem; font-weight: 700;
  color: var(--verde-dark); margin-bottom: 1rem;
}

.dish {
  background: var(--crema-paper);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 var(--line);
  margin-bottom: .6rem;
  overflow: hidden;
}
.dish summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 600; font-size: 1.02rem;
  cursor: pointer;
}
.dish summary::-webkit-details-marker { display: none; }
.dish-plus {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--crema-2); color: var(--verde-dark);
  display: grid; place-items: center; font-size: 1.1rem; line-height: 1;
  transition: transform .35s var(--ease-soft), background-color .3s;
}
.dish[open] .dish-plus { transform: rotate(45deg); background: var(--verde); color: var(--crema-paper); }
.dish-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft); font-size: .95rem;
  display: grid; gap: .5rem;
}
.dish-img {
  width: 100%; max-height: 160px; object-fit: cover;
  border-radius: var(--radius-sm);
}
.dish-body .dish-desc { color: var(--ink-soft); }
.dish-body .dish-alergenos {
  font-size: .82rem; color: var(--ink-mute);
  display: flex; align-items: center; gap: .4rem;
}
.dish-body .dish-alergenos svg { width: 15px; height: 15px; flex: none; color: var(--dorado-dark); }

.menu-footer { margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.menu-postre { font-weight: 600; color: var(--verde-dark); margin-bottom: 1.4rem; }

.precios-table {
  display: grid; gap: 1px;
  background: var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin-bottom: 1rem;
}
.precio-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--crema-paper);
  padding: .75rem 1rem;
  font-size: .92rem;
}
.precio-head { background: var(--verde-deeper); color: var(--crema); font-weight: 600; }
.precio-row span:not(:first-child) { text-align: right; font-weight: 600; }
.menu-nota { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.4rem; }

.alergenos-nota {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--ink-soft);
  background: var(--crema-paper);
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  max-width: 640px;
}
.alergenos-icon { width: 20px; height: 20px; flex: none; color: var(--dorado-dark); margin-top: .1rem; }

/* .menu-noscript only reaches the DOM at all when JS is disabled (it's
   wrapped in a <noscript> tag) — no display:none needed or wanted here. */
.menu-noscript h3 { font-family: var(--serif-script); color: var(--verde-dark); margin-top: 1rem; }
.menu-noscript p { color: var(--ink-soft); margin-bottom: .6rem; }

/* =============================================================
   Para llevar
   ============================================================= */
.para-llevar { padding-block: 6rem; background: var(--crema); }
.para-llevar-grid { display: grid; gap: 2.6rem; }
.para-llevar-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.para-llevar-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.llevar-card {
  background: var(--crema-paper);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 0 var(--line);
}
.llevar-card h3 {
  font-family: var(--serif-script); color: var(--verde-dark);
  font-size: 1.4rem; margin-bottom: .7rem;
}
.llevar-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.llevar-tags li {
  background: var(--crema-2); color: var(--ink-soft);
  padding: .4rem .8rem; border-radius: 999px; font-size: .86rem;
}
.llevar-list li {
  padding: .35rem 0; color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.llevar-list li:last-child { border-bottom: none; }
.llevar-card-encargo { background: var(--verde-deeper); color: var(--crema); }
.llevar-card-encargo h3 { color: var(--dorado); }
.llevar-card-encargo p { color: rgba(243,239,221,0.85); margin-bottom: 1.1rem; font-size: .94rem; }

/* =============================================================
   Contacto
   ============================================================= */
.contacto { padding-block: 6rem; background: var(--verde-deeper); color: var(--crema); }
.contacto .eyebrow { color: var(--dorado); }
.contacto .section-title { color: var(--crema-paper); }
.contacto .section-title em { color: var(--dorado); }

.contacto-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.6rem;
}
.contacto-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: rgba(243,239,221,0.06);
  box-shadow: inset 0 0 0 1px var(--line-on-dark);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.4rem;
  transition: transform .45s var(--ease-soft), background-color .3s;
}
.contacto-card:hover { transform: translateY(-4px); background: rgba(243,239,221,0.1); }
.contacto-icon { width: 24px; height: 24px; color: var(--dorado); margin-bottom: .2rem; }
.contacto-card-label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(243,239,221,0.6); }
.contacto-card-value { font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.contacto-card-static { cursor: default; }

.contacto-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
/* .btn-call's default dark-green background is invisible against this
   section's own dark-green background — swap to cream for contrast. */
.contacto .btn-call,
.footer .btn-call {
  background: var(--crema-paper);
  color: var(--verde-deeper);
}
.contacto .btn-call:hover,
.footer .btn-call:hover {
  background: var(--dorado);
}

/* =============================================================
   Ubicación
   ============================================================= */
.ubicacion { padding-block: 6rem; background: var(--crema); }
.mapa-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.6rem;
}
.mapa-iframe { width: 100%; height: 420px; border: 0; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: var(--verde-deeper); color: rgba(243,239,221,0.85); padding-top: 3.5rem; }
.footer-inner {
  display: grid; gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-seal {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px rgba(243,239,221,0.5), 0 0 0 4px var(--dorado);
  margin-bottom: .8rem;
}
.footer-word { font-family: var(--serif-script); font-size: 1.7rem; color: var(--crema-paper); }
.footer-word em { font-style: normal; color: var(--dorado); }
.footer-tagline { font-size: .88rem; color: rgba(243,239,221,0.6); margin-top: .2rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a:hover { color: var(--dorado); }
.footer-social { display: flex; flex-direction: column; gap: .6rem; }
.footer-social a:hover { color: var(--dorado); }
.footer-bottom { padding-block: 1.4rem; font-size: .8rem; color: rgba(243,239,221,0.5); }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .historia-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .para-llevar-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .para-llevar-grid .para-llevar-figure { order: 2; }
  .menu-columns { grid-template-columns: 1fr 1fr; }
  .hero-title { max-width: 16ch; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-burger { display: none; }
  .mobile-cta-bar { display: none; }
  .container { padding-inline: 2rem; }
}

@media (max-width: 959px) {
  main { padding-bottom: 84px; } /* room for mobile CTA bar */
}

@media (min-width: 1280px) {
  .historia-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; }
  .para-llevar-grid { gap: 4rem; }
}

/* =============================================================
   9. Reduced-motion — only intrusive effects
   ============================================================= */
/* Nothing on this page is intrusive enough to gate: the hero's ambient
   zoom and the day ticker are slow, subtle loops (functional motion),
   so they keep running even with prefers-reduced-motion: reduce. */
