/* ===========================================================
   REVU 1910 · Casa de té y café — La Paz, B.C.S.
   Rediseño "Impreso de 1910": Belle Époque / grabado antiguo.
   =========================================================== */

:root {
  --espresso: #362219;
  --espresso-2: #4a3227;
  --noche: #201209;
  /* Verde tomado de la herrería y la cantería de la fachada */
  --menta: #90ccc0;
  --menta-cl: #a8e4d8;
  --verdigris: #58ada4;
  --verdigris-dk: #2f6f67;
  --linea-menta: rgba(144, 204, 192, 0.55);
  --crema: #f6efe0;
  --crema-2: #e2d3b6;
  --papel: #e9dcc4;            /* fondo pergamino: hace resaltar las tarjetas claras */
  --tarjeta: #fdfaf2;          /* fondo de tarjetas, casi blanco */
  --oro: #b3873a;
  --oro-cl: #d9b25f;
  --oxido: #8a3324;            /* rojo óxido, guiño revolucionario */
  --tinta: #2f2118;
  /* Texto sobre fondos claros — contraste verificado (AA o mejor) */
  --texto-1: #453a31;          /* párrafos                     ~9:1  */
  --texto-2: #574a40;          /* descripciones pequeñas       ~7:1  */
  --texto-3: #6a5c50;          /* etiquetas diminutas          ~5:1  */
  --linea: rgba(54, 34, 25, 0.2);
  --linea-oro: rgba(179, 135, 58, 0.55);

  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Playfair Display", Georgia, serif;
  --script: "Pinyon Script", cursive;
  --grabado: "Cinzel", "Playfair Display", serif;

  --sombra: 0 20px 46px -24px rgba(32, 18, 9, 0.55);
  --radio: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--tinta);
  background-color: var(--papel);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    radial-gradient(circle at 8% 10%, rgba(144, 204, 192, 0.16), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(144, 204, 192, 0.13), transparent 42%),
    radial-gradient(circle at 50% 48%, rgba(179, 135, 58, 0.07), transparent 55%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Filigrana lateral en pantallas anchas (escritorio) ===== */
body::before, body::after {
  content: "";
  position: fixed;
  top: 0; bottom: 0;
  width: 56px;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='120' viewBox='0 0 40 120'%3E%3Cg fill='none' stroke='%23b3873a' stroke-width='1'%3E%3Cpath d='M20 6 q8 12 0 24 q-8 12 0 24 q8 12 0 24 q-8 12 0 24 q8 12 0 24'/%3E%3Ccircle cx='20' cy='30' r='2.4'/%3E%3Ccircle cx='20' cy='90' r='2.4'/%3E%3Cpath d='M13 60 h14 M20 53 v14' stroke-width='.8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
  display: none;
}
body::before { left: 10px; }
body::after { right: 10px; }
@media (min-width: 1440px) { body::before, body::after { display: block; } }

/* ===================== Tipografía / helpers ==================== */
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 .5rem;
  color: var(--espresso);
  letter-spacing: .5px;
}
.section__intro {
  max-width: 62ch;
  margin: 0 auto 2.6rem;
  text-align: center;
  font-size: 1.14rem;
  color: var(--texto-1);
}
.muted { color: var(--texto-3); }
code { background: var(--crema-2); padding: .05em .45em; border-radius: 4px; font-size: .85em; }

/* Ornamento tipográfico centrado (fleurón verde con filetes dorados) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  color: var(--verdigris);
  font-size: 1.35rem;
  margin-bottom: .9rem;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, var(--linea-oro) 60%, var(--linea-menta));
}
.ornament::after { background: linear-gradient(270deg, transparent, var(--linea-oro) 60%, var(--linea-menta)); }
.ornament--light { color: var(--menta); }

.section {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem;
}

/* Letra capital para párrafos destacados */
.dropcap::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.1em;
  line-height: .78;
  float: left;
  padding: .08em .12em 0 0;
  color: var(--oxido);
}

/* ========================= Botones ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--grabado);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 1.7rem;
  border-radius: var(--radio);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(180deg, var(--oro-cl), var(--oro));
  color: #fff;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 3px rgba(179,135,58,.28), 0 12px 26px -12px rgba(179,135,58,.9);
}
.btn--gold:hover { background: linear-gradient(180deg, #e3c176, var(--oro-cl)); }
.btn--outline {
  border-color: rgba(246,239,224,.6);
  color: var(--crema);
  box-shadow: inset 0 0 0 1px rgba(246,239,224,.0);
}
.btn--outline:hover { background: rgba(246,239,224,.12); box-shadow: inset 0 0 0 1px rgba(246,239,224,.4); }
.btn--ghost { border-color: var(--verdigris); color: var(--verdigris-dk); }
.btn--ghost:hover { background: var(--verdigris); color: #fff; }
.btn--sm { padding: .55rem 1.05rem; font-size: .72rem; }
.btn--block { width: 100%; margin-top: .4rem; }

/* ========================= Navbar ============================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 227, 205, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linea-oro);
  box-shadow: 0 4px 0 -2px rgba(144, 204, 192, .45);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: .65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { text-decoration: none; line-height: 1; display: flex; flex-direction: column; }
.brand__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--verdigris-dk);
  letter-spacing: 1px;
}
.brand__mark span { color: var(--oro); }
.brand__mark--light { color: var(--crema); font-size: 1.7rem; }
.brand__mark--light span { color: var(--oro-cl); }
.brand__sub {
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-top: -2px;
}
.nav__links { display: flex; align-items: center; gap: 1.35rem; }
.nav__links a {
  text-decoration: none;
  font-family: var(--grabado);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color .18s ease;
}
.nav__links a:not(.btn):hover { color: var(--oxido); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--espresso);
  cursor: pointer;
}
.lang-toggle {
  font-family: var(--grabado);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--verdigris-dk);
  background: transparent;
  border: 1px solid var(--verdigris);
  border-radius: var(--radio);
  padding: .34rem .7rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.lang-toggle:hover { background: var(--verdigris); color: #fff; }

/* ========================== Hero ============================= */
.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--crema);
  overflow: hidden;
  padding: 4.5rem 1.25rem;
  /* Foto a color real; sólo un velo NEUTRO para que el texto se lea */
  background:
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.30) 55%, rgba(0,0,0,.46)),
    url("images/hero.jpg") center/cover no-repeat,
    #2f5b57;
}
.hero__overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(0, 0, 0, .38) 100%);
}

/* Marco ornamental del hero */
.hero__frame {
  position: relative;
  max-width: 880px;
  padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem);
  border: 1px solid rgba(217, 178, 95, .65);
  outline: 1px solid rgba(168, 228, 216, .4);
  outline-offset: 7px;
  background: rgba(8, 26, 24, 0.4);
}
.corner {
  position: absolute;
  width: 44px; height: 44px;
  color: var(--oro-cl);
  opacity: .9;
}
.corner svg { width: 100%; height: 100%; }
.corner--tl { top: -8px; left: -8px; }
.corner--tr { top: -8px; right: -8px; transform: rotate(90deg); }
.corner--br { bottom: -8px; right: -8px; transform: rotate(180deg); }
.corner--bl { bottom: -8px; left: -8px; transform: rotate(270deg); }

/* Emblema oficial de la casa */
.hero__seal {
  display: block;
  width: clamp(104px, 15vw, 148px);
  height: auto;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .6));
}
.hero__eyebrow {
  font-family: var(--grabado);
  text-transform: uppercase;
  letter-spacing: .46em;
  font-size: .78rem;
  color: var(--oro-cl);
  margin: 0 0 .8rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 11vw, 6.6rem);
  line-height: .95;
  margin: 0;
  letter-spacing: 2px;
  color: var(--oro-cl);
  background: linear-gradient(180deg, #f2dda2 8%, var(--oro-cl) 38%, #a5762c 78%, #dcbc72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.5));
}
.hero__script {
  font-family: var(--script);
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  color: var(--crema);
  margin: .4rem 0 1rem;
}
.hero__lead {
  font-size: 1.18rem;
  color: rgba(246,239,224,.9);
  margin: 0 auto 2.1rem;
  max-width: 52ch;
}
.flourish { color: var(--oro-cl); display: block; margin: .6rem auto; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%);
  color: var(--oro-cl); font-size: 1.1rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ========================= Pilares ========================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 1.2rem;
}
.pillar {
  background: var(--tarjeta);
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea);
  outline-offset: 4px;
  padding: 10px;
  text-align: center;
  box-shadow: var(--sombra);
  transition: transform .22s ease;
}
.pillar:hover { transform: translateY(-5px); }
.pillar__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--crema-2);
  overflow: hidden;
  border: 1px solid var(--linea);
}
.pillar__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.28) saturate(.94);
  transition: transform .45s ease, filter .45s ease;
}
.pillar:hover .pillar__media img { transform: scale(1.05); filter: sepia(0) saturate(1.05); }
.pillar__icon {
  position: absolute; inset: 0;
  color: var(--verdigris);
  display: grid; place-items: center;
  background: var(--crema-2);
}
.pillar__body { padding: 1.3rem 1.1rem 1.2rem; }
.pillar h3 {
  font-family: var(--grabado);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 0 0 .45rem;
}
.pillar h3::after {
  content: "";
  display: block;
  width: 44px; height: 1px;
  margin: .5rem auto 0;
  background: var(--verdigris);
}
.pillar p { margin: .4rem 0 0; color: var(--texto-1); font-size: .99rem; }

/* ====================== Historia detallada ================== */
/* ---- Carrusel de historia: 3 tarjetas, la central destacada ---- */
.story__slider {
  position: relative;
  margin: 0 -1.25rem 3.6rem;
  padding: 1rem 0 0;
}
.story__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1.4rem calc(50% - min(360px, 42vw) / 2) 2rem;
  scrollbar-width: none;
  /* Difumina el contenido hacia los bordes exteriores */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 17%, #000 83%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 17%, #000 83%, transparent 100%);
}
.story__track::-webkit-scrollbar { display: none; }
.story__track:focus-visible { outline: 2px solid var(--oro); outline-offset: 4px; }

.story__card {
  position: relative;
  flex: 0 0 min(360px, 42vw);
  scroll-snap-align: center;
  background: var(--tarjeta);
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea);
  outline-offset: 4px;
  padding: 2.4rem 1.7rem 1.7rem;
  box-shadow: var(--sombra);
  /* Estado lateral: apagado y ligeramente encogido */
  opacity: .42;
  transform: scale(.9);
  filter: saturate(.7);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease, box-shadow .45s ease;
}
.story__card.is-center {
  opacity: 1;
  transform: scale(1);
  filter: none;
  border-color: var(--menta);
  box-shadow: 0 26px 54px -26px rgba(32, 18, 9, .7), 0 0 0 1px rgba(179, 135, 58, .25);
}
.story__card.is-center .story__num {
  background: var(--oxido);
  border-color: rgba(217, 178, 95, .8);
}

/* Flechas */
.story__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.9rem; height: 2.9rem;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  line-height: 1;
  padding-bottom: .24rem;
  border-radius: 50%;
  border: 1px solid var(--linea-oro);
  background: var(--tarjeta);
  color: var(--espresso);
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(32, 18, 9, .6);
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.story__nav:hover { background: var(--oro); color: #fff; border-color: var(--oro); }
.story__nav:disabled { opacity: .28; cursor: default; }
.story__nav:disabled:hover { background: var(--tarjeta); color: var(--espresso); }
.story__nav--prev { left: .4rem; }
.story__nav--next { right: .4rem; }
@media (min-width: 1200px) {
  .story__nav--prev { left: 2.2rem; }
  .story__nav--next { right: 2.2rem; }
}

/* Puntos */
.story__dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: .2rem;
}
.story__dot {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--oro);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.story__dot.is-active { background: var(--oro); transform: scale(1.25); }

@media (max-width: 720px) {
  .story__card { flex-basis: min(300px, 78vw); }
  .story__track { padding-left: calc(50% - min(300px, 78vw) / 2); padding-right: calc(50% - min(300px, 78vw) / 2); }
  .story__nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .story__track { scroll-behavior: auto; }
  .story__card { transition: none; }
}
.story__num {
  position: absolute;
  top: -.9rem; left: 1.5rem;
  display: grid;
  place-items: center;
  min-width: 2.3rem;
  height: 2.3rem;
  padding: 0 .5rem;
  background: var(--verdigris-dk);
  color: var(--oro-cl);
  font-family: var(--grabado);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid rgba(217, 178, 95, .55);
}
.story__card h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--oxido);
  margin: 0 0 .7rem;
}
.story__card p { margin: 0; color: var(--texto-1); font-size: 1.02rem; }
.story__card strong { color: var(--espresso); font-weight: 600; }

/* Línea de tiempo */
.tl__title {
  font-family: var(--grabado);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--verdigris-dk);
  text-align: center;
  margin: 0 0 2.2rem;
}
.tl {
  list-style: none;
  margin: 0 auto 3rem;
  padding: 0;
  max-width: 1000px;
  display: grid;
  gap: 2rem;
  position: relative;
}
.tl__item { position: relative; padding-left: 2.2rem; }
.tl__dot {
  position: absolute;
  left: 0; top: .45rem;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--tarjeta);
  border: 2px solid var(--verdigris);
  box-shadow: 0 0 0 3px rgba(144, 204, 192, .3);
}
.tl__date {
  font-family: var(--grabado);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oxido);
  margin: 0 0 .25rem;
}
.tl__text { margin: 0; color: var(--texto-1); font-size: 1.01rem; }

@media (min-width: 860px) {
  .tl {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
  }
  .tl::before {
    content: "";
    position: absolute;
    top: 6px; left: 6px; right: 6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linea-oro) 12%, var(--linea-oro) 88%, transparent);
  }
  .tl__item { padding-left: 0; padding-top: 2rem; text-align: center; }
  .tl__dot { left: 50%; top: 0; transform: translateX(-50%); }
}

.story__quote {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--espresso);
}
.story__quote p { margin: 0 0 .6rem; }
.story__quote .flourish { color: var(--oro); }

/* ========================== Menú ============================ */
.menu { max-width: 1160px; }
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 2rem;
}
.menu__tab {
  font-family: var(--grabado);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--linea);
  color: var(--espresso);
  padding: .6rem 1.25rem;
  border-radius: var(--radio);
  cursor: pointer;
  transition: all .18s ease;
}
.menu__tab:hover { border-color: var(--oro); color: var(--oxido); }
.menu__tab.is-active {
  background: var(--espresso);
  color: var(--oro-cl);
  border-color: var(--espresso);
  box-shadow: inset 0 0 0 1px rgba(217,178,95,.5);
}
.menu__tab--feature {
  border-color: var(--oro);
  color: var(--oxido);
  background: rgba(179, 135, 58, .08);
}
.menu__tab--feature::before { content: "★"; margin-right: .45rem; color: var(--oro); }
.menu__tab--feature.is-active::before { color: var(--oro-cl); }

/* Carta enmarcada como menú impreso */
.menu__card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--tarjeta);
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea);
  outline-offset: 6px;
  box-shadow: var(--sombra);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.2rem, 4vw, 3.2rem) clamp(2rem, 4vw, 3rem);
}
.menu__card .corner { width: 34px; height: 34px; color: var(--oro); opacity: .8; }
.menu__medallion {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -55%);
  background: var(--espresso);
  color: var(--oro-cl);
  font-family: var(--grabado);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  padding: .55rem 1.6rem .5rem 1.9rem;
  border: 1px solid rgba(144,204,192,.6);
  box-shadow: 0 6px 18px -8px rgba(32,18,9,.6);
}

.menu__panel { display: none; animation: fade .4s ease; }
.menu__panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }

.menu__note {
  text-align: center;
  font-style: italic;
  color: var(--texto-2);
  margin: 0 auto 1.8rem;
  max-width: 56ch;
}
.menu__group + .menu__group { margin-top: 2.6rem; }
.menu__footnote {
  max-width: 62ch;
  margin: 1.2rem auto 0;
  text-align: center;
  font-style: italic;
  font-size: .95rem;
  color: var(--texto-2);
}
.menu__addons--single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.menu__addons--single li { gap: 1.2rem; text-align: left; align-items: baseline; }
.menu__group-title {
  font-family: var(--grabado);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oxido);
  text-align: center;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}
.menu__group-title::before, .menu__group-title::after {
  content: "";
  height: 1px;
  width: min(90px, 12vw);
  background: var(--linea-menta);
}

.menu__list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.menu__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .2rem .6rem;
  align-items: baseline;
  padding: .65rem 0;
}
.menu__item-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.16rem;
  color: var(--espresso);
}
.menu__leader { border-bottom: 2px dotted rgba(179,135,58,.55); transform: translateY(-4px); min-width: 2rem; }
.menu__item-desc {
  grid-column: 1 / -1;
  font-size: .97rem;
  color: var(--texto-2);
  margin-top: -.25rem;
}
.menu__price { font-family: var(--display); font-weight: 600; color: var(--oxido); white-space: nowrap; }
.menu__price small { color: var(--texto-3); font-weight: 400; }

/* precios dobles (caliente / helado) */
.menu__item--dual .menu__price { display: flex; gap: .9rem; }
.menu__price-tag { text-align: right; }
.menu__price-tag span {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-3);
  font-family: var(--grabado);
  font-weight: 600;
}

/* Dos columnas en escritorio para listas simples */
@media (min-width: 920px) {
  .menu__list--cols {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.4rem;
    align-items: start;
  }
}

.menu__addons {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}
.menu__addon-card {
  background: transparent;
  border: 1px solid var(--linea-oro);
  padding: 1.1rem 1.25rem;
}
.menu__addon-card h4 {
  font-family: var(--grabado);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verdigris-dk);
  margin: 0 0 .6rem;
}
.menu__addon-card ul { list-style: none; padding: 0; margin: 0; }
.menu__addon-card li { display: flex; justify-content: space-between; padding: .22rem 0; font-size: .98rem; }
.menu__addon-card li span { color: var(--oxido); font-weight: 600; }

.menu__tea { max-width: 640px; margin: 0 auto; text-align: center; }
.menu__tea h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0 0 .5rem;
  color: var(--espresso);
}
.menu__tea p { color: var(--texto-1); }
.menu__tea-prices { display: flex; justify-content: center; gap: 3rem; margin: 1.5rem 0 1.6rem; }
.menu__tea-prices div { line-height: 1.15; }
.menu__tea-prices strong {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--oxido);
  display: block;
}
.menu__tea-prices span {
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-3);
}

/* ================= Carta de temporada (cítricos) ============ */
.menu__tab--season {
  border-color: #97a86f;
  color: #5f7040;
  background: rgba(151, 168, 111, .12);
}
.menu__tab--season::before { content: "❧"; margin-right: .45rem; color: #7d9152; }
.menu__tab--season.is-active {
  background: #5f7040;
  color: #fdf6e0;
  border-color: #5f7040;
  box-shadow: inset 0 0 0 1px rgba(253, 246, 224, .35);
}
.menu__tab--season.is-active::before { color: #e2a24a; }

.season {
  position: relative;
  overflow: hidden;
  margin: -1rem -.5rem 0;
  padding: 2.6rem clamp(1rem, 4vw, 2.6rem) 2.4rem;
  border-radius: 3px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(226, 162, 74, .13), transparent 55%),
    radial-gradient(ellipse at 88% 100%, rgba(151, 168, 111, .18), transparent 55%),
    linear-gradient(170deg, #fdf7e3, #f8f0d5 60%, #f3ead0);
  border: 1px solid rgba(151, 168, 111, .5);
  outline: 1px solid rgba(226, 162, 74, .28);
  outline-offset: 4px;
  box-shadow: inset 0 0 40px rgba(226, 162, 74, .07);
}
/* Ramas de cítricos en las esquinas */
.season__leaf {
  position: absolute;
  width: clamp(96px, 15vw, 150px);
  color: #8fa267;
  opacity: .5;
  pointer-events: none;
}
.season__leaf svg { width: 100%; height: auto; display: block; }
.season__leaf--tl { top: -14px; left: -18px; }
.season__leaf--br { bottom: -14px; right: -18px; transform: rotate(180deg); }

.season__badge {
  position: relative;
  display: inline-block;
  margin: 0 auto 1rem;
  padding: .42rem 1.5rem;
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fdf7e3;
  background: #5f7040;
  border: 1px solid rgba(253, 247, 227, .4);
  box-shadow: 0 6px 16px -8px rgba(95, 112, 64, .8);
}
.season__head { text-align: center; position: relative; z-index: 1; }
.season__title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.1;
  color: #4c5c33;
  margin: 0 0 .5rem;
}
.season__note {
  max-width: 46ch;
  margin: 0 auto 2rem;
  font-style: italic;
  color: #6c6444;
  font-size: 1rem;
}
.season .menu__list { position: relative; z-index: 1; }
.season .menu__item-name { color: #40371f; }
.season .menu__item-desc { color: #6d6547; }
.season .menu__leader { border-bottom-color: rgba(151, 168, 111, .7); }
.season .menu__price { color: #8a5a18; }
.season__foot {
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  max-width: 44ch;
  border-top: 1px solid rgba(151, 168, 111, .45);
  text-align: center;
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b6141;
}

/* =================== Selección de tés (tabla) =============== */
.tea__wrap { overflow-x: auto; max-width: 860px; margin: 0 auto; }
.tea {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 460px;
}
.tea__potfor {
  font-family: var(--grabado);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-3);
  padding-bottom: .1rem;
  text-align: center;
}
.tea__sizes th {
  font-family: var(--grabado);
  font-size: .82rem;
  font-weight: 700;
  color: var(--verdigris-dk);
  width: 4.6rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--linea-oro);
}
.tea__sizes td { border-bottom: 1px solid var(--linea-oro); }
.tea__group-row th {
  font-family: var(--grabado);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oxido);
  text-align: left;
  padding: 1.3rem 0 .45rem;
}
.tea tbody th[scope="row"] {
  text-align: left;
  font-weight: 400;
  padding: .42rem .8rem .42rem 1.1rem;
  border-bottom: 1px dotted rgba(179, 135, 58, .35);
}
.tea__name { font-family: var(--display); font-size: 1.1rem; color: var(--espresso); }
.tea__kind {
  display: inline-block;
  margin-left: .5rem;
  font-family: var(--grabado);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-3);
}
.tea tbody td {
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  color: var(--oxido);
  padding: .42rem .3rem;
  border-bottom: 1px dotted rgba(179, 135, 58, .35);
  white-space: nowrap;
}

/* ==================== Grace's Afternoon Tea ================= */
.grace {
  max-width: 820px;
  margin: 3rem auto 0;
  padding-top: 2.6rem;
  border-top: 1px solid var(--linea-oro);
  text-align: center;
}
.grace__title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--verdigris-dk);
  margin: 0 0 .5rem;
}
.grace__text { max-width: 56ch; margin: 0 auto 2rem; color: var(--texto-1); }
.grace__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  text-align: left;
  margin-bottom: 2rem;
}
.grace__block h4 {
  font-family: var(--grabado);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oxido);
  margin: 0 0 .7rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--linea);
}
.grace__block ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.grace__block li { display: grid; gap: .1rem; }
.grace__block strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--espresso);
}
.grace__block span { font-size: .92rem; color: var(--texto-2); }
.grace__price { margin: 0 0 .5rem; }
.grace__price strong {
  font-family: var(--display);
  font-size: 2.3rem;
  color: var(--oxido);
}
.grace__price span {
  font-family: var(--grabado);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-3);
}
.grace__includes {
  max-width: 52ch;
  margin: 0 auto 1.8rem;
  font-style: italic;
  font-size: .97rem;
  color: var(--texto-2);
}

/* ===================== Shatto's Tea Room ==================== */
.shatto {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(179, 135, 58, .09), transparent 60%);
  padding: 1rem 0 0;
}
.shatto__kicker {
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--verdigris-dk);
  margin: 0 0 .3rem;
}
.shatto__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  color: var(--espresso);
  margin: 0 0 .8rem;
}
.shatto__text { max-width: 54ch; margin: 0 auto 1.4rem; color: var(--texto-1); }
.shatto__price { margin: 0 0 1.8rem; }
.shatto__price strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--oxido);
  line-height: 1;
}
.shatto__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 0 0 1.9rem;
  padding: 1.3rem 1rem;
  border-top: 1px solid var(--linea-oro);
  border-bottom: 1px solid var(--linea-oro);
}
.shatto__specs dt {
  font-family: var(--grabado);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-3);
  margin-bottom: .25rem;
}
.shatto__specs dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--espresso);
}
.shatto__includes { max-width: 420px; margin: 0 auto 1.4rem; text-align: left; }
.shatto__includes h4 {
  font-family: var(--grabado);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oxido);
  text-align: center;
  margin: 0 0 .8rem;
}
.shatto__includes ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.shatto__includes li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--texto-1);
}
.shatto__includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--oro);
}
.shatto__note {
  font-style: italic;
  font-size: .93rem;
  color: var(--texto-3);
  margin: 0 0 1.6rem;
}

/* ========================= Boutique ========================= */
.boutique__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .boutique__grid { grid-template-columns: 1fr 1fr; }
}

/* Par de fotos superpuestas, como piezas sobre el mostrador */
.boutique__media {
  position: relative;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}
.boutique__photo {
  margin: 0;
  background: var(--tarjeta);
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea);
  outline-offset: 4px;
  padding: 10px;
  box-shadow: var(--sombra);
}
.boutique__photo img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--linea); }
.boutique__photo--main {
  width: min(78%, 380px);
  aspect-ratio: 3 / 4;
  transform: rotate(-1.4deg);
}
.boutique__photo--alt {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 250px);
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
  border-color: var(--linea-menta);
}
@media (max-width: 560px) {
  .boutique__photo--main { width: 84%; }
  .boutique__photo--alt { width: 54%; }
}

.boutique__kicker {
  font-family: var(--grabado);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--verdigris-dk);
  margin: 0 0 .4rem;
}
.boutique__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  color: var(--espresso);
  margin: 0 0 .9rem;
}
.boutique__text { margin: 0 0 1.4rem; color: var(--texto-1); }
.boutique__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: .6rem;
}
.boutique__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--texto-1);
}
.boutique__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -.05em;
  color: var(--verdigris);
}
.boutique__note {
  font-style: italic;
  font-size: .97rem;
  color: var(--texto-2);
  border-left: 2px solid var(--linea-menta);
  padding-left: .9rem;
  margin: 0 0 1.7rem;
}
.boutique__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ========================== Eventos ========================= */
.event-next {
  position: relative;
  max-width: 780px;
  margin: 0 auto 3.6rem;
  text-align: center;
  background: var(--tarjeta);
  border: 1px dashed rgba(179, 135, 58, .6);
  outline: 1px solid var(--linea);
  outline-offset: 5px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--sombra);
}
.event-next__kicker {
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--verdigris-dk);
  margin: 0 0 .5rem;
}
.event-next__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--espresso);
  margin: 0 0 .8rem;
}
.event-next__text { max-width: 54ch; margin: 0 auto 1.7rem; color: var(--texto-1); }
.event-next__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.events__past-title {
  font-family: var(--grabado);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--oxido);
  text-align: center;
  margin: 0 0 .4rem;
}
.events__past-note {
  text-align: center;
  font-style: italic;
  color: var(--texto-2);
  margin: 0 0 2.2rem;
}
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.event {
  background: var(--tarjeta);
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea);
  outline-offset: 4px;
  padding: 10px;
  box-shadow: var(--sombra);
  transition: transform .22s ease;
}
.event:hover { transform: translateY(-4px); }
.event__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--linea);
  background: var(--crema-2);
}
.event__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.42) saturate(.85) brightness(.96);
  transition: filter .4s ease, transform .4s ease;
}
.event:hover .event__media img { filter: sepia(.1) saturate(1); transform: scale(1.04); }
.event__body { padding: 1.2rem 1rem 1.1rem; }
.event__date {
  font-family: var(--grabado);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oxido);
  margin: 0 0 .35rem;
}
.event__title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--espresso);
  margin: 0 0 .5rem;
}
.event__text { margin: 0; font-size: .98rem; color: var(--texto-2); }

/* ========================= Galería ========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 1.5rem;
  padding-top: .4rem;
}
.gallery__item {
  position: relative;
  margin: 0;
  background: var(--tarjeta);
  border: 1px solid var(--linea);
  padding: 10px 10px 0;
  box-shadow: var(--sombra);
  transform: rotate(-1.1deg);
  transition: transform .25s ease;
}
.gallery__item:nth-child(2n) { transform: rotate(1.2deg); }
.gallery__item:nth-child(3n) { transform: rotate(-.6deg); }
.gallery__item:hover {
  transform: rotate(0) scale(1.03);
  z-index: 2;
  border-color: var(--menta);
  box-shadow: 0 22px 46px -24px rgba(32, 18, 9, .6), 0 0 0 1px var(--linea-menta);
}
.gallery__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.gallery__btn:focus-visible { outline: 2px solid var(--oro); outline-offset: 3px; }
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--linea);
  filter: sepia(.18);
  transition: filter .3s ease;
}
.gallery__item:hover img { filter: sepia(0); }
/* Lupa al pasar el cursor */
.gallery__btn::after {
  content: "⤢";
  position: absolute;
  right: .55rem; bottom: .55rem;
  width: 1.9rem; height: 1.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(32, 18, 9, .72);
  color: var(--oro-cl);
  font-size: .95rem;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.gallery__item:hover .gallery__btn::after,
.gallery__btn:focus-visible::after { opacity: 1; }
.gallery__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .5rem .15rem .55rem;
}
.gallery__caption strong {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--espresso);
}
.gallery__caption small {
  font-family: var(--grabado);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texto-3);
}
.gallery__ph {
  display: grid; place-items: center; text-align: center;
  aspect-ratio: 4 / 3;
  color: var(--verdigris-dk);
  background: var(--crema-2);
  border: 1px solid var(--linea);
  padding: 1rem;
}

/* ==================== Visor de galería ====================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 11, 6, .93);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; animation: fade .28s ease; }
.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  background: var(--tarjeta);
  padding: 12px 12px 0;
  border: 1px solid rgba(217, 178, 95, .5);
  outline: 1px solid rgba(217, 178, 95, .22);
  outline-offset: 6px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9);
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(88vh - 5rem);
  object-fit: contain;
  border: 1px solid var(--linea);
}
.lightbox__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .1rem .2rem .7rem;
}
.lightbox__caption span {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--espresso);
}
.lightbox__caption small {
  font-family: var(--grabado);
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--texto-3);
}
.lightbox__close,
.lightbox__nav {
  background: rgba(246, 239, 224, .08);
  border: 1px solid rgba(217, 178, 95, .45);
  color: var(--crema);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .18s ease, transform .18s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(217, 178, 95, .3); transform: scale(1.06); }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.7rem; height: 2.7rem;
  font-size: 1.1rem;
}
.lightbox__nav {
  width: 3.1rem; height: 3.1rem;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: .28rem;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .lightbox { padding: 1rem .5rem; }
  .lightbox__nav {
    position: absolute;
    bottom: 1.2rem;
    width: 2.9rem; height: 2.9rem;
  }
  .lightbox__nav--prev { left: 22%; }
  .lightbox__nav--next { right: 22%; }
  .lightbox__figure { max-height: 78vh; }
  .lightbox__figure img { max-height: calc(78vh - 5rem); }
}

/* ====================== Redes sociales ====================== */
.social { display: flex; gap: .6rem; flex-wrap: wrap; }
.social__link {
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 178, 95, .5);
  color: var(--oro-cl);
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.social__link:hover {
  background: var(--oro);
  color: #fff;
  border-color: var(--oro);
  transform: translateY(-2px);
}
.social--dark { justify-content: center; }
.social--dark .social__link { border-color: rgba(179, 135, 58, .55); color: var(--oxido); }
.social--dark .social__link:hover { background: var(--oxido); color: #fff; border-color: var(--oxido); }

/* ========================= Reservar ========================= */
.reservar { max-width: 1120px; }
.reservar__grid {
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
}
@media (min-width: 980px) {
  .reservar__grid { grid-template-columns: 1.25fr .75fr; }
}
.reservar__card {
  position: relative;
  background:
    radial-gradient(circle at 85% 12%, rgba(217,178,95,.08), transparent 45%),
    var(--espresso);
  color: var(--crema);
  border: 1px solid rgba(217,178,95,.35);
  outline: 1px solid rgba(217,178,95,.18);
  outline-offset: 5px;
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--sombra);
}
.reservar__card .corner { color: var(--oro-cl); opacity: .7; width: 34px; height: 34px; }
.reservar .section__title { color: var(--crema); }
.reservar .section__intro { color: rgba(246,239,224,.82); margin-bottom: 2rem; }
.form { display: grid; gap: 1rem; max-width: 560px; margin: 0 auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: grid;
  gap: .4rem;
  font-family: var(--grabado);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,239,224,.85);
}
.form input, .form textarea, .form select {
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: .72rem .85rem;
  border-radius: var(--radio);
  border: 1px solid rgba(246,239,224,.28);
  background: rgba(246,239,224,.06);
  color: var(--crema);
  width: 100%;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(246,239,224,.4); }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--oro-cl); border-color: transparent; }
.form input[type="date"], .form input[type="time"] { color-scheme: dark; }
.form select { color-scheme: dark; cursor: pointer; }
.form select option { background: var(--espresso); color: var(--crema); }
.form__hint { text-align: center; font-size: .92rem; color: var(--oro-cl); min-height: 1.2em; margin: .3rem 0 0; font-family: var(--serif); text-transform: none; letter-spacing: 0; }
.form__hint--warn { color: #f0b7a4; font-weight: 600; }

/* Aviso de día de cierre */
.closed-note {
  font-family: var(--grabado);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oxido);
  margin: .45rem 0 0;
}
.closed-note--dark { color: #d98b78; }

/* Tarjeta lateral tipo boleto */
.reservar__aside {
  position: relative;
  background: var(--tarjeta);
  border: 1px dashed rgba(179,135,58,.65);
  outline: 1px solid var(--linea);
  outline-offset: 5px;
  box-shadow: var(--sombra);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.reservar__aside h3 {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2rem;
  color: var(--espresso);
  margin: 0;
}
.aside__block h4 {
  font-family: var(--grabado);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oxido);
  margin: 0 0 .3rem;
}
.aside__block p { margin: 0; font-size: 1.05rem; color: var(--texto-1); }
.aside__block a { color: var(--verdigris-dk); text-decoration: none; }
.aside__block a:hover { text-decoration: underline; }
.aside__mail { font-size: .92rem; overflow-wrap: anywhere; }
.aside__note {
  font-style: italic;
  font-size: .98rem;
  color: var(--texto-2);
  border-top: 1px solid var(--linea);
  padding-top: 1rem;
  margin: 0;
}
/* Emblema oficial, también en la tarjeta de la reservación */
.aside__seal {
  display: block;
  width: 92px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 14px rgba(54, 34, 25, .32));
}

/* ====================== Ubicación / mapa ==================== */
.ubicacion { text-align: center; }
.map {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--linea-oro);
  outline: 1px solid var(--linea-menta);
  outline-offset: 6px;
  overflow: hidden;
  box-shadow: var(--sombra);
  background: var(--crema-2);
  padding: 8px;
}
.map__frame {
  display: block;
  width: 100%;
  height: 430px;
  border: 1px solid var(--linea);
  filter: sepia(16%) saturate(92%);
}
.ubicacion__actions { margin-top: 1.7rem; }

/* ========================== Footer ========================== */
.footer {
  position: relative;
  background: var(--noche);
  color: rgba(246,239,224,.8);
  padding: 4rem 1.25rem 2rem;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background:
    repeating-linear-gradient(90deg, var(--oro) 0 14px, transparent 14px 44px),
    repeating-linear-gradient(90deg, transparent 0 22px, var(--menta) 22px 36px, transparent 36px 44px);
  opacity: .5;
}
.footer__grid {
  max-width: 1080px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
}
.footer h4 {
  font-family: var(--grabado);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oro-cl);
  margin: 0 0 .55rem;
}
.footer p { margin: 0; }
.footer a { color: var(--verdigris); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__tag { font-family: var(--script); font-size: 1.35rem; color: var(--crema); }
.footer__legal {
  text-align: center;
  border-top: 1px solid rgba(246,239,224,.14);
  padding-top: 1.4rem;
  font-size: .88rem;
  color: rgba(246,239,224,.5);
}
.footer__credit {
  text-align: center;
  font-size: .78rem;
  color: rgba(246,239,224,.35);
  margin-top: .5rem;
}

/* ===================== WhatsApp flotante ==================== */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--grabado);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,.8);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }

/* ===================== Reveal al hacer scroll =============== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.gallery__item.reveal { transform: translateY(22px) rotate(-1.1deg); }
.gallery__item.reveal.is-visible { transform: rotate(-1.1deg); }
.gallery__item:nth-child(2n).reveal.is-visible { transform: rotate(1.2deg); }
.gallery__item:nth-child(3n).reveal.is-visible { transform: rotate(-.6deg); }

/* ========================= Responsive ======================= */
@media (max-width: 720px) {
  body { font-size: 18px; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--papel);
    border-bottom: 1px solid var(--linea);
    padding: .5rem 1.25rem 1rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .8rem 0; border-bottom: 1px solid var(--linea); }
  .nav__links .btn { margin-top: .6rem; text-align: center; }
  .nav__links .lang-toggle { margin-top: .8rem; align-self: center; }
  .nav__toggle { display: block; }
  .form__row { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: .8rem; }
  .hero { min-height: 92vh; }
  .hero__frame { outline-offset: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { background-attachment: scroll; }
}
