@font-face {
  font-family: "Ruska";
  src: url("assets/fonts/ruskadisplay-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yuruka";
  src: url("assets/fonts/fot-yuruka-std.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #d9965b;
  --orange-dark: #b36c37;
  --green: #a2b861;
  --green-dark: #617436;
  --cream: #fffbf3;
  --peach: #fcedda;
  --pale-green: #f2fbc4;
  --pale-yellow: #faf5d7;
  --white: #ffffff;
  --berry: #b74e70;
  --ink: #2e2118;
  --line: 2px solid var(--ink);
  --radius: 16px;
  --shadow: 4px 4px 0 var(--ink);
  --section: clamp(56px, 7vw, 110px);
  --edge: clamp(18px, 4vw, 64px);
  --title: "Ruska", "Arial Black", sans-serif;
  --body: "Yuruka", "Trebuchet MS", sans-serif;
  --description: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.35;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: var(--line);
  transform: translateY(-150%);
}

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

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

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

.bg-peach {
  background: var(--peach);
}

.bg-green {
  background: var(--pale-green);
}

.bg-yellow {
  background: var(--pale-yellow);
}

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

.bg-pattern-green {
  background-color: var(--pale-green);
  background-image:
    radial-gradient(circle at 15px 15px, rgba(162, 184, 97, 0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 45px 35px, rgba(217, 150, 91, 0.32) 0 3px, transparent 4px);
  background-size: 58px 48px;
}

.announcement {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  border-bottom: var(--line);
  overflow: hidden;
}

.marquee,
.marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
}

.marquee__track {
  animation: marquee 34s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__track span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 45% 45%;
  background: var(--orange);
  box-shadow: 2px 2px 0 var(--ink);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 34px;
  left: 0;
  width: 100%;
  background: rgba(255, 251, 243, 0.86);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.site-header--solid {
  background: var(--cream);
}

.nav {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  min-height: 72px;
  align-items: center;
  gap: 16px;
  padding: 0 var(--edge);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.nav__link {
  justify-content: center;
}

.nav__link:hover,
.site-footer a:hover {
  color: var(--orange-dark);
}

.nav__link--button,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.nav__link--button {
  background: var(--pale-green);
}

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

.btn--primary {
  background: var(--orange);
}

.btn--ghost {
  background: var(--white);
}

.brand {
  display: flex;
  width: 104px;
  height: 62px;
  align-items: center;
  justify-content: center;
}

.brand img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.hero {
  --stage-accent: var(--orange);
  position: relative;
  min-height: 94vh;
  padding: calc(34px + 72px + 34px) var(--edge) 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
  gap: clamp(22px, 4vw, 54px);
  overflow: hidden;
  background: var(--stage-accent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: var(--cream);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(46, 33, 24, 0.16), rgba(46, 33, 24, 0.02) 45%, rgba(46, 33, 24, 0.34)),
    radial-gradient(circle at 20% 22%, rgba(255, 251, 243, 0.86), transparent 28%),
    linear-gradient(0deg, rgba(46, 33, 24, 0.54), transparent 55%);
}

.hero__content,
.hero-slider {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.made__headline {
  font-family: var(--title);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(82px, 14vw, 190px);
  text-shadow:
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink),
    2px 2px 0 var(--ink),
    8px 8px 0 var(--ink);
}

.hero .eyebrow {
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--ink);
}

.hero__copy {
  max-width: 560px;
  margin-top: 18px;
  color: var(--cream);
  font-family: var(--description);
  font-size: clamp(22px, 3vw, 38px);
  font-style: oblique;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 2px 2px 0 var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.sticker {
  position: absolute;
  display: inline-flex;
  min-width: 96px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: var(--line);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  animation: floaty 4s ease-in-out infinite alternate;
}

.sticker--berry {
  top: 18%;
  right: 34%;
  color: var(--berry);
  rotate: -8deg;
}

.sticker--leaf {
  top: 32%;
  right: 9%;
  color: var(--green-dark);
  animation-delay: 0.8s;
  rotate: 7deg;
}

.sticker--bowl {
  left: 43%;
  bottom: 11%;
  color: var(--orange-dark);
  animation-delay: 1.3s;
  rotate: 5deg;
}

.embla {
  overflow: hidden;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.embla__slide {
  flex: 0 0 auto;
  min-width: 0;
}

.hero-slider {
  align-self: end;
  width: min(430px, 100%);
}

.hero-card {
  width: 100%;
  min-height: 250px;
  padding: 24px;
  border: var(--line);
  border-radius: var(--radius);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.hero-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: var(--line);
  border-radius: 999px;
  background: var(--pale-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.hero-card p {
  margin-top: 14px;
  font-family: var(--description);
  font-size: 18px;
  font-style: oblique;
  font-weight: 500;
  line-height: 1.2;
}

.embla__nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.embla__nav button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: var(--line);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.embla__nav button.is-selected {
  background: var(--ink);
}

.section-band {
  padding: var(--section) var(--edge);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 54px);
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(38px, 5.5vw, 76px);
  color: var(--green-dark);
}

.favorites .section-heading h2,
.reviews .section-heading h2,
.locations .section-heading h2 {
  color: var(--orange-dark);
}

.build-bowl .section-heading h2 {
  color: var(--green-dark);
}

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

.favorite-card,
.review-card,
.menu-card {
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.favorite-card {
  min-height: 280px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.favorite-card span {
  font-family: var(--title);
  font-size: clamp(34px, 4vw, 56px);
}

.favorite-card p {
  margin-top: 18px;
  font-family: var(--description);
  font-size: clamp(20px, 2.1vw, 28px);
  font-style: oblique;
  font-weight: 400;
  line-height: 1.2;
}

.build-bowl {
  background: var(--cream);
}

.build-bowl__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.build-step {
  min-height: 320px;
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.build-step__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--title);
  font-size: 30px;
}

.build-step h3 {
  margin-top: 24px;
  font-size: clamp(38px, 5vw, 70px);
}

.build-step p {
  margin-top: 18px;
  font-family: var(--description);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: oblique;
  line-height: 1.2;
}

.mini-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-sizes span {
  min-height: 92px;
  padding: 14px 8px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 999px 999px 14px 14px;
  background: var(--cream);
  text-align: center;
  font-family: var(--title);
  font-size: 26px;
}

.mini-sizes strong {
  font-family: var(--body);
  font-size: 15px;
}

.build-bowl__link {
  width: max-content;
  margin: 28px auto 0;
}

.made {
  overflow: hidden;
}

.made__header {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.made__headline {
  color: var(--cream);
  font-size: clamp(92px, 17vw, 240px);
  text-align: center;
  text-shadow:
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink),
    2px 2px 0 var(--ink),
    8px 8px 0 var(--ink);
}

.made__controls {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 56px;
  height: 56px;
  padding: 0 0 5px;
  border: var(--line);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow);
  font-family: var(--title);
  font-size: 48px;
  line-height: 0.8;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.slider-arrow:hover {
  background: var(--pale-green);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.made__slider {
  --made-gap: 18px;
  width: calc(100vw - (var(--edge) * 2));
  max-width: 360px;
  margin: -14px auto 0;
}

.made__item {
  width: 100%;
  min-height: 110px;
  margin-right: var(--made-gap);
  border: var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  font-family: var(--title);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1;
  white-space: normal;
  cursor: grab;
}

.made__item:active {
  cursor: grabbing;
}

.made__item.is-selected {
  background: var(--pale-green);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--line);
  border-bottom: var(--line);
}

.photo-strip img {
  width: 100%;
  height: clamp(360px, 55vw, 760px);
  object-fit: cover;
}

.photo-strip img:first-child {
  border-right: var(--line);
}

.reviews {
  background: var(--pale-yellow);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 18px;
}

.review-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.review-card p {
  font-family: var(--description);
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: oblique;
  font-weight: 400;
  line-height: 1.22;
}

.review-card strong {
  text-transform: uppercase;
}

.stars {
  color: var(--orange-dark);
  font-size: 28px;
  letter-spacing: 0;
}

.review-card--feature {
  background: var(--pale-green);
  justify-content: flex-start;
  gap: 16px;
}

.review-score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.review-score span:last-child {
  padding-bottom: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.score {
  display: block;
  font-family: var(--title);
  font-size: clamp(76px, 9vw, 126px);
  line-height: 0.74;
}

.review-card a {
  width: max-content;
  padding-bottom: 2px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.locations {
  scroll-margin-top: 130px;
  background:
    linear-gradient(rgba(255, 251, 243, 0.9), rgba(255, 251, 243, 0.9)),
    url("assets/images/bunbun-drinks.png") center/cover;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-right: 4px;
}

.location-card {
  min-width: 0;
  min-height: clamp(440px, 38vw, 520px);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-card__status {
  width: max-content;
  padding: 7px 12px;
  border: var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card h3 {
  margin-top: 20px;
  min-height: 1.9em;
  display: flex;
  align-items: center;
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.location-card--open h3 {
  color: var(--orange-dark);
}

.location-card:nth-child(2) h3 {
  color: var(--green-dark);
}

.location-card:nth-child(3) h3 {
  color: var(--berry);
}

.location-card__title--long,
.location-card__title--wide {
  font-size: clamp(32px, 3vw, 48px);
}

.location-card__title--wide {
  font-size: clamp(30px, 2.4vw, 40px);
  white-space: nowrap;
}

.location-card p {
  margin-top: 16px;
  font-family: var(--description);
  font-size: clamp(20px, 2vw, 28px);
  font-style: oblique;
  font-weight: 400;
  line-height: 1.2;
}

.location-hours {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 2px solid rgba(46, 33, 24, 0.24);
}

.location-hours dt,
.location-hours dd {
  margin: 0;
}

.location-hours dd {
  white-space: nowrap;
}

.location-card .btn {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  text-align: center;
  white-space: normal;
}

.btn--disabled {
  background: var(--white);
  color: rgba(46, 33, 24, 0.62);
  cursor: not-allowed;
}

.btn--disabled:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.locations h2,
.menu-hero h1 {
  font-size: clamp(42px, 6vw, 84px);
}

.site-footer {
  padding: 46px var(--edge);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: var(--line);
  background: var(--ink);
  color: var(--cream);
}

.site-footer img {
  width: 92px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.menu-main {
  padding: calc(34px + 72px + 48px) var(--edge) var(--section);
  background:
    radial-gradient(circle at 8% 18%, rgba(217, 150, 91, 0.22), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(162, 184, 97, 0.26), transparent 30%),
    var(--cream);
}

.menu-hero {
  max-width: 1100px;
  margin: 0 auto 36px;
  text-align: center;
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  font-family: var(--description);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.menu-jump a {
  min-width: 130px;
  padding: 10px 16px;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-jump a:hover {
  background: var(--pale-green);
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 20px;
  align-items: start;
}

.menu-card {
  padding: clamp(20px, 3vw, 34px);
  min-width: 0;
}

.menu-card h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 70px);
}

.menu-card--favs {
  grid-row: span 2;
}

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

.sizes article {
  min-height: 132px;
  padding: 14px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 999px 999px 18px 18px;
  background: var(--cream);
}

.sizes span {
  font-family: var(--title);
  font-size: 42px;
}

.base-list,
.topping-columns ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.base-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-weight: 900;
}

.swatch {
  width: 48px;
  height: 48px;
  border: var(--line);
  border-radius: 50%;
}

.swatch--acai {
  background: linear-gradient(135deg, #5d1635, #a24a6c);
}

.swatch--vanilla {
  background: linear-gradient(135deg, #fffdf4, #d9d2c0);
}

.menu-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-card__header strong {
  padding: 10px 16px;
  border: var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}

.topping-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 18px;
}

.topping-columns li {
  margin: 0 0 12px;
}

.fruit-list {
  padding: 16px !important;
  border: 2px dashed var(--green-dark);
  border-radius: var(--radius);
  background: rgba(242, 251, 196, 0.9);
}

.menu-card--favs article {
  padding: 16px 0;
  border-top: var(--line);
}

.menu-card--favs h3 {
  margin-bottom: 6px;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 900;
}

.menu-card--favs p {
  font-family: var(--description);
  font-size: 20px;
  font-style: oblique;
  font-weight: 400;
  line-height: 1.28;
}

.menu-category {
  padding-top: var(--section);
  padding-inline: var(--edge);
  scroll-margin-top: 130px;
}

.menu-layout {
  scroll-margin-top: 130px;
}

.menu-dynamic[hidden],
[data-menu-static][hidden] {
  display: none !important;
}

.menu-dynamic {
  display: block;
}

.menu-category--dynamic:first-child {
  padding-top: 0;
}

.menu-category__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.menu-category__grid--drinks {
  grid-template-columns: 1.1fr 0.95fr 1.2fr;
}

.menu-category .menu-card h2 {
  font-size: clamp(34px, 3.8vw, 58px);
}

.menu-card--highlight {
  border-style: dashed;
}

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

.price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.menu-item__media {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.menu-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-list h3 {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 900;
}

.price-list p {
  margin-top: 4px;
  font-family: var(--description);
  font-size: 20px;
  font-style: oblique;
  font-weight: 400;
  line-height: 1.28;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.menu-tags span {
  padding: 5px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-list strong,
.compact-list strong {
  font-size: 22px;
  white-space: nowrap;
}

.menu-note,
.compact-list .extra {
  margin-top: 24px;
  padding: 14px 18px;
  border: 2px dashed var(--green-dark);
  border-radius: 14px;
  background: rgba(255, 251, 243, 0.78);
  font-weight: 900;
  text-align: center;
}

.compact-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}

.compact-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  font-family: var(--description);
  font-size: 22px;
  font-style: oblique;
  font-weight: 700;
  line-height: 1.18;
}

.compact-list .extra {
  grid-column: 1 / -1;
  font-style: normal;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate].is-animated {
  animation: fadeInUp 700ms ease both;
}

[data-animate-stagger="1"] {
  animation-delay: 120ms;
}

[data-animate-stagger="2"] {
  animation-delay: 240ms;
}

[data-animate-stagger="3"] {
  animation-delay: 360ms;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes floaty {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(12px);
  }
}

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

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
  }

  .brand {
    grid-column: 2;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    width: 48px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .menu-toggle span {
    width: 23px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 18px var(--edge) 24px;
    gap: 14px;
    border-top: var(--line);
    background: var(--cream);
    text-align: center;
    font-family: var(--title);
    font-size: 34px;
    text-transform: uppercase;
  }

  .is-menu-open .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: calc(34px + 72px + 42px);
  }

  .hero__media img {
    object-position: 50% 45%;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(46, 33, 24, 0.7), rgba(46, 33, 24, 0.08) 60%),
      radial-gradient(circle at 30% 18%, rgba(255, 251, 243, 0.74), transparent 34%);
  }

  .hero-slider {
    width: 100%;
  }

  .favorites__grid,
  .reviews__grid,
  .locations__grid,
  .photo-strip,
  .menu-layout,
  .menu-category__grid,
  .menu-category__grid--drinks {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-strip img:first-child {
    border-right: 0;
    border-bottom: var(--line);
  }

  .build-bowl__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 760px) {
  .made__slider {
    max-width: 760px;
  }

  .made__item {
    width: calc((100% - var(--made-gap)) / 2);
  }
}

@media (min-width: 1120px) {
  .made__slider {
    max-width: 1120px;
  }

  .made__item {
    width: calc((100% - (var(--made-gap) * 2)) / 3);
  }
}

@media (min-width: 1500px) {
  .made__slider {
    max-width: 1460px;
  }

  .made__item {
    width: calc((100% - (var(--made-gap) * 3)) / 4);
  }
}

@media (min-width: 2100px) {
  .made__slider {
    max-width: 1820px;
  }

  .made__item {
    width: calc((100% - (var(--made-gap) * 4)) / 5);
  }
}

@media (max-width: 640px) {
  .announcement {
    height: 30px;
  }

  .site-header {
    top: 30px;
  }

  .nav {
    min-height: 62px;
  }

  .brand {
    width: 86px;
  }

  .hero {
    padding-top: calc(30px + 62px + 28px);
  }

  .hero h1 {
    font-size: clamp(74px, 23vw, 120px);
  }

  .sticker {
    display: none;
  }

  .hero-card {
    min-height: 220px;
    padding: 20px;
  }

  .section-heading {
    text-align: left;
  }

  .mini-sizes {
    grid-template-columns: 1fr;
  }

  .made__headline {
    font-size: clamp(78px, 21vw, 140px);
  }

  .made__controls {
    position: static;
    justify-content: center;
    margin: 12px 0 0;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 42px;
  }

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

  .compact-list {
    grid-template-columns: 1fr;
  }

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