@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #1d1a40;
  --gray: #70758c;
  --light-gray: #eaedf6;
  --mint: #93f3aa;
  --purple: #7322ff;
  --purple-dark: #5938de;
  --pink: #fe7bff;
  --ink-soft: rgba(29, 26, 64, 0.14);
  --radius-lg: 24px;
  --radius-sm: 12px;
  --space: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--gray);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: var(--space);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  font-family: "Archivo", Arial, sans-serif;
  letter-spacing: 0;
}

h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.02;
}

h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.08;
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space);
  width: calc(100vw - (var(--space) * 2));
  max-width: 100%;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  top: 40px;
  left: 50%;
  right: auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 60px;
  width: calc(100vw - 112px);
  padding: 10px 18px 10px 24px;
  background: var(--mint);
  color: var(--black);
  border-radius: 60px;
  box-shadow: none;
  transform: translateX(-50%);
  animation: navEnter 700ms ease-in-out both;
  transition:
    top 420ms ease-in-out,
    width 420ms ease-in-out,
    padding 420ms ease-in-out,
    box-shadow 420ms ease-in-out;
  will-change: top, width;
}

.site-nav.is-floating {
  top: 16px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100vw - 48px), 680px);
  padding: 10px 24px;
  animation: none;
  box-shadow: 0 12px 32px rgba(29, 26, 64, 0.12);
}

.site-nav.is-floating .brand {
  width: 106px;
}

.brand {
  display: flex;
  align-items: center;
  width: 118px;
  height: 40px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 14px 22px;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.nav-cta {
  display: none;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  color: var(--mint);
  transform: translateY(-1px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--mint);
  color: var(--black);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: var(--white);
  color: var(--purple);
}

.button-secondary {
  background: var(--light-gray);
  color: var(--black);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--pink);
  color: var(--purple);
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 820px;
  padding: 144px 24px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--purple);
}

.hero-copy {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
  display: none;
  flex-direction: column;
  gap: 24px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 48px 8px;
  min-width: 0;
}

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--purple);
}

.eyebrow.light {
  color: var(--mint);
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 930px;
  height: 609px;
  min-height: 0;
  min-width: 0;
  margin: 0 auto;
  overflow: visible;
  color: var(--white);
}

.hero-word {
  position: absolute;
  left: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  width: min-content;
  transform: translateX(-50%);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 175px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
}

.hero-word-top {
  top: 81px;
}

.hero-word-bottom {
  z-index: 3;
  top: 228px;
}

.hero-word span {
  --letter-y: 0px;
  opacity: 0;
  animation: letterRise 820ms ease-in-out forwards;
}

.hero-word span:nth-child(3n) {
  --letter-y: -8px;
}

.hero-word span:nth-child(2n) {
  --letter-y: 12px;
}

.hero-word span:nth-child(1) {
  animation-delay: 150ms;
}

.hero-word span:nth-child(2) {
  animation-delay: 210ms;
}

.hero-word span:nth-child(3) {
  animation-delay: 270ms;
}

.hero-word span:nth-child(4) {
  animation-delay: 330ms;
}

.hero-word span:nth-child(5) {
  animation-delay: 390ms;
}

.hero-word span:nth-child(6) {
  animation-delay: 450ms;
}

.hero-beans {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 257px;
  width: 278px;
  opacity: 0;
  transform: translate3d(50px, 320px, 0) rotate(6deg);
  animation: beansEnter 950ms ease-in-out 200ms forwards;
}

.hero-jar {
  position: absolute;
  z-index: 2;
  left: 268px;
  bottom: -353px;
  width: 432px;
  height: 766px;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(-22px, 160px, 0) rotate(-11deg);
  animation: jarEnter 1000ms ease-in-out 380ms forwards;
}

.hero-cups {
  display: none;
}

.hero-badge {
  position: absolute;
  z-index: 5;
  top: 184px;
  left: 702px;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 20px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--purple);
  text-align: center;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5) rotate(14deg);
  animation: badgePop 900ms ease-in-out 720ms forwards;
}

.hero-badge::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed var(--purple);
  border-radius: inherit;
}

.hero-badge span {
  position: relative;
  z-index: 1;
}

.bento {
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space);
}

.bento-grid-top {
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.68fr);
}

.bento-grid-bottom {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.bento-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: left;
}

.bento-card.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.bento-photo-card {
  align-items: flex-end;
  padding: 32px;
  background: var(--purple-dark);
  cursor: pointer;
}

.bento-photo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(29, 26, 64, 0.1) 0%, rgba(29, 26, 64, 0.22) 42%, rgba(29, 26, 64, 0.82) 100%),
    linear-gradient(90deg, rgba(29, 26, 64, 0.35), rgba(29, 26, 64, 0));
}

.bento-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.bento-photo-card:hover .bento-card-image,
.bento-photo-card:focus-visible .bento-card-image {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.bento-photo-card:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: -8px;
}

.bento-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
}

.bento-menu-card .bento-card-content,
.bento-service .bento-card-content {
  max-width: 400px;
}

.bento-title {
  display: block;
  max-width: 680px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.45rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

.bento-menu-card .bento-title,
.bento-service .bento-title {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.94;
}

.bento-title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.08em;
}

.bento-copy {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.45;
}

.bento-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-chip-row span,
.menu-pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--white);
  font-weight: 900;
}

.bento-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--black);
  padding: 10px 18px;
  font-weight: 900;
}

.bento-booking .bento-card-image {
  object-position: 50% 42%;
}

.bento-menu-card {
  width: 100%;
  font: inherit;
}

.bento-menu-card .bento-card-image {
  object-position: 54% 45%;
}

.bento-service .bento-card-image {
  object-position: 48% 52%;
}

.bento-location .bento-card-image {
  object-position: 50% 47%;
}

.menu-drawer {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: var(--space);
  border-radius: var(--radius-lg);
  background: var(--mint);
  color: var(--black);
  padding: 16px;
}

.menu-drawer[hidden] {
  display: none;
}

.menu-drawer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 40px;
}

.menu-drawer-copy h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.menu-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-pill-row span {
  border-color: rgba(29, 26, 64, 0.32);
  color: var(--black);
}

.menu-close {
  border: 0;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}

.menu-close:hover,
.menu-close:focus-visible {
  color: var(--black);
}

.menu-board-link {
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--white);
  cursor: zoom-in;
  padding: 0;
}

.menu-board-link img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.menu-board-link:focus-visible {
  outline: 4px solid var(--purple);
  outline-offset: 4px;
}

.menu-lightbox {
  width: min(94vw, 1120px);
  max-width: none;
  max-height: 94vh;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-lightbox::backdrop {
  background: rgba(29, 26, 64, 0.78);
}

.menu-lightbox-inner {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 16px;
}

.menu-lightbox-close {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 18px;
}

.menu-lightbox img {
  width: 100%;
  max-height: calc(94vh - 86px);
  object-fit: contain;
}

.split-section,
.steps-section,
.shop-section,
.reviews-section,
.quote-section,
.find-section,
.areas-section,
.site-footer {
  border-radius: var(--radius-lg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 16px;
  padding: 16px;
  background: var(--light-gray);
}

.split-media,
.split-copy {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--white);
  padding: 56px;
}

.split-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--gray);
  font-size: 1.06rem;
  font-weight: 650;
}

.section-mark {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.steps-section {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 80px 16px 16px;
  background: var(--mint);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-icon {
  width: 54px;
  height: 54px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  display: flex;
  min-height: 280px;
  perspective: 900px;
}

.step-card:hover {
  z-index: 1;
}

.step-card-inner {
  display: flex;
  flex: 1;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: rgba(255, 255, 255, 0.78);
  padding: 28px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.step-card:hover .step-card-inner {
  transform: rotate(15deg);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--purple);
  font-size: 1.5rem;
  font-weight: 900;
}

.step-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.shop-section {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding: 80px 16px 16px;
  background: var(--light-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 330px;
  background: #f7f8fc;
}

.product-image img {
  width: 82%;
  height: 290px;
  object-fit: contain;
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.product-info p {
  margin-top: 6px;
  color: var(--gray);
}

.product-info span {
  align-self: start;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 8px 12px;
  white-space: nowrap;
}

.areas-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 480px);
  gap: 28px;
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
  padding: 70px 56px 0;
}

.areas-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 70px;
}

.areas-copy h2 {
  color: var(--white);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.area-tags span {
  border: 2px solid var(--pink);
  border-radius: 999px;
  background: var(--purple-dark);
  color: var(--pink);
  font-weight: 900;
  padding: 12px 16px;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.area-tags span:hover {
  background: var(--pink);
  color: var(--purple);
  transform: translateY(-2px);
}

.areas-section > img {
  align-self: end;
  max-height: 610px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: contain;
}

.find-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 36px;
  padding: 72px 56px;
  background: var(--mint);
}

.find-section > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.find-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 700;
}

.find-section img {
  width: 320px;
  justify-self: end;
}

.location-line {
  border-left: 6px solid var(--purple);
  padding-left: 18px;
}

.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 16px 16px;
  background: var(--light-gray);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  padding: 26px;
}

.review-card p {
  color: var(--gray);
  font-size: 1.08rem;
  font-weight: 650;
}

.stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars img {
  width: 18px;
  height: 18px;
}

.quote-section {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 88px 24px;
  background: var(--mint);
  text-align: center;
}

.quote-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
}

.quote-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--black);
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(100%, 860px);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 16px;
  text-align: left;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--purple);
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  color: var(--black);
  padding: 0 14px;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--purple);
  outline: 2px solid rgba(115, 34, 255, 0.2);
  outline-offset: 2px;
}

.quote-form .button {
  grid-column: 1 / -1;
  width: 100%;
}

.site-footer {
  display: flex;
  min-height: 560px;
  justify-content: center;
  align-items: center;
  padding: 96px 24px;
  background: var(--purple);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 720px;
}

.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--white);
}

.footer-logo {
  display: block;
  width: 148px;
  height: auto;
}

.footer-content h2 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7.25rem);
  line-height: 0.9;
  max-width: 760px;
}

.footer-nav,
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
}

.footer-nav a,
.footer-secondary a {
  color: var(--white);
  font-weight: 850;
}

.footer-secondary {
  gap: 14px 26px;
}

.footer-secondary a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-secondary a:hover,
.footer-secondary a:focus-visible {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transition:
    opacity 700ms ease-in-out,
    transform 700ms ease-in-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translate3d(0, 80px, 0);
}

.reveal-scale {
  transform: scale(0.88) rotate(-4deg);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.reveal-marquee .marquee {
  opacity: 0;
  transition: opacity 500ms ease-in-out 450ms;
}

.reveal-marquee.is-visible .marquee {
  opacity: 1;
}

.product-card:nth-child(2),
.step-card:nth-child(2),
.review-card:nth-child(2) {
  --reveal-delay: 120ms;
}

.product-card:nth-child(3),
.step-card:nth-child(3),
.review-card:nth-child(3) {
  --reveal-delay: 240ms;
}

.footer-links {
  --reveal-delay: 120ms;
}

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

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

  .step-card:hover .step-card-inner {
    transform: none;
  }
}

@keyframes navEnter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes letterRise {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--letter-y) + 20px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--letter-y), 0);
  }
}

@keyframes beansEnter {
  from {
    opacity: 0;
    transform: translate3d(50px, 320px, 0) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }
}

@keyframes jarEnter {
  from {
    opacity: 0;
    transform: translate3d(-22px, 160px, 0) rotate(-11deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-11deg);
  }
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(14deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(14deg);
  }
}

@keyframes marqueeLeft {
  from {
    transform: rotate(-14deg) translateX(-9%);
  }
  to {
    transform: rotate(-14deg) translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: rotate(-14deg) translateX(-46%);
  }
  to {
    transform: rotate(-14deg) translateX(-9%);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(4deg) scale(1.04);
  }
}

@media (max-width: 1100px) {
  h2 {
    font-size: 3rem;
  }

  .hero {
    height: 715px;
    padding: 132px 0 0;
  }

  .hero-copy {
    max-width: 720px;
    padding: 0 0 18px 0;
  }

  .hero-stage {
    max-width: 567px;
    height: 560px;
    min-height: 0;
  }

  .hero-word {
    gap: 12px;
    font-size: 112px;
  }

  .hero-word-top {
    top: 84px;
  }

  .hero-word-bottom {
    top: 191px;
  }

  .hero-beans {
    top: 6px;
    left: 100px;
  }

  .hero-jar {
    left: 131px;
    bottom: -209px;
    width: 358px;
    height: 635px;
  }

  .hero-badge {
    top: 162px;
    left: 427px;
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .split-section,
  .areas-section,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .areas-section > img {
    justify-self: center;
  }

  .bento-grid-top,
  .bento-grid-bottom,
  .menu-drawer {
    grid-template-columns: 1fr;
  }

  .bento-menu-card .bento-card-content,
  .bento-service .bento-card-content {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  :root {
    --space: 10px;
  }

  body {
    padding: 10px;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    height: 560px;
    padding: 86px 0 0;
  }

  .hero-stage {
    max-width: 360px;
    height: 430px;
    min-height: 0;
  }

  .hero-word {
    gap: 8px;
    font-size: 70px;
  }

  .hero-word-top {
    top: 76px;
  }

  .hero-word-bottom {
    top: 148px;
  }

  .hero-beans {
    top: 38px;
    left: 56px;
    width: 168px;
  }

  .hero-jar {
    left: 80px;
    bottom: -112px;
    width: 230px;
    height: 408px;
  }

  .hero-cups {
    right: -38px;
    bottom: 66px;
    width: 216px;
  }

  .hero-badge {
    top: 206px;
    left: 230px;
    width: 116px;
    height: 116px;
    font-size: 0.9rem;
  }

  .bento-card {
    min-height: 380px;
  }

  .bento-photo-card {
    padding: 24px;
  }

  .menu-drawer-copy {
    padding: 24px;
  }

  .split-copy,
  .areas-section,
  .quote-section,
  .find-section,
  .site-footer {
    padding: 42px 24px;
  }

  .split-media img {
    min-height: 420px;
  }

  .step-grid,
  .review-grid,
  .find-section,
  .footer-links,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .find-section img {
    justify-self: center;
    width: 250px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    top: 16px;
    left: 50%;
    right: auto;
    grid-template-columns: auto auto;
    width: calc(100vw - 32px);
    border-radius: 28px;
  }

  .site-nav.is-floating {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-nav.open .nav-links {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid rgba(29, 26, 64, 0.14);
    padding-top: 12px;
  }

  .site-nav.open .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
  }

  .bento-grid,
  .bento-grid-top,
  .bento-grid-bottom,
  .menu-drawer,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 104px;
  }

  .hero-stage {
    max-width: 275px;
    height: 375px;
    min-height: 0;
  }

  .hero-word {
    gap: 5px;
    font-size: 50px;
  }

  .hero-word-top {
    top: 64px;
  }

  .hero-word-bottom {
    top: 115px;
  }

  .hero-beans {
    top: 50px;
    left: 51px;
    width: 144px;
  }

  .hero-jar {
    left: 64px;
    bottom: -118px;
    width: 200px;
    height: 355px;
  }

  .hero-badge {
    top: 174px;
    left: 173px;
    width: 100px;
    height: 100px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .step-card h3 {
    font-size: 1.75rem;
  }

  .bento-card {
    min-height: 430px;
  }

  .bento-title,
  .bento-menu-card .bento-title,
  .bento-service .bento-title {
    font-size: 2.15rem;
    line-height: 0.94;
  }

  .menu-board-link img {
    max-height: 560px;
  }

  .product-info {
    flex-direction: column;
  }
}
