/* =========================================================
   SABORES ARGENTINOS — hoja de estilos principal
   Sistema de diseño inspirado en la identidad real de la marca:
   oxblood + madera quemada del logo, celeste de la bandera en
   las "olas" del isotipo, y el carbón/ember del asado.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Caveat:wght@500;700&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  /* ---- color tokens (grounded in the real logo) ---- */
  --charcoal:        #1b1411;   /* noche de asado */
  --charcoal-soft:    #251c17;
  --charcoal-line:    rgba(246,239,225,0.14);

  --cream:            #f6efe1;  /* papel / mantel */
  --cream-deep:       #efe3cd;
  --cream-line:       rgba(42,30,23,0.13);

  --oxblood:          #7d2e2e;  /* color exacto del wordmark */
  --oxblood-dark:     #5e2222;
  --oxblood-light:    #a3473f;

  --brown:            #4a2e21;  /* color exacto de los "cuernos" del logo */

  --celeste:          #75a8db;  /* color exacto de las olas del logo */
  --celeste-dark:     #4f86bd;

  --ember:            #d9722c;  /* acento cálido del fuego, extiende la paleta */
  --ember-dark:       #b85a1f;

  --ink:              #2a1e17;  /* texto principal sobre crema */
  --ink-soft:         #5a4a3d;
  --paper:            #fffaf2;

  /* ---- type ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-hand:    'Caveat', cursive;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- layout ---- */
  --container: 1180px;
  --gutter: 24px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --header-h: 88px;

  --shadow-card: 0 14px 34px -16px rgba(27,20,17,0.45);
  --shadow-soft: 0 8px 20px -10px rgba(27,20,17,0.3);

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (max-width: 720px){
  :root{ --header-h: 64px; --gutter: 18px; }
}

/* =========================== RESET =========================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
h1,h2,h3,h4,p,figure{ margin:0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

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

.container{
  width:100%;
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: var(--gutter);
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--cream); color:var(--ink); padding:12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; }

section{ position:relative; scroll-margin-top: var(--header-h); }
#catering{ scroll-margin-top: var(--header-h); }

/* eyebrow label used across sections */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight:700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.eyebrow::before{
  content:"";
  width: 26px; height: 2px;
  background: var(--ember);
  display:inline-block;
}
.on-dark .eyebrow{ color: var(--celeste); }
.on-dark .eyebrow::before{ background: var(--ember); }

.section-head{
  max-width: 640px;
  margin-bottom: clamp(28px, 5vw, 46px);
}
.section-head.center{ margin-inline:auto; text-align:center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 10px;
}
.on-dark .section-title{ color: var(--cream); }

.section-lede{
  margin-top: 14px;
  font-size: 1.04rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section-head.center .section-lede{ margin-inline:auto; }
.on-dark .section-lede{ color: rgba(246,239,225,0.78); }

/* generic buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn-primary{ background: var(--ember); color: var(--paper); }
.btn-primary:hover{ background: var(--ember-dark); }
.btn-outline-dark{ border-color: rgba(246,239,225,0.55); color: var(--cream); }
.btn-outline-dark:hover{ border-color: var(--cream); background: rgba(246,239,225,0.08); }
.btn-outline{ border-color: var(--oxblood); color: var(--oxblood); }
.btn-outline:hover{ background: var(--oxblood); color: var(--cream); }
.btn-line{ color: var(--oxblood); font-weight:700; gap:8px; padding:6px 0; border-radius:0; }
.btn-line::after{ content:"→"; transition: transform .18s var(--ease); }
.btn-line:hover::after{ transform: translateX(4px); }
.btn-sm{ padding: 10px 18px; font-size: 0.88rem; }

/* =========================== WAVE DIVIDER (signature) ===========================
   Recreates the three curved lines from the brand mark as a recurring
   structural device between sections — literally the logo's own motif. */
.wave-divider{
  display:block; width:100%; height: 34px;
  margin: 0 auto;
}
.wave-divider svg{ width:100%; height:100%; display:block; }
.wave-divider.tight{ height:20px; }

/* =========================== HEADER =========================== */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(246,239,225,0.92);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--cream-line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled{ box-shadow: 0 6px 18px -12px rgba(27,20,17,0.35); }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: var(--header-h);
  gap: 18px;
}
.nav__brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav__brand img{ height: 60px; width:auto; }
@media (max-width:720px){ .nav__brand img{ height:48px; } }

.nav__links{
  display:flex; align-items:center; gap: clamp(14px, 2vw, 28px);
}
.nav__links a{
  font-size: 0.92rem; font-weight:600; color: var(--ink-soft);
  position:relative; padding: 6px 2px;
  transition: color .18s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active{ color: var(--oxblood); }
.nav__links a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--ember);
  border-radius:2px;
}

.nav__cta{ display:flex; align-items:center; gap:10px; }
.nav__call{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:0.92rem; color: var(--oxblood);
  border: 1.5px solid var(--oxblood); padding: 9px 16px; border-radius:100px;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__call:hover{ background: var(--oxblood); color:var(--cream); }
.nav__call svg{ width:16px; height:16px; }

.nav__toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; border-radius:10px; border:1.5px solid var(--cream-line);
  background: transparent;
}
.nav__toggle span{ display:block; height:2px; background: var(--ink); border-radius:2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav__toggle span:nth-child(1){ width: 20px; margin-inline:auto;}
.nav__toggle span:nth-child(2){ width: 20px; margin-inline:auto;}
.nav__toggle span:nth-child(3){ width: 14px; margin-inline:auto;}

@media (max-width: 880px){
  .nav__links{
    position: fixed; top: var(--header-h); left:0; right:0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 28px var(--gutter) 110px;
    gap: 2px;
    transform: translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    overflow-y:auto;
  }
  .nav__links a{
    font-size: 1.18rem; padding: 14px 4px; border-bottom: 1px solid var(--cream-line);
  }
  .nav-open .nav__links{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .nav__cta{ display:none; }
  .nav__toggle{ display:flex; }
  .nav-open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-open .nav__toggle span:nth-child(2){ opacity:0; }
  .nav-open .nav__toggle span:nth-child(3){ width:20px; transform: translateY(-7px) rotate(-45deg); }
}

/* =========================== HERO =========================== */
.hero{
  position:relative;
  min-height: min(92vh, 880px);
  display:flex; align-items:flex-end;
  background: var(--charcoal);
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: url('../assets/img/hero-asado.jpg');
  background-size: cover; background-position: center 38%;
}
.hero__bg picture, .hero__bg img{ width:100%; height:100%; object-fit:cover; object-position:center 40%; }
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(15,11,9,0.94) 0%, rgba(15,11,9,0.72) 32%, rgba(15,11,9,0.38) 58%, rgba(15,11,9,0.55) 100%);
}
.hero__embers{
  position:absolute; inset:0;
  background: radial-gradient(700px 380px at 18% 18%, rgba(217,114,44,0.28), transparent 60%),
              radial-gradient(520px 320px at 85% 8%, rgba(117,168,219,0.16), transparent 60%);
  mix-blend-mode: screen;
}

.hero__content{
  position:relative; z-index:2;
  width:100%;
  padding-block: 120px clamp(40px, 8vw, 76px);
}
.hero__tag{
  display:inline-flex; align-items:center; gap:12px;
  font-family: var(--font-body); font-weight:800; font-size:1rem;
  letter-spacing:0.22em; text-transform:uppercase; color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  background: rgba(117,168,219,0.18);
  border: 1px solid rgba(117,168,219,0.5);
  padding: 7px 16px 7px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.hero__tag::before{ content:""; width:26px; height:2px; background:var(--celeste); flex-shrink:0; }

.hero h1{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--cream);
  font-size: clamp(2.5rem, 7.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-top: 16px;
  max-width: 16ch;
}
.hero h1 em{
  font-style: italic; font-weight:700; color: #ffb347;
  text-shadow: 0 0 30px rgba(255,140,0,0.6), 0 2px 8px rgba(0,0,0,0.8);
}

.hero__sub{
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(246,239,225,0.86);
  max-width: 46ch;
}

.hero__actions{
  margin-top: 34px;
  display:flex; flex-wrap:wrap; gap: 14px;
}

.hero__chips{
  margin-top: 44px;
  display:flex; flex-wrap:wrap; gap: 10px 28px;
}
.hero__chip{
  display:flex; align-items:center; gap:9px;
  font-size:0.86rem; font-weight:600; color: rgba(246,239,225,0.78);
}
.hero__chip svg{ width:17px; height:17px; flex-shrink:0; color: var(--ember); }

.hero__badge{
  position:absolute; top:128px; right: clamp(16px, 6vw, 90px);
  z-index:3;
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--charcoal);
  background: var(--cream);
  padding: 10px 22px 14px;
  border-radius: 10px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-card);
}
.hero__badge::after{
  content:"";
  position:absolute; inset:0; border-radius:10px;
  border: 1.5px dashed rgba(125,46,46,0.4);
  margin:4px;
}
@media (max-width: 880px){ .hero__badge{ display:none; } }

/* =========================== STAT / FACT CHIPS (about) =========================== */
.about{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--cream);
}
.about__grid{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px,5vw,64px);
  align-items:center;
}
@media (max-width: 880px){ .about__grid{ grid-template-columns:1fr; } }

.about__media{ position:relative; }
.about__media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width:100%; aspect-ratio: 4/5; object-fit:cover;
}
.about__media-tag{
  position:absolute; left:-16px; bottom:-18px;
  background: var(--oxblood); color: var(--cream);
  font-family: var(--font-display); font-style:italic; font-weight:500;
  font-size: 1.05rem;
  padding: 14px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 240px;
}
@media (max-width:560px){ .about__media-tag{ left:8px; bottom:-14px; font-size:0.92rem; padding:11px 16px;} }

.about__copy p + p{ margin-top: 16px; }
.about__copy{ color: var(--ink-soft); font-size:1.04rem; }

.fact-row{
  display:grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  margin-top: 36px;
}
@media (max-width:480px){ .fact-row{ grid-template-columns:1fr; } }
.fact{
  border: 1px solid var(--cream-line);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.fact__num{
  font-family: var(--font-display); font-weight:600; font-size:1.5rem; color: var(--oxblood);
  display:block;
}
.fact__label{ font-size:0.86rem; color: var(--ink-soft); margin-top:2px; display:block; }

/* =========================== MENU =========================== */
.menu-section{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--charcoal);
  background-image:
    radial-gradient(900px 480px at 10% 0%, rgba(125,46,46,0.18), transparent 60%),
    radial-gradient(700px 420px at 95% 30%, rgba(117,168,219,0.08), transparent 55%);
}

.menu-toolbar{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px;
  margin-bottom: 30px;
}
.menu-pdf-links{ display:flex; flex-wrap:wrap; gap:10px; }

.menu-note{
  margin-top: 36px;
  font-size: 0.86rem;
  color: rgba(246,239,225,0.6);
  border-top: 1px solid var(--charcoal-line);
  padding-top: 20px;
  max-width: 72ch;
}

.menu-accordion{
  display:flex; flex-direction:column;
  border-top: 1px solid var(--charcoal-line);
}
.menu-cat{
  border-bottom: 1px solid var(--charcoal-line);
}
.menu-cat__summary{
  list-style:none;
  display:flex; align-items:center; gap:18px;
  padding: 22px 4px;
  cursor:pointer;
  user-select:none;
}
.menu-cat__summary::-webkit-details-marker{ display:none; }
.menu-cat__num{
  font-family: var(--font-display); font-style:italic; font-weight:500;
  color: var(--ember);
  font-size: 1rem;
  width: 30px; flex-shrink:0;
}
.menu-cat__title{
  font-family: var(--font-display); font-weight:600; color: var(--cream);
  font-size: clamp(1.18rem, 2.4vw, 1.5rem);
  flex:1;
}
.menu-cat__chevron{
  width: 30px; height:30px; border-radius:50%;
  border: 1.5px solid rgba(246,239,225,0.3);
  position:relative; flex-shrink:0;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.menu-cat__chevron::before, .menu-cat__chevron::after{
  content:""; position:absolute; left:50%; top:50%; background: var(--cream);
  width:11px; height:1.6px; transform-origin:center;
}
.menu-cat__chevron::before{ transform: translate(-50%,-50%); }
.menu-cat__chevron::after{ transform: translate(-50%,-50%) rotate(90deg); transition: transform .25s var(--ease); }
.menu-cat[open] .menu-cat__chevron::after{ transform: translate(-50%,-50%) rotate(0deg); }
.menu-cat[open] .menu-cat__chevron{ background: var(--oxblood); border-color: var(--oxblood); }

.menu-cat__body{ padding: 0 4px 30px 48px; }
.menu-cat__subtitle{
  font-style:italic; color: rgba(246,239,225,0.55); font-size:0.92rem; margin-bottom:18px; max-width:60ch;
}
@media (max-width:600px){ .menu-cat__body{ padding-left:4px; } }

.menu-list{ display:grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
@media (max-width:760px){ .menu-list{ grid-template-columns:1fr; } }

.menu-item{ padding: 11px 0; border-bottom: 1px dashed rgba(246,239,225,0.12); }
.menu-item__row{ display:flex; align-items:baseline; gap:8px; }
.menu-item__name{ color: var(--cream); font-weight:500; font-size:0.98rem; }
.menu-item__leader{
  flex:1; border-bottom: 1px dotted rgba(246,239,225,0.28); transform: translateY(-3px);
  min-width: 14px;
}
.menu-item__price{
  font-family: var(--font-display); font-weight:600; color: var(--ember);
  font-size: 0.98rem; white-space:nowrap;
}
.menu-item__desc{ margin-top:3px; font-size:0.84rem; color: rgba(246,239,225,0.55); max-width:60ch; }

/* =========================== EMPANADAS SPOTLIGHT =========================== */
.empanadas{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--cream);
  overflow:hidden;
}
.empanadas__grid{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,70px);
  align-items:center;
}
@media (max-width: 900px){ .empanadas__grid{ grid-template-columns:1fr; } }
.empanadas__media{ position:relative; }
.empanadas__media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width:100%; aspect-ratio: 5/4; object-fit:cover; object-position: center top;
}
.empanadas__price-tag{
  position:absolute; right:-14px; top:-14px;
  background: var(--ember); color:var(--paper);
  width:104px; height:104px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow: var(--shadow-soft);
  transform: rotate(8deg);
}
.empanadas__price-tag b{ font-family: var(--font-display); font-size:1.5rem; line-height:1; }
.empanadas__price-tag span{ font-size:0.66rem; letter-spacing:0.06em; text-transform:uppercase; margin-top:3px;}
@media (max-width:560px){ .empanadas__price-tag{ width:84px; height:84px; right:4px; top:-12px;} .empanadas__price-tag b{font-size:1.2rem;} }

.flavor-grid{
  margin-top: 26px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.flavor-chip{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--paper);
  border:1px solid var(--cream-line);
  color: var(--ink);
  font-size:0.88rem; font-weight:500;
  padding: 9px 16px; border-radius: 100px;
}
.flavor-chip.fried{ border-color: rgba(217,114,44,0.45); }
.flavor-chip .dot{ width:7px; height:7px; border-radius:50%; background: var(--oxblood); flex-shrink:0; }
.flavor-chip.fried .dot{ background: var(--ember); }

.flavor-legend{
  margin-top:16px; display:flex; gap:20px; flex-wrap:wrap;
  font-size:0.82rem; color: var(--ink-soft);
}
.flavor-legend span{ display:inline-flex; align-items:center; gap:7px; }
.flavor-legend .dot{ width:7px; height:7px; border-radius:50%; background: var(--oxblood); }
.flavor-legend .dot.fried{ background: var(--ember); }

/* =========================== GALLERY =========================== */
.gallery{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--cream-deep);
}
.gallery__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 13vw;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (max-width: 880px){ .gallery__grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 38vw; } }
@media (min-width: 1180px){ .gallery__grid{ grid-auto-rows: 150px; } }

.gallery__item{
  position:relative; overflow:hidden; border-radius: var(--radius-md);
  cursor: zoom-in;
  background: var(--charcoal);
}
.gallery__item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img{ transform: scale(1.06); }
.gallery__item::after{
  content: attr(data-caption);
  position:absolute; left:0; right:0; bottom:0;
  padding: 28px 14px 12px;
  background: linear-gradient(0deg, rgba(15,11,9,0.85), transparent);
  color: var(--cream); font-size:0.82rem; font-weight:600;
  opacity:0; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.gallery__item:hover::after{ opacity:1; transform:translateY(0); }

.gallery__item--wide{ grid-column: span 2; }
.gallery__item--tall{ grid-row: span 2; }
@media (max-width:880px){ .gallery__item--wide{ grid-column: span 2; } .gallery__item--tall{ grid-row: span 1; } }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200;
  background: rgba(15,11,9,0.92);
  display:flex; align-items:center; justify-content:center;
  padding: 28px;
  opacity:0; pointer-events:none;
  transition: opacity .25s var(--ease);
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:min(900px,92vw); max-height:84vh; border-radius:10px; box-shadow:0 30px 60px rgba(0,0,0,0.5); }
.lightbox__caption{ position:absolute; bottom:28px; left:0; right:0; text-align:center; color:var(--cream); font-size:0.9rem; }
.lightbox__close{
  position:absolute; top:20px; right:20px;
  width:46px; height:46px; border-radius:50%;
  background: rgba(246,239,225,0.12); border:1px solid rgba(246,239,225,0.3);
  color:var(--cream); font-size:1.3rem; line-height:1;
}

/* =========================== EVENTS =========================== */
.events{
  padding-block: clamp(60px, 8vw, 96px);
  background: var(--charcoal);
  color: var(--cream);
}
.events__grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px,4vw,48px);
}
@media (max-width:880px){ .events__grid{ grid-template-columns:1fr; } }

.event-card{
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: clamp(26px,4vw,40px);
}
.event-card__top{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.event-card__day{
  font-family: var(--font-hand); font-size:2rem; color: var(--celeste);
}
.event-card__title{
  font-family: var(--font-display); font-weight:600; font-size: clamp(1.4rem,3vw,1.9rem);
  margin-top:10px;
}
.event-card__who{ color: var(--ember); font-style:italic; font-family: var(--font-display); }
.event-card__meta{
  margin-top:18px; display:flex; flex-wrap:wrap; gap: 12px 26px;
}
.event-card__meta div{ font-size:0.9rem; color: rgba(246,239,225,0.75); }
.event-card__meta b{ display:block; color: var(--cream); font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:3px; }
.event-card__cta{ margin-top: 26px; }

.event-side{
  border: 1px dashed rgba(246,239,225,0.28);
  border-radius: var(--radius-lg);
  padding: clamp(24px,4vw,34px);
  display:flex; flex-direction:column; justify-content:center;
}
.event-side p{ color: rgba(246,239,225,0.78); }
.event-side .btn{ margin-top:18px; align-self:flex-start; }

/* =========================== PROMO + CATERING (two-up band) =========================== */
.split-band{
  display:grid; grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){ .split-band{ grid-template-columns:1fr; } }

.promo-block, .catering-block{
  padding: clamp(56px,7vw,90px) clamp(24px,5vw,56px);
  position:relative;
}
.promo-block{ background: var(--oxblood); color: var(--cream); }
.catering-block{ background: var(--cream); color: var(--ink); }

.promo-block .section-title, .catering-block .section-title{ max-width: 18ch; }
.promo-block .section-title{ color: var(--cream); }

.band-img{
  width: 86px; height:86px; border-radius:50%; object-fit:cover;
  border: 3px solid rgba(246,239,225,0.5);
  margin-bottom: 22px;
}
.catering-block .band-img{ border-color: rgba(125,46,46,0.35); }

.promo-block p.section-lede{ color: rgba(246,239,225,0.86); }
.band-cta{ margin-top: 26px; }

.ribbon{
  display:inline-block; font-family: var(--font-hand); font-size:1.3rem;
  color: var(--ember); margin-bottom: 6px;
}

/* =========================== LOCATION =========================== */
.location{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--cream-deep);
}
.location__grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,50px);
  align-items:stretch;
}
@media (max-width: 900px){ .location__grid{ grid-template-columns:1fr; } }

.info-card{
  background: var(--paper); border:1px solid var(--cream-line); border-radius: var(--radius-lg);
  padding: clamp(26px,4vw,40px);
}
.info-row{ display:flex; gap:16px; padding: 16px 0; border-bottom: 1px solid var(--cream-line); }
.info-row:last-of-type{ border-bottom:none; }
.info-row svg{ width:22px; height:22px; color: var(--oxblood); flex-shrink:0; margin-top:2px; }
.info-row h3{ font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; color: var(--ink-soft); margin-bottom:4px; }
.info-row p, .info-row a{ font-size:1.02rem; font-weight:600; color: var(--ink); }
.info-row a:hover{ color: var(--oxblood); }

.hours-table{ width:100%; border-collapse:collapse; margin-top:4px; }
.hours-table td{ padding: 3px 0; font-size:0.98rem; }
.hours-table td:first-child{ color: var(--ink-soft); }
.hours-table td:last-child{ text-align:right; font-weight:600; }
.hours-table tr.closed td:last-child{ color: var(--oxblood); }

.info-card__actions{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }

.map-frame{
  border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--cream-line);
  min-height: 320px; box-shadow: var(--shadow-soft);
}
.map-frame iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; }

/* =========================== FOOTER =========================== */
.site-footer{
  background: var(--charcoal); color: rgba(246,239,225,0.75);
  padding-block: 56px clamp(96px, 14vw, 56px);
}
.footer__top{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap: 32px;
  padding-bottom: 36px; border-bottom: 1px solid var(--charcoal-line);
}
.footer__brand img{ height:80px; width:auto; margin-bottom:14px; }
.footer__brand p{ max-width: 34ch; font-size:0.92rem; }
.footer__cols{ display:flex; gap: clamp(28px,6vw,72px); flex-wrap:wrap; }
.footer__col h4{ font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; color: var(--celeste); margin-bottom:14px; }
.footer__col a, .footer__col p{ display:block; font-size:0.92rem; margin-bottom:9px; color: rgba(246,239,225,0.75); }
.footer__col a:hover{ color: var(--cream); }

.footer__bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
  padding-top: 22px; font-size: 0.82rem; color: rgba(246,239,225,0.5);
}

/* =========================== MOBILE STICKY CTA BAR =========================== */
.mobile-bar{
  position: fixed; left:0; right:0; bottom:0; z-index:80;
  display:none;
  background: var(--cream);
  border-top: 1px solid var(--cream-line);
  box-shadow: 0 -10px 24px -16px rgba(27,20,17,0.4);
  padding: 10px max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
}
.mobile-bar__row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.mobile-bar a{
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-weight:700; font-size:0.92rem; padding: 13px 10px; border-radius:100px;
}
.mobile-bar a svg{ width:18px; height:18px; }
.mobile-bar a.call{ background: var(--oxblood); color: var(--cream); }
.mobile-bar a.dir{ background: var(--charcoal); color: var(--cream); }

@media (max-width: 720px){
  .mobile-bar{ display:block; }
  body{ padding-bottom: 74px; }
}

/* generic reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* =========================== INSTITUCIONAL =========================== */
.institucional{
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--charcoal);
  background-image:
    radial-gradient(800px 400px at 90% 100%, rgba(125,46,46,0.14), transparent 55%);
}
.institucional__grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,64px);
  align-items:center;
}
@media (max-width:900px){ .institucional__grid{ grid-template-columns:1fr; } }
.institucional__media img{
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  width:100%; aspect-ratio: 3/2; object-fit:cover;
}
.institucional__bullets{
  display:flex; flex-direction:column; gap:14px; margin-top:28px;
}
.institucional__bullet{
  display:flex; gap:14px; align-items:flex-start;
}
.institucional__bullet svg{
  width:22px; height:22px; color: var(--celeste); flex-shrink:0; margin-top:2px;
}
.institucional__bullet p{ font-size:1rem; color:rgba(246,239,225,0.84); }

/* =========================== VIDEO EMBED / MARIANA =========================== */
.video-wrap{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  background: var(--charcoal); box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
}
.video-wrap video{
  width:100%; height:100%; object-fit:cover; display:block;
}
.video-poster-overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background: rgba(15,11,9,0.55);
  cursor:pointer;
  transition: background .22s var(--ease);
}
.video-poster-overlay:hover{ background: rgba(15,11,9,0.35); }
.video-play-btn{
  width:72px; height:72px; border-radius:50%;
  background: var(--oxblood); border:3px solid rgba(246,239,225,0.7);
  display:flex; align-items:center; justify-content:center;
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.video-poster-overlay:hover .video-play-btn{ transform: scale(1.08); background: var(--ember); }
.video-play-btn svg{ width:28px; height:28px; color:var(--cream); margin-left:4px; }
.video-label{
  margin-top:14px; font-family: var(--font-hand); font-size:1.4rem;
  color: var(--cream); text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.event-card__video{ margin-top:22px; }

/* Galería extra: extend with new images */
.gallery__item--featured{ grid-column: span 2; grid-row: span 2; }
@media (max-width:880px){ .gallery__item--featured{ grid-column: span 2; grid-row: span 1; } }
