/* ============================================================
   RESTAURANTE ARANTXA · València
   Compartido entre index, carta, reservar y donde-estamos
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --black:        #0d0d0d;
  --black-soft:   #1a1a1a;
  --ink:          #211c14;
  --gold:         #d4a857;
  --gold-bright:  #e9c275;
  --gold-deep:    #a8842f;
  --cream:        #f5ede0;
  --cream-soft:   #faf5ea;
  --wood:         #5d4232;
  --sage:         #9ba88a;
  --muted:        #7a7268;
  --line:         rgba(212, 168, 87, 0.18);

  --serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', 'Trajan Pro', serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-soft: 0 10px 40px rgba(13,13,13,0.08);
  --shadow-hard: 0 18px 60px rgba(13,13,13,0.18);

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

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); color: var(--black); font-weight: 600; line-height: 1.18; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: .4em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p { color: var(--ink); }
.eyebrow {
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

/* ---------- Navigation ---------- */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: all .35s var(--ease);
}
nav#mainNav.scrolled,
nav#mainNav.solid {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(212,168,87,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--gold-bright);
  font-weight: 500;
}
.nav-logo-text small { font-size: .65rem; color: rgba(245,237,224,0.6); letter-spacing: .2em; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.85);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  letter-spacing: .15em !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-bright); }
.nav-cta::after { display: none !important; }
.lang-switch { display: flex; gap: 6px; margin-left: 12px; }
.lang-switch button {
  font-size: .7rem; letter-spacing: .15em;
  color: rgba(245,237,224,0.5);
  padding: 4px 8px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.lang-switch button.active { color: var(--gold-bright); border-bottom-color: var(--gold); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--cream); transition: .3s var(--ease); }

/* ---------- Hero (landing fullscreen) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,13,13,0.62), rgba(13,13,13,0.78)), url('img/local-interior-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; padding: 0 24px; max-width: 900px; }
.hero-logo { width: 130px; height: auto; margin: 0 auto 32px; opacity: .95; border-radius: 8px; }
.hero h1 {
  color: var(--cream);
  font-family: var(--serif);
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(.85rem, 1.2vw, 1rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-sub { font-size: 1.1rem; color: rgba(245,237,224,0.85); max-width: 600px; margin: 0 auto 40px; }
.hero-cta { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212,168,87,0.35);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212,168,87,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,224,0.6);
}
.btn-ghost:hover { background: rgba(245,237,224,0.12); border-color: var(--cream); }
.btn-dark {
  background: var(--black);
  color: var(--cream);
}
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebc5b; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 50px; background: rgba(245,237,224,0.3);
  z-index: 1;
}
.scroll-indicator::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 18px; background: var(--gold);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: 0; opacity: 1; }
  100% { top: 38px; opacity: 0; }
}

/* ---------- Subpage hero (compact) ---------- */
.hero-compact {
  background: linear-gradient(135deg, var(--black) 0%, var(--ink) 100%);
  color: var(--cream);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-compact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,168,87,0.12), transparent 60%);
  pointer-events: none;
}
.hero-compact h1 { color: var(--cream); position: relative; }
.hero-compact h1 em { color: var(--gold-bright); font-style: italic; font-weight: 400; }
.hero-compact .hero-tagline { color: var(--gold); margin-bottom: 14px; }
.hero-compact-sub { color: rgba(245,237,224,0.75); margin-top: 14px; position: relative; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.breadcrumb .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.breadcrumb-logo { display: flex; align-items: center; gap: 12px; color: var(--black); }
.breadcrumb-logo img {
  width: 44px; height: 44px; object-fit: contain;
  background: var(--black);
  padding: 6px;
  border-radius: 4px;
}
.breadcrumb-logo span { display: flex; flex-direction: column; line-height: 1; }
.breadcrumb-logo strong { font-family: var(--display); font-size: .95rem; letter-spacing: .18em; color: var(--black); }
.breadcrumb-logo small { font-size: .65rem; color: var(--muted); letter-spacing: .18em; margin-top: 4px; }
.breadcrumb ol { display: flex; gap: 10px; list-style: none; font-size: .82rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb [aria-current="page"] { color: var(--black); font-weight: 600; }
.breadcrumb ol li + li::before { content: '›'; color: var(--gold); margin-right: 10px; }

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 0 auto 20px;
}
.divider::before, .divider::after {
  content: ''; flex: 0 0 60px; height: 1px; background: var(--gold);
}
.divider .ornament { font-family: var(--display); font-size: 1rem; letter-spacing: .3em; }

/* ---------- About section ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p + p { margin-top: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.about-stat .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); display: block; font-weight: 600; }
.about-stat .lbl { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 580px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-hard); }
.about-img::before {
  content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid var(--gold); z-index: 0;
}

/* ---------- Carta sections ---------- */
.carta-section { background: var(--black); color: var(--cream); }
.carta-section h2 { color: var(--cream); }
.carta-section .eyebrow { color: var(--gold); }
.carta-section .lead { color: rgba(245,237,224,0.75); margin: 0 auto; }

.dish-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(212,168,87,0.1);
  /* hint de más contenido a la derecha (fundido al fondo navy de la sección) */
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 60px), transparent);
}
.dish-grid::-webkit-scrollbar { height: 8px; }
.dish-grid::-webkit-scrollbar-track { background: rgba(212,168,87,0.08); border-radius: 4px; }
.dish-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.dish-grid::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }
.dish-grid .dish {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .dish-grid .dish { flex: 0 0 320px; } }
@media (min-width: 960px) { .dish-grid .dish { flex: 0 0 340px; } }

.dish {
  background: var(--black-soft);
  border: 1px solid rgba(212,168,87,0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
}
.dish:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.dish-img { aspect-ratio: 4/3; overflow: hidden; background: var(--ink); }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.06); }
.dish-no-zoom:hover .dish-img img { transform: none; }
.dish-body { padding: 22px 24px 26px; }
.dish-name { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); margin-bottom: 8px; }
.dish-desc { font-size: .9rem; color: rgba(245,237,224,0.65); line-height: 1.55; min-height: 42px; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(212,168,87,0.15); }
.dish-price { font-family: var(--display); color: var(--gold-bright); font-size: 1rem; letter-spacing: .1em; }
.dish-tag { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* Carta page list view */
.carta-list { display: grid; gap: 18px; }
.carta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(212,168,87,0.18);
}
.carta-row:last-child { border-bottom: 0; }
.carta-row-main h4 { color: var(--cream); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.carta-row-main p { font-size: .88rem; color: rgba(245,237,224,0.6); line-height: 1.5; }
.carta-row-price { font-family: var(--display); color: var(--gold-bright); font-size: 1rem; letter-spacing: .08em; white-space: nowrap; }

/* Carta tabs */
.carta-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(212,168,87,0.2);
}
.carta-tabs button {
  padding: 18px 26px;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.55);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s var(--ease);
  font-weight: 500;
}
.carta-tabs button:hover { color: var(--cream); }
.carta-tabs button.active { color: var(--gold-bright); border-bottom-color: var(--gold); }
.carta-panel { display: none; }
.carta-panel.active { display: block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.carta-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Carta category header */
.carta-cat-head { text-align: center; margin-bottom: 32px; }
.carta-cat-head h3 { color: var(--gold-bright); font-family: var(--display); font-size: 1.1rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 8px; }
.carta-cat-head p { color: rgba(245,237,224,0.5); font-size: .85rem; font-style: italic; }

/* ---------- Friday cocido slim banner on carta page ---------- */
.cocido-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, #2a1a0a 0%, var(--ink) 100%);
  border: 1px solid rgba(212,168,87,0.32);
  border-radius: 2px;
  padding: 18px 26px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.cocido-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(212,168,87,0.14), transparent 55%);
  pointer-events: none;
}
.cocido-strip-logo {
  width: 56px; height: 56px;
  min-width: 56px; max-width: 56px;
  min-height: 56px; max-height: 56px;
  flex: 0 0 56px;
  background-color: rgba(212,168,87,0.06);
  background-image: url('img/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% auto;
  border: 1px solid rgba(212,168,87,0.2);
  border-radius: 50%;
  position: relative;
}
.cocido-strip-body { flex: 1; min-width: 0; position: relative; }
.cocido-strip-eyebrow {
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.cocido-strip h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 2px;
  font-weight: 500;
}
.cocido-strip h3 em { color: var(--gold-bright); font-style: italic; font-weight: 400; }
.cocido-strip p {
  color: rgba(245,237,224,0.65);
  font-size: .82rem;
  margin: 0;
}
.cocido-strip-price {
  font-family: var(--serif);
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  line-height: 1;
}
.cocido-strip-price small {
  display: block;
  font-size: .6rem;
  font-family: var(--display);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.5);
  margin-top: 4px;
  font-weight: 400;
}
.cocido-strip .btn {
  padding: 11px 22px;
  font-size: .72rem;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 720px) {
  .cocido-strip {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 14px;
  }
  .cocido-strip-body { flex: 1 1 calc(100% - 78px); }
  .cocido-strip-price { order: 3; }
  .cocido-strip .btn { order: 4; flex: 1; text-align: center; justify-content: center; }
}

/* ---------- Cocido promo block ---------- */
.cocido-promo {
  background: linear-gradient(135deg, #2a1a0a 0%, var(--black) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cocido-promo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212,168,87,0.18), transparent 50%);
  pointer-events: none;
}
.cocido-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cocido-text .eyebrow { color: var(--gold); font-size: .8rem; }
.cocido-text h2 { color: var(--cream); font-size: clamp(2rem, 3.6vw, 3rem); }
.cocido-text h2 em { color: var(--gold-bright); font-style: italic; }
.cocido-text p { color: rgba(245,237,224,0.8); margin: 18px 0 28px; font-size: 1.05rem; }
.cocido-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--serif); color: var(--gold-bright);
  margin-bottom: 28px;
}
.cocido-price .amount { font-size: 3rem; line-height: 1; font-weight: 600; }
.cocido-price .unit { font-size: .9rem; color: rgba(245,237,224,0.7); letter-spacing: .15em; text-transform: uppercase; }
.cocido-img img { width: 100%; height: 480px; object-fit: cover; border-radius: 2px; box-shadow: 0 25px 80px rgba(0,0,0,0.6); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ink);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(13,13,13,0.55));
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Reservas section ---------- */
.reservas-section { background: var(--cream); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.channel-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px;
  text-align: center;
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.channel-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--gold);
  border-radius: 50%; margin-bottom: 18px;
}
.channel-icon svg { width: 26px; height: 26px; }
.channel-wa .channel-icon { background: #25D366; color: #fff; }
.channel-card h3 { font-family: var(--serif); margin-bottom: 8px; }
.channel-card p { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.channel-card .big {
  font-family: var(--display);
  color: var(--gold-deep);
  font-size: 1.1rem;
  letter-spacing: .15em;
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-card[href^="mailto:"] .big {
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: lowercase;
}

/* ---------- Reseñas ---------- */
.reviews { background: var(--cream); padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.review-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.review-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: .15em; font-size: 1rem; }
.review-text { font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 22px; font-size: .95rem; }
.review-author { font-family: var(--display); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--black); }
.review-meta { font-size: .72rem; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }
.reviews-foot { text-align: center; margin-top: 50px; }
.reviews-foot strong { font-family: var(--serif); color: var(--gold-deep); font-size: 1.6rem; }
.reviews-foot span { display: block; color: var(--muted); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 8px; }

/* ---------- Map / Where ---------- */
.where { background: #fff; }
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.where-grid > * { min-width: 0; }
.contact-block { min-width: 0; }
.contact-block h3 { margin-bottom: 6px; }
.contact-quick {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-quick > div { min-width: 0; }
.contact-quick-label {
  display: block;
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-quick a {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.5;
  word-break: break-word;
}
.contact-quick a:hover { color: var(--gold-deep); }
@media (max-width: 720px) {
  .contact-quick { grid-template-columns: 1fr; gap: 16px; }
}
.map-wrap {
  aspect-ratio: 4/3;
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.map-wrap.loaded { cursor: default; }
.map-placeholder {
  background: linear-gradient(135deg, var(--ink), var(--black));
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center;
}
.map-placeholder svg { width: 56px; height: 56px; color: var(--gold); }
.map-placeholder span { font-family: var(--display); letter-spacing: .25em; text-transform: uppercase; font-size: .82rem; color: var(--gold-bright); }
.map-placeholder small { color: rgba(245,237,224,0.6); font-size: .8rem; max-width: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-block h3 { margin-bottom: 8px; }
.contact-list { list-style: none; margin-top: 24px; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico { width: 36px; height: 36px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--cream); color: var(--gold-deep); border-radius: 50%; }
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list b { font-family: var(--display); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.contact-list a, .contact-list span { color: var(--ink); }
.contact-list a:hover { color: var(--gold-deep); }

/* Horario block */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; table-layout: auto; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: 12px 0; font-size: .82rem; vertical-align: middle; }
.hours-table td:first-child {
  font-family: var(--display);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .76rem;
  padding-right: 28px;
  white-space: nowrap;
  width: 1%;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 500;
  padding-left: 18px;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}
.hours-table tr.today td { color: var(--gold-deep); font-weight: 600; }
.hours-table tr.today td:first-child { color: var(--gold-deep); }
.hours-table .closed { color: #b03a2e; font-weight: 500; }
@media (max-width: 600px) {
  .hours-table td { font-size: .75rem; padding: 10px 0; }
  .hours-table td:first-child { font-size: .7rem; padding-right: 14px; }
  .hours-table td:last-child { padding-left: 14px; }
}

/* Cómo llegar cards */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.how-card {
  background: var(--cream-soft);
  padding: 26px 22px;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.how-card .ico { color: var(--gold-deep); margin-bottom: 14px; }
.how-card .ico svg { width: 28px; height: 28px; }
.how-card h4 { font-family: var(--serif); margin-bottom: 8px; font-size: 1.05rem; }
.how-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ---------- Forms ---------- */
.form-card { background: #fff; padding: 40px; border-radius: 2px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); }
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row label { font-family: var(--display); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.form-row input, .form-row textarea, .form-row select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream-soft);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-row textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card button[type=submit] { width: 100%; justify-content: center; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-msg { padding: 12px 16px; border-radius: 2px; font-size: .9rem; margin-top: 14px; }
.form-msg.ok { background: rgba(155,168,138,0.2); color: #3d5036; }
.form-msg.err { background: #f6dcd6; color: #8a2818; }

/* ---------- Custom inline calendar ---------- */
.date-picker { position: relative; }
.date-trigger {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream-soft);
  color: var(--ink);
  font-size: .9rem;
  font-family: var(--sans);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.date-trigger svg { color: var(--gold-deep); flex-shrink: 0; }
.date-trigger:hover { border-color: var(--gold); }
.date-trigger.open,
.date-trigger:focus { outline: none; border-color: var(--gold); background: #fff; }
.date-trigger.placeholder .date-trigger-text { color: var(--muted); }
.date-trigger-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.date-cal {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 16px 18px 14px;
  box-shadow: var(--shadow-hard);
  width: 320px;
  max-width: calc(100vw - 32px);
}
.date-cal[hidden] { display: none; }

.date-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-nav {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--serif);
  transition: all .2s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--cream-soft); border-color: var(--gold); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-month {
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.date-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.date-cal-weekdays span {
  text-align: center;
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--gold-deep);
  text-transform: uppercase;
  padding: 6px 0;
  font-weight: 500;
}

.date-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-family: var(--sans);
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s var(--ease);
  padding: 0;
}
.cal-day:hover:not(.disabled) { background: rgba(212,168,87,0.18); border-color: var(--gold); }
.cal-day.other-month { color: rgba(33,28,20,0.22); }
.cal-day.today { border-color: var(--gold-deep); font-weight: 600; color: var(--gold-deep); }
.cal-day.selected, .cal-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.cal-day.disabled {
  color: rgba(33,28,20,0.22);
  cursor: not-allowed;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 3px, rgba(33,28,20,0.05) 3px, rgba(33,28,20,0.05) 4px);
}
.cal-day.disabled:hover {
  background: repeating-linear-gradient(45deg, transparent 0, transparent 3px, rgba(33,28,20,0.05) 3px, rgba(33,28,20,0.05) 4px);
  border-color: transparent;
}
.date-cal-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: .05em;
}

/* ---------- Reserva form ---------- */
.reserva-form {
  background: #fff;
  padding: 28px 30px;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.reserva-form .form-row { margin-bottom: 14px; }
.reserva-form .form-grid-tight { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 4px; }
.reserva-form label {
  font-size: .68rem;
}
.reserva-form select,
.reserva-form input[type="date"],
.reserva-form input[type="text"],
.reserva-form input[type="tel"],
.reserva-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream-soft);
  color: var(--ink);
  font-size: .9rem;
  font-family: var(--sans);
  width: 100%;
}
.reserva-form select,
.reserva-form input[type="date"] {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.reserva-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
                    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position: calc(100% - 16px) 16px, calc(100% - 11px) 16px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.reserva-form select:focus,
.reserva-form input:focus,
.reserva-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: #fff;
}

.form-hint {
  display: block;
  font-size: .76rem;
  margin-top: 4px;
  margin-bottom: 10px;
  color: var(--muted);
}
.form-hint.error {
  color: #b03a2e;
  font-weight: 500;
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(212,168,87,0.06);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.checkbox-card:hover {
  background: rgba(212,168,87,0.12);
  border-color: var(--gold);
}
.checkbox-card input[type="checkbox"] {
  margin: 3px 0 0;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--gold-deep);
  cursor: pointer;
}
.checkbox-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.checkbox-card small {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.45;
}
.checkbox-card .price-tag {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.3;
}
.checkbox-card.checked {
  background: rgba(212,168,87,0.16);
  border-color: var(--gold);
}
.checkbox-card .deg-note {
  display: none;
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(212,168,87,0.14);
  border-left: 2px solid var(--gold);
  font-size: .78rem;
  color: var(--ink);
  font-style: italic;
}
.checkbox-card.checked .deg-note { display: block; }

/* Unavailable state (e.g. cocido fuera de viernes mediodía) */
.checkbox-card .unavail-note { display: none; }
.checkbox-card.unavailable {
  opacity: 0.55;
  cursor: not-allowed;
  background: rgba(33,28,20,0.04);
}
.checkbox-card.unavailable:hover {
  background: rgba(33,28,20,0.04);
  border-color: var(--line);
}
.checkbox-card.unavailable input[type="checkbox"] {
  pointer-events: none;
  filter: grayscale(1);
}
.checkbox-card.unavailable .price-tag > span:first-child { text-decoration: line-through; }
.checkbox-card.unavailable small { text-decoration: line-through; }
.checkbox-card.unavailable .unavail-note {
  display: inline;
  text-decoration: none;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
  font-family: var(--sans);
  font-size: .85rem;
}

.reserva-form .submit-row { margin-top: 22px; }
.reserva-form .submit-row .btn { padding: 14px 24px !important; font-size: .82rem; }
.reserva-form .form-footer-note {
  text-align: center;
  margin-top: 12px;
  font-size: .76rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .reserva-form { padding: 22px 18px; }
  .reserva-form .form-grid-tight,
  .reserva-form .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Policy / cards ---------- */
.policy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 40px; }
.policy-card { background: var(--cream); padding: 28px 24px; border-radius: 2px; border-left: 3px solid var(--gold); }
.policy-card h4 { font-family: var(--serif); margin-bottom: 8px; }
.policy-card p { font-size: .9rem; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  color: rgba(245,237,224,0.7);
  padding: 70px 0 30px;
  font-size: .9rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-col h4 { font-family: var(--display); color: var(--gold); font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: grid; gap: 8px; }
.foot-col a { color: rgba(245,237,224,0.6); font-size: .9rem; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 18px; }
.foot-brand p { color: rgba(245,237,224,0.55); line-height: 1.6; max-width: 320px; }
.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,168,87,0.3);
  border-radius: 50%;
  transition: all .25s var(--ease);
}
.foot-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.foot-social svg { width: 16px; height: 16px; }
.foot-bottom { padding-top: 24px; border-top: 1px solid rgba(212,168,87,0.15); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .8rem; color: rgba(245,237,224,0.5); }
.foot-bottom a:hover { color: var(--gold); }

.wertical-credit { display: inline-flex; align-items: baseline; gap: 5px; font-size: .8rem; color: rgba(245,237,224,0.5); }
.wertical-credit .by { font-size: .8rem; text-transform: lowercase; letter-spacing: 0; color: rgba(245,237,224,0.5); font-weight: 400; }
.wertical-credit a { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500; font-size: 1rem; color: rgba(245,237,224,0.72); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; letter-spacing: -0.005em; }
.wertical-credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--black);
  color: #25D366;
  border: 1px solid rgba(212,168,87,0.45);
  box-shadow: var(--shadow-hard);
  z-index: 80;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: var(--black-soft); border-color: var(--gold); }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Status float (Abierto / Cerrado) ---------- */
.status-float {
  position: fixed; bottom: 28px; left: 28px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 80;
  transition: opacity .3s var(--ease);
}
.status-float[hidden] { display: none; }
.status-float .status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--muted); flex-shrink: 0;
}
.status-float.is-open .status-dot {
  background: #2ecc71;
  animation: dotpulse 2.2s var(--ease) infinite;
}
.status-float.is-closed .status-dot { background: #e0574a; }
.status-float.is-soon .status-dot {
  background: #e8a33d;
  animation: dotpulse 2.2s var(--ease) infinite;
}
.status-float .status-text b { color: #fff; font-weight: 700; }
.status-float .status-text .muted { color: var(--sage); font-weight: 500; }
@keyframes dotpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

/* ---------- Modal (carta image lightbox + legal) ---------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal.open { display: flex; animation: fadeIn .25s var(--ease); }
.modal-box {
  background: var(--cream-soft);
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 2px;
  padding: 40px 48px;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--cream); color: var(--ink); border-radius: 50%; }
.modal-close:hover { background: var(--gold); }
.modal-img { max-width: 1100px; }
.modal-img .modal-box { padding: 18px; background: #000; }
.modal-img img { width: 100%; height: auto; border-radius: 2px; }
.modal h3 { margin-bottom: 18px; }
.modal-box p { margin-bottom: 12px; color: var(--ink); font-size: .92rem; }
.modal-box h4 { font-family: var(--serif); margin-top: 18px; margin-bottom: 6px; color: var(--gold-deep); }

/* ---------- Cookies banner ---------- */
.cookies {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 720px; margin: 0 auto;
  background: var(--black); color: var(--cream);
  padding: 20px 24px;
  border-radius: 2px;
  display: none;
  align-items: center; justify-content: space-between; gap: 20px;
  z-index: 90;
  box-shadow: var(--shadow-hard);
  border-top: 2px solid var(--gold);
}
.cookies.show { display: flex; animation: slideUp .35s var(--ease); }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookies p { font-size: .85rem; color: rgba(245,237,224,0.85); flex: 1; }
.cookies a { color: var(--gold-bright); text-decoration: underline; }
.cookies-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookies-actions button { padding: 10px 18px; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; border-radius: 2px; font-weight: 600; }
.cookies-actions .accept { background: var(--gold); color: var(--black); }
.cookies-actions .accept:hover { background: var(--gold-bright); }
.cookies-actions .reject { background: transparent; color: rgba(245,237,224,0.7); border: 1px solid rgba(245,237,224,0.3); }
.cookies-actions .reject:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Carta full image strip (carta page) ---------- */
.carta-images-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.carta-images-strip button {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease);
  cursor: pointer;
}
.carta-images-strip button:hover { transform: translateY(-4px); }
.carta-images-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.carta-images-strip button:hover img { transform: scale(1.05); }
.carta-images-strip button::after {
  content: 'Ver carta';
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(13,13,13,0.85);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 1px;
}

/* ---------- Alérgenos disclaimer ---------- */
.allergen-note {
  background: rgba(212,168,87,0.08);
  border: 1px solid var(--line);
  padding: 22px 26px;
  margin-top: 50px;
  border-radius: 2px;
  font-size: .85rem;
  color: var(--cream);
  line-height: 1.6;
}
.allergen-note p { color: var(--cream); margin: 0; }
.allergen-note strong { color: var(--gold-bright); font-family: var(--display); letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; position: fixed; top: 70px; right: 24px; left: 24px;
    flex-direction: column; align-items: flex-start;
    background: rgba(13,13,13,0.96); backdrop-filter: blur(14px);
    padding: 26px; gap: 18px; border-radius: 2px; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-grid, .cocido-grid, .where-grid, .carta-panel-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 380px; }
  .cocido-img img { height: 340px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 70px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .hero-compact { padding: 140px 0 60px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .about-stat .num { font-size: 1.8rem; }
  .cookies { flex-direction: column; align-items: stretch; bottom: 14px; left: 14px; right: 14px; }
  .cookies-actions { justify-content: stretch; }
  .cookies-actions button { flex: 1; }
  .modal-box { padding: 30px 24px; }
}

@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 24px; font-size: .78rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .breadcrumb .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
  .status-float { bottom: 16px; left: 16px; padding: 9px 13px; font-size: .7rem; gap: 7px; }
  .status-float .status-dot { width: 8px; height: 8px; }
}
