@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink-fizz: #ff018a;
  --deep-pink: #b50060;
  --tangerine: #ff7701;
  --citrus: #ffc948;
  --lemon: #e7e700;
  --apple: #93b705;
  --blue-lagoon: #1436b1;
  --grape: #4f04a3;
  --midnight: #0e314d;
  --mint: #b1e7e7;
  --cotton: #ffe4ee;
  --rose: #ff94b0;
  --ink: #111111;
  --paper: #fffaf2;
  --soft-gray: #eeeeee;
  --white: #ffffff;
  --max-width: 1180px;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 14%, rgba(255, 1, 138, 0.11) 0 22px, transparent 23px),
    radial-gradient(circle at 92% 18%, rgba(255, 119, 1, 0.12) 0 26px, transparent 27px),
    radial-gradient(circle at 22% 82%, rgba(147, 183, 5, 0.12) 0 28px, transparent 29px),
    var(--paper);
  color: var(--ink);
  font-family: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(255, 1, 138, 0.11) 1.5px, transparent 2px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 2px solid var(--deep-pink);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 112px;
}

.brand-mark img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-pill,
.button {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.9rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: var(--pink-fizz);
  color: var(--white);
}

.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-pink);
  padding: 12px 18px;
  background: var(--deep-pink);
  color: var(--white);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--deep-pink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep-pink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: 720px;
  padding: 58px max(20px, calc((100vw - var(--max-width)) / 2)) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 255, 255, 0.32) 0 32px, transparent 33px),
    radial-gradient(circle at 78% 26%, rgba(255, 201, 72, 0.44) 0 18px, transparent 19px),
    radial-gradient(circle at 88% 76%, rgba(147, 183, 5, 0.34) 0 48px, transparent 49px),
    linear-gradient(135deg, var(--pink-fizz), #e2007a 58%, var(--deep-pink));
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 2px, transparent 2.5px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.5;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 45vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 24px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 1;
}

.launch-kicker,
.section-kicker,
.mini-label {
  margin: 0 0 14px;
  color: var(--citrus);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2,
.section-heading h2,
.flavour-pop h3,
.quip-card h3 {
  margin: 0;
  font-family: "Lilita One", "Arial Rounded MT Bold", "Jost", ui-sans-serif, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  color: var(--white);
  font-size: 6rem;
  line-height: 0.86;
  text-shadow: 6px 6px 0 rgba(17, 17, 17, 0.22);
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.28;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--ink);
  padding: 13px 18px;
  font-size: 0.94rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(17, 17, 17, 0.22);
}

.button--light {
  background: var(--white);
  color: var(--deep-pink);
}

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

.hero__visual {
  display: grid;
  justify-items: end;
}

.hero-card {
  position: relative;
  width: min(100%, 620px);
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(17, 17, 17, 0.26);
  transform: rotate(2deg);
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  z-index: -1;
  border-radius: var(--radius);
  content: "";
}

.hero-card::before {
  inset: 18px -18px -18px 18px;
  background: var(--citrus);
}

.hero-card::after {
  inset: -24px 38px auto auto;
  width: 88px;
  height: 88px;
  background: var(--apple);
}

.hero-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 55%;
}

.sticker {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 3px solid var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--white);
  font-family: "Lilita One", "Arial Rounded MT Bold", "Jost", sans-serif;
  font-size: 1.08rem;
  line-height: 0.95;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(17, 17, 17, 0.22);
}

.sticker--green {
  right: 58px;
  top: -26px;
  background: var(--apple);
  transform: rotate(10deg);
}

.sticker--orange {
  right: -8px;
  bottom: 34px;
  background: var(--tangerine);
  transform: rotate(-9deg);
}

.launch-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 16px 20px;
  border-block: 2px solid var(--ink);
  background: var(--citrus);
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.launch-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.launch-strip a:hover {
  color: var(--deep-pink);
}

.section {
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 86px 0;
}

.intro-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: 42px;
}

.intro-copy {
  position: sticky;
  top: 112px;
}

.section h2,
.contact-section h2,
.section-heading h2 {
  max-width: 780px;
  color: var(--midnight);
  font-size: 4.4rem;
  line-height: 0.9;
}

.intro-copy p,
.section-heading p,
.contact-section p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.54;
}

.intro-grid {
  display: grid;
  gap: 16px;
}

.quip-card {
  min-height: 190px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--pink-fizz);
}

.quip-card:nth-child(2) {
  margin-left: 42px;
  box-shadow: 9px 9px 0 var(--apple);
}

.quip-card:nth-child(3) {
  box-shadow: 9px 9px 0 var(--tangerine);
}

.quip-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--deep-pink);
  font-weight: 950;
}

.quip-card h3 {
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 0.9;
}

.quip-card p {
  margin: 10px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}

.flavours-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--soft-gray);
}

.flavours-section .section-heading {
  width: min(100%, var(--max-width));
  margin: 0 auto 34px;
  text-align: center;
}

.flavours-section .section-heading h2 {
  margin: 0 auto;
  color: var(--deep-pink);
}

.flavours-section .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.flavour-pop {
  position: relative;
  display: grid;
  min-height: 492px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--accent);
}

.flavour-pop::before {
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--accent) 0 26px,
      var(--shadow) 26px 52px,
      var(--soft) 52px 78px
    );
  content: "";
}

.flavour-pop::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 98px;
  height: 98px;
  border: 12px solid var(--shadow);
  border-radius: 50%;
  content: "";
  opacity: 0.58;
}

.flavour-pop__stage {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: center;
  justify-items: center;
  padding: 38px 24px 18px;
  background:
    linear-gradient(135deg, var(--soft) 0 54%, var(--white) 54%),
    var(--white);
}

.flavour-pop__stage::before {
  position: absolute;
  top: 38px;
  left: 22px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0.18;
}

.flavour-pop__stage::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  min-width: 78px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--white);
  content: "PLONK";
  font-family: "Lilita One", "Arial Rounded MT Bold", "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

.flavour-pop--green .flavour-pop__stage::after {
  content: "ZING";
}

.flavour-pop--orange .flavour-pop__stage::after {
  content: "SUN";
}

.flavour-pop--cream .flavour-pop__stage::after {
  content: "CHILL";
}

.flavour-pop--pink .flavour-pop__stage::after {
  content: "LOUD";
}

.flavour-pop--purple .flavour-pop__stage::after {
  content: "DIVA";
}

.flavour-pop__stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 220px;
  border: 4px solid var(--accent);
  border-radius: 18px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--shadow);
}

.flavour-pop__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.mini-label {
  width: fit-content;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.74rem;
}

.flavour-pop h3 {
  color: var(--accent);
  font-size: 2.35rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.flavour-pop p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.36;
}

.contact-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.36) 0 44px, transparent 45px),
    radial-gradient(circle at 82% 72%, rgba(255, 201, 72, 0.38) 0 62px, transparent 63px),
    var(--deep-pink);
  color: var(--white);
}

.contact-section__inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 84px 0;
}

.contact-section h2 {
  max-width: 920px;
  color: var(--white);
}

.contact-section .button--light {
  border-color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--pink-fizz);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.site-footer__meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.site-footer__meta a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero__visual {
    justify-items: center;
  }

  .hero h1 {
    max-width: 820px;
    font-size: 5.2rem;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    position: static;
  }

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

}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 70px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-pill {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 34;
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    z-index: 32;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 20px 14px 30px;
    background: rgba(255, 250, 242, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    justify-content: center;
    border: 2px solid var(--deep-pink);
    background: var(--white);
    color: var(--deep-pink);
    font-size: 1rem;
  }

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

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero__lead {
    font-size: 1.18rem;
  }

  .section h2,
  .contact-section h2,
  .section-heading h2 {
    font-size: 3.2rem;
  }

  .section,
  .contact-section__inner {
    width: min(calc(100% - 28px), var(--max-width));
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .flavours-section {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .flavour-pop {
    min-height: auto;
  }

  .flavour-pop__stage {
    min-height: 236px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-footer__meta {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-mark,
  .footer-logo {
    width: 94px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-card {
    border-width: 4px;
    box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.26);
    transform: none;
  }

  .hero-card img {
    height: 340px;
  }

  .sticker {
    position: static;
    margin-top: 10px;
    transform: none;
  }

  .hero__visual {
    justify-items: start;
  }

  .button,
  .hero__actions,
  .contact-actions {
    width: 100%;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .quip-card:nth-child(2) {
    margin-left: 0;
  }

  .flavour-pop h3 {
    font-size: 2rem;
  }

  .flavour-pop__stage img {
    max-height: 190px;
  }

}
