:root {
  --background: 39 58% 93%;
  --surface: 43 72% 97%;
  --surface-strong: 39 42% 88%;
  --foreground: 24 39% 16%;
  --muted-foreground: 24 18% 38%;
  --primary: 13 55% 43%;
  --primary-dark: 14 59% 30%;
  --primary-foreground: 43 70% 98%;
  --sage: 91 20% 47%;
  --sage-light: 89 29% 78%;
  --butter: 42 84% 67%;
  --peach: 22 72% 77%;
  --blue: 193 35% 75%;
  --lilac: 274 31% 80%;
  --border: 24 29% 24%;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Trebuchet MS", sans-serif;
  --radius-small: 12px;
  --radius-medium: 22px;
  --radius-large: 36px;
  --shadow-soft: 0 20px 60px hsl(var(--foreground) / 0.1);
  --shadow-button: 0 10px 24px hsl(var(--primary) / 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: hsl(var(--foreground));
  background:
    radial-gradient(circle at 15% 8%, hsl(var(--surface) / 0.95), transparent 30%),
    hsl(var(--background));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--foreground));
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1280px, calc(100% - 96px));
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid hsl(var(--border) / 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
  color: hsl(var(--foreground));
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 33px;
  height: 33px;
  fill: hsl(var(--primary));
  transform: rotate(-6deg);
}

.brand-mark-line {
  fill: none;
  stroke: hsl(var(--surface));
  stroke-linecap: round;
  stroke-width: 2.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a,
.header-location {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-location {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid hsl(var(--border) / 0.35);
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--sage));
  box-shadow: 0 0 0 4px hsl(var(--sage) / 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  width: min(1280px, calc(100% - 96px));
  min-height: min(730px, calc(100svh - 92px));
  margin: 0 auto;
  padding: 42px 0 58px;
}

.hero-copy {
  max-width: 700px;
  padding-left: clamp(0px, 2vw, 24px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: hsl(var(--primary-dark));
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  color: hsl(var(--primary));
  font-size: 1rem;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 4.55vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 em {
  position: relative;
  z-index: 1;
  color: hsl(var(--primary));
  font-weight: 600;
}

h1 em::after {
  position: absolute;
  right: -4px;
  bottom: 2px;
  left: -6px;
  z-index: -1;
  height: 13px;
  border-radius: 50%;
  content: "";
  background: hsl(var(--butter) / 0.62);
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 580px;
  margin: 24px 0 0;
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.button-primary {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-dark));
  box-shadow: var(--shadow-button);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary:hover {
  background: hsl(var(--primary));
  box-shadow: 0 13px 26px hsl(var(--primary) / 0.28);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: hsl(var(--primary));
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 2px solid hsl(var(--background));
  border-radius: 50%;
  color: hsl(var(--foreground));
  background: hsl(var(--butter));
  font-size: 0.9rem;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: hsl(var(--peach));
}

.avatar-stack span:nth-child(2) {
  background: hsl(var(--sage-light));
}

.hero-note p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.83rem;
  line-height: 1.35;
}

.hero-note strong {
  display: block;
  color: hsl(var(--foreground));
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 570px);
  justify-self: end;
  aspect-ratio: 0.96;
}

.coffee-illustration {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 24px 24px hsl(var(--foreground) / 0.08));
}

.art-blob {
  fill: hsl(var(--sage-light));
}

.sun-rays,
.steam,
.coffee-shine,
.cup-smile,
.bean-line {
  fill: none;
  stroke: hsl(var(--foreground));
  stroke-linecap: round;
  stroke-width: 7;
}

.sun-rays {
  stroke: hsl(var(--primary));
  stroke-width: 9;
}

.saucer-shadow {
  fill: hsl(var(--foreground) / 0.12);
}

.saucer {
  fill: hsl(var(--butter));
  stroke: hsl(var(--foreground));
  stroke-width: 5;
}

.cup,
.handle {
  fill: hsl(var(--primary));
  stroke: hsl(var(--foreground));
  stroke-linejoin: round;
  stroke-width: 6;
}

.coffee {
  fill: hsl(var(--foreground));
  stroke: hsl(var(--foreground));
  stroke-width: 5;
}

.coffee-shine {
  stroke: hsl(var(--butter) / 0.7);
  stroke-width: 4;
}

.cup-smile,
.cup-eye {
  stroke: hsl(var(--primary-foreground));
}

.cup-eye {
  fill: hsl(var(--primary-foreground));
}

.cup-smile {
  stroke-width: 5;
}

.steam {
  stroke: hsl(var(--foreground) / 0.72);
  stroke-width: 6;
}

.coffee-beans path:first-child {
  fill: hsl(var(--primary-dark));
  stroke: hsl(var(--foreground));
  stroke-width: 5;
}

.bean-line {
  stroke: hsl(var(--butter));
  stroke-width: 4;
}

.art-sticker {
  position: absolute;
  right: -4px;
  bottom: 13%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  padding: 20px;
  border: 2px solid hsl(var(--foreground));
  border-radius: 50%;
  background: hsl(var(--surface));
  box-shadow: 7px 8px 0 hsl(var(--foreground));
  text-align: center;
  transform: rotate(7deg);
}

.art-sticker span {
  color: hsl(var(--primary));
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-sticker strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
}

.doodle {
  position: absolute;
  z-index: 2;
  display: block;
}

.doodle-spark {
  top: 16%;
  left: -1%;
  color: hsl(var(--primary));
  font-size: 2.1rem;
  transform: rotate(-16deg);
}

.doodle-loop {
  top: 7%;
  right: 7%;
  width: 54px;
  height: 37px;
  border: 4px solid hsl(var(--foreground));
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-26deg);
}

.doodle-bean {
  bottom: 12%;
  left: 5%;
  width: 26px;
  height: 40px;
  border: 3px solid hsl(var(--foreground));
  border-radius: 50%;
  transform: rotate(42deg);
}

.doodle-bean::after {
  position: absolute;
  top: 4px;
  left: 10px;
  width: 3px;
  height: 28px;
  border-radius: 50%;
  content: "";
  background: hsl(var(--foreground));
}

.menu-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 118px) max(48px, calc((100vw - 1280px) / 2));
  color: hsl(var(--surface));
  background: hsl(var(--foreground));
}

.menu-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 24px;
  border-radius: 0 0 50% 50%;
  content: "";
  background: hsl(var(--background));
  transform: translateX(-50%);
}

.menu-section::after {
  position: absolute;
  top: 105px;
  right: -60px;
  width: 190px;
  height: 190px;
  border: 2px solid hsl(var(--butter) / 0.2);
  border-radius: 50%;
  content: "";
}

.menu-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.menu-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.8rem, 4.1vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.menu-intro {
  max-width: 470px;
  margin: 0 0 6px;
  color: hsl(var(--surface) / 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.menu-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 50px auto 28px;
  padding-top: 28px;
  border-top: 1px solid hsl(var(--surface) / 0.18);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid hsl(var(--surface) / 0.24);
  border-radius: 999px;
  color: hsl(var(--surface) / 0.8);
  background: transparent;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.filter-button:hover {
  border-color: hsl(var(--butter));
  color: hsl(var(--butter));
  transform: translateY(-1px);
}

.filter-button.is-active {
  border-color: hsl(var(--butter));
  color: hsl(var(--foreground));
  background: hsl(var(--butter));
}

.season-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: hsl(var(--surface) / 0.62);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-note span {
  color: hsl(var(--sage-light));
  font-size: 0.55rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid hsl(var(--surface) / 0.16);
  border-radius: var(--radius-medium);
  color: hsl(var(--foreground));
  background: hsl(var(--surface));
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}

.menu-card:hover {
  z-index: 2;
  box-shadow: 0 24px 60px hsl(0 0% 0% / 0.25);
  transform: translateY(-7px) rotate(-0.3deg);
}

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

.drink-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 195px;
  overflow: hidden;
  border-bottom: 1px solid hsl(var(--border) / 0.15);
  background: hsl(var(--peach));
}

.drink-art::before {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid hsl(var(--foreground) / 0.24);
  border-radius: 50%;
  content: "";
  transform: translate(70px, -48px);
}

.drink-art::after {
  position: absolute;
  bottom: 14px;
  left: 22px;
  width: 54px;
  height: 9px;
  border-top: 2px solid hsl(var(--foreground) / 0.6);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.card-sage .drink-art {
  background: hsl(var(--sage-light));
}

.card-gold .drink-art {
  background: hsl(var(--butter));
}

.card-blue .drink-art {
  background: hsl(var(--blue));
}

.card-lilac .drink-art {
  background: hsl(var(--lilac));
}

.card-cream .drink-art {
  background: hsl(var(--surface-strong));
}

.drink-art svg {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 140px;
  overflow: visible;
  transition: transform 240ms ease;
}

.menu-card:hover .drink-art svg {
  transform: rotate(2deg) scale(1.035);
}

.art-number {
  position: absolute;
  top: 17px;
  left: 19px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.drink-shadow {
  fill: hsl(var(--foreground) / 0.15);
}

.mug-body,
.mug-handle,
.glass-body,
.cold-glass,
.shaker-glass {
  fill: hsl(var(--surface));
  stroke: hsl(var(--foreground));
  stroke-linejoin: round;
  stroke-width: 4;
}

.mug-handle {
  fill: none;
}

.drink-top,
.drink-fill,
.cold-fill,
.shaker-fill,
.coffee-layer {
  fill: hsl(var(--primary));
  stroke: hsl(var(--foreground));
  stroke-width: 3;
}

.drink-top.dark,
.cold-fill,
.shaker-fill,
.coffee-layer {
  fill: hsl(var(--primary-dark));
}

.milk-fill {
  fill: hsl(var(--surface));
  stroke: hsl(var(--foreground));
  stroke-width: 3;
}

.latte-line,
.honey-line,
.orange-peel,
.steam-line,
.cream,
.straw,
.spark-line {
  fill: none;
  stroke: hsl(var(--foreground));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.latte-line,
.orange-peel {
  fill: hsl(var(--butter));
}

.honey-line {
  stroke: hsl(var(--butter));
}

.cream {
  fill: hsl(var(--surface));
  stroke-width: 3;
}

.straw {
  stroke: hsl(var(--primary));
  stroke-width: 6;
}

.ice path {
  fill: hsl(var(--blue));
  stroke: hsl(var(--foreground));
  stroke-width: 2.5;
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 25px 21px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: hsl(var(--muted-foreground));
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-content h3 {
  margin: 12px 0 7px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.card-content > p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.86rem;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.card-footer strong {
  color: hsl(var(--primary-dark));
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.card-footer span {
  color: hsl(var(--muted-foreground));
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 64px;
  padding: 70px max(48px, calc((100vw - 1280px) / 2));
  background: hsl(var(--butter));
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}

.footer-details span,
.footer-details strong {
  display: block;
}

.footer-details span {
  margin-bottom: 6px;
  color: hsl(var(--primary-dark));
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-details strong {
  font-size: 0.9rem;
  line-height: 1.55;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid hsl(var(--foreground));
  font-weight: 700;
  text-decoration: none;
}

.back-to-top span {
  color: hsl(var(--primary));
}

.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;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1050px) {
  .site-header,
  .hero {
    width: min(100% - 64px, 960px);
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 24px;
  }

  .hero-art {
    width: min(100%, 470px);
  }

  .art-sticker {
    right: -5px;
    width: 108px;
    height: 108px;
  }

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

  .menu-heading {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }

  .site-footer {
    grid-template-columns: 1fr 1.2fr;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 40px);
    min-height: 78px;
  }

  .nav-links {
    gap: 20px;
  }

  .header-location {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 64px 0 72px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(3rem, 10vw, 4.15rem);
  }

  .hero-art {
    width: min(100%, 520px);
    justify-self: center;
  }

  .menu-section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .menu-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-heading h2 br {
    display: none;
  }

  .menu-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 570px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .brand {
    gap: 7px;
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  .hero {
    width: calc(100% - 32px);
    padding-top: 48px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.78rem, 13.2vw, 3.45rem);
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 27px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 28px;
  }

  .hero-art {
    margin-top: 16px;
  }

  .doodle-spark,
  .doodle-loop {
    display: none;
  }

  .art-sticker {
    right: -2px;
    bottom: 8%;
    width: 92px;
    height: 92px;
    padding: 13px;
    box-shadow: 4px 5px 0 hsl(var(--foreground));
  }

  .art-sticker strong {
    font-size: 0.85rem;
  }

  .menu-section {
    padding: 72px 16px;
  }

  .menu-heading,
  .menu-toolbar {
    padding-right: 4px;
    padding-left: 4px;
  }

  .menu-heading h2 {
    font-size: 2.75rem;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 auto;
    padding: 0 13px;
    font-size: 0.73rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card {
    min-height: 0;
  }

  .drink-art {
    min-height: 175px;
  }

  .card-content {
    min-height: 205px;
    padding: 21px;
  }

  .footer-details {
    gap: 24px;
  }
}

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

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

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