/* ==========================================================================
   ALTANERA ROMA — hoja de estilos principal
   Identidad: Manzo Studio 2023 · Implementación: Atman Producciones
   ========================================================================== */

/* --- Tokens de marca --------------------------------------------------- */
:root {
  /* Paleta */
  --terracota:      #a85844;
  --olivo:          #697358;
  --olivo-oscuro:   #525c44;
  --verde-claro:    #99c5a3;
  --beige:          #e9ddcd;
  --beige-claro:    #f4ede2;
  --cafe:           #4c2a25;

  /* Degradado dorado de marca */
  --oro-1:          #e6ca6c;
  --oro-2:          #cea154;
  --oro-3:          #946a3d;
  --oro-4:          #4c2a25;
  --gradiente-oro:  linear-gradient(135deg, var(--oro-1) 0%, var(--oro-2) 35%, var(--oro-3) 70%, var(--oro-4) 100%);

  /* Roles semánticos */
  --bg:             var(--beige);
  --bg-alt:         var(--beige-claro);
  --bg-dark:        var(--olivo);
  --text:           #3a3a32;
  --text-soft:      #6b6b5f;
  --text-on-dark:   var(--beige);
  --accent:         var(--terracota);
  --line:           rgba(74, 70, 50, .14);

  /* Tipografía */
  --font-display:   "Satoshi", "Big Carlson", "Times New Roman", serif;
  --font-sans:      "Satoshi", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Layout */
  --maxw:           1180px;
  --gutter:         clamp(20px, 5vw, 64px);
  --radius:         3px;
  --shadow:         0 18px 50px -28px rgba(76, 42, 37, .45);
  --ease:           cubic-bezier(.22, 1, .36, 1);
}

/* --- Reset suave -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* --- Tipografía -------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 700; line-height: 1.08; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2em;
  display: inline-block;
}
.eyebrow--light { color: var(--verde-claro); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; color: var(--text-soft); }

/* Acento dorado en texto */
.oro {
  background: var(--gradiente-oro);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Utilidades de layout --------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--terracota { background: var(--terracota); color: var(--beige); }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.measure { max-width: 56ch; }
.measure.center { margin-inline: auto; }

/* Separador rombo de marca */
.rombo { display: block; width: 8px; height: 8px; background: currentColor; transform: rotate(45deg); margin: 1.4rem auto; opacity: .8; }

/* --- Botones ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 2.1em;
  font-weight: 500; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent); color: var(--beige);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(168,88,68,.7); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--beige); }
.btn--on-dark { border-color: var(--beige); background: transparent; color: var(--beige); }
.btn--on-dark:hover { background: var(--beige); color: var(--olivo); }
.btn--oro { background: var(--gradiente-oro); border-color: transparent; color: var(--cafe); }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2vw, 22px) var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--olivo);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  padding-block: 12px;
}
.site-header__logo img { height: clamp(38px, 5vw, 54px); width: auto; transition: height .4s var(--ease); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
.nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--beige); position: relative; padding-block: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--verde-claro); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.current::after { width: 100%; }
.nav .btn { color: var(--beige); }
.nav .btn::after { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--beige); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }

@media (max-width: 880px) {
  .nav-toggle { display: block; z-index: 110; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: var(--olivo); gap: 28px;
    transform: translateY(-100%); transition: transform .5s var(--ease);
  }
  .nav a { font-size: 1.1rem; }
  body.nav-open .nav { transform: translateY(0); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; color: var(--beige); overflow: hidden;
  padding: 120px var(--gutter) 80px;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.42) 100%);
}
.hero__inner { max-width: 760px; }
.hero__logo { width: clamp(220px, 36vw, 360px); margin: 0 auto 1.6rem; }
.hero__tagline {
  font-size: .8rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--verde-claro); margin-bottom: 1.8rem;
}
.hero h1 { margin-bottom: .5em; }
.hero .lead { color: rgba(233,221,205,.97); }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(233,221,205,.7);
}

/* ==========================================================================
   BLOQUES DE CONTENIDO
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 36px 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.35); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { width: 48px; height: auto; margin-bottom: 18px; opacity: .9; }
.feature h3 { font-size: 1.15rem; }
.feature p { font-size: .95rem; color: var(--text-soft); margin: 0; }

/* Vista previa de menú */
.menu-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 60px; }
@media (max-width: 720px) { .menu-preview { grid-template-columns: 1fr; } }
.dish { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dish__name { font-weight: 500; }
.dish__desc { font-size: .9rem; color: var(--text-soft); display: block; font-weight: 300; margin-top: 3px; }
.dish__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.dish__price { font-weight: 500; white-space: nowrap; color: var(--accent); }
.section--dark .dish { border-color: rgba(233,221,205,.18); }
.section--dark .dish__desc { color: rgba(233,221,205,.7); }
.section--dark .dish__price { color: var(--verde-claro); }
.section--dark .dish__dots { border-color: rgba(233,221,205,.25); }

.menu-category + .menu-category { margin-top: clamp(40px, 6vw, 72px); }
.menu-category__title { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.menu-category__title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }

/* ==========================================================================
   FORMULARIO DE RESERVAS
   ========================================================================== */
.reserva-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .reserva-wrap { grid-template-columns: 1fr; } }

.reserva-form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field--row { grid-template-columns: 1fr; } }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--text-soft); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: inherit; font-weight: 300; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olivo); box-shadow: 0 0 0 3px rgba(105,115,88,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { text-transform: none; letter-spacing: normal; font-weight: 300; font-size: .85rem; color: var(--text-soft); }

.form-msg { padding: 14px 16px; border-radius: var(--radius); font-size: .9rem; display: none; }
.form-msg.is-error { display: block; background: rgba(168,88,68,.12); color: var(--terracota); border: 1px solid rgba(168,88,68,.4); }
.form-msg.is-info  { display: block; background: rgba(105,115,88,.12); color: var(--olivo); border: 1px solid rgba(105,115,88,.4); }

.reserva-form button[type="submit"] { margin-top: 6px; }
.reserva-form.is-loading button[type="submit"] { opacity: .6; pointer-events: none; }

.reserva-aside { background: var(--olivo); color: var(--beige); padding: clamp(28px, 4vw, 44px); border-radius: var(--radius); }
.reserva-aside h3 { color: var(--beige); }
.reserva-aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.reserva-aside li { display: flex; gap: 12px; font-size: .92rem; color: rgba(233,221,205,.85); }
.reserva-aside .rombo { margin: 0; flex-shrink: 0; margin-top: 8px; background: var(--verde-claro); }

/* Confirmación */
.confirma { text-align: center; min-height: 70vh; display: grid; place-content: center; gap: 6px; }
.confirma__mark { width: 120px; margin: 0 auto 18px; }
.confirma__detail { display: inline-grid; grid-template-columns: auto auto; gap: 8px 24px; text-align: left; margin: 24px auto 8px; font-size: .95rem; }
.confirma__detail dt { color: var(--text-soft); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; align-self: center; }
.confirma__detail dd { margin: 0; font-weight: 500; }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 26px; }
.contact-item h3 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-item a:hover { color: var(--accent); }
.map-embed { aspect-ratio: 4/3; border: 0; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--cafe); color: var(--beige); padding-block: clamp(50px, 7vw, 80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.site-footer__logo { width: 200px; margin-bottom: 18px; }
.site-footer h4 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { font-size: .9rem; color: rgba(233,221,205,.8); }
.site-footer a:hover { color: var(--beige); }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid rgba(233,221,205,.18);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .76rem; color: rgba(233,221,205,.6);
}

/* ==========================================================================
   ANIMACIÓN DE ENTRADA
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Encabezado de página interior */
.page-hero {
  padding: clamp(140px, 18vw, 220px) var(--gutter) clamp(50px, 7vw, 90px);
  text-align: center; background: var(--olivo); color: var(--beige);
}
.page-hero .lead { color: rgba(233,221,205,.85); max-width: 52ch; margin-inline: auto; }

/* ==========================================================================
   PREMIUM v1.1 — hero cinemático, editorial, parallax, galería, carta
   ========================================================================== */

:root {
  --font-display-serif: "Cormorant Garamond", "Big Carlson", Georgia, serif;
}

/* Titulares editoriales (serif fina) -------------------------------------- */
.title-display {
  font-family: var(--font-display-serif);
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.02;
}
.hero h1.title-display { font-size: clamp(2.8rem, 7.5vw, 6rem); }
.page-hero h1.title-display,
.section .title-display { font-weight: 300; }
.title-display em { font-style: italic; }

/* HERO cinemático --------------------------------------------------------- */
.hero__media img,
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
/* Ken Burns: zoom lento (se ve "vivo" aunque sea foto) */
.hero__media--zoom img { animation: kenburns 22s ease-out forwards; transform-origin: 60% 40%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media--zoom img { animation: none; } }

/* Entrada escalonada del hero */
.hero__inner > * { opacity: 0; transform: translateY(22px); animation: heroIn .9s var(--ease) forwards; }
.hero__logo      { animation-delay: .15s; }
.hero__tagline   { animation-delay: .35s; }
.hero h1         { animation-delay: .5s; }
.hero .lead      { animation-delay: .65s; }
.hero__cta       { animation-delay: .8s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero__inner > * { opacity: 1; transform: none; animation: none; } }

.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 34px; margin: 10px auto 0;
  background: linear-gradient(rgba(233,221,205,.8), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Franja marquee de marca ------------------------------------------------- */
.marquee {
  overflow: hidden; white-space: nowrap; background: var(--cafe); color: var(--beige);
  padding: 16px 0; border-block: 1px solid rgba(233,221,205,.12);
}
.marquee__track { display: inline-flex; gap: 2.5rem; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display-serif); font-size: 1.5rem; font-style: italic;
  letter-spacing: .02em; opacity: .85; display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: "◆"; font-size: .6rem; font-style: normal; color: var(--verde-claro); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Parallax ---------------------------------------------------------------- */
[data-parallax] { will-change: transform; }

/* Galería con lightbox ---------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
.gallery__item {
  overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; background: var(--olivo);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: var(--beige); background: rgba(76,42,37,0); opacity: 0; transition: .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { background: rgba(76,42,37,.35); opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery__item--wide { grid-column: span 2; } .gallery__item--tall { grid-row: span 1; } }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; place-items: center;
  background: rgba(28,24,20,.94); padding: 5vw;
}
.lightbox.is-open { display: grid; animation: fade .3s var(--ease); }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px -30px #000; }
.lightbox__close { position: absolute; top: 22px; right: 28px; font-size: 2rem; color: var(--beige); background: none; border: 0; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--beige); background: none; border: 0; padding: 20px; opacity: .7; transition: opacity .3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 10px; } .lightbox__nav--next { right: 10px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* Carta interactiva con foto --------------------------------------------- */
.dish-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .dish-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dish-cards { grid-template-columns: 1fr; } }
.dish-card {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5;
  background: var(--olivo); color: var(--beige); display: flex; align-items: flex-end;
  box-shadow: var(--shadow);
}
.dish-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .6s var(--ease); filter: brightness(.78);
}
.dish-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(40,30,24,.85)); }
.dish-card:hover img { transform: scale(1.07); filter: brightness(.9); }
.dish-card__body { position: relative; z-index: 1; padding: 22px; width: 100%; transform: translateY(8px); transition: transform .5s var(--ease); }
.dish-card:hover .dish-card__body { transform: translateY(0); }
.dish-card__name { font-family: var(--font-display-serif); font-size: 1.5rem; font-weight: 400; display: block; }
.dish-card__desc { font-size: .85rem; color: rgba(233,221,205,.82); margin: 4px 0 8px; max-height: 0; overflow: hidden; opacity: 0; transition: .5s var(--ease); }
.dish-card:hover .dish-card__desc { max-height: 80px; opacity: 1; }
.dish-card__price { font-weight: 500; color: var(--verde-claro); letter-spacing: .04em; }

/* Cifras / datos destacados ---------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 24px; } }
.stat__num { font-family: var(--font-display-serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--accent); line-height: 1; }
.section--dark .stat__num { color: var(--verde-claro); }
.stat__label { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-soft); margin-top: 8px; }
.section--dark .stat__label { color: rgba(233,221,205,.7); }

/* --- Sección reel (video vertical) --------------------------------------- */
.reel-block { display: grid; grid-template-columns: 1fr auto; gap: clamp(30px, 6vw, 80px); align-items: center; }
@media (max-width: 820px) { .reel-block { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.reel-frame {
  width: clamp(240px, 30vw, 320px); aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: #000; border: 1px solid rgba(233,221,205,.15);
}
.reel-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Legibilidad del hero sobre video natural (sin filtro de tinte) ------ */
.hero h1, .hero .lead, .hero__tagline { text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 28px rgba(0,0,0,.5); }
.hero__logo { filter: drop-shadow(0 2px 18px rgba(0,0,0,.4)); }

/* --- Slideshows con cross-fade (cambian cada 3 s) ------------------------ */
.ss { position: absolute; inset: 0; }
.ss img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s var(--ease); }
.ss img.is-active { opacity: 1; }
.ss-frame { position: relative; aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.dish-card .ss img { filter: brightness(.78); transition: opacity 1.4s var(--ease), transform .9s var(--ease), filter .6s var(--ease); }
.dish-card:hover .ss img.is-active { transform: scale(1.06); filter: brightness(.92); }

/* --- Selector de idioma -------------------------------------------------- */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .12em; }
.lang-switch a { color: rgba(233,221,205,.6); padding: 2px 4px; }
.lang-switch a.is-active { color: var(--beige); font-weight: 500; }
.lang-switch span { color: rgba(233,221,205,.35); }
@media (max-width: 880px) { .lang-switch { font-size: 1rem; } }

/* --- Refinamiento: fondo cohesivo y limpio (sin deslaves) --------------- */
body { background: var(--beige); }
.section--alt { background: var(--beige); }
.section--dark { background: var(--olivo); }
.section--terracota { background: var(--terracota); }
.page-hero { background: var(--olivo); }
.site-footer { background: var(--cafe); }

/* --- Galeria tipo mosaico: cada foto se ve completa -------------------- */
.gallery { display: block; column-count: 3; column-gap: 14px; grid-template-columns: none; grid-auto-rows: auto; }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 560px) { .gallery { column-count: 1; } }
.gallery__item { display: block; width: 100%; height: auto; aspect-ratio: auto; break-inside: avoid; margin: 0 0 14px; grid-row: auto; grid-column: auto; padding: 0; border: 0; }
.gallery__item img { position: static; width: 100%; height: auto; }

/* ==========================================================================
   SISTEMA DE BOTONES (preferencia de marca, sin degradado)
   Principal: terracota · Secundario claro: olivo · Secundario oscuro: crema
   ========================================================================== */
.btn--oro { background: var(--terracota); border-color: var(--terracota); color: var(--beige); }
.btn--oro:hover { background: #94493a; border-color: #94493a; color: var(--beige); box-shadow: 0 12px 28px -14px rgba(168,88,68,.7); }

.btn--ghost { background: var(--olivo); border-color: var(--olivo); color: var(--beige); }
.btn--ghost:hover { background: #566049; border-color: #566049; color: var(--beige); }

.btn--on-dark { background: var(--beige); border-color: var(--beige); color: #45453b; }
.btn--on-dark:hover { background: #fff; border-color: #fff; color: var(--olivo); }

/* --- Franja de marca clara: transición homogénea bajo el hero ----------- */
.marquee { background: var(--beige); color: var(--olivo); border-block: 0; padding: 14px 0; }
.marquee span { color: var(--olivo); opacity: .92; }
.marquee span::after { color: var(--terracota); }

/* --- Hero: el borde inferior se funde al beige (transición homogénea) ---- */
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  background:
    /* scrim radial suave detrás del texto (legibilidad sin cuadro duro) */
    radial-gradient(155% 108% at 50% 52%,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.36) 46%,
      rgba(0,0,0,.12) 68%,
      rgba(0,0,0,0) 84%),
    /* degradado vertical: oscuro arriba, se funde al beige abajo */
    linear-gradient(180deg,
      rgba(0,0,0,.34) 0,
      rgba(0,0,0,.06) 200px,
      rgba(0,0,0,.06) calc(100% - 160px),
      var(--beige) 100%);
}

/* --- Fix: botón "Reservar" del nav (crema) con texto oscuro legible ------ */
.nav .btn--on-dark { color: #45453b; }
.nav .btn--on-dark:hover { color: var(--olivo); }

/* --- Mapa de asientos (plano) ------------------------------------------- */
.plano { background: #fff; border-radius: var(--radius); padding: clamp(16px, 3vw, 40px); box-shadow: var(--shadow); margin-top: 40px; max-width: 1000px; margin-inline: auto; }
.plano img { width: 100%; height: auto; display: block; }

/* Plano ilustrado: sin recuadro blanco (ya viene diseñado) */
.plano { background: transparent; box-shadow: none; padding: 0; max-width: 1000px; }

/* --- Botones de feedback en el footer: verde con texto claro (siempre visible) */
.site-footer .btn--footer { background: var(--olivo); border-color: var(--olivo); color: var(--beige); }
.site-footer .btn--footer:hover { background: var(--olivo-oscuro); border-color: var(--olivo-oscuro); color: #fff; }
