/* ==========================================================
   CHICOTÍN — Stylesheet
   Paleta: crema cálida · terracota · carbón · piedra
   Tipografía: Cormorant Garamond (display) · DM Sans (body)
   ========================================================== */

/* ----------------------------------------------------------
   Custom properties
   ---------------------------------------------------------- */
:root {
  --cream:         #FAFAF6;
  --cream-warm:    #F3EBE0;
  --terracota:     #C0392B;
  --terracota-dk:  #A93226;
  --charcoal:      #1C1B18;
  --stone:         #787670;
  --border:        #E3DBD0;
  --white:         #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:     1200px;
  --sp-v:      6rem;
  --sp-v-sm:   4rem;

  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;

  --shadow-card:  0 2px 16px rgba(28, 27, 24, 0.08);
  --shadow-hover: 0 8px 36px rgba(28, 27, 24, 0.14);
}

/* ----------------------------------------------------------
   Reset
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  background:  var(--cream);
  color:       var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }

/* ----------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin:    0 auto;
  padding:   0 1.5rem;
}

section { padding: var(--sp-v) 1.5rem; }

/* ----------------------------------------------------------
   Typography helpers
   ---------------------------------------------------------- */
.eyebrow {
  display:        inline-block;
  font-size:      0.7rem;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--terracota);
  margin-bottom:  0.875rem;
}

.eyebrow--light { color: rgba(250, 250, 246, 0.4); }
.eyebrow--link  { text-decoration: none; transition: opacity 0.15s; }
.eyebrow--link:hover { opacity: 0.7; }

.section-header {
  text-align:    center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family:  var(--ff-display);
  font-size:    clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight:  500;
  line-height:  1.15;
  margin-bottom: 0.875rem;
}

.section-header p {
  color:       var(--stone);
  font-size:   1.05rem;
  max-width:   480px;
  margin:      0 auto;
  line-height: 1.75;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display:          inline-flex;
  align-items:      center;
  justify-content:  center;
  padding:          0.875rem 2rem;
  border-radius:    100px;
  font-family:      var(--ff-body);
  font-size:        0.95rem;
  font-weight:      500;
  border:           1.5px solid transparent;
  cursor:           pointer;
  touch-action:     manipulation;
  transition:       transform 0.15s ease, background 0.15s ease,
                    box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--fill {
  background:   var(--terracota);
  color:        var(--white);
  border-color: var(--terracota);
}

.btn--fill:hover {
  background:   var(--terracota-dk);
  border-color: var(--terracota-dk);
  transform:    translateY(-2px);
  box-shadow:   0 6px 22px rgba(192, 57, 43, 0.32);
}

.btn--ghost {
  background:   transparent;
  color:        var(--charcoal);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--charcoal);
  transform:    translateY(-2px);
}

.btn--block { width: 100%; }

/* ----------------------------------------------------------
   Navigation
   ---------------------------------------------------------- */
.nav {
  position:   fixed;
  inset:      0 0 auto;
  z-index:    900;
  padding:    1.375rem 1.5rem;
  transition: background 0.25s, padding 0.25s, box-shadow 0.25s;
}

.nav.scrolled {
  background:              rgba(250, 250, 246, 0.93);
  backdrop-filter:         blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding:                 0.9rem 1.5rem;
  box-shadow:              0 1px 0 var(--border);
}

.nav__inner {
  max-width:   var(--max-w);
  margin:      0 auto;
  display:     flex;
  align-items: center;
  gap:         2rem;
}

.nav__logo {
  display:     flex;
  align-items: center;
  gap:         0.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.nav__mark {
  height:    30px;
  width:     auto;
}

.nav__logo-text {
  font-family:    var(--ff-display);
  font-size:      1.625rem;
  font-weight:    600;
  color:          var(--charcoal);
  letter-spacing: -0.01em;
}

.nav__links {
  display:     flex;
  gap:         1.75rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav__links a {
  font-size:  0.9rem;
  color:      var(--charcoal);
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--terracota); }

.nav__phone {
  font-size:    0.875rem;
  font-weight:  500;
  color:        var(--terracota);
  border:       1.5px solid var(--terracota);
  padding:      0.5rem 1.25rem;
  border-radius: 100px;
  flex-shrink:  0;
  transition:   background 0.15s, color 0.15s;
}

.nav__phone:hover {
  background: var(--terracota);
  color:      var(--white);
}

.nav__burger {
  display:     none;
  flex-direction: column;
  gap:         5px;
  background:  none;
  border:      none;
  cursor:      pointer;
  padding:     6px;
  margin-left: auto;
}

.nav__burger span {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--charcoal);
  border-radius: 2px;
  transition:    transform 0.25s, opacity 0.25s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   Drawer (mobile)
   ---------------------------------------------------------- */
.overlay {
  position:       fixed;
  inset:          0;
  background:     rgba(28, 27, 24, 0.4);
  z-index:        800;
  opacity:        0;
  pointer-events: none;
  transition:     opacity 0.3s;
}

.overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position:   fixed;
  top:        0;
  right:      0;
  bottom:     0;
  width:      min(340px, 90vw);
  background: var(--cream);
  z-index:    901;
  padding:    2rem 2rem 3rem;
  display:    flex;
  flex-direction: column;
  transform:  translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(28, 27, 24, 0.12);
}

.drawer.open { transform: translateX(0); }

.drawer__close {
  background:  none;
  border:      none;
  font-size:   1.25rem;
  cursor:      pointer;
  color:       var(--stone);
  align-self:  flex-end;
  padding:     4px;
  margin-bottom: 2rem;
  transition:  color 0.15s;
}

.drawer__close:hover { color: var(--charcoal); }

.drawer__links {
  display:        flex;
  flex-direction: column;
  flex:           1;
}

.drawer__links a {
  font-family:  var(--ff-display);
  font-size:    2rem;
  font-weight:  500;
  color:        var(--charcoal);
  padding:      0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition:   color 0.15s, padding-left 0.15s;
}

.drawer__links a:hover {
  color:        var(--terracota);
  padding-left: 0.5rem;
}

.drawer__phone {
  display:       block;
  font-size:     1.1rem;
  font-weight:   500;
  color:         var(--terracota);
  border:        1.5px solid var(--terracota);
  text-align:    center;
  padding:       0.875rem;
  border-radius: 100px;
  margin-top:    2.5rem;
  transition:    background 0.15s, color 0.15s;
}

.drawer__phone:hover {
  background: var(--terracota);
  color:      var(--white);
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  position:        relative;
  min-height:      100svh;
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  padding:         7rem 1.5rem 5rem;
}

.hero__bg {
  position: absolute;
  inset:    0;
  background:
    radial-gradient(ellipse 65% 55% at 88% 25%, rgba(193, 92, 56, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at  8% 80%, rgba(90, 104, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Ghosted display text in background */
.hero::after {
  content:        'Chicotín';
  position:       absolute;
  right:          -2%;
  top:            50%;
  transform:      translateY(-50%);
  font-family:    var(--ff-display);
  font-size:      clamp(10rem, 20vw, 22rem);
  font-weight:    600;
  font-style:     italic;
  color:          rgba(28, 27, 24, 0.032);
  pointer-events: none;
  white-space:    nowrap;
  line-height:    1;
  user-select:    none;
}

.hero__content {
  max-width: var(--max-w);
  margin:    0 auto;
  width:     100%;
  position:  relative;
  z-index:   1;
}

.hero__eyebrow {
  display:        inline-block;
  font-size:      0.7rem;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--stone);
  margin-bottom:  1.5rem;
}

.hero__title {
  font-family:   var(--ff-display);
  font-size:     clamp(3.75rem, 9vw, 8rem);
  font-weight:   500;
  line-height:   1.05;
  letter-spacing: -0.025em;
  color:          var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color:      var(--terracota);
}

.hero__body {
  font-size:     clamp(1rem, 1.75vw, 1.2rem);
  color:         var(--stone);
  max-width:     480px;
  line-height:   1.75;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
}

.hero__badge {
  position:    absolute;
  bottom:      3.5rem;
  right:       3.5rem;
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  background:  var(--white);
  border:      1px solid var(--border);
  padding:     0.875rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow:  var(--shadow-card);
  z-index:     1;
}

.badge__stars  { color: #E8A838; font-size: 0.9rem; letter-spacing: 1px; }
.badge__score  { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
.badge__label  { font-size: 0.8rem; color: var(--stone); }

/* ----------------------------------------------------------
   Menú del día
   ---------------------------------------------------------- */
.menudia {
  background: var(--cream-warm);
  padding:    var(--sp-v) 1.5rem;
}

.menudia__body {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   2.5rem;
  align-items:           start;
}

/* Tarjeta menú del día */
.menudia__fb-card {
  background:     var(--white);
  border-radius:  var(--r-lg);
  box-shadow:     var(--shadow-card);
  border:         1px solid var(--border);
  padding:        3rem 3.5rem;
  display:        flex;
  flex-direction: column;
  gap:            2rem;
}

.menudia__fb-live {
  display:        flex;
  align-items:    center;
  gap:            0.625rem;
  font-size:      0.68rem;
  font-weight:    500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--stone);
}

.menudia__fb-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    #3A7D44;
  flex-shrink:   0;
  animation:     fb-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes fb-dot-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.menudia__fb-title {
  font-family:   var(--ff-display);
  font-size:     clamp(2rem, 4vw, 3rem);
  font-weight:   500;
  font-style:    italic;
  color:         var(--charcoal);
  line-height:   1.1;
  margin-bottom: 0.5rem;
}

.menudia__fb-sub {
  color:       var(--stone);
  font-size:   1rem;
  line-height: 1.65;
}

.menudia__fb-estructura {
  display:       grid;
  grid-template-columns: repeat(4, 1fr);
  gap:           1.5rem;
  padding:       1.75rem 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menudia__fb-col {
  display:        flex;
  flex-direction: column;
  gap:            0.25rem;
}

.menudia__fb-tipo {
  font-family: var(--ff-display);
  font-size:   1rem;
  font-weight: 600;
  color:       var(--charcoal);
}

.menudia__fb-detalle {
  font-size:   0.78rem;
  color:       var(--stone);
  line-height: 1.4;
}

.menudia__fb-precios {
  display: flex;
  gap:     3rem;
}

.menudia__fb-precio-item {
  display:        flex;
  flex-direction: column;
  gap:            0.125rem;
}

.menudia__fb-precio-label {
  font-size:      0.65rem;
  font-weight:    500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--stone);
}

.menudia__fb-precio-num {
  font-family: var(--ff-display);
  font-size:   2.25rem;
  font-weight: 500;
  color:       var(--terracota);
  line-height: 1;
}

.menudia__fb-cta {
  display:         inline-flex;
  align-items:     center;
  gap:             0.625rem;
  padding:         0.875rem 1.75rem;
  background:      var(--terracota);
  color:           var(--white);
  border-radius:   100px;
  font-size:       0.95rem;
  font-weight:     500;
  align-self:      flex-start;
  text-decoration: none;
  transition:      background 0.15s, transform 0.15s;
}

.menudia__fb-cta:hover {
  background: var(--terracota-dk);
  transform:  translateY(-2px);
}

/* Sidebar card */
.menudia__aside {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
  position:       sticky;
  top:            6rem;
}

.menudia__card {
  background:    var(--white);
  border-radius: var(--r-lg);
  padding:       2.25rem;
  box-shadow:    var(--shadow-card);
  display:       flex;
  flex-direction: column;
  gap:           1rem;
}

.menudia__card-label {
  font-family: var(--ff-display);
  font-size:   1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.menudia__card-body {
  color:       var(--stone);
  font-size:   0.925rem;
  line-height: 1.7;
}

.menudia__fb-link {
  display:    block;
  text-align: center;
  font-size:  0.85rem;
  color:      var(--stone);
  transition: color 0.15s;
}

.menudia__fb-link:hover { color: var(--terracota); }

/* Today's hours — real-time card */
.menudia__hours {
  background:    var(--white);
  border-radius: var(--r-md);
  padding:       1.75rem;
  box-shadow:    var(--shadow-card);
  border-left:   4px solid var(--border);
  transition:    border-color 0.4s;
}

.menudia__hours.is-open   { border-left-color: #3A7D44; }
.menudia__hours.is-closed { border-left-color: var(--stone); }

.hours__row {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  margin-bottom: 0.5rem;
}

.hours__dot {
  width:         10px;
  height:        10px;
  border-radius: 50%;
  background:    var(--stone);
  flex-shrink:   0;
  transition:    background 0.4s;
}

.menudia__hours.is-open .hours__dot {
  background: #3A7D44;
  animation:  pulse-open 2.2s ease infinite;
}

@keyframes pulse-open {
  0%, 100% { box-shadow: 0 0 0 0   rgba(58, 125, 68, 0.45); }
  55%      { box-shadow: 0 0 0 7px rgba(58, 125, 68, 0);    }
}

.hours__status-text {
  font-family: var(--ff-display);
  font-size:   1.5rem;
  font-weight: 600;
  line-height: 1;
  color:       var(--charcoal);
  transition:  color 0.4s;
}

.menudia__hours.is-open   .hours__status-text { color: #3A7D44; }
.menudia__hours.is-closed .hours__status-text { color: var(--charcoal); }

.hours__schedule {
  font-size:  0.875rem;
  color:      var(--stone);
  line-height: 1.6;
}

.hours__next {
  font-size:   0.8rem;
  color:       var(--stone);
  margin-top:  0.25rem;
  font-style:  italic;
}

.hours__next[hidden] { display: none; }

/* ----------------------------------------------------------
   Carta
   ---------------------------------------------------------- */
.carta { background: var(--cream); }

/* Tabs */
.carta__tabs {
  display:            flex;
  gap:                0.5rem;
  overflow-x:         auto;
  padding-bottom:     0.25rem;
  margin-bottom:      2.5rem;
  scrollbar-width:    none;
  -ms-overflow-style: none;
}

.carta__tabs::-webkit-scrollbar { display: none; }

.carta__tab {
  flex-shrink:   0;
  padding:       0.6rem 1.25rem;
  border:        1.5px solid var(--border);
  border-radius: 100px;
  background:    transparent;
  font-family:   var(--ff-body);
  font-size:     0.875rem;
  font-weight:   500;
  color:         var(--stone);
  cursor:        pointer;
  white-space:   nowrap;
  transition:    border-color 0.15s, color 0.15s, background 0.15s;
}

.carta__tab:hover {
  border-color: var(--terracota);
  color:        var(--terracota);
}

.carta__tab.is-active {
  background:   var(--terracota);
  border-color: var(--terracota);
  color:        var(--white);
}

/* Panels */
.carta__panel        { display: none; }
.carta__panel.is-active { display: block; }

/* Item list */
.carta__lista { list-style: none; }

.carta__plato {
  display:         flex;
  align-items:     baseline;
  gap:             1.5rem;
  justify-content: space-between;
  padding:         1rem 0;
  border-bottom:   1px solid var(--border);
}

.carta__plato:first-child { border-top: 1px solid var(--border); }

.carta__plato-info { flex: 1; }

.carta__plato-info h3 {
  font-family:   var(--ff-display);
  font-size:     1.15rem;
  font-weight:   500;
  color:         var(--charcoal);
  margin-bottom: 0.15rem;
}

.carta__plato-info p {
  font-size:   0.85rem;
  color:       var(--stone);
  line-height: 1.5;
}

.carta__precio {
  font-size:   0.95rem;
  font-weight: 500;
  color:       var(--terracota);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tag (ej: Temporada) */
.carta__tag {
  display:        inline-block;
  font-family:    var(--ff-body);
  font-size:      0.6rem;
  font-weight:    500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--terracota);
  border:         1px solid var(--terracota);
  border-radius:  100px;
  padding:        0.1rem 0.5rem;
  vertical-align: middle;
  margin-left:    0.4rem;
}

/* Aviso */
.carta__aviso {
  background:    var(--cream-warm);
  border-radius: var(--r-sm);
  padding:       0.875rem 1.25rem;
  font-size:     0.875rem;
  color:         var(--stone);
  line-height:   1.65;
  margin-bottom: 1.5rem;
}

.carta__aviso a {
  color:       var(--terracota);
  font-weight: 500;
}

/* Extras hamburguesas */
.carta__extras {
  margin-top:    2rem;
  padding:       1.25rem 1.5rem;
  background:    var(--cream-warm);
  border-radius: var(--r-md);
}

.carta__extras-label {
  font-size:      0.65rem;
  font-weight:    500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--stone);
  margin-bottom:  0.75rem;
}

.carta__extras-fila {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.5rem 2rem;
  font-size: 0.875rem;
  color:     var(--charcoal);
}

.carta__extras-fila strong { color: var(--terracota); }

/* Por encargo */
.carta__encargo { margin-top: 2.5rem; }

.carta__encargo-label {
  font-size:      0.65rem;
  font-weight:    500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--stone);
  margin-bottom:  0.25rem;
}

/* Menú del día — precios */
.carta__menu-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2.5rem;
  margin-top:            1.5rem;
}

.carta__menu-tipo {
  font-family:    var(--ff-display);
  font-size:      1.5rem;
  font-weight:    500;
  color:          var(--charcoal);
  padding-bottom: 0.5rem;
  border-bottom:  2px solid var(--terracota);
  margin-bottom:  0.5rem;
}

.carta__menu-lista { list-style: none; }

.carta__menu-lista li {
  display:         flex;
  justify-content: space-between;
  align-items:     baseline;
  padding:         0.75rem 0;
  border-bottom:   1px solid var(--border);
  font-size:       0.925rem;
}

.carta__menu-lista li:first-child { border-top: 1px solid var(--border); }
.carta__menu-lista span           { color: var(--charcoal); }

.carta__menu-lista strong {
  color:       var(--terracota);
  font-weight: 500;
  font-size:   1rem;
}


/* ----------------------------------------------------------
   Nosotros
   ---------------------------------------------------------- */
.nosotros {
  background: var(--charcoal);
  padding:    var(--sp-v) 1.5rem;
}

.nosotros__grid {
  max-width:             var(--max-w);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   5rem;
  align-items:           center;
}

.nosotros__imagen {
  position:      relative;
  border-radius: var(--r-lg);
  overflow:      hidden;
}

.nosotros__foto {
  display:    block;
  width:      100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter:     grayscale(100%) contrast(135%) brightness(112%);
  transition: filter 0.5s ease;
}

.nosotros__foto:hover {
  filter: grayscale(60%) contrast(115%) brightness(106%);
}

.nosotros__cita {
  font-family:   var(--ff-display);
  font-size:     1.2rem;
  font-style:    italic;
  font-weight:   400;
  color:         rgba(250, 250, 246, 0.9) !important;
  line-height:   1.65;
  border-left:   2px solid var(--terracota);
  padding-left:  1.25rem;
  margin-bottom: 1.5rem !important;
}

.nosotros__text h2 {
  font-family:   var(--ff-display);
  font-size:     clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight:   500;
  line-height:   1.15;
  color:         var(--cream);
  margin-bottom: 1.75rem;
}

.nosotros__text h2 em {
  font-style: italic;
  color:      #E87070;
}

.nosotros__text p {
  color:         rgba(250, 250, 246, 0.7);
  line-height:   1.8;
  font-size:     1rem;
  margin-bottom: 1.125rem;
}

.nosotros__text p:last-child { margin-bottom: 0; }

.nosotros__score {
  color:      var(--cream) !important;
  margin-top: 2rem !important;
}

.nosotros__score strong { color: #E8A838; }

.nosotros__visual {
  aspect-ratio: 4 / 5;
}

.nosotros__placeholder {
  width:         100%;
  height:        100%;
  border:        1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  display:       flex;
  align-items:   center;
  justify-content: center;
  color:         rgba(255, 255, 255, 0.25);
  font-size:     0.875rem;
}

/* ----------------------------------------------------------
   Contacto
   ---------------------------------------------------------- */
.contacto { background: var(--cream); }

.contacto__grid {
  display:               grid;
  grid-template-columns: 400px 1fr;
  gap:                   4rem;
  align-items:           start;
}

.info-block { margin-bottom: 2.5rem; }
.info-block:last-child { margin-bottom: 0; }

.info-label {
  font-size:      0.65rem;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--stone);
  margin-bottom:  0.875rem;
}

.horario {
  width:           100%;
  border-collapse: collapse;
}

.horario tr { border-bottom: 1px solid var(--border); }
.horario tr:first-child { border-top: 1px solid var(--border); }

.horario td {
  padding:   0.625rem 0;
  font-size: 0.9rem;
}

.horario td:last-child {
  text-align: right;
  color:      var(--charcoal);
}

.horario--closed td { color: var(--stone); }

address {
  color:         var(--charcoal);
  line-height:   1.8;
  font-size:     0.9rem;
  margin-bottom: 0.5rem;
}

.info-link {
  font-size:   0.875rem;
  font-weight: 500;
  color:       var(--terracota);
  transition:  opacity 0.15s;
}

.info-link:hover { opacity: 0.7; }

.info-phone {
  display:     block;
  font-family: var(--ff-display);
  font-size:   2.25rem;
  font-weight: 500;
  color:       var(--charcoal);
  line-height: 1;
  transition:  color 0.15s;
}

.info-phone:hover { color: var(--terracota); }

.social { display: flex; gap: 0.75rem; }

.social__link {
  font-size:     0.875rem;
  font-weight:   500;
  padding:       0.5rem 1.25rem;
  border:        1.5px solid var(--border);
  border-radius: 100px;
  transition:    border-color 0.15s, color 0.15s;
}

.social__link:hover {
  border-color: var(--terracota);
  color:        var(--terracota);
}

.contacto__map {
  border-radius: var(--r-lg);
  overflow:      hidden;
  box-shadow:    var(--shadow-card);
  position:      sticky;
  top:           6rem;
}

.contacto__map iframe {
  display: block;
  width:   100%;
  height:  500px;
  border:  0;
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.footer {
  background: #161513;
  color:      rgba(250, 250, 246, 0.5);
  padding:    3rem 1.5rem;
}

.footer__grid {
  max-width:             var(--max-w);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:                   3rem;
  padding-bottom:        2.5rem;
  border-bottom:         1px solid rgba(255, 255, 255, 0.07);
  margin-bottom:         1.75rem;
}

.footer__logo {
  display:       flex;
  align-items:   center;
  gap:           0.2rem;
  margin-bottom: 0.5rem;
  line-height:   1;
}

.footer__mark {
  height: 28px;
  width:  auto;
}

.footer__logo-text {
  font-family:    var(--ff-display);
  font-size:      1.75rem;
  font-weight:    500;
  color:          var(--cream);
  letter-spacing: -0.01em;
}

.footer__brand p {
  font-size:   0.85rem;
  line-height: 1.7;
}

.footer__nav,
.footer__contact {
  display:        flex;
  flex-direction: column;
  gap:            0.625rem;
  padding-top:    0.25rem;
}

.footer__nav a,
.footer__contact a {
  font-size:  0.875rem;
  transition: color 0.15s;
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--cream); }

.footer__copy {
  max-width:  var(--max-w);
  margin:     0 auto;
  font-size:  0.775rem;
  text-align: center;
}

.footer__legal {
  max-width:       var(--max-w);
  margin:          0.625rem auto 0;
  display:         flex;
  gap:             1.5rem;
  justify-content: center;
  flex-wrap:       wrap;
}

.footer__legal a {
  font-size:  0.725rem;
  color:      rgba(250, 250, 246, 0.3);
  transition: color 0.15s;
}

.footer__legal a:hover { color: rgba(250, 250, 246, 0.65); }

/* ----------------------------------------------------------
   Cookie banner
   ---------------------------------------------------------- */
.cookie-banner {
  position:   fixed;
  bottom:     0;
  left:       0;
  right:      0;
  z-index:    950;
  background: var(--charcoal);
  color:      rgba(250, 250, 246, 0.85);
  padding:    1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(28, 27, 24, 0.25);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width:   var(--max-w);
  margin:      0 auto;
  display:     flex;
  align-items: center;
  gap:         2rem;
  flex-wrap:   wrap;
}

.cookie-banner__inner p {
  flex:        1;
  font-size:   0.875rem;
  line-height: 1.6;
  min-width:   200px;
}

.cookie-banner__inner p a {
  color:           rgba(250, 250, 246, 0.65);
  text-decoration: underline;
  transition:      color 0.15s;
}

.cookie-banner__inner p a:hover { color: var(--cream); }

.cookie-banner__btns {
  display:     flex;
  align-items: center;
  gap:         1.25rem;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding:       0.625rem 1.5rem;
  background:    var(--terracota);
  color:         var(--white);
  border:        none;
  border-radius: 100px;
  font-family:   var(--ff-body);
  font-size:     0.875rem;
  font-weight:   500;
  cursor:        pointer;
  touch-action:  manipulation;
  transition:    background 0.15s;
}

.cookie-banner__accept:hover { background: var(--terracota-dk); }

.cookie-banner__more {
  font-size:  0.8rem;
  color:      rgba(250, 250, 246, 0.45);
  transition: color 0.15s;
  white-space: nowrap;
}

.cookie-banner__more:hover { color: rgba(250, 250, 246, 0.85); }

/* ----------------------------------------------------------
   Reseñas — carrusel
   ---------------------------------------------------------- */
.reseñas { background: var(--cream-warm); }

.slider {
  max-width: 760px;
  margin:    0 auto;
}

.slider__viewport {
  overflow:      hidden;
  border-radius: var(--r-lg);
}

.slider__track {
  display:    flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider__slide { min-width: 100%; }

.reseña {
  background:    var(--white);
  border:        1px solid var(--border);
  border-radius: var(--r-lg);
  padding:       3rem 3.5rem;
}

.reseña__comillas {
  display:     block;
  font-family: var(--ff-display);
  font-size:   5rem;
  line-height: 0.8;
  color:       var(--terracota);
  opacity:     0.25;
  user-select: none;
  margin-bottom: 0.5rem;
}

.reseña__texto {
  font-family:   var(--ff-display);
  font-size:     clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight:   400;
  font-style:    italic;
  line-height:   1.6;
  color:         var(--charcoal);
  margin-bottom: 2rem;
}

.reseña__footer {
  display:     flex;
  align-items: center;
  gap:         1rem;
}

.reseña__stars  { color: #E8A838; letter-spacing: 2px; font-size: 0.9rem; }

.reseña__autor {
  font-style:  normal;
  font-weight: 500;
  font-size:   0.9rem;
  color:       var(--charcoal);
}

.reseña__fuente {
  font-size:      0.75rem;
  color:          var(--stone);
  margin-left:    auto;
  letter-spacing: 0.05em;
}

/* Controles */
.slider__controls {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             1.5rem;
  margin-top:      1.75rem;
}

.slider__btn {
  width:           40px;
  height:          40px;
  border:          1.5px solid var(--border);
  border-radius:   50%;
  background:      var(--white);
  display:         flex;
  align-items:     center;
  justify-content: center;
  cursor:          pointer;
  color:           var(--charcoal);
  transition:      border-color 0.15s, color 0.15s, transform 0.15s;
  flex-shrink:     0;
}

.slider__btn svg { width: 16px; height: 16px; }

.slider__btn:hover {
  border-color: var(--terracota);
  color:        var(--terracota);
  transform:    scale(1.08);
}

.slider__dots { display: flex; gap: 0.5rem; }

.slider__dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  border:        none;
  background:    var(--border);
  cursor:        pointer;
  padding:       0;
  transition:    background 0.2s, transform 0.2s;
}

.slider__dot.is-active {
  background: var(--terracota);
  transform:  scale(1.3);
}

/* ----------------------------------------------------------
   Botón hero — menú
   ---------------------------------------------------------- */
.hero__menu-btn {
  font-family: var(--ff-body);
  cursor:      pointer;
}

.hero__menu-chevron {
  transition:  transform 0.3s ease;
  flex-shrink: 0;
}

.hero__menu-btn[aria-expanded="true"] .hero__menu-chevron {
  transform: rotate(180deg);
}

/* ----------------------------------------------------------
   Dropdown en flujo — menú del día (hero)
   ---------------------------------------------------------- */
.hero__menu-dropdown {
  display:              grid;
  grid-template-rows:   0fr;
  transition:           grid-template-rows 0.4s ease, margin-top 0.4s ease;
  margin-top:           0;
  width:                100%;
  max-width:            640px;
}

.hero__menu-dropdown.is-open {
  grid-template-rows: 1fr;
  margin-top:         1.5rem;
}

.hero__menu-dropdown-inner {
  overflow:      hidden;
  min-height:    0;
  background:    var(--cream);
  border:        1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow:    var(--shadow-card);
}


/* Fallback cuando el SDK está bloqueado */
.fb-xfbml-parse-ignore {
  display:         flex;
  align-items:     center;
  justify-content: center;
  min-height:      180px;
  padding:         2rem;
  text-align:      center;
}

.fb-xfbml-parse-ignore a {
  display:       inline-block;
  padding:       0.875rem 2rem;
  border-radius: 100px;
  background:    var(--terracota);
  color:         var(--white);
  font-weight:   500;
  font-size:     0.95rem;
  transition:    background 0.15s, transform 0.15s;
}

.fb-xfbml-parse-ignore a:hover {
  background: var(--terracota-dk);
  transform:  translateY(-2px);
}

/* ----------------------------------------------------------
   Enlace a Google Reviews */
.reseñas__google {
  text-align: center;
  margin-top: 1.75rem;
}

.reseñas__google-link {
  font-size:   0.875rem;
  font-weight: 500;
  color:       var(--stone);
  transition:  color 0.15s;
}

.reseñas__google-link:hover { color: var(--terracota); }

/* ----------------------------------------------------------
   Eventos
   ---------------------------------------------------------- */
.eventos { background: var(--cream-warm); }

.eventos__grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

.eventos__texto p {
  color:         var(--stone);
  line-height:   1.8;
  margin-bottom: 1.25rem;
}

.eventos__lista {
  list-style:    none;
  margin-bottom: 2rem;
}

.eventos__lista li {
  padding:       0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-family:   var(--ff-display);
  font-size:     1.2rem;
  font-weight:   500;
  color:         var(--charcoal);
}

.eventos__lista li:first-child { border-top: 1px solid var(--border); }

.eventos__encargo {
  background:    var(--white);
  border-radius: var(--r-md);
  padding:       1.5rem 1.75rem;
  box-shadow:    var(--shadow-card);
}

.eventos__encargo-label {
  font-size:      0.65rem;
  font-weight:    500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--stone);
  margin-bottom:  1rem;
}

.eventos__encargo-label span {
  text-transform: none;
  letter-spacing: 0;
}

.eventos__encargo-lista {
  list-style: none;
}

.eventos__encargo-lista li {
  display:         flex;
  justify-content: space-between;
  align-items:     baseline;
  padding:         0.625rem 0;
  border-bottom:   1px solid var(--border);
  font-size:       0.9rem;
}

.eventos__encargo-lista li:first-child { border-top: 1px solid var(--border); }
.eventos__encargo-lista span           { color: var(--charcoal); }
.eventos__encargo-lista strong         { color: var(--terracota); font-weight: 500; }


/* ----------------------------------------------------------
   Scroll animations
   ---------------------------------------------------------- */
.fade-up {
  opacity:    0;
  transform:  translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity:   1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   Divider — logo en círculo con líneas
   ---------------------------------------------------------- */
.divider {
  display:     flex;
  align-items: center;
  gap:         1.5rem;
  padding:     0 1.5rem;
  max-width:   var(--max-w);
  margin:      0 auto;
}

.divider__line {
  flex:       1;
  height:     1px;
  background: var(--border);
}

.divider__logo {
  width:       52px;
  height:      auto;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   Galería dinámica de platos
   ---------------------------------------------------------- */
.galeria {
  overflow:   hidden;
  padding:    3rem 0;
  background: var(--cream);
}

.galeria__wrap { overflow: hidden; }

.galeria__track {
  display:    flex;
  gap:        1.25rem;
  width:      max-content;
  animation:  galeria-scroll 32s linear infinite;
}

.galeria__track:hover { animation-play-state: paused; }

@keyframes galeria-scroll {
  to { transform: translateX(-50%); }
}

.galeria__item {
  position:      relative;
  width:         260px;
  height:        340px;
  border-radius: var(--r-md);
  flex-shrink:   0;
  overflow:      hidden;
  background:    var(--cream-warm);
  display:       flex;
  align-items:   flex-end;
  cursor:        default;
}

/* Variaciones de color de fondo hasta tener fotos reales */
.galeria__item--2 { background: #E8D5C4; }
.galeria__item--3 { background: #DDD0C0; }
.galeria__item--4 { background: #E5D8CB; }
.galeria__item--5 { background: #D8C9B5; }
.galeria__item--6 { background: #EBE0D4; }
.galeria__item--7 { background: #E0CFC0; }
.galeria__item--8 { background: #D5C5AF; }

/* Cuando haya fotos reales: <img> dentro de .galeria__item ocupa todo */
.galeria__item img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
}

.galeria__nombre {
  position:      relative;
  z-index:       1;
  width:         100%;
  padding:       1rem 1.25rem;
  background:    linear-gradient(to top, rgba(28,27,24,0.55) 0%, transparent 100%);
  font-family:   var(--ff-display);
  font-size:     1.1rem;
  font-weight:   500;
  font-style:    italic;
  color:         var(--white);
  line-height:   1.3;
}


/* ----------------------------------------------------------
   Responsive — tablet (≤1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .menudia__body        { grid-template-columns: 1fr; }
  .menudia__aside       { position: static; }
  .nosotros__grid       { grid-template-columns: 1fr; gap: 3rem; }
  .eventos__grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .contacto__grid       { grid-template-columns: 1fr; }
  .contacto__map        { position: static; }
}

/* ----------------------------------------------------------
   Responsive — mobile (≤768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  section { padding: var(--sp-v-sm) 1.25rem; }

  /* Nav */
  .nav__links, .nav__phone { display: none; }
  .nav__burger              { display: flex; }
  .nav__mark                { height: 24px; }

  /* Hero */
  .hero        { padding: 6rem 1.25rem 4rem; }
  .hero::after { display: none; }
  .hero__badge {
    position:   static;
    margin-top: 2.5rem;
    width:      fit-content;
  }

  /* Menú del día */
  .menudia__fb-card       { padding: 2rem 1.75rem; }
  .menudia__fb-estructura { grid-template-columns: repeat(2, 1fr); }

  /* Cookie banner — compacto en móvil */
  .cookie-banner            { padding: 0.625rem 1rem; }
  .cookie-banner__inner     { gap: 0.625rem; flex-wrap: nowrap; align-items: center; }
  .cookie-banner__inner p   { font-size: 0.775rem; line-height: 1.4; min-width: 0; }
  .cookie-banner__more      { display: none; }
  .cookie-banner__accept    { padding: 0.5rem 1rem; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }

  /* Carta — tabs táctiles */
  .carta__tab {
    padding:    0.75rem 1.125rem;
    min-height: 44px;
    font-size:  0.825rem;
  }
  .carta__plato       { gap: 1rem; }
  .carta__menu-grid   { grid-template-columns: 1fr; gap: 2rem; }

  /* Reseñas */
  .slider__btn        { width: 48px; height: 48px; }
  .slider__dot        { width: 12px; height: 12px; }
  .reseña             { padding: 2rem 1.5rem; }
  .reseña__texto      { font-size: 1.15rem; }

  /* Nosotros */
  .nosotros__grid     { grid-template-columns: 1fr; gap: 2rem; }
  .nosotros__foto     { aspect-ratio: 4 / 3; }

  /* Contacto */
  .contacto__map iframe { height: 280px; }

  /* Footer */
  .footer__grid       { grid-template-columns: 1fr; gap: 2rem; }

  /* Divider */
  .divider__logo      { width: 38px; }
  .divider            { gap: 1rem; }
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq { background: var(--cream-warm); }

.faq__lista {
  max-width: 780px;
  margin:    0 auto;
}

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__item summary { list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__pregunta {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  gap:             1.5rem;
  padding:         1.5rem 0;
  font-family:     var(--ff-display);
  font-size:       1.2rem;
  font-weight:     500;
  cursor:          pointer;
  user-select:     none;
  transition:      color 0.15s;
}

.faq__pregunta:hover { color: var(--terracota); }

.faq__chevron {
  flex-shrink: 0;
  color:       var(--stone);
  transition:  transform 0.25s ease, color 0.15s;
}

details[open] > summary .faq__chevron {
  transform: rotate(180deg);
  color:     var(--terracota);
}

details[open] > summary.faq__pregunta { color: var(--terracota); }

.faq__respuesta {
  padding:     0 2rem 1.5rem 0;
  color:       var(--stone);
  line-height: 1.8;
  font-size:   0.975rem;
}

.faq__respuesta a {
  color:                var(--terracota);
  text-decoration:      underline;
  text-underline-offset: 2px;
}

.faq__respuesta a:hover { color: var(--terracota-dk); }

/* ----------------------------------------------------------
   Responsive — móvil pequeño (≤520px)
   ---------------------------------------------------------- */
@media (max-width: 520px) {
  .hero__ctas      { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .reseña          { padding: 1.75rem 1.25rem; }
  .reseña__footer  { flex-wrap: wrap; gap: 0.5rem; }
  .reseña__fuente  { margin-left: 0; }

  .nosotros__cita  { font-size: 1.05rem; }

  .eventos__encargo-lista li { flex-direction: column; gap: 0.25rem; }

  .footer__legal { gap: 0.875rem; }
}
