:root {
  --nero: #0d0d0d;
  --carbone: #1a1a1a;
  --forno: #2a2016;
  --oro: #e8a820;
  --fuoco: #d44000;
  --crema: #f5efe6;
  --bianco: #ffffff;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(.25,.8,.25,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--nero); color: var(--crema); overflow-x: hidden; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #111; border-top: 1px solid #333;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: .85rem; color: #ccc;
}
#cookie-banner p { flex: 1; min-width: 240px; }
#cookie-banner a { color: var(--oro); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btns button {
  padding: .5rem 1.2rem; border-radius: 8px; border: none; cursor: pointer;
  font-size: .85rem; font-weight: 600; transition: opacity .2s;
}
.cookie-btns button:hover { opacity: .8; }
#btn-accept { background: var(--oro); color: #000; }
#btn-reject { background: #333; color: #fff; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,168,32,.15);
  transition: padding var(--transition);
}
nav.scrolled { padding: .65rem 2.5rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-icon {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-icon-emoji {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fuoco), var(--oro));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--bianco); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--oro); }
.btn-pedir {
  background: linear-gradient(135deg, var(--fuoco), var(--oro));
  color: #fff; border: none; padding: .65rem 1.5rem;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-pedir:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,64,0,.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--crema); border-radius: 2px; transition: var(--transition); display: block; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-circles span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(232,168,32,.1);
  animation: pulsecircle 8s ease-in-out infinite;
}
.hero-bg-circles span:nth-child(1) { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-bg-circles span:nth-child(2) { width: 400px; height: 400px; right: 80px; top: 50px; animation-delay: -3s; }
.hero-bg-circles span:nth-child(3) { width: 200px; height: 200px; left: 5%; bottom: 20%; animation-delay: -5s; }
@keyframes pulsecircle { 0%,100%{opacity:.3;transform:scale(1)} 50%{opacity:.7;transform:scale(1.05)} }

.hero-content { text-align: center; max-width: 800px; padding: 0 2rem; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,168,32,.12); border: 1px solid rgba(232,168,32,.35);
  color: var(--oro); padding: .4rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem; animation: fadedown .8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1; font-weight: 900; color: var(--bianco);
  animation: fadedown .8s ease .15s both;
}
.hero-title span { color: var(--oro); font-style: italic; }
.hero-sub {
  margin: 1.5rem 0 2.5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #bbb; line-height: 1.7; max-width: 600px; margin-inline: auto;
  animation: fadedown .8s ease .3s both;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadedown .8s ease .45s both; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: #666; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bouncescroll 2s ease-in-out infinite;
}
.hero-scroll svg { opacity: .4; }
@keyframes bouncescroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes fadedown { from{opacity:0;transform:translateY(-24px)} to{opacity:1;transform:translateY(0)} }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--fuoco) 0%, var(--oro) 100%);
  color: #fff; padding: .9rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .25s, box-shadow .25s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212,64,0,.5); }
.btn-secondary {
  background: transparent; border: 2px solid rgba(232,168,32,.5);
  color: var(--crema); padding: .9rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: border-color .25s, background .25s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--oro); background: rgba(232,168,32,.08); }
.btn-gold {
  background: linear-gradient(135deg, var(--oro), #f0c040);
  color: #000; padding: 1rem 2.5rem; border-radius: 50px;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  transition: transform .25s, box-shadow .25s; display: inline-block;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,168,32,.45); }

/* ── SECTIONS COMMONS ── */
section { padding: 6rem 2rem; }
.section-label {
  display: inline-block; color: var(--oro); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--bianco); line-height: 1.15;
}
.section-title span { color: var(--oro); font-style: italic; }
.section-sub { color: #999; font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-top: .9rem; }
.container { max-width: 1180px; margin: 0 auto; }

/* ── AWARDS ── */
#premios {
  background: linear-gradient(135deg, var(--forno) 0%, var(--carbone) 100%);
  border-top: 1px solid rgba(232,168,32,.1);
  border-bottom: 1px solid rgba(232,168,32,.1);
  padding: 3.5rem 2rem;
}
.awards-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.award-item { display: flex; align-items: center; gap: 1rem; }
.award-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--oro), var(--fuoco));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.award-text strong { display: block; color: var(--bianco); font-size: 1rem; font-weight: 700; }
.award-text span { color: #888; font-size: .82rem; }
.award-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ── ABOUT ── */
#sobre { background: var(--nero); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); display: block;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1e1208, #2d1f0f, #3d2a10);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  border: 1px solid rgba(232,168,32,.15); font-size: 5rem;
}
.about-img-placeholder p { font-size: .85rem; color: #666; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: linear-gradient(135deg, var(--fuoco), var(--oro));
  padding: .75rem 1.25rem; border-radius: 12px;
  font-weight: 700; font-size: .95rem;
}
.about-img-badge span { display: block; font-size: .75rem; font-weight: 400; opacity: .9; }
.about-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(232,168,32,.1); border: 1px solid rgba(232,168,32,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-text strong { display: block; color: var(--bianco); margin-bottom: .25rem; }
.feature-text p { color: #888; font-size: .9rem; line-height: 1.6; }

/* ── MENU ── */
#menu { background: var(--carbone); }
.menu-header { text-align: center; margin-bottom: 3.5rem; }
.menu-header .section-sub { margin-inline: auto; }
.menu-tabs { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.tab-btn {
  padding: .55rem 1.4rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent; color: #888;
  font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .2s;
}
.tab-btn.active, .tab-btn:hover { background: var(--oro); border-color: var(--oro); color: #000; font-weight: 700; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: #1e1e1e; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem; transition: transform .25s, border-color .25s; cursor: default;
}
.menu-card:hover { transform: translateY(-4px); border-color: rgba(232,168,32,.3); }
.menu-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.menu-card-name { font-size: 1rem; font-weight: 700; color: var(--bianco); }
.menu-card-tag {
  font-size: .7rem; padding: .25rem .65rem; border-radius: 20px;
  background: rgba(232,168,32,.12); color: var(--oro); font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.menu-card-tag.veg { background: rgba(72,160,72,.12); color: #5dbd5d; }
.menu-card-desc { color: #777; font-size: .86rem; line-height: 1.6; margin-top: .6rem; }
.menu-card-footer { margin-top: 1.2rem; }
.menu-card-cta {
  display: inline-block; font-size: .82rem; font-weight: 600;
  color: var(--oro); text-decoration: none;
  border: 1px solid rgba(232,168,32,.3); border-radius: 50px;
  padding: .4rem 1rem; transition: background .2s, color .2s;
}
.menu-card-cta:hover { background: var(--oro); color: #000; }
.menu-cta { text-align: center; margin-top: 3rem; }

/* ── GALLERY ── */
#galeria { background: var(--nero); }
.gallery-header { text-align: center; margin-bottom: 3rem; }

.gallery-grid-full {
  columns: 4 220px;
  column-gap: .75rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: .75rem;
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(145deg, #1e1208, #2d1f0f);
  border: 1px solid rgba(255,255,255,.05);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: .85rem;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .82rem; font-weight: 600; }

.gallery-load-more { text-align: center; margin-top: 2.5rem; }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.93);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}
#lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
  line-height: 1; opacity: .7; transition: opacity .2s;
}
#lightbox-close:hover { opacity: 1; }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 1.75rem; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; backdrop-filter: blur(4px);
}
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(232,168,32,.35); }
#lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: #ccc; font-size: .85rem; white-space: nowrap;
}

@media (max-width: 900px) {
  .gallery-grid-full { columns: 3 160px; }
}
@media (max-width: 600px) {
  .gallery-grid-full { columns: 2 140px; }
  #lightbox-prev { left: .25rem; }
  #lightbox-next { right: .25rem; }
}

/* ── RESEÑAS ── */
#resenas { background: var(--carbone); }
.reviews-header { text-align: center; margin-bottom: 1rem; }
.reviews-score { display: flex; align-items: center; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; }
.score-big { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: var(--oro); line-height: 1; }
.score-info { text-align: left; }
.stars { color: var(--oro); font-size: 1.4rem; letter-spacing: 2px; }
.score-info p { color: #666; font-size: .88rem; margin-top: .25rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
  background: #1e1e1e; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem; transition: border-color .25s, transform .25s;
}
.review-card:hover { border-color: rgba(232,168,32,.25); transform: translateY(-3px); }
.review-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .95rem; color: var(--bianco); }
.review-meta { color: #555; font-size: .8rem; margin-top: 1px; }
.review-stars { color: var(--oro); font-size: .9rem; margin-bottom: .6rem; }
.review-text { color: #999; font-size: .88rem; line-height: 1.65; }
.review-source { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; font-size: .75rem; color: #555; font-weight: 500; }
.review-source svg { opacity: .5; }

/* ── UBICACIÓN ── */
#ubicacion { background: var(--nero); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.location-info h2 { margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(232,168,32,.1); border: 1px solid rgba(232,168,32,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.info-body strong { display: block; color: var(--bianco); font-size: .95rem; margin-bottom: .2rem; }
.info-body span, .info-body a { color: #888; font-size: .9rem; text-decoration: none; }
.info-body a:hover { color: var(--oro); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .5rem; margin-top: .5rem; }
.hours-grid span { font-size: .85rem; color: #888; }
.hours-grid strong { font-size: .85rem; color: var(--crema); }
.open-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(80,200,80,.1); border: 1px solid rgba(80,200,80,.3);
  color: #5dbd5d; padding: .3rem .8rem; border-radius: 20px;
  font-size: .78rem; font-weight: 700; margin-bottom: 1rem;
}
.open-badge span { width: 7px; height: 7px; border-radius: 50%; background: #5dbd5d; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.map-wrap iframe { display: block; }

/* ── ORDER CTA ── */
#pedir {
  background: linear-gradient(135deg, var(--forno), #1a0f05);
  border-top: 1px solid rgba(232,168,32,.1);
  text-align: center; padding: 6rem 2rem;
}
#pedir .section-title { color: var(--bianco); }
#pedir .section-sub { color: #888; margin-inline: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.contact-info-row { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.contact-pill { display: flex; align-items: center; gap: .6rem; color: #888; font-size: .9rem; }
.contact-pill span { font-size: 1.1rem; }

/* ── FOOTER ── */
footer { background: #080808; border-top: 1px solid rgba(255,255,255,.05); padding: 3rem 2rem 2rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: #555; font-size: .88rem; line-height: 1.7; max-width: 320px; }
.footer-brand .social-links { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 1rem; text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover { background: rgba(232,168,32,.15); color: var(--oro); }
.footer-col h4 { color: var(--crema); font-size: .95rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { color: #555; font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--oro); }
.footer-bottom {
  max-width: 1180px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { color: #444; font-size: .82rem; }
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--oro); }

/* ── FLOATING BUTTONS ── */
.fab-group {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  z-index: 900;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
  transition: transform .25s, box-shadow .25s;
}
.fab:hover { transform: translateY(-3px) scale(1.07); box-shadow: 0 10px 28px rgba(0,0,0,.55); }
.fab-phone { background: linear-gradient(135deg, var(--fuoco), var(--oro)); }
.fab-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: .85rem 1.25rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,13,13,.97); padding: 1.5rem; gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .awards-inner { gap: 1.5rem; }
  .award-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-score { flex-direction: column; text-align: center; }
  .score-info { text-align: center; }
}

/* ===== PRENSA ===== */
#prensa { background: var(--nero); padding: 6rem 0; }
#prensa .section-sub { color: var(--grigio); max-width: 500px; margin-bottom: 3rem; }

.prensa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.prensa-card {
  background: var(--carbone);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.prensa-card:hover {
  border-color: rgba(232,168,32,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.prensa-medio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.prensa-logo {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oro);
}
.prensa-fecha {
  font-size: 0.75rem;
  color: var(--grigio);
}

.prensa-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.prensa-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.prensa-card:hover .prensa-img-wrap img { transform: scale(1.06); }
.prensa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
}

.prensa-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.prensa-tag {
  display: inline-block;
  background: rgba(232,168,32,0.12);
  border: 1px solid rgba(232,168,32,0.25);
  color: var(--oro);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
}
.prensa-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.prensa-body p {
  font-size: 0.85rem;
  color: var(--grigio);
  line-height: 1.6;
  flex: 1;
}
.prensa-leer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--oro);
  margin-top: 0.5rem;
}
.prensa-card:hover .prensa-leer { text-decoration: underline; }

@media (max-width: 900px) {
  .prensa-grid { grid-template-columns: 1fr; gap: 1rem; }
}
