:root {
  --latte: #ad9c52;
  --espresso: #251811;
  --cream: #f7f2e8;
  --ink: #2b231f;
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(43, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.main-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(165deg, rgba(22, 15, 10, 0.82), rgba(22, 15, 10, 0.4)),
    url("Fondo.jpg");
  background-size: cover;
  background-position: center;
  padding: 24px 18px 42px;
  display: flex;
  align-items: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(7px);
  color: #fff;
  transform: translateY(16px);
  opacity: 0;
  animation: rise 700ms ease-out forwards;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.brand-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 8vw, 2.6rem);
  margin: 0;
  line-height: 1;
}

.brand-copy {
  margin: 14px 0 0;
  font-size: 0.97rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.quick-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 13px 14px;
  text-align: center;
}

.btn-primary {
  background: var(--latte);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 26px 18px 36px;
}

.section {
  margin-top: 14px;
}

.section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.65rem;
  margin: 0 0 10px;
  color: var(--espresso);
}

.section p {
  margin: 0;
  line-height: 1.55;
  color: rgba(43, 35, 31, 0.84);
}

.tag-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tag {
  padding: 11px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-cards {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
}

.card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.card p {
  margin-top: 6px;
  font-size: 0.92rem;
}

.footer {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
}

.menu-page {
  min-height: 100vh;
  background-image: linear-gradient(180deg, rgba(247, 242, 232, 0.95), rgba(247, 242, 232, 1));
}

.menu-top {
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(5px);
  background: rgba(247, 242, 232, 0.9);
  border-bottom: 1px solid var(--line);
}

.menu-top-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.link-home {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--espresso);
}

.menu-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
  margin: 0;
}

.menu-gallery {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.menu-sheet {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(52, 33, 17, 0.08);
}

.menu-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .hero {
    padding: 32px;
  }

  .hero-card {
    padding: 28px;
  }

  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }
}
