:root {
  --bg: #111a3a;
  --bg-deep: #070d21;
  --bg-soft: #172143;
  --card: #0b122c;
  --card-soft: #162044;
  --text: #f7f8ff;
  --muted: #a9afc5;
  --line: rgba(255,255,255,.09);
  --cyan: #4edfff;
  --cyan-2: #26bbed;
  --purple: #9862ff;
  --pink: #e056ff;
  --green: #27d66b;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --radius: 22px;
  --shadow: 0 20px 70px rgba(1, 5, 18, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 10px;
  color: #061020;
  background: var(--cyan);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.section { padding: 5rem 0; background: var(--bg); }
.section-dark { background: var(--bg-deep); }
.section-muted { background: #111a38; }
.section-heading { max-width: 740px; margin-bottom: 2.4rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.about-copy h2,
.location-copy h2,
.cta-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  margin: .75rem 0 1rem;
  font-size: clamp(2.35rem, 9vw, 4.5rem);
}
.section-heading p:not(.eyebrow), .about-copy > p:not(.eyebrow), .location-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.97rem, 2vw, 1.1rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: .35rem 1rem;
  border: 1px solid rgba(78,223,255,.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(78,223,255,.07);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.purple { color: #aa85ff; border-color: rgba(152,98,255,.24); background: rgba(152,98,255,.1); }
.eyebrow.pink { color: #f177ff; border-color: rgba(224,86,255,.24); background: rgba(224,86,255,.1); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #061020;
  background: linear-gradient(110deg, #52e4ef, #48bfff);
  box-shadow: 0 12px 35px rgba(52,203,247,.23);
}
.button-outline { background: rgba(5,10,27,.36); border-color: rgba(78,223,255,.5); }
.button-outline:hover { border-color: var(--cyan); box-shadow: 0 0 25px rgba(78,223,255,.13); }
.button-whatsapp { background: linear-gradient(100deg, #25d366, #29aa95); color: #fff; }
.full-width { width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 74px;
  background: rgba(5,9,25,.82);
  border-bottom: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { width: 230px; max-width: 62vw; }
.brand img { width: 100%; height: auto; }
.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-soft);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.main-nav {
  position: fixed;
  inset: 74px 0 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(5,9,25,.98);
  transform: translateX(100%);
  transition: transform .28s ease;
}
.main-nav.open { transform: translateX(0); }
.main-nav a { width: 100%; max-width: 440px; padding: 1rem; border-bottom: 1px solid var(--line); text-align: center; color: #d7daea; }
.main-nav a:hover { color: var(--cyan); }
.header-whatsapp { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 7rem 0 4rem;
}
.hero-bg, .cta-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4,7,20,.53) 0%, rgba(4,7,20,.25) 32%, rgba(6,10,29,.7) 78%, var(--bg-deep) 100%),
    radial-gradient(circle at 50% 40%, rgba(99,49,151,.1), rgba(2,5,16,.55) 72%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding-inline: clamp(.35rem, 2.5vw, 1.5rem);
  text-align: center;
}
.hero h1 {
  margin: 1.35rem 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 16vw, 7.3rem);
  line-height: .82;
  font-weight: 400;
  letter-spacing: -.045em;
  text-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.hero h1 span { display: block; color: transparent; background: linear-gradient(90deg, #55e5f6 18%, #42c5f4 55%, #ab63ff 100%); background-clip: text; -webkit-background-clip: text; }
.hero-subtitle { margin: 1.4rem auto .6rem; font-size: clamp(1.08rem, 3vw, 1.45rem); color: #d9dceb; }
.hero-description { max-width: 680px; margin: 0 auto; color: #aab0c8; }
.hero-actions { display: flex; flex-direction: column; gap: .8rem; align-items: stretch; max-width: 390px; margin: 2rem auto 0; }
.scroll-indicator { display: none; }

.feature-grid { display: grid; gap: 1rem; }
.feature-card {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}
.feature-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(6,10,27,.94) 88%); }
.feature-card-content { position: absolute; inset: auto 1.4rem 1.35rem; z-index: 2; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: .8rem; border-radius: 14px; color: #061020; background: linear-gradient(135deg, var(--cyan), var(--purple)); font-weight: 900; }
.feature-card h3, .event-card h3, .info-panel h3, .site-footer h3 { font-family: var(--serif); font-weight: 400; margin: 0 0 .4rem; font-size: 1.6rem; }
.feature-card p { margin: 0; color: #c4c8d8; }

.filter-row {
  display: flex;
  gap: .65rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding: .4rem .1rem .8rem;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #cfd3e3;
  cursor: pointer;
  transition: .2s ease;
}
.filter-button:hover, .filter-button.active { color: #061020; background: linear-gradient(100deg, var(--cyan), #55caff); box-shadow: 0 8px 28px rgba(78,223,255,.2); }

.menu-grid { display: grid; gap: .85rem; }
.menu-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 125px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  transition: transform .2s ease, border-color .2s ease;
}
.menu-card:hover { transform: translateY(-2px); border-color: rgba(78,223,255,.22); }
.menu-card img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { min-width: 0; padding: 1rem; position: relative; }
.menu-card h3 { margin: 0 4.5rem .35rem 0; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }
.menu-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.menu-price { position: absolute; top: .95rem; right: 1rem; color: var(--cyan); font-weight: 800; }
.empty-state { grid-column: 1/-1; text-align: center; padding: 3rem 1rem; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; inset: auto 1rem 1rem; padding: .4rem .8rem; border-radius: 999px; background: rgba(4,8,23,.75); backdrop-filter: blur(10px); }

.event-grid { display: grid; gap: 1rem; }
.event-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: var(--card-soft);
  box-shadow: var(--shadow);
}
.event-image { height: 205px; position: relative; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--card-soft) 100%); }
.event-badge { position: absolute; z-index: 2; top: 1rem; left: 1rem; padding: .7rem .9rem; border-radius: 12px; background: rgba(11,17,43,.78); backdrop-filter: blur(10px); }
.event-badge strong { display: block; }
.event-badge span { color: #c3c7da; font-size: .76rem; }
.event-body { padding: 1.2rem 1.2rem 1.35rem; }
.event-body h3 { color: #fff; }
.event-body p { color: var(--muted); margin: .2rem 0 .85rem; }
.event-time { font-size: .86rem; font-weight: 700; color: var(--cyan); }
.event-card[data-accent="purple"] .event-time { color: var(--purple); }
.event-card[data-accent="pink"] .event-time { color: var(--pink); }
.event-card[data-accent="green"] .event-time { color: var(--green); }

.cta-banner { min-height: 580px; position: relative; display: grid; align-items: center; isolation: isolate; }
.cta-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(6,10,27,.97) 0%, rgba(6,10,27,.82) 48%, rgba(6,10,27,.2) 100%), linear-gradient(0deg, var(--bg-deep), transparent 28%); }
.cta-content {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  max-width: 700px;
  margin-left: 0;
  padding-inline: clamp(.8rem, 4vw, 3rem);
  text-align: left;
}
.cta-content p { color: #b6bbcf; max-width: 560px; }
.cta-content .hero-actions { margin-left: 0; }

.about-grid, .location-grid { display: grid; gap: 2rem; }
.about-copy > p:not(.eyebrow) { white-space: pre-line; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 2rem; }
.stat-grid div { padding: 1rem .8rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(9,15,38,.42); text-align: center; }
.stat-grid strong { display: block; color: var(--cyan); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.stat-grid span { display: block; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.about-panels { display: grid; gap: 1rem; }
.info-panel { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card-soft); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: var(--cyan); font-size: .86rem; text-align: right; }
.social-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.social-row a { min-height: 44px; display: inline-flex; align-items: center; padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); }
.social-row a:hover { border-color: var(--purple); color: #d8c8ff; }

.location-copy h2 { margin-top: .8rem; }
.contact-list { display: grid; gap: 1rem; margin: 2rem 0; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 1rem; }
.contact-item > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #061020; background: linear-gradient(140deg, var(--cyan), #48bfff); font-weight: 900; }
.contact-item:nth-child(2) > span { background: linear-gradient(140deg, #27dc69, #1cae8b); color: white; }
.contact-item:nth-child(3) > span { background: linear-gradient(140deg, var(--purple), var(--pink)); color: white; }
.contact-item strong { display: block; }
.contact-item p { margin: 0; color: var(--muted); }
.map-card { min-height: 380px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

.testimonial-grid { display: grid; gap: 1rem; }
.testimonial-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.stars { color: var(--cyan); letter-spacing: .22em; }
.testimonial-card blockquote { margin: 1rem 0 1.25rem; color: #c7cbda; }
.testimonial-card blockquote strong { display: block; margin-bottom: .5rem; color: #fff; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; }
.testimonial-author span { color: var(--cyan); font-size: .78rem; }

.site-footer { padding: 4rem 0 1.2rem; background: #070d1e; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { width: 270px; max-width: 100%; }
.site-footer p, .site-footer a { color: #969db6; }
.site-footer h3 { color: var(--cyan); font-family: var(--sans); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 1rem; width: 100%; font-size: .86rem; }
.footer-hours-row strong { color: #cdd1df; text-align: right; }
.social-row.compact a { width: 42px; height: 42px; padding: 0; justify-content: center; }
.footer-bottom { display: flex; flex-direction: column; gap: .5rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--line); color: #727a94; font-size: .82rem; }
.footer-legal { display: grid; gap: .35rem; }
.footer-legal a { color: #aeb5ca; text-decoration: underline; text-decoration-color: rgba(78,223,255,.45); text-underline-offset: .18em; }
.footer-legal a:hover { color: var(--cyan); }

.floating-whatsapp { position: fixed; z-index: 900; right: 1rem; bottom: 1rem; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #2ade6d, #1aa98a); box-shadow: 0 15px 35px rgba(32,204,102,.35); font-size: 1.3rem; }
.lightbox { width: min(92vw, 980px); padding: 0; border: 1px solid var(--line); border-radius: 18px; background: var(--card); color: white; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(2,5,15,.88); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #050817; }
.lightbox p { margin: 0; padding: 1rem 1.2rem; }
.lightbox button { position: absolute; right: .7rem; top: .7rem; width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: rgba(4,8,23,.78); font-size: 1.6rem; cursor: pointer; }
.loading-screen { position: fixed; inset: 0; z-index: 2000; display: grid; place-content: center; gap: 1rem; text-align: center; background: var(--bg-deep); color: var(--muted); transition: opacity .3s ease, visibility .3s ease; }
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loader { width: 44px; height: 44px; margin: auto; border: 3px solid rgba(255,255,255,.12); border-top-color: var(--cyan); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 600px) {
  .container { width: min(100% - 3rem, var(--container)); }
  .hero-actions { flex-direction: row; align-items: center; justify-content: center; max-width: none; }
  .hero-actions .button { min-width: 170px; }
  .cta-content .hero-actions { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 850px) {
  .section { padding: 7rem 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card { min-height: 500px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { grid-template-columns: 145px 1fr; min-height: 135px; }
  .centered-filters { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { min-height: 360px; }
  .about-grid, .location-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
  .location-grid { grid-template-columns: .9fr 1.25fr; }
  .footer-grid { grid-template-columns: 1.2fr .7fr 1fr .8fr; }
}

@media (min-width: 1024px) {
  .site-header { height: 76px; }
  .brand { width: 280px; }
  .nav-toggle { display: none; }
  .main-nav { position: static; inset: auto; padding: 0; flex-direction: row; gap: 1.8rem; background: transparent; transform: none; }
  .main-nav a { width: auto; padding: .3rem 0; border: 0; font-size: .91rem; }
  .header-whatsapp { display: inline-flex; min-height: 46px; padding-inline: 1.25rem; }
  .hero { min-height: 790px; padding-top: 8rem; }
  .scroll-indicator { display: grid; width: 24px; height: 40px; place-items: start center; margin: 2.5rem auto 0; padding-top: 7px; border: 2px solid rgba(255,255,255,.25); border-radius: 999px; }
  .scroll-indicator span { width: 4px; height: 9px; border-radius: 999px; background: var(--cyan); animation: scroll 1.5s ease infinite; }
  @keyframes scroll { 50% { transform: translateY(13px); opacity: .35; } }
  .event-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { min-height: 650px; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 7.5rem; }
  .menu-card h3 { font-size: 1.28rem; }
}

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

/* Mejoras de legibilidad, identidad visual y reseñas */
.hero h1 span {
  margin-top: .18em;
  font-family: var(--sans);
  font-size: .48em;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .015em;
}

.gallery-item span {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.event-badge { display: none; }

.button-icon,
.social-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  color: currentColor;
}

.button-icon { width: 1.35rem; height: 1.35rem; }
.social-row a { gap: .5rem; }
.social-row.compact a img { width: 1.15rem; height: 1.15rem; }
.contact-brand-icon img { width: 1.35rem; height: 1.35rem; color: #25d366; }
.floating-whatsapp img { width: 2rem; height: 2rem; color: #fff; }

.review-form {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(11,18,44,.98), rgba(22,32,68,.9));
  box-shadow: var(--shadow);
}
.review-form-heading h3 {
  margin: .8rem 0 .35rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
}
.review-form-heading > p:last-child { margin: 0; color: var(--muted); }
.review-form-grid { display: grid; gap: 1rem; }
.review-form label { display: grid; gap: .45rem; color: #e6e9f5; font-size: .88rem; font-weight: 800; }
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .78rem .9rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  color: var(--text);
  background: #09112b;
  outline: none;
}
.review-form textarea { resize: vertical; }
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(78,223,255,.1); }
.review-form .wide { grid-column: 1 / -1; }
.review-form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.review-message { min-height: 1.4rem; color: #ff9cab; font-size: .9rem; }
.review-message.success { color: #62eba0; }

@media (min-width: 700px) {
  .review-form { grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); align-items: start; }
  .review-form-heading { grid-row: span 2; }
  .review-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-form-actions { grid-column: 2; }
}

/* Ajustes finales para contenido dinámico */
.brand {
  height: 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}
.footer-grid > div:first-child { min-width: 0; }
.footer-logo {
  width: auto;
  max-width: min(100%, 270px);
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
}
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.menu-card-heading {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .45rem;
  padding-right: 4.5rem;
}
.menu-card-heading h3 { margin-right: 0; }
.featured-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: .18rem .5rem;
  border: 1px solid rgba(78,223,255,.25);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(78,223,255,.08);
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.event-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 285px));
  justify-content: center;
  align-items: stretch;
}
.event-card { width: 100%; }
.compact-empty { padding: 1.2rem .8rem; }

@media (min-width: 1024px) {
  .brand { width: 280px; height: 62px; }
  .brand img { max-height: 58px; }
  .event-grid { grid-template-columns: repeat(auto-fit, minmax(245px, 285px)); }
}
