:root {
  --red: #ff1735;
  --yellow: #ffe500;
  --orange: #ff8a00;
  --pink: #ff2bd6;
  --cyan: #00e5ff;
  --blue: #1168ff;
  --green: #87ff1a;
  --black: #080912;
  --white: #ffffff;
  --cream: #fff4d4;
  --muted: #5f6475;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(255, 43, 214, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.24), transparent 28%),
    var(--cream);
  font-family: "Fredoka", Arial, sans-serif;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px clamp(16px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 4px solid var(--yellow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 245px);
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
}

nav a:hover {
  color: var(--white);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 36px;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 78px) 58px;
  color: var(--black);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 229, 0, 0.5), transparent 20%),
    radial-gradient(circle at 74% 20%, rgba(0, 229, 255, 0.38), transparent 26%),
    radial-gradient(circle at 76% 80%, rgba(255, 43, 214, 0.2), transparent 28%),
    linear-gradient(135deg, #fff9dd 0%, #e7fbff 48%, #fff1f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 23, 53, 0.08) 0 12px, transparent 12px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.7;
}

.slush-bg {
  position: absolute;
  inset: -12%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.58;
  filter: blur(22px) saturate(1.08);
}

.slush {
  position: absolute;
  width: min(440px, 52vw);
  height: auto;
  opacity: 0.46;
  transform-origin: center;
}

.slush-red {
  left: -70px;
  bottom: -30px;
  rotate: -16deg;
}

.slush-yellow {
  left: 36%;
  top: -80px;
  opacity: 0.38;
  rotate: 10deg;
}

.slush-green {
  right: -70px;
  top: 10%;
  opacity: 0.42;
  rotate: 18deg;
}

.slush-orange {
  right: 18%;
  bottom: -120px;
  opacity: 0.34;
  rotate: -9deg;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0.18) 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: block;
  width: min(440px, 86vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 16px 22px rgba(255, 255, 255, 0.9)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Chewy", "Baloo 2", Arial, sans-serif;
  font-size: clamp(3rem, 7.2vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: none;
  text-shadow: 4px 4px 0 var(--yellow), 8px 8px 0 rgba(255, 23, 53, 0.22);
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.02;
}

.hero p {
  max-width: 760px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #242433;
}

.actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border: 3px solid var(--black);
  border-radius: 999px;
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(8, 9, 18, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 9px 9px 0 rgba(8, 9, 18, 0.32);
}

.primary {
  color: var(--black);
  background: var(--yellow);
}

.secondary {
  color: var(--black);
  background: var(--cyan);
}

.dark {
  color: var(--white);
  background: var(--black);
}

.hero-visual {
  display: grid;
  justify-items: center;
}

.hero-visual img {
  width: min(360px, 74vw);
  border-radius: 38% 62% 48% 52%;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.48));
}

.sticker {
  margin-top: -20px;
  padding: 14px 18px;
  rotate: -4deg;
  border: 3px solid var(--black);
  border-radius: 18px;
  color: var(--black);
  background: var(--pink);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 7px 7px 0 var(--yellow);
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background: var(--black);
}

.intro-strip span {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-family: "Baloo 2", Arial, sans-serif;
  font-weight: 800;
}

.section,
.premium,
.contact {
  padding: 88px clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.section .eyebrow,
.contact .eyebrow {
  color: var(--red);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 540px);
  gap: 40px;
  background: var(--white);
}

.about p,
.event-grid p,
.offer-grid p,
.special-grid p,
.faq p,
.contact p {
  color: var(--muted);
  font-weight: 600;
}

.event-grid,
.offer-grid,
.flavor-grid,
.special-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event-grid article,
.offer-grid div,
.special-grid article,
details {
  padding: 24px;
  border: 3px solid var(--black);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(8, 9, 18, 0.18);
}

.event-grid strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-family: "Baloo 2", Arial, sans-serif;
  font-weight: 800;
}

.offer {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 43, 214, 0.24), transparent 34%),
    var(--black);
}

.offer .eyebrow {
  color: var(--yellow);
}

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

.offer-grid div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.offer-grid p {
  color: #e9fbff;
}

.flavors {
  background:
    linear-gradient(135deg, rgba(255, 229, 0, 0.5), rgba(0, 229, 255, 0.4)),
    var(--white);
}

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

.flavor-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 3px solid var(--black);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(8, 9, 18, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.flavor-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 12px 12px 0 rgba(8, 9, 18, 0.24);
}

.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: radial-gradient(circle at top, currentColor, transparent 55%);
}

.flavor-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(8, 9, 18, 0.18));
}

.flavor-card div {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.flavor-card span {
  color: var(--muted);
  font-weight: 800;
}

.almond { color: #d9a35b; }
.lemon { color: #ffe500; }
.strawberry { color: #ff1735; }
.orange { color: #ff8a00; }
.tropical { color: #1168ff; }
.apple { color: #6cff00; }

.flavor-details {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 43, 214, 0.14), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(0, 229, 255, 0.2), transparent 22%),
    var(--cream);
}

.detail-list {
  display: grid;
  gap: 18px;
}

.detail-list article {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 20px;
  border: 3px solid var(--black);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 8px 8px 0 rgba(8, 9, 18, 0.16);
}

.detail-list article:target {
  animation: pop-target 900ms ease;
  background: linear-gradient(135deg, #ffffff, #fff9a8);
}

.detail-list img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(8, 9, 18, 0.16));
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

@keyframes pop-target {
  0% { transform: scale(0.98); }
  35% { transform: scale(1.02) rotate(-1deg); }
  100% { transform: scale(1); }
}

.premium {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 229, 0, 0.42), transparent 20%),
    radial-gradient(circle at 84% 20%, rgba(0, 229, 255, 0.38), transparent 22%),
    radial-gradient(circle at 72% 86%, rgba(255, 43, 214, 0.38), transparent 24%),
    linear-gradient(135deg, #080912 0%, #2a1278 52%, #e90085 100%);
}

.premium .eyebrow {
  color: var(--yellow);
}

.premium-copy p {
  font-size: 1.15rem;
  font-weight: 700;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin-left: auto;
}

.premium-grid article {
  padding: 18px;
  border: 3px solid var(--white);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.premium-grid img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.premium-grid h3 {
  color: var(--yellow);
  text-align: center;
  text-shadow: 3px 3px 0 var(--red);
}

.specials {
  background: var(--white);
}

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

.special-grid article:first-child {
  background: linear-gradient(135deg, #fff49a, #ffffff);
}

.special-grid article:last-child {
  background: linear-gradient(135deg, #b5ff68, #ffffff);
}

.inspiration {
  color: var(--white);
  background: var(--black);
}

.inspiration .eyebrow {
  color: var(--yellow);
}

.creative-scene {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 229, 0, 0.42), transparent 18%),
    radial-gradient(circle at 24% 70%, rgba(255, 23, 53, 0.5), transparent 22%),
    radial-gradient(circle at 74% 72%, rgba(135, 255, 26, 0.42), transparent 22%),
    linear-gradient(135deg, #1518a8, #00c6d8 46%, #ff2bd6);
  box-shadow: 0 0 0 6px rgba(0, 229, 255, 0.16), inset 0 0 80px rgba(8, 9, 18, 0.3);
}

.creative-scene::before,
.creative-scene::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 28px solid rgba(255, 229, 0, 0.82);
  border-radius: 50%;
  filter: blur(1px);
}

.creative-scene::before {
  transform: rotate(-18deg);
  border-left-color: var(--red);
  border-bottom-color: var(--cyan);
}

.creative-scene::after {
  width: 720px;
  height: 220px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.18);
  transform: rotate(-8deg);
}

.creative-scene img,
.scene-text {
  position: absolute;
  z-index: 1;
}

.scene-mascot {
  right: clamp(10px, 7vw, 80px);
  bottom: 20px;
  width: min(310px, 46vw);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.36));
}

.scene-drink {
  width: min(280px, 42vw);
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.32));
}

.scene-red {
  left: clamp(8px, 8vw, 90px);
  bottom: 24px;
  rotate: -7deg;
}

.scene-yellow {
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: min(310px, 48vw);
}

.scene-green {
  right: clamp(20px, 22vw, 310px);
  top: 32px;
  rotate: 8deg;
}

.scene-text {
  top: 48px;
  left: clamp(20px, 8vw, 90px);
  max-width: 560px;
  color: var(--white);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--black), 8px 8px 0 var(--red);
}

.faq {
  background: var(--cream);
}

details {
  max-width: 980px;
  margin-bottom: 14px;
}

summary {
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  align-items: center;
  gap: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 229, 0, 0.55), transparent 20%),
    linear-gradient(135deg, var(--cyan), var(--green));
}

.contact h2 {
  color: var(--black);
}

.contact-panel {
  margin-top: 0;
  padding: 22px;
  border: 3px solid var(--black);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(18px, 5vw, 78px);
  color: var(--white);
  background: var(--black);
}

footer img {
  width: 180px;
  max-width: 48vw;
  height: auto;
  background: var(--white);
  border-radius: 14px;
}

footer p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .event-grid,
  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .premium-grid {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 112px;
  }

  body {
    font-size: 16px;
  }

  .header,
  .hero,
  .about,
  .premium,
  .contact,
  footer {
    grid-template-columns: 1fr;
  }

  .header {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px 10px;
  }

  .brand img {
    width: min(210px, 70vw);
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 4px 4px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 0.96rem;
  }

  .hero {
    min-height: auto;
    align-items: start;
    gap: 20px;
    padding: 36px 18px 42px;
    text-align: center;
  }

  .slush-bg {
    inset: -20%;
    opacity: 0.44;
    filter: blur(24px) saturate(1.04);
  }

  .slush {
    width: 300px;
  }

  .slush-red {
    left: -140px;
    bottom: 18%;
  }

  .slush-yellow {
    left: 42%;
    top: -80px;
  }

  .slush-green {
    right: -150px;
    top: 20%;
  }

  .slush-orange {
    right: 18%;
    bottom: -110px;
  }

  .hero-logo {
    width: min(310px, 86vw);
    margin: 0 auto 12px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 0.98;
    text-shadow: 3px 3px 0 var(--yellow), 6px 6px 0 rgba(0, 229, 255, 0.38);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero p {
    margin: 14px auto 0;
    font-size: 1.06rem;
  }

  .actions,
  .contact-panel {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    box-shadow: 4px 4px 0 rgba(8, 9, 18, 0.24);
  }

  .hero-visual {
    align-self: center;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-visual img {
    width: min(210px, 54vw);
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.28));
  }

  .sticker {
    margin-top: -12px;
    padding: 10px 14px;
    font-size: 1rem;
    box-shadow: 4px 4px 0 var(--yellow);
  }

  .intro-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px;
  }

  .intro-strip span {
    flex: 0 0 auto;
    padding: 7px 12px;
  }

  .section,
  .premium,
  .contact {
    padding: 54px 18px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .about {
    gap: 18px;
  }

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

  .event-grid article,
  .offer-grid div,
  .special-grid article,
  details {
    padding: 18px;
    border-radius: 16px;
    box-shadow: 5px 5px 0 rgba(8, 9, 18, 0.16);
  }

  .event-grid strong {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .event-grid,
  .offer-grid,
  .special-grid,
  .creative-scene {
    grid-template-columns: 1fr;
  }

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

  .flavor-card {
    min-height: 250px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 rgba(8, 9, 18, 0.18);
  }

  .flavor-card img {
    height: 168px;
  }

  .flavor-card div {
    padding: 12px;
    border-radius: 14px;
  }

  .flavor-card span {
    font-size: 0.82rem;
  }

  .flavor-card h3 {
    font-size: 1.22rem;
  }

  .detail-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .detail-list img {
    height: 170px;
  }

  .premium-copy {
    text-align: center;
  }

  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .premium-grid article {
    padding: 10px;
    border-radius: 18px;
  }

  .premium-grid img {
    height: 190px;
  }

  .premium-grid h3 {
    font-size: 1.16rem;
    text-shadow: 2px 2px 0 var(--red);
  }

  .special-grid {
    gap: 12px;
  }

  .creative-scene {
    min-height: 430px;
    border-radius: 18px;
  }

  .scene-text {
    top: 22px;
    left: 16px;
    right: 16px;
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.4rem);
    text-align: center;
  }

  .scene-green {
    display: block;
    right: 2px;
    top: 154px;
    width: 145px;
  }

  .scene-mascot {
    right: 0;
    bottom: 8px;
    width: 150px;
  }

  .scene-drink {
    width: 150px;
  }

  .scene-red {
    left: 2px;
    bottom: 12px;
  }

  .scene-yellow {
    left: 50%;
    bottom: 2px;
    width: 170px;
  }

  .contact {
    text-align: center;
  }

  .contact-panel {
    padding: 16px;
  }

  footer {
    text-align: center;
    align-items: center;
  }

  footer img {
    width: min(210px, 72vw);
  }
}

@media (max-width: 420px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

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

  .flavor-card {
    min-height: 225px;
  }

  .flavor-card img {
    height: 142px;
  }

  .premium-grid img {
    height: 160px;
  }

  .button {
    font-size: 0.98rem;
  }
}
