/* =========================================================
   La Hípica — Restaurante de carne, campo y fuego
   Hoja de estilos principal · paleta marrones y blancos
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Cormorant Garamond', 'EB Garamond', Garamond, Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Tokens · paleta marrones y blancos ---------- */
:root {
  --cream:     #E6E0D6;   /* fondo principal */
  --paper:     #EFE9DD;   /* fondo alterno (sutilmente más claro) */
  --white:     #FAF7F0;   /* off-white para tarjetas */
  --ink:       #3F3527;   /* texto principal */
  --ink-soft:  #5E5141;   /* texto secundario */
  --muted:     #8F8068;   /* texto tenue */
  --line:      #C9BEA8;   /* bordes y separadores */
  --accent:    #8B7355;   /* marrón cálido (sustituye al rojo) */
  --accent-d:  #6E5A40;
  --gold:      #B59673;   /* dorado suave */
  --warm:      #6B5840;   /* marrón tabaco para secciones oscuras */
  --warm-d:    #4F4334;   /* marrón profundo para footer */
  --on-warm:   #F2ECDF;   /* texto sobre fondos cálidos oscuros */
  --on-warm-mut:#D8CDB6;  /* texto tenue sobre fondos cálidos oscuros */

  --shadow:    0 14px 38px rgba(63,53,39,.10);
  --shadow-sm: 0 4px 14px rgba(63,53,39,.06);
  --radius:    4px;
  --container: 1180px;

  /* aliases (compatibilidad con clases/inline antiguos) */
  --ember:     var(--accent);
  --ember-d:   var(--accent-d);
  --char:      var(--warm);
}

/* ---------- Tipografía ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem); font-weight: 500; letter-spacing: 0.015em; }
h2 { font-size: clamp(1.9rem, 3vw + .8rem, 3rem); }
h3 { font-size: clamp(1.4rem, 1.5vw + .8rem, 1.9rem); }
h4 { font-size: 1.3rem; font-weight: 600; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
em.flame { color: var(--accent); font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}
.eyebrow::before { content: "— "; color: var(--gold); }
.eyebrow::after  { content: " —"; color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.section--paper { background: var(--paper); }
.section--warm  { background: var(--warm); color: var(--on-warm); }
.section--warm h1, .section--warm h2,
.section--warm h3, .section--warm h4 { color: var(--on-warm); }
/* compatibilidad con la clase antigua */
.section--dark { background: var(--warm); color: var(--on-warm); }
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--on-warm); }

.divider {
  display: flex; align-items: center; justify-content: center;
  margin: 2rem 0; gap: 14px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); max-width: 80px; }
.divider svg { width: 22px; height: 22px; color: var(--accent); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--white);
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--accent, .btn--ember { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn--accent:hover, .btn--ember:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn svg { width: 16px; height: 16px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(230, 224, 214, 0.94);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid rgba(63,53,39,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1340px; margin: 0 auto;
}
.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .35em;
  color: var(--accent); text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 26px; align-items: center;
}
.nav-links a {
  font-size: .92rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); position: relative;
  padding: 6px 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; font-size: .85rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--accent); color: var(--white) !important; border-radius: var(--radius);
  transition: background .2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-d); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 4px;
  z-index: 90;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); position: relative;
  transition: all .25s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink); transition: all .25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* breakpoint subido: en pantallas medianas/portátiles ya cabe el menú */
@media (max-width: 1024px) {
  .site-header {
    /* Sólido en móvil para que el logo se lea siempre, esté el menú abierto o no */
    background: var(--cream) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(63,53,39,.06);
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 32px;
    transform: translateY(-110%);
    transition: transform .35s ease, visibility 0s linear .35s;
    pointer-events: none;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(63,53,39,.22);
    overflow-y: auto;
    z-index: 99;
    visibility: hidden;
  }
  .nav-links a {
    font-size: 1.1rem; padding: 16px 4px;
    border-bottom: 1px solid var(--line); width: 100%;
    text-align: left;
  }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--accent); }
  .nav-cta {
    margin-top: 20px;
    padding: 14px 24px;
    text-align: center;
    justify-content: center;
    border-bottom: 0;
    font-size: 1rem;
  }
  .site-header[data-open="true"] {
    background: var(--white) !important;
  }
  .site-header[data-open="true"] .nav-links {
    transform: translateY(0); pointer-events: auto; visibility: visible;
    transition: transform .35s ease, visibility 0s linear 0s;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 880px);
  display: flex; align-items: center;
  color: var(--on-warm);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, #3F3527 0%, #5E4F3A 55%, #6B5840 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  opacity: 1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* Capa oscura uniforme del 30% para dar atmósfera y mejorar la legibilidad */
  background: rgba(0,0,0,.30);
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto; padding: 90px 24px;
  text-align: center;
  animation: rise .9s ease-out both;
  width: 100%;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: .92rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-style: italic; font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: 0.015em;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4);
}
.hero h1 .amp { font-style: normal; color: var(--gold); margin: 0 .15em; font-weight: 400; }
.hero p.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: italic; font-weight: 400;
  color: var(--white); max-width: 620px; margin: 0 auto 36px;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}
.hero-eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero-meta { text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero-actions .btn--ghost { color: var(--white); border-color: rgba(250,247,240,.5); }
.hero-actions .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero-meta {
  margin-top: 56px; display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-warm-mut);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  padding: clamp(110px, 14vw, 180px) 0 clamp(50px, 7vw, 90px);
  text-align: center;
  color: var(--on-warm);
  background: var(--warm);
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../img/banner.jpg');
  background-size: cover; background-position: center;
  opacity: 1;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 100%);
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-style: italic; text-shadow: 0 2px 22px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4); }
.page-banner p { color: var(--white); max-width: 640px; margin: 0 auto; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.page-banner .breadcrumb { text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.breadcrumb {
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.breadcrumb a { color: var(--on-warm-mut); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 28px; }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .img-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #6B5840, #4F4334);
  position: relative; overflow: hidden;
}
.card .img-placeholder span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,236,223,.6);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.05rem;
  text-align: center; padding: 16px;
}
.card .img-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .4em; }
.card-body p { color: var(--ink-soft); }
.card-body .stat {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; color: var(--accent); font-style: italic;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.card-link {
  margin-top: auto;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); padding-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link::after {
  content: "→"; transition: transform .2s ease;
}
.card-link:hover::after { transform: translateX(4px); }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.feature--reverse > :first-child { order: 2; }
.feature .feature-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #6B5840, #4F4334);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.feature .feature-img span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,236,223,.6);
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  text-align: center; padding: 24px; font-size: 1rem;
}
.feature .feature-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse > :first-child { order: 0; }
  .feature .feature-img { aspect-ratio: 4 / 3; }
}

/* ---------- Carta (menú) ---------- */
.menu-section {
  border-top: 1px solid var(--line);
  padding: 56px 0;
}
.menu-section:first-of-type { border-top: 0; padding-top: 30px; }
.menu-head {
  text-align: center; margin-bottom: 36px;
}
.menu-head h2 {
  font-style: italic; font-weight: 500;
  letter-spacing: .03em;
}
.menu-head p { color: var(--ink-soft); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.menu-list { display: grid; gap: 16px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--ink);
}
.menu-item .desc {
  display: block; font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: .96rem; color: var(--muted); margin-top: 4px;
  font-weight: 400;
}
.menu-item .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; gap: 24px; } }

.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 30px;
}
.menu-tab {
  padding: 10px 22px; border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .9rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--white);
  transition: all .2s ease;
}
.menu-tab:hover { color: var(--accent); border-color: var(--accent); }
.menu-tab[aria-selected="true"] {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}

/* ---------- Press grid ---------- */
.press-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.press-item {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 20px;
  display: flex; flex-direction: column;
  text-align: left;
  transition: all .25s ease;
  border-radius: var(--radius);
}
.press-item:hover {
  border-color: var(--accent);
  background: var(--paper);
  transform: translateY(-2px);
}
.press-item .outlet {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.press-item .read {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.press-item .read::after { content: "→"; }

/* ---------- Quote / pull ---------- */
.pull {
  text-align: center; max-width: 780px; margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.4; color: var(--ink);
}
.pull cite {
  display: block; margin-top: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal; font-size: .82rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Contacto / horarios ---------- */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius);
}
.info-card .icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--white); border-radius: 50%;
  margin-bottom: 14px;
}
.info-card .icon svg { width: 18px; height: 18px; }
.info-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 6px;
}
.info-card p, .info-card a {
  color: var(--ink-soft); font-size: 1rem; line-height: 1.6;
}
.info-card a:hover { color: var(--accent); }

.hours-list { font-size: 1rem; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px dashed var(--line);
  gap: 12px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.closed { color: var(--muted); }
.hours-list .day { font-weight: 500; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--warm), var(--warm-d));
  color: var(--on-warm);
  padding: clamp(56px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(181,150,115,.16), transparent 65%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); font-style: italic; }
.cta-strip p { color: var(--on-warm-mut); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn--light { color: var(--ink); }

/* ---------- Eventos / formulario simple ---------- */
.event-types {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 40px 0 60px;
}
.event-type {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-type:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.event-type .icon-circle {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--warm); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.event-type .icon-circle svg { width: 24px; height: 24px; }
.event-type h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 6px;
}
.event-type p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--warm-d);
  color: var(--on-warm-mut);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.site-footer .brand { color: var(--white); }
.site-footer .brand small { color: var(--gold); }
.site-footer p { color: var(--on-warm-mut); font-size: 1rem; line-height: 1.65; }
.site-footer h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .88rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}
.site-footer ul li { margin-bottom: 8px; line-height: 1.55; }
.site-footer ul a {
  color: var(--on-warm-mut); font-size: 1rem;
  transition: color .2s;
}
.site-footer ul a:hover { color: var(--white); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(250,247,240,.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.socials svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(250,247,240,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .85rem; color: rgba(216,205,182,.75);
}
.footer-bottom a { color: rgba(216,205,182,.85); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.35);
  transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.05); color: #fff; }
.fab-wa svg { width: 26px; height: 26px; }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.row-gap { display: flex; gap: 30px; flex-wrap: wrap; }

/* ---------- Animaciones on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- AJUSTES MÓVIL ---------- */
@media (max-width: 720px) {
  body { font-size: 18px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 70px 20px; }
  .hero { min-height: clamp(520px, 78vh, 760px); }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 4rem); }
  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    font-size: .8rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }

  .page-banner { padding-top: 100px; padding-bottom: 50px; }

  .menu-section { padding: 40px 0; }
  .menu-tabs .menu-tab { padding: 9px 16px; font-size: .82rem; }

  .feature { gap: 30px; }

  .cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  .nav { padding: 12px 18px; }
  .brand { font-size: 1.35rem; }
  .brand small { font-size: .56rem; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
  .info-card { padding: 24px 20px; }
  .card-body { padding: 24px 22px 28px; }
  .menu-item { grid-template-columns: 1fr; gap: 4px; }
  .menu-item .price { font-size: 1.1rem; }
  .press-grid { grid-template-columns: 1fr; }
  .event-types { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .fab-wa, .cta-strip { display: none; }
  body { background: #fff; color: #000; }
  .menu-item { break-inside: avoid; }
}
