:root {
  --bg: #fff8f5;
  --bg-alt: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #281f25;
  --muted: #6f5f67;
  --red: #e33d49;
  --pink: #ff7ea8;
  --green: #b9e6ab;
  --green-deep: #5d8f52;
  --shadow: 0 24px 60px rgba(82, 34, 45, 0.12);
  --shadow-strong: 0 30px 80px rgba(227, 61, 73, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(185, 230, 171, 0.62), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 126, 168, 0.26), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(227, 61, 73, 0.12), transparent 22%),
    linear-gradient(180deg, #fffdfc 0%, #fff6f7 55%, #fff8f5 100%);
  color: var(--text);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.22;
  z-index: -1;
}

.site-shell::before {
  width: 320px;
  height: 320px;
  background: var(--green);
  top: -120px;
  left: -140px;
}

.site-shell::after {
  width: 260px;
  height: 260px;
  background: var(--pink);
  right: -90px;
  bottom: 120px;
  animation: floaty 10s ease-in-out infinite;
}

.site-header,
.page-header {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  color: var(--text);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.site-header::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.14), transparent 20%);
}

.site-header::after,
.page-header::after {
  content: "";
  position: absolute;
  inset: auto 2rem 1.4rem auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(2px);
}

.top-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  min-width: 0;
  padding: 0.2rem 0.25rem;
}

.brand img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
  padding: 0.35rem;
  box-shadow: 0 10px 24px rgba(77, 16, 26, 0.12);
  mix-blend-mode: normal;
}

.brand span {
  max-width: 22ch;
  font-size: 1.02rem;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(227, 61, 73, 0.08);
  color: var(--red);
  transform: translateY(-1px);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 1.4rem 1.6rem;
}

.hero-copy {
  padding: 1rem 0 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red);
}

.hero h1,
.page-copy h1 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  max-width: 10ch;
}

.hero p,
.page-copy p,
.card p,
.menu-card p,
.about-card p,
.feature-text p {
  line-height: 1.75;
  color: rgba(40, 31, 37, 0.84);
}

.hero .hero-copy-text {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  color: rgba(40, 31, 37, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: white;
  color: var(--red);
  box-shadow: 0 16px 30px rgba(255, 255, 255, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-xl);
  padding: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(77, 16, 26, 0.16);
}

.hero-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(227, 61, 73, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.intro-grid,
.menu-grid,
.about-grid,
.highlights-grid {
  display: grid;
  gap: 1.3rem;
}

.intro-grid,
.about-grid,
.highlights-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.intro-grid {
  margin-top: -1.7rem;
}

.card,
.menu-card,
.about-card,
.highlight-card,
.feature-panel {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card,
.menu-card,
.about-card,
.highlight-card {
  position: relative;
  overflow: hidden;
}

.card::before,
.menu-card::before,
.about-card::before,
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--pink), var(--green));
}

.card,
.menu-card,
.about-card,
.highlight-card {
  padding: 1.4rem;
}

.card h2,
.menu-card h2,
.about-card h2,
.highlight-card h2,
.section-title {
  margin: 0 0 0.6rem;
  letter-spacing: -0.04em;
}

.card p,
.menu-card p,
.about-card p,
.highlight-card p {
  margin: 0;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--red);
}

.section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.page-section {
  margin-top: 2.4rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.feature-text {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 126, 168, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.92));
}

.feature-image {
  min-height: 100%;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.feature-panel.reverse .feature-text {
  order: 2;
}

.feature-panel.reverse .feature-image {
  order: 1;
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.flavor-card {
  gap: 0.85rem;
}

.flavor-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-card .price {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
}

.menu-card .tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(185, 230, 171, 0.45);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
}

.drink-type-grid {
  display: grid;
  gap: 1.3rem;
}

.drink-type-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.drink-type-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.drink-type-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.35rem;
}

.drink-flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.drink-flavor-list li {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(185, 230, 171, 0.22);
  color: var(--text);
  font-weight: 700;
}

.photo-grid .stack {
  display: grid;
  gap: 1.3rem;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  background: var(--surface-strong);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.photo-card.tall img {
  min-height: 100%;
}

.info-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.info-item strong {
  display: block;
  font-size: 1.03rem;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  padding: 1.2rem 1rem 2rem;
  color: var(--muted);
  text-align: center;
}

.footer-note {
  margin: 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  text-align: left;
}

.footer-block h2,
.footer-block h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.footer-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(227, 61, 73, 0.1);
  color: var(--red);
  font-weight: 800;
}

.footer-block h2 {
  font-size: 1.25rem;
}

.footer-block li {
  color: var(--muted);
}

.home-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.home-callout .highlight-card {
  min-height: 100%;
}

.game-arcade {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.game-arcade-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.game-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.game-board-wrap {
  display: grid;
  place-items: center;
  position: relative;
}

.bubble-board {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 126, 168, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 248, 0.98));
  box-shadow: var(--shadow-strong);
}

.bubble-slot {
  position: relative;
  border-radius: 22px;
  background: rgba(185, 230, 171, 0.12);
  border: 1px dashed rgba(227, 61, 73, 0.12);
  min-height: 0;
}

.bubble {
  position: absolute;
  inset: 10%;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
  touch-action: manipulation;
}

.bubble-pink { background: radial-gradient(circle at 30% 30%, #ffd6e5, #ff7ea8); }
.bubble-orange { background: radial-gradient(circle at 30% 30%, #ffd9b3, #ff9f45); }
.bubble-brown { background: radial-gradient(circle at 30% 30%, #d9b08c, #8b5a3c); }

.bubble:hover,
.bubble:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.game-instructions {
  padding: 0.2rem 0.1rem 0.5rem;
}

.result-chip {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(227, 61, 73, 0.12);
  color: var(--red);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 253, 0.72);
  backdrop-filter: blur(4px);
  border-radius: 28px;
}

.game-overlay-card {
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-strong);
  text-align: center;
  max-width: 280px;
}

.game-overlay-card h2,
.game-overlay-card p {
  margin-top: 0;
}

@media (max-width: 920px) {
  .hero,
  .feature-panel,
  .photo-grid,
  .info-bar,
  .drink-type-card {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 300px;
  }

  .feature-panel.reverse .feature-text,
  .feature-panel.reverse .feature-image {
    order: initial;
  }
}

@media (max-width: 720px) {
  .site-header,
  .page-header,
  .page,
  .site-footer {
    width: min(100%, calc(100% - 1rem));
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 88px;
    height: 88px;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .hero,
  .feature-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .card,
  .menu-card,
  .about-card,
  .highlight-card,
  .feature-text,
  .game-arcade {
    padding: 1.1rem;
  }

  .bubble-board {
    width: 100%;
    gap: 0.45rem;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}
