:root {
  --ink: #080407;
  --panel: #150b11;
  --panel-soft: #211318;
  --paper: #fff7ec;
  --paper-muted: #e9d5bc;
  --rose: #ff4f91;
  --rose-hot: #ff0f67;
  --red: #d7122b;
  --gold: #d39a46;
  --green: #2e9b61;
  --line: rgba(255, 247, 236, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 79, 145, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(211, 154, 70, 0.15), transparent 24rem),
    linear-gradient(135deg, #080407 0%, #16080f 48%, #050304 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(8, 4, 7, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: block;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 79, 145, 0.72), 0 0 34px rgba(255, 15, 103, 0.46);
}

.brand-sub {
  display: block;
  margin-top: 7px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-action {
  color: #fff;
  background: var(--rose-hot);
  box-shadow: 0 0 24px rgba(255, 15, 103, 0.35);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 110px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 247, 236, 0.28);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.lang-dropdown-toggle:hover {
  border-color: rgba(255, 79, 145, 0.72);
  background: rgba(255, 79, 145, 0.16);
}

.lang-dropdown-toggle:focus-visible {
  outline: 3px solid rgba(255, 247, 236, 0.72);
  outline-offset: 3px;
}

.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 200;
  min-width: 150px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(255, 79, 145, 0.38);
  border-radius: 10px;
  background: rgba(21, 11, 17, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 79, 145, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-menu li {
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}

.lang-menu li:hover {
  color: var(--paper);
  background: rgba(255, 79, 145, 0.18);
}

.lang-menu li[aria-selected="true"] {
  color: var(--rose);
  background: rgba(255, 79, 145, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(78vh - 76px);
  padding: clamp(24px, 4vw, 46px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  pointer-events: none;
  border: 1px solid rgba(255, 79, 145, 0.24);
  border-radius: 8px;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(50px, 8.6vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 79, 145, 0.78), 0 0 64px rgba(255, 15, 103, 0.52);
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 650px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.75vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-hot), var(--red));
  box-shadow: 0 0 28px rgba(255, 15, 103, 0.32);
}

.btn-secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 247, 236, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
}

.hero-info div {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-info dt {
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-info dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.hero-media {
  padding: 12px;
  border: 1px solid rgba(255, 79, 145, 0.38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 79, 145, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow), 0 0 44px rgba(255, 79, 145, 0.22);
}

.hero-media img {
  width: 100%;
  max-height: 460px;
  aspect-ratio: 1.08;
  object-fit: cover;

  border-radius: 6px;
}

.deal-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: 26px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #1a0907;
  background:
    linear-gradient(90deg, rgba(255, 247, 236, 0.94), rgba(255, 205, 132, 0.92)),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 10px);
  border-block: 5px solid var(--red);
}

.deal-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 20px;
  font-weight: 900;
}

.deal-strip h2 {
  margin: 0;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}

.deal-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.menu-section,
.access-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.lounge-copy h2 {
  margin-bottom: 14px;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
}

.section-head p,
.lounge-copy p {
  color: var(--paper-muted);
  font-size: 18px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
  margin-bottom: 28px;
}

.featured-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.featured-card.hot {
  background:
    linear-gradient(135deg, rgba(255, 15, 103, 0.34), rgba(211, 18, 43, 0.16)),
    var(--panel);
  border-color: rgba(255, 79, 145, 0.38);
}

.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(211, 154, 70, 0.7);
  border-radius: 999px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
}

.featured-card h3 {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
}

.featured-card p {
  margin: 0;
  color: var(--paper-muted);
}

.dish-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 48px;
}

.dish-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 247, 236, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-head h3 {
  margin: 0;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
}

.gallery-head p {
  margin: 0;
  color: var(--paper-muted);
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-thumb {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 145, 0.32);
  border-radius: 8px;
  background: var(--panel-soft);
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.menu-thumb img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.menu-thumb:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.lounge-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(215, 18, 43, 0.22), transparent 46%),
    #11080b;
  border-block: 1px solid var(--line);
}

.lounge-media {
  padding: 10px;
  border: 1px solid rgba(211, 154, 70, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.lounge-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 6px;
}

.lounge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.lounge-list span {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.access-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.access-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose-hot);
  font-weight: 900;
}

.access-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.access-card p {
  margin-bottom: 8px;
  color: var(--paper);
}

.muted {
  color: var(--paper-muted) !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--paper-muted);
  background: #050304;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 24px;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 247, 236, 0.28);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-hot), var(--red));
  box-shadow: 0 0 28px rgba(255, 15, 103, 0.42), 0 12px 34px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.back-to-top::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: translateY(4px) rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow: 0 0 36px rgba(255, 15, 103, 0.62), 0 16px 38px rgba(0, 0, 0, 0.44);
  transform: translateY(-2px) scale(1);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 247, 236, 0.74);
  outline-offset: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 64px 18px 28px;
  background: rgba(5, 3, 4, 0.92);
  backdrop-filter: blur(14px);
}

.modal.is-open {
  display: grid;
}

.modal-image {
  max-width: min(96vw, 900px);
  max-height: 88vh;
  border: 1px solid rgba(255, 79, 145, 0.5);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 46px rgba(255, 79, 145, 0.28);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 247, 236, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--rose-hot);
}

@media (max-width: 980px) {
  .hero,
  .lounge-section,
  .deal-strip {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .menu-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative; /* Cambiamos 'static' por 'relative' */
    z-index: 50; /* Esto asegura que el menú quede por encima de todo */
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }

  .main-nav {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .lang-dropdown { /* Corregido: antes decía '.language-toggle' */
    flex: 0 0 auto;
  }

/* ... el resto del código hacia abajo se queda igual ... */

  .hero {
    min-height: auto;
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .hero::before {
    inset: 14px;
  }

  .menu-gallery,
  .lounge-list {
    grid-template-columns: 1fr;
  }

  .hero-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-info div {
    padding: 10px 8px;
  }

  .hero-info dt {
    font-size: 10px;
  }

  .hero-info dd {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-media {
    padding: 8px;
  }

  .hero-media img {
    max-height: 188px;
    aspect-ratio: 1.55;
  }

  .gallery-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
  }
  a.access-card {
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

a.access-card:hover {
  border-color: rgba(255, 79, 145, 0.6); /* Borde rosa de tu paleta */
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
}
