:root {
  --bg: #081529;
  --bg-deep: #040914;
  --panel: rgba(7, 18, 37, 0.78);
  --panel-strong: rgba(9, 22, 48, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #b9c8e5;
  --pink: #ff4eb7;
  --yellow: #ffd84f;
  --green: #8dff44;
  --cyan: #53d8ff;
  --purple: #7f65ff;
  --orange: #ff9736;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Baloo 2", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 78, 183, 0.26), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(141, 255, 68, 0.2), transparent 22%),
    radial-gradient(circle at 80% 76%, rgba(83, 216, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #103866 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

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

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

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  pointer-events: none;
}

.page-glow-left {
  top: 4rem;
  left: -10rem;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
}

.page-glow-right {
  right: -8rem;
  bottom: 8rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.site-header,
.section-shell,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: min(12rem, 40vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 13, 29, 0.65);
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.section-shell {
  margin-bottom: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  padding-top: 1rem;
}

.hero-copy,
.showcase-card,
.info-strip,
.benefit-card,
.price-card,
.menu-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.eyebrow,
.card-label {
  margin: 0 0 0.6rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Bungee", sans-serif;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.45rem;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.product-copy p,
.benefit-card p,
.price-card li,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-text {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.18rem;
}

.hero-badges,
.hero-actions,
.hero-points,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges {
  margin: 1.4rem 0 0;
}

.hero-badges span,
.filter-button,
.product-tag {
  border-radius: 999px;
  font-weight: 800;
}

.hero-badges span {
  padding: 0.7rem 1rem;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--yellow), #fff7b8);
}

.hero-actions {
  margin: 1.5rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #04101f;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  box-shadow: 0 18px 40px rgba(141, 255, 68, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.showcase-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  border-radius: var(--radius-xl);
}

.showcase-copy {
  padding: 1.5rem 1.5rem 0.5rem;
}

.showcase-card img,
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.info-strip article {
  padding: 1.25rem;
  background: rgba(4, 11, 25, 0.72);
}

.info-strip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.info-strip span {
  color: var(--muted);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin-bottom: 0.6rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-button {
  border: 1px solid var(--line);
  padding: 0.72rem 1.1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--pink), var(--yellow));
}

.product-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.product-copy {
  padding: 1rem;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.92rem;
}

.tag-alcohol {
  color: #1f0810;
  background: linear-gradient(135deg, var(--pink), #ff9dd8);
}

.tag-soft {
  color: #081522;
  background: linear-gradient(135deg, var(--cyan), #b4f5ff);
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.price-card,
.menu-card,
.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.order-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.price-card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 1.5rem;
}

.menu-card {
  padding: 0;
  overflow: hidden;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.primary-contact {
  background:
    radial-gradient(circle at top right, rgba(255, 216, 79, 0.12), transparent 35%),
    rgba(7, 18, 37, 0.82);
}

.contact-links {
  margin-top: 1rem;
  flex-direction: column;
}

.contact-links a {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.qr-card {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.qr-card img {
  width: min(100%, 220px);
  border-radius: 22px;
  background: white;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0 2rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero,
  .order-layout,
  .contact-grid,
  .product-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid article:first-child,
  .order-layout article:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .product-grid,
  .benefit-grid,
  .info-strip,
  .order-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .showcase-copy,
  .benefit-card,
  .price-card,
  .contact-card {
    padding: 1.2rem;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }
}
