:root {
  --ink: #050505;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #5b564f;
  --lime: #d7ff42;
  --pink: #ff6b9e;
  --blue: #67d9ff;
  --orange: #ff9d3b;
  --max: 1120px;
  --flower-field:
    conic-gradient(from 45deg at 24px 24px,
      rgba(255, 107, 158, 0.32) 0 12%,
      transparent 12% 25%,
      rgba(103, 217, 255, 0.3) 25% 37%,
      transparent 37% 50%,
      rgba(215, 255, 66, 0.34) 50% 62%,
      transparent 62% 75%,
      rgba(255, 157, 59, 0.32) 75% 87%,
      transparent 87% 100%),
    linear-gradient(135deg, transparent 0 48px, rgba(255, 107, 158, 0.18) 48px 54px, transparent 54px 112px),
    linear-gradient(45deg, transparent 0 58px, rgba(103, 217, 255, 0.16) 58px 64px, transparent 64px 118px);
  --flower-size: 96px 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    var(--white);
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  position: relative;
  z-index: 22;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 42px;
}

.brand img {
  width: 230px;
  height: auto;
  mix-blend-mode: multiply;
}

.mini-link {
  justify-self: start;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-button {
  justify-self: end;
  display: grid;
  gap: 7px;
  width: 34px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: grid;
  place-content: center;
  gap: 16px;
  min-height: 100vh;
  padding: 120px 24px 48px;
  background:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 107, 158, 0.35) 28px 52px, transparent 52px 84px),
    linear-gradient(90deg, rgba(215, 255, 66, 0.42), rgba(103, 217, 255, 0.32)),
    var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.site-menu a {
  color: var(--ink);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 52px;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.location-tab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 136px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-right: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-product-stage,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-product-stage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 4px;
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.hero-product-one {
  object-position: 52% center;
}

.hero-product-two {
  object-position: center;
}

.hero-product-three {
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.28)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100%, var(--max));
  min-height: 640px;
  margin: 0 auto;
  padding: 88px 40px 130px;
}

.dynamic-hero {
  isolation: isolate;
}

.kinetic-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.slash,
.pixel {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
}

.slash {
  width: 260px;
  height: 72px;
  transform: rotate(-16deg);
  animation: slashSlide 7s ease-in-out infinite alternate;
}

.slash-one {
  right: 8%;
  top: 17%;
  background: var(--lime);
}

.slash-two {
  left: -64px;
  bottom: 27%;
  background: var(--pink);
  animation-delay: -2s;
}

.pixel {
  width: 34px;
  height: 34px;
  background: var(--blue);
  animation: pixelHop 4.2s steps(2, end) infinite;
}

.pixel-one {
  right: 28%;
  top: 27%;
}

.pixel-two {
  left: 12%;
  bottom: 18%;
  background: var(--orange);
  animation-delay: -1.1s;
}

.pixel-three {
  right: 12%;
  bottom: 23%;
  background: var(--pink);
  animation-delay: -2.3s;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 78px;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 2px solid var(--white);
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
  animation: badgePulse 2.8s ease-in-out infinite;
}

.hero-badges span:nth-child(2) {
  background: var(--blue);
  transform: rotate(2deg);
  animation-delay: -0.7s;
}

.hero-badges span:nth-child(3) {
  background: var(--pink);
  animation-delay: -1.4s;
}

.hero-badges span:nth-child(4) {
  background: var(--orange);
  transform: rotate(3deg);
  animation-delay: -2.1s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

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

.button.outline {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
  box-shadow: 5px 5px 0 var(--white);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
}

.button.accent {
  background: var(--lime);
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  border-top: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  background: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee p {
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: var(--lime);
  box-shadow: 24px 0 0 var(--pink), 48px 0 0 var(--blue);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes slashSlide {
  from {
    translate: -12px -6px;
  }
  to {
    translate: 18px 12px;
  }
}

@keyframes pixelHop {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 18px -18px;
  }
}

@keyframes badgePulse {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-46%);
  }
}

.visit-strip {
  background: var(--lime);
  border-bottom: 3px solid var(--ink);
}

.visit-inner {
  display: flex;
  width: min(100%, var(--max));
  min-height: 154px;
  margin: 0 auto;
  padding: 38px 40px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.visit-inner p {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.visit-inner span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.feature {
  padding: 96px 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 64px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-grid.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.feature-grid.reverse .drink-visual {
  grid-column: 2;
}

.feature-grid.reverse .copy-block {
  grid-column: 1;
  grid-row: 1;
}

.brand-panel {
  display: grid;
  min-height: 500px;
  place-items: center;
  padding: 46px;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(255, 107, 158, 0.35) 36% 51%, transparent 51%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(103, 217, 255, 0.32) 34px 58px, transparent 58px 92px),
    linear-gradient(180deg, rgba(215, 255, 66, 0.3), transparent 48%),
    var(--white);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.brand-panel img {
  width: min(100%, 560px);
  mix-blend-mode: multiply;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img,
.photo-grid img,
.menu-photo-band img,
.visit-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--ink);
  background: var(--white);
  filter: saturate(1.12) contrast(1.05);
}

.photo-main {
  position: absolute;
  inset: 34px 52px 58px 0;
  box-shadow: 12px 12px 0 var(--ink);
}

.photo-float {
  position: absolute;
  width: 44%;
  aspect-ratio: 1.15;
  box-shadow: 8px 8px 0 var(--ink);
  animation: photoFloat 5.2s ease-in-out infinite;
}

.photo-one {
  top: 0;
  right: 0;
  transform: rotate(4deg);
}

.photo-two {
  left: 8%;
  bottom: 0;
  transform: rotate(-4deg);
  animation-delay: -2s;
}

@keyframes photoFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.copy-block {
  max-width: 460px;
}

.copy-block h2,
.section-heading h2,
.menu-card h3,
.launch-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Black", Inter, sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
}

.copy-block h2 {
  font-size: 48px;
}

.copy-block p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.copy-block.tinted {
  max-width: none;
  padding: 54px;
  background: var(--pink);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.copy-block.tinted .eyebrow {
  color: var(--ink);
}

.copy-block.tinted p:not(.eyebrow) {
  color: #211116;
}

.menu-section {
  padding: 96px 24px;
  background: var(--ink);
  color: var(--white);
}

.menu-photo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: 18px;
  width: min(100%, var(--max));
  margin: -54px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.menu-photo-band img {
  aspect-ratio: 1.15;
  box-shadow: 8px 8px 0 var(--ink);
}

.menu-photo-band img:nth-child(2) {
  aspect-ratio: 0.95;
  margin-top: 34px;
}

.menu-photo-band img:nth-child(3) {
  margin-top: 70px;
}

.menu-category-nav {
  position: sticky;
  top: 166px;
  z-index: 18;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px max(24px, calc((100% - var(--max)) / 2));
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  scrollbar-width: thin;
  scrollbar-color: var(--lime) var(--ink);
}

.menu-category-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.menu-category-nav a:hover,
.menu-category-nav a.active {
  color: var(--ink);
  background: var(--lime);
}

.menu-category[id],
.full-menu[id] {
  scroll-margin-top: 245px;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.menu-section .section-heading h2,
.menu-section .eyebrow {
  color: var(--white);
}

.section-heading h2 {
  font-size: 50px;
}

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

.menu-card {
  min-height: 280px;
  padding: 28px;
  border: 3px solid var(--white);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--white);
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.tilt-card:hover,
.tilt-card:focus-visible {
  transform: perspective(900px) rotateX(var(--tilt-x, -2deg))
    rotateY(var(--tilt-y, 2deg)) translateY(-8px);
}

.menu-card span,
.launch-grid span {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  font-size: 31px;
}

.menu-card p {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.menu-card.lime {
  background: var(--lime);
}

.menu-card.pink {
  background: var(--pink);
}

.menu-card.blue {
  background: var(--blue);
}

.menu-card.cream {
  background: var(--paper);
}

.craft {
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    linear-gradient(135deg, rgba(255, 107, 158, 0.12), rgba(103, 217, 255, 0.12)),
    var(--paper);
}

.drink-visual {
  position: relative;
  min-height: 560px;
}

.cup {
  position: absolute;
  bottom: 24px;
  width: 190px;
  height: 360px;
  border: 5px solid var(--ink);
  border-radius: 24px 24px 48px 48px;
  box-shadow: 10px 10px 0 var(--ink);
}

.cup::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: -50px;
  height: 62px;
  border: 5px solid var(--ink);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  background: var(--white);
}

.cup::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 30px;
  height: 52px;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--ink) 0 6px, transparent 7px) 0 0 / 22px 22px;
}

.cup-one {
  left: 7%;
  background: linear-gradient(var(--pink) 0 45%, var(--paper) 45% 100%);
  transform: rotate(-5deg);
  animation: cupBobOne 4.8s ease-in-out infinite;
}

.cup-two {
  right: 6%;
  bottom: 84px;
  background: linear-gradient(var(--blue) 0 36%, var(--lime) 36% 100%);
  transform: rotate(7deg);
  animation: cupBobTwo 5.2s ease-in-out infinite;
}

.bubble {
  position: absolute;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.bubble-one {
  top: 42px;
  left: 28%;
  width: 78px;
  height: 78px;
}

.animated-drinks .bubble {
  animation: floatBubbles 4s ease-in-out infinite;
}

.animated-drinks .bubble-two {
  animation-delay: -1.2s;
}

.animated-drinks .bubble-three {
  animation-delay: -2.1s;
}

@keyframes cupBobOne {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes cupBobTwo {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(14px) rotate(4deg);
  }
}

@keyframes floatBubbles {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

.bubble-two {
  top: 152px;
  right: 14%;
  width: 54px;
  height: 54px;
}

.bubble-three {
  top: 214px;
  left: 8%;
  width: 42px;
  height: 42px;
}

.launch-section {
  padding: 96px 24px;
  background: var(--white);
}

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

.launch-grid article {
  min-height: 270px;
  padding: 32px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.launch-grid article:first-child {
  background: var(--blue);
}

.launch-grid article:nth-child(2) {
  background: var(--lime);
}

.launch-grid article:last-child {
  background: var(--lime);
}

.launch-grid article:nth-child(3) {
  background: var(--pink);
}

.launch-grid article:nth-child(4) {
  background: var(--orange);
}

.launch-grid h3 {
  max-width: 420px;
  font-size: 38px;
}

.launch-grid p {
  margin: 18px 0 0;
  color: #211116;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.founders-section,
.signature-section,
.social-proof,
.process-strip-section {
  padding: 96px 24px;
}

.founders-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    var(--white);
}

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

.founder-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--ink);
}

.founder-photo-placeholder {
  display: grid;
  min-height: 230px;
  place-content: center;
  gap: 12px;
  padding: 22px;
  border: 3px dashed var(--ink);
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(255, 107, 158, 0.55) 40% 58%, transparent 58%),
    var(--lime);
  text-align: center;
}

.founder-photo-placeholder.alternate {
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(215, 255, 66, 0.65) 40% 58%, transparent 58%),
    var(--blue);
}

.founder-photo-placeholder strong {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 64px;
  line-height: 1;
}

.founder-photo-placeholder span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card h3 {
  margin: 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 32px;
  line-height: 0.98;
  text-transform: uppercase;
}

.founder-card blockquote {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.signature-section {
  background: var(--ink);
  color: var(--white);
}

.signature-section .section-heading h2,
.signature-section .eyebrow {
  color: var(--white);
}

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

.signature-card {
  display: grid;
  overflow: hidden;
  border: 3px solid var(--white);
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--pink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.signature-card:nth-child(2n) {
  box-shadow: 7px 7px 0 var(--blue);
}

.signature-card:nth-child(3n) {
  box-shadow: 7px 7px 0 var(--lime);
}

.signature-card:hover {
  transform: translateY(-7px);
}

.signature-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.signature-card div {
  position: relative;
  min-height: 150px;
  padding: 22px 80px 22px 22px;
}

.signature-card span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 10px 0 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 25px;
  line-height: 0.98;
  text-transform: uppercase;
}

.signature-card strong {
  position: absolute;
  right: 18px;
  bottom: 20px;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-size: 15px;
}

.process-strip-section {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}

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

.process-step {
  position: relative;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.process-step img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}

.process-step span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.process-step h3 {
  margin: 20px 20px 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 27px;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-step p {
  margin: 12px 20px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.social-proof {
  border-top: 3px solid var(--ink);
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    var(--white);
}

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

.proof-card {
  padding: 20px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.proof-photo-placeholder {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 24px;
  border: 3px dashed var(--ink);
  background: var(--lime);
  text-align: center;
}

.proof-photo-placeholder.pink {
  background: var(--pink);
}

.proof-photo-placeholder.blue {
  background: var(--blue);
}

.proof-photo-placeholder span {
  max-width: 170px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card blockquote {
  margin: 22px 0 14px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 72px 24px 58px;
  text-align: center;
}

.footer-inner img {
  width: min(330px, 80vw);
  padding: 14px;
  background: var(--white);
}

.footer-details {
  display: grid;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-details p {
  margin: 0;
}

.footer-details a {
  color: var(--lime);
}

.footer-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-actions a {
  padding: 10px 14px;
  border: 2px solid var(--white);
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-actions a:nth-child(2) {
  background: var(--blue);
}

.footer-actions a:nth-child(3) {
  background: var(--pink);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 38px, rgba(0, 0, 0, 0.06) 38px 43px, transparent 43px 82px),
    var(--paper);
  border-bottom: 3px solid var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  top: 24%;
  width: 42%;
  height: 96px;
  border: 3px solid var(--ink);
  background: var(--lime);
  transform: rotate(-14deg);
}

.menu-hero::after {
  background: var(--pink);
}

.craft-hero::after {
  background: var(--blue);
}

.visit-hero::after {
  background: var(--orange);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 110px 40px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 72px;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.page-hero .button {
  margin-top: 32px;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 64px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px;
}

.expanded-menu {
  padding-top: 96px;
}

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

.menu-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-hero .menu-jump-links .button {
  margin-top: 0;
}

.full-menu {
  scroll-margin-top: 112px;
  padding: 104px 24px;
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    linear-gradient(180deg, var(--paper), var(--white) 48%, var(--paper));
}

.food-menu {
  border-top: 3px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 157, 59, 0.16) 38px 64px, transparent 64px 104px),
    var(--white);
}

.menu-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow price"
    "title price";
  align-items: end;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto 38px;
}

.menu-group-heading .eyebrow {
  grid-area: eyebrow;
  margin-bottom: -12px;
}

.menu-group-heading h2 {
  grid-area: title;
  margin: 0;
  max-width: 760px;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 58px;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-group-heading span {
  grid-area: price;
  padding: 12px 15px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
}

.food-menu .menu-group-heading span {
  background: var(--pink);
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.12fr);
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.menu-category.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
}

.menu-category.reverse .category-media {
  grid-column: 2;
}

.menu-category.reverse .category-content {
  grid-column: 1;
  grid-row: 1;
}

.category-media {
  min-height: 380px;
  background: var(--ink);
}

.category-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.category-content {
  position: relative;
  padding: 36px;
  background:
    linear-gradient(90deg, var(--lime) 0 18px, transparent 18px),
    var(--white);
}

.menu-category.reverse .category-content {
  background:
    linear-gradient(90deg, var(--blue) 0 18px, transparent 18px),
    var(--white);
}

.food-menu .menu-category:nth-of-type(even) .category-content {
  background:
    linear-gradient(90deg, var(--orange) 0 18px, transparent 18px),
    var(--white);
}

.category-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 0 0 20px 18px;
  border-bottom: 3px solid var(--ink);
}

.category-title p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-title h3 {
  margin: 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 42px;
  line-height: 0.95;
  text-transform: uppercase;
}

.category-title strong,
.price-list strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.category-title strong {
  padding: 9px 12px;
  border: 3px solid var(--ink);
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 22px;
  padding-left: 18px;
}

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

.menu-items article {
  min-height: 74px;
  padding: 13px 0;
  border-bottom: 2px solid rgba(5, 5, 5, 0.14);
}

.menu-items h4,
.menu-subcategory h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-items p,
.menu-subcategory p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.menu-subcategory {
  margin-left: 18px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(5, 5, 5, 0.16);
}

.price-list {
  display: grid;
  padding-left: 18px;
}

.price-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.price-list p {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 2px solid rgba(5, 5, 5, 0.15);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.price-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

.menu-note {
  margin: 22px 0 0 18px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  box-shadow: 5px 5px 0 var(--ink);
}

.menu-category.reverse .menu-note {
  background: var(--blue);
}

.food-menu .menu-note {
  background: var(--orange);
}

.flavour-lab {
  padding: 96px 24px;
  background:
    var(--flower-field) 0 0 / var(--flower-size),
    linear-gradient(180deg, rgba(255, 107, 158, 0.1), rgba(215, 255, 66, 0.14)),
    var(--white);
  border-top: 3px solid var(--ink);
}

.social-gallery,
.visit-gallery {
  padding: 96px 24px;
  background: var(--paper);
  border-top: 3px solid var(--ink);
}

.social-gallery .text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  padding: 10px 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
}

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

.photo-grid img {
  aspect-ratio: 1;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(4) {
  transform: translateY(34px);
}

.photo-grid img:hover {
  transform: translateY(-8px) rotate(-1deg);
}

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

.flavour-tile {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 26px;
  border: 3px solid var(--ink);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
  animation: tileWiggle 5s ease-in-out infinite;
}

.flavour-tile:nth-child(even) {
  transform: rotate(1deg);
  animation-delay: -1.5s;
}

.flavour-tile span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.flavour-tile strong {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 28px;
  line-height: 0.98;
  text-transform: uppercase;
}

.tile-lime {
  background: var(--lime);
}

.tile-pink {
  background: var(--pink);
}

.tile-blue {
  background: var(--blue);
}

.tile-orange {
  background: var(--orange);
}

@keyframes tileWiggle {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

.visit-page-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px;
}

.visit-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 0;
}

.visit-gallery img {
  min-height: 320px;
  box-shadow: 8px 8px 0 var(--ink);
}

.visit-gallery img:nth-child(2) {
  margin-top: 48px;
}

.visit-gallery img:nth-child(3) {
  margin-top: 24px;
}

.visit-card {
  min-height: 340px;
  padding: 34px;
  border: 3px solid var(--ink);
  background: var(--lime);
  box-shadow: 10px 10px 0 var(--ink);
}

.visit-card.colour-card {
  background: var(--blue);
}

.visit-card span {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-card h2 {
  margin: 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 40px;
  line-height: 0.98;
  text-transform: uppercase;
}

.visit-card p {
  margin: 24px 0 0;
  color: #211116;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.contact-actions .button {
  margin-top: 0;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, var(--max));
  margin: 96px auto;
  padding: 40px;
  border: 3px solid var(--ink);
  background: var(--pink);
  box-shadow: 10px 10px 0 var(--ink);
}

.contact-strip h2 {
  max-width: 630px;
  margin: 0;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 38px;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-strip .contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .founder-grid,
  .signature-grid,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
  }

  .feature-grid.reverse .drink-visual,
  .feature-grid.reverse .copy-block {
    grid-column: auto;
    grid-row: auto;
  }

  .split-showcase,
  .visit-page-section {
    grid-template-columns: 1fr;
  }

  .menu-group-heading,
  .menu-category,
  .menu-category.reverse,
  .price-list.two-column {
    grid-template-columns: 1fr;
  }

  .menu-category.reverse .category-media,
  .menu-category.reverse .category-content {
    grid-column: auto;
    grid-row: auto;
  }

  .category-media,
  .category-media img {
    min-height: 320px;
  }

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

  .expanded-menu .menu-grid,
  .flavour-board,
  .photo-grid,
  .menu-photo-band,
  .visit-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-stack {
    min-height: 460px;
  }

  .contact-strip {
    display: grid;
    margin: 72px 24px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 88px;
    padding: 0 20px;
  }

  .brand img {
    width: 168px;
  }

  .mini-link {
    font-size: 13px;
  }

  .site-menu a {
    font-size: 38px;
  }

  .hero,
  .hero-content {
    min-height: 570px;
  }

  .hero-product-stage {
    display: block;
  }

  .hero-product {
    display: none;
  }

  .hero-product-one {
    display: block;
    width: 100%;
    height: 100%;
    object-position: 63% center;
  }

  .hero-content {
    padding: 70px 22px 118px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .slash {
    width: 170px;
    height: 52px;
  }

  .hero-badges span {
    min-height: 34px;
    font-size: 12px;
  }

  .marquee p {
    font-size: 26px;
  }

  .visit-inner {
    display: grid;
    padding: 30px 22px 38px;
  }

  .visit-inner p {
    font-size: 22px;
  }

  .feature,
  .menu-section,
  .launch-section,
  .full-menu,
  .flavour-lab,
  .founders-section,
  .signature-section,
  .social-proof,
  .process-strip-section {
    padding: 72px 20px;
  }

  .brand-panel {
    min-height: 340px;
    padding: 28px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .copy-block h2,
  .section-heading h2,
  .menu-group-heading h2 {
    font-size: 36px;
  }

  .menu-group-heading {
    grid-template-areas:
      "eyebrow"
      "title"
      "price";
    gap: 16px;
    margin-bottom: 28px;
  }

  .menu-group-heading span {
    justify-self: start;
  }

  .menu-category {
    margin-bottom: 26px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .category-media,
  .category-media img {
    min-height: 250px;
  }

  .category-content {
    padding: 26px 22px 26px 24px;
  }

  .category-title {
    display: block;
    padding-left: 18px;
  }

  .category-title h3 {
    font-size: 31px;
  }

  .category-title strong {
    display: inline-block;
    margin-top: 14px;
  }

  .menu-items,
  .menu-items.compact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-items article {
    min-height: auto;
  }

  .price-list p {
    gap: 14px;
  }

  .copy-block.tinted {
    padding: 34px;
  }

  .founder-grid,
  .signature-grid,
  .process-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .founder-photo-placeholder {
    min-height: 260px;
  }

  .menu-grid,
  .launch-grid,
  .expanded-menu .menu-grid,
  .flavour-board,
  .photo-grid,
  .menu-photo-band,
  .visit-gallery {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .photo-main,
  .photo-float {
    position: static;
    width: 100%;
    aspect-ratio: 1.05;
    transform: none;
  }

  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(4),
  .menu-photo-band img:nth-child(2),
  .menu-photo-band img:nth-child(3),
  .visit-gallery img:nth-child(2),
  .visit-gallery img:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .social-gallery,
  .visit-gallery {
    padding: 72px 20px;
  }

  .menu-category-nav {
    top: 120px;
    padding: 10px 14px;
  }

  .menu-category[id],
  .full-menu[id] {
    scroll-margin-top: 200px;
  }

  .page-hero-inner {
    padding: 82px 22px;
  }

  .page-hero::after {
    top: 24px;
    right: -132px;
    width: 280px;
    height: 56px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .split-showcase,
  .visit-page-section {
    padding: 72px 20px;
  }

  .contact-strip {
    margin: 72px 20px;
    padding: 30px 24px;
  }

  .contact-strip h2 {
    font-size: 30px;
  }

  .contact-strip .contact-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

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

  .visit-card h2 {
    font-size: 32px;
  }

  .drink-visual {
    min-height: 480px;
  }

  .cup {
    width: 145px;
    height: 292px;
  }

  .location-tab {
    width: 42px;
    height: 120px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 142px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }
}
