:root {
  --foam-beige: #f6f0e6;
  --matcha-mist: #b6d7b9;
  --straw-mint: #8ac6b3;
  --tapioca-pearl: #4d5d53;
  --whisper-peach: #f4d3c1;
  --card-shadow: rgba(77, 93, 83, 0.15);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  background: var(--foam-beige);
  color: var(--tapioca-pearl);
  line-height: 1.6;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.hero {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 4rem 0 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bubbles .bubble {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(182, 215, 185, 0.35), rgba(244, 211, 193, 0.2));
  animation: float 18s linear infinite;
}

.hero__bubbles .bubble:nth-child(1) {
  left: 5%;
  bottom: -60px;
  animation-delay: 0s;
}

.hero__bubbles .bubble:nth-child(2) {
  left: 25%;
  bottom: -120px;
  animation-delay: 3s;
  width: 90px;
  height: 90px;
}

.hero__bubbles .bubble:nth-child(3) {
  left: 55%;
  bottom: -100px;
  animation-delay: 6s;
  width: 110px;
  height: 110px;
}

.hero__bubbles .bubble:nth-child(4) {
  left: 75%;
  bottom: -140px;
  animation-delay: 9s;
  width: 160px;
  height: 160px;
}

.hero__bubbles .bubble:nth-child(5) {
  left: 35%;
  bottom: -150px;
  animation-delay: 12s;
  width: 70px;
  height: 70px;
}

.hero__bubbles .bubble:nth-child(6) {
  left: 85%;
  bottom: -180px;
  animation-delay: 15s;
  width: 120px;
  height: 120px;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-420px) scale(1.1);
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--straw-mint);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
}

.hero__lead {
  max-width: 30ch;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: var(--straw-mint);
  color: var(--tapioca-pearl);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(138, 198, 179, 0.28);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(138, 198, 179, 0.35);
}

.hero__illustration {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 260px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illustration::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 180px;
  height: 30px;
  background: radial-gradient(circle at center, rgba(77, 93, 83, 0.25), rgba(77, 93, 83, 0));
  transform: translateX(-50%);
  opacity: 0.6;
}

.cup {
  position: relative;
  width: 220px;
  height: 260px;
  border-radius: 110px 110px 46px 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18));
  border: 3px solid rgba(182, 215, 185, 0.6);
  box-shadow: 0 24px 42px rgba(77, 93, 83, 0.18);
  overflow: visible;
  backdrop-filter: blur(6px);
}

.cup::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 18px;
  width: 48px;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  border-radius: 30px;
  opacity: 0.85;
}

.cup__liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, rgba(244, 211, 193, 0.95), rgba(214, 195, 180, 0.9) 45%, rgba(138, 198, 179, 0.95) 100%);
  overflow: hidden;
}

.cup__liquid::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -18px;
  width: calc(100% + 36px);
  height: 60px;
  background: radial-gradient(circle at center, rgba(244, 211, 193, 0.95), rgba(244, 211, 193, 0));
  border-radius: 50%;
  opacity: 0.9;
}

.cup__liquid::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: -10px;
  width: calc(100% + 20px);
  height: 36px;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3), transparent 70%);
  filter: blur(10px);
}

.cup__pearls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 100%;
  height: 90px;
  transform: translateX(-50%);
}

.cup__pearls span {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(77, 93, 83, 0.78));
  box-shadow: inset -3px -5px rgba(0, 0, 0, 0.12);
}

.cup__pearls span:nth-child(1) {
  left: 16%;
  bottom: 6px;
}

.cup__pearls span:nth-child(2) {
  left: 38%;
  bottom: 0;
  transform: scale(1.05);
}

.cup__pearls span:nth-child(3) {
  left: 60%;
  bottom: 10px;
  transform: scale(0.95);
}

.cup__pearls span:nth-child(4) {
  left: 78%;
  bottom: -4px;
  transform: scale(1.12);
}

.cup__pearls span::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.cup__straw {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 26px;
  height: 260px;
  border-radius: 16px;
  background: repeating-linear-gradient(-45deg, rgba(138, 198, 179, 0.95), rgba(138, 198, 179, 0.95) 16px, rgba(255, 255, 255, 0.95) 16px, rgba(255, 255, 255, 0.95) 32px);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 10px 20px rgba(77, 93, 83, 0.18);
}

.cup__straw::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 8px;
  height: 70%;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  transform: translateX(-50%);
}

.section {
  margin: 3rem 0;
}

.section__label {
  display: inline-block;
  background: rgba(138, 198, 179, 0.18);
  color: var(--tapioca-pearl);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.coupon__card {
  background: #ffffff;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.coupon__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 2px dashed rgba(138, 198, 179, 0.35);
  pointer-events: none;
}

.coupon__card h2 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 1.25rem;
}

.coupon__card p {
  margin: 0 0 1.25rem;
}

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

.coupon__perks li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(77, 93, 83, 0.1);
}

.coupon__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.coupon__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 211, 193, 0.4);
  color: var(--tapioca-pearl);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.6rem;
}

.coupon__code {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.story__note {
  background: rgba(182, 215, 185, 0.25);
  border-radius: 24px;
  padding: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.easter-eggs {
  text-align: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.chip {
  border: none;
  background: linear-gradient(135deg, rgba(182, 215, 185, 0.6), rgba(244, 211, 193, 0.6));
  color: var(--tapioca-pearl);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: "Poppins", sans-serif;
}

.chip:hover,
.chip:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(77, 93, 83, 0.2);
}

.chip::after {
  content: attr(data-note);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--tapioca-pearl);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(77, 93, 83, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  width: max-content;
  max-width: 220px;
  font-size: 0.85rem;
}

.chip:hover::after,
.chip:focus::after {
  opacity: 1;
}

.chips__caption {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(77, 93, 83, 0.75);
}

.steps__list {
  padding-left: 1.25rem;
  counter-reset: step;
}

.steps__list li {
  margin-bottom: 1rem;
  padding-left: 0.4rem;
  position: relative;
  font-weight: 500;
}

.steps__list li::marker {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--straw-mint);
}

.steps__note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  background: rgba(244, 211, 193, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 18px;
}

.footer {
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__signature {
  display: flex;
  flex-direction: column;
  font-family: "Pacifico", cursive;
  font-size: 1.3rem;
  color: var(--straw-mint);
}

.footer__name {
  font-size: 1.6rem;
}

.footer__link {
  font-family: "Poppins", sans-serif;
  color: var(--tapioca-pearl);
  text-decoration: none;
  background: rgba(182, 215, 185, 0.35);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer__link:hover,
.footer__link:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(138, 198, 179, 0.25);
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3rem;
  }

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

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

  .coupon__code {
    letter-spacing: 0.05em;
  }
}
