:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #f5c542;
  --accent-2: #7dd3fc;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.16), transparent 34%),
    radial-gradient(circle at right, rgba(245, 197, 66, 0.12), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0b1020 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 28px;
}

.board {
  max-width: 1800px;
  margin: 0 auto;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1;
}

.hero-note {
  min-width: 240px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  text-align: right;
}

.hero-note span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.drink-link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.drink-link:hover {
  text-decoration: underline;
}

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

.section {
  grid-column: span 12;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  color: var(--accent);
}

.section p.lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

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

.card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
}

.card img,
.item img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.card img {
  height: 180px;
}

.item img {
  height: 140px;
}

.card img:hover,
.item img:hover {
  transform: scale(1.02);
  opacity: 0.96;
}

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

.price {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.includes {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.includes li {
  margin-bottom: 6px;
  color: var(--muted);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.item .price {
  font-size: 1rem;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-block {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.price-block .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price-block .heading strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.price-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-frame {
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.lightbox-caption {
  max-width: 100%;
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 12px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  cursor: pointer;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 80px;
  border-radius: 16px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Tablet / smaller desktop */
@media (max-width: 1200px) {
  .featured-grid,
  .item-grid,
  .list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile / phone */
@media (max-width: 900px) {
  body {
    padding: 12px;
  }

  .hero {
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-note {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .section {
    padding: 16px;
    border-radius: 18px;
  }

  .section h2 {
    font-size: 1.3rem;
  }

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

  .card {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

  .item img {
    height: 180px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-frame {
    max-width: 96vw;
  }

  .lightbox img {
    max-height: 64vh;
  }

  .lightbox-caption {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  .lightbox-nav {
    width: 46px;
    height: 64px;
    font-size: 2.4rem;
    border-radius: 14px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  body {
    padding: 8px;
  }

  .hero {
    padding: 14px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .section {
    padding: 12px;
  }

  .card h3,
  .item h3 {
    font-size: 1rem;
  }

  .price {
    font-size: 1rem;
  }

  .price-block {
    padding: 12px;
  }

  .price-block .heading strong {
    font-size: 1rem;
  }

  .price-block ul {
    padding-left: 16px;
    font-size: 0.95rem;
  }

  .lightbox {
    padding: 8px;
  }

  .lightbox img {
    max-height: 56vh;
    border-radius: 14px;
  }

  .lightbox-caption {
    font-size: 0.9rem;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    width: 40px;
    height: 56px;
    font-size: 2rem;
  }
}