@font-face {
  font-family: "Titulos";
  src: url("assets/TipografiaTitulos.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cuerpo";
  src: url("assets/TipografiaNormal.ttf") format("truetype");
  font-display: swap;
}

:root {
  --navy: #192637;
  --olive: #25391c;
  --sage: #cadea1;
  --cream: #f4e7cf;
  --ink: #101923;
  --panel-soft: rgba(25, 38, 55, 0.78);
  --white-soft: rgba(244, 231, 207, 0.9);
  --line: rgba(202, 222, 161, 0.24);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --font-display: "Titulos", serif;
  --font-body: "Manrope", "Cuerpo", sans-serif;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top, rgba(202, 222, 161, 0.14), transparent 30%),
    linear-gradient(135deg, #101923 0%, #192637 48%, #25391c 100%);
}

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

a[x-apple-data-detectors],
a[x-apple-data-detectors-type],
.address a {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
}

.split-layout {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.top-band,
.bottom-band {
  display: grid;
  grid-template-columns: 1fr;
}

.top-band {
  position: relative;
  overflow: hidden;
}

.top-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/Fondo2.jpg") center 30% / 128% auto no-repeat;
  filter: blur(4px);
  transform: scale(1.03);
}

.top-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 38, 55, 0.16), rgba(25, 38, 55, 0.28));
}

.top-band-side,
.bottom-side {
  position: relative;
  background-size: cover;
  background-position: center;
}

.top-band-side::after,
.bottom-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 25, 35, 0.3), rgba(16, 25, 35, 0.62));
}

.top-band-side,
.bottom-side {
  background-image: url("assets/Fondo1.jpg");
  border-inline: 1px solid var(--line);
}

.top-band-center,
.bottom-center {
  border-inline: 1px solid var(--line);
}

.top-band-side,
.top-band-center {
  position: relative;
  z-index: 1;
  background: transparent;
}

.top-band-side::after {
  display: none;
}

.top-band-center {
  display: grid;
  place-items: center;
  padding: 0.65rem 0.85rem 0.35rem;
}

.bottom-band {
  min-height: 0;
}

.bottom-side {
  background-image: url("assets/Fondo1.jpg");
}

.bottom-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100dvh - 200px);
  padding: clamp(1.1rem, 2.8vh, 1.7rem) 1rem 2.3rem;
  text-align: center;
  background:
    linear-gradient(rgba(25, 38, 55, 0.54), rgba(37, 57, 28, 0.6)),
    url("assets/Fondo1.jpg") center / cover no-repeat;
}

.bottom-content {
  width: min(100%, 370px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.95rem, 2.6vh, 1.45rem);
  margin-inline: auto;
}

.hero-logo {
  width: min(88vw, 340px);
  padding: 0.45rem;
  background: rgba(25, 38, 55, 0.34);
  border: 1px solid rgba(202, 222, 161, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.action-pill,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 56px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 231, 207, 0.52);
  background: rgba(16, 25, 35, 0.22);
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-display);
  font-size: clamp(0.94rem, 2.8vw, 0.98rem);
  line-height: 1.1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.action-pill:hover,
.back-link:hover,
.action-pill:focus-visible,
.back-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  background: rgba(16, 25, 35, 0.28);
  border-color: rgba(202, 222, 161, 0.6);
}

.action-pill-secondary {
  background: transparent;
}

.brand-lockup {
  width: min(90vw, 320px);
  padding: 0.4rem 0 0.1rem;
  background: transparent;
  color: var(--cream);
  border-radius: 0;
  box-shadow: none;
}

.brand-lockup-mark {
  width: 100%;
  max-width: 172px;
  margin-inline: auto;
  opacity: 0.98;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.brand-lockup-caption,
.address,
.menu-card p {
  margin: 0;
  line-height: 1.5;
}

.brand-lockup-caption {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: rgba(244, 231, 207, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.address {
  width: min(100%, 320px);
  max-width: 320px;
  margin-inline: auto;
  text-align: center;
  font-size: 0.91rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: rgba(248, 239, 220, 0.97);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
}

.menu-page {
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(rgba(18, 28, 40, 0.86), rgba(28, 43, 22, 0.88)),
    url("assets/Fondo1.jpg") center / cover no-repeat;
}

.menu-shell {
  width: min(100%, 980px);
  display: grid;
  gap: 1.25rem;
}

.menu-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-card-hero {
  display: grid;
  gap: 0.8rem;
  padding: 0.15rem 0 0.65rem;
  border-bottom: 1px solid rgba(244, 231, 207, 0.22);
}

.menu-eyebrow,
.menu-card h1 {
  margin: 0;
}

.menu-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.menu-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 8vw, 3.3rem);
  line-height: 1.04;
}

.menu-intro {
  margin: 0;
  max-width: 44ch;
  color: rgba(248, 239, 220, 0.9);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.menu-section {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.menu-section h2,
.menu-item h3,
.section-note,
.price {
  margin: 0;
}

.menu-section h2 {
  margin-bottom: 0.9rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.55rem;
  border-bottom: 0;
}

.menu-section h2::after {
  content: "";
  display: block;
  width: min(100%, calc(100% - 88px));
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, rgba(202, 222, 161, 0.95), rgba(202, 222, 161, 0.18));
}

.section-note {
  margin-top: -0.4rem;
  margin-bottom: 0.9rem;
  color: rgba(218, 234, 183, 0.9);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(244, 231, 207, 0.12);
}

.menu-section .menu-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-item-stack {
  align-items: end;
}

.menu-item-note {
  grid-template-columns: 1fr;
}

.menu-item-copy {
  min-width: 0;
}

.menu-item h3 {
  color: rgba(249, 240, 221, 0.98);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.menu-item p {
  margin: 0.3rem 0 0;
  color: rgba(246, 236, 217, 0.88);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.price {
  align-self: center;
  padding-left: 0.4rem;
  color: rgba(224, 238, 190, 0.98);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.flavor-list {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: rgba(246, 236, 217, 0.9);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.brand-lockup-caption {
  font-family: var(--font-body);
}

.flavor-list li + li {
  margin-top: 0.2rem;
}

.menu-section-dessert {
  position: relative;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0 0.35rem;
}

.menu-footer-brand {
  width: min(90vw, 320px);
}

@media (min-width: 861px) {
  .top-band,
  .bottom-band {
    grid-template-columns: minmax(180px, 1fr) minmax(320px, 460px) minmax(180px, 1fr);
  }

  .top-band-side,
  .bottom-side {
    display: block;
  }

  .top-band-center {
    padding: 0.45rem 1rem 0.25rem;
  }

  .bottom-center {
    min-height: 66vh;
    padding: clamp(1rem, 2.6vh, 1.7rem) 1.5rem 3rem;
  }

  .bottom-content {
    width: min(100%, 380px);
    gap: clamp(1.1rem, 2.2vh, 1.6rem);
  }

  .hero-logo {
    width: min(82vw, 360px);
  }

  .brand-lockup {
    width: min(74vw, 320px);
  }

  .address {
    font-size: 1rem;
  }

  .menu-page {
    padding: 2rem;
  }

  .menu-shell {
    gap: 1.75rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 2.4rem;
  }

  .menu-footer {
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
}
