:root {
  --ink: #1a1020;
  --paper: #fffaf0;
  --sun: #ffcb3d;
  --mango: #ff7a1a;
  --hibiscus: #ef2f68;
  --leaf: #08a66a;
  --aqua: #00b8c8;
  --deep: #23122f;
  --muted: #695d68;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 50px rgba(54, 19, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 203, 61, 0.26), transparent 28rem),
    linear-gradient(135deg, #fff7d7 0%, #ffe3ed 45%, #d9fbff 100%);
  font-family: "Montserrat", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 18px;
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid rgba(35, 18, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Comfortaa", cursive;
  font-size: 1rem;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(239, 47, 104, 0.25);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--deep);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 180ms ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 68px 12px auto;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 14px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  background: rgba(255, 203, 61, 0.32);
  outline: none;
}

.section-band,
.section {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 68px);
  padding: 34px 14px 30px;
}

.hero::before {
  position: absolute;
  inset: 16px 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 234, 168, 0.28)),
    radial-gradient(circle at 84% 20%, rgba(8, 166, 106, 0.22), transparent 14rem),
    radial-gradient(circle at 16% 88%, rgba(239, 47, 104, 0.18), transparent 16rem);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(54, 19, 32, 0.12);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Comfortaa", cursive;
  line-height: 1.05;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 16vw, 7rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 9vw, 4rem);
}

.hero-text,
.section-heading p,
.contacts p {
  max-width: min(34ch, 100%);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-text-strong {
  font-weight: 800;
}

.hero-badges {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.button,
.quick-order a,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #28120a;
  background: linear-gradient(135deg, var(--sun), var(--mango));
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.3);
}

.button-ghost {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 18, 47, 0.12);
}

.button-dark {
  color: var(--paper);
  background: var(--deep);
}

.button-telegram {
  color: var(--paper);
  background: linear-gradient(135deg, #2aabee, #00b8c8);
  box-shadow: 0 12px 28px rgba(42, 171, 238, 0.24);
}

.button-instagram {
  background: linear-gradient(135deg, #ef2f68, #ff7a1a);
}

.button-tiktok {
  background: linear-gradient(135deg, #111111, #00b8c8);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  margin-top: 18px;
}

.hero-visual-card {
  align-self: stretch;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(255, 234, 168, 0.24)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-art {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center right;
}

.hero-logo-mark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: clamp(78px, 24vw, 112px);
  height: clamp(78px, 24vw, 112px);
  border: 7px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.glass {
  position: relative;
  width: min(220px, 58vw);
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px 28px 56px 56px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(180deg, var(--hibiscus) 0 34%, var(--mango) 34% 68%, var(--aqua) 68%);
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.glass::after {
  position: absolute;
  inset: 24px auto 24px 28px;
  width: 18px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.ice,
.straw,
.lime {
  position: absolute;
  display: block;
}

.ice {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(18deg);
}

.ice-one {
  top: 72px;
  left: 58px;
}

.ice-two {
  right: 42px;
  bottom: 92px;
}

.straw {
  top: -36px;
  right: 56px;
  width: 14px;
  height: 190px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    45deg,
    var(--leaf) 0 12px,
    var(--paper) 12px 22px
  );
  transform: rotate(18deg);
}

.lime {
  right: -20px;
  bottom: 92px;
  width: 72px;
  height: 72px;
  border: 8px solid var(--leaf);
  border-radius: 50%;
  background: var(--sun);
}

.quick-order {
  position: sticky;
  top: 68px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(1120px, calc(100% - 20px));
  margin: -10px auto 34px;
  padding: 8px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.quick-order a {
  min-height: 42px;
  padding-inline: 8px;
  color: var(--paper);
  background: var(--deep);
  font-size: 0.82rem;
}

.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 660px;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 24px 0 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.chip {
  flex: 0 0 auto;
  min-height: 42px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(35, 18, 47, 0.1);
}

.chip.active {
  color: var(--paper);
  background: var(--hibiscus);
}

.drinks-grid {
  display: grid;
  gap: 24px;
}

.menu-section {
  display: grid;
  gap: 12px;
}

.menu-section-title {
  margin: 0;
  color: var(--section-color, var(--deep));
  font-family: "Comfortaa", cursive;
  font-size: 1.18rem;
}

.menu-section-grid {
  display: grid;
  gap: 14px;
}

.syrup-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.syrup-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(35, 18, 47, 0.08);
}

.empty-category {
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed rgba(35, 18, 47, 0.22);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(35, 18, 47, 0.08);
}

.empty-category h3 {
  margin: 0 0 8px;
  font-family: "Comfortaa", cursive;
  font-size: 1.2rem;
}

.empty-category p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.drink-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(35, 18, 47, 0.1);
}

.drink-art {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 800;
}

.drink-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-info {
  min-width: 0;
}

.drink-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li {
  padding: 5px 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 18, 47, 0.08);
  border-radius: 8px;
  font-size: 0.76rem;
  line-height: 1.2;
}

.drink-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
  color: var(--hibiscus);
  font-size: 0.78rem;
  font-weight: 800;
}

.sweetness {
  display: inline-flex;
  gap: 4px;
}

.sweet-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(35, 18, 47, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.sweet-dot.active {
  border-color: transparent;
  background: var(--mango);
}

.vibe {
  display: grid;
  gap: 22px;
}

.vibe-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vibe-list li {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border-left: 6px solid var(--leaf);
  border-radius: 8px;
  font-weight: 700;
}

.contacts {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
  padding: 28px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(35, 18, 47, 0.94), rgba(239, 47, 104, 0.9)),
    var(--deep);
  border-radius: 8px;
}

.contacts .eyebrow,
.contacts p {
  color: #ffeaa8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 18px 34px;
  color: var(--paper);
  background: var(--deep);
  font-weight: 700;
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 36px;
    padding-inline: 28px;
  }

  .hero-text,
  .section-heading p,
  .contacts p {
    max-width: min(58ch, 100%);
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-badges span {
    font-size: 0.78rem;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    min-width: 170px;
  }

  .hero-visual-card {
    min-height: 520px;
  }

  .hero-art {
    min-height: 520px;
  }

  .quick-order {
    display: none;
  }

  .menu-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vibe,
  .contacts {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (max-width: 390px) {
  .drink-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .drink-art {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }
}
