:root {
  --ink: #431636;
  --ink-soft: #6b3558;
  --cream: #fff8ed;
  --paper: #fffcf7;
  --pink: #f79bb6;
  --pink-soft: #ffd7e1;
  --lavender: #cbb0e5;
  --lavender-soft: #eee2fa;
  --blue: #b8dce9;
  --mint: #b9d8cc;
  --yellow: #f8dc7d;
  --white: #ffffff;
  --border: rgba(67, 22, 54, 0.18);
  --shadow: 0 24px 60px rgba(82, 36, 72, 0.16);
  --radius-lg: 34px;
  --radius-md: 24px;
  --container: 1180px;
  --font-heading: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 17%, rgba(247, 155, 182, 0.25), transparent 24rem),
    radial-gradient(circle at 96% 10%, rgba(203, 176, 229, 0.3), transparent 25rem),
    var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(67, 22, 54, 0.08) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), var(--container));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(67, 22, 54, 0.14);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 10px 30px rgba(74, 35, 64, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand {
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(67, 22, 54, 0.15);
}

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

.main-nav a {
  min-height: 44px;
  padding: 9px 15px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease-out;
}

.main-nav a:hover {
  background: var(--pink-soft);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 200ms ease-out,
    background-color 200ms ease-out,
    border-color 200ms ease-out,
    box-shadow 200ms ease-out,
    transform 200ms ease-out;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.photo-label svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 50px;
  padding: 11px 17px;
  border-radius: 15px;
  font-size: 14px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(67, 22, 54, 0.2);
}

.button-dark:hover {
  background: #572047;
}

.button-primary {
  color: var(--ink);
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(190, 91, 127, 0.24);
}

.button-primary:hover {
  background: #ffadc4;
  box-shadow: 0 12px 28px rgba(190, 91, 127, 0.3);
}

.button-ghost {
  border-color: rgba(67, 22, 54, 0.24);
  background: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-cream {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(42, 10, 33, 0.2);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  width: min(calc(100% - 40px), var(--container));
  min-height: 720px;
  margin: 0 auto;
  padding: 76px 0 84px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(67, 22, 54, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(67, 22, 54, 0.07);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a26b8d;
  box-shadow: 0 0 0 4px rgba(162, 107, 141, 0.14);
}

.status-pill.is-open .status-dot {
  background: #2d8c61;
  box-shadow: 0 0 0 4px rgba(45, 140, 97, 0.15);
}

.hero h1,
.section-heading h2,
.visit-content h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(58px, 7.7vw, 102px);
}

.hero h1 span,
.section-heading h2 span,
.visit-content h2 span,
.final-cta h2 span {
  color: #9c4775;
}

.hero-intro {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-notes svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 530px;
}

.art-backdrop {
  position: absolute;
  width: 94%;
  aspect-ratio: 1;
  border: 2px solid rgba(67, 22, 54, 0.12);
  border-radius: 42% 58% 62% 38% / 49% 42% 58% 51%;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.85) 0 5%, transparent 5.5%),
    linear-gradient(145deg, var(--blue), var(--lavender-soft) 47%, var(--pink-soft));
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(82%, 440px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(67, 22, 54, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 50px rgba(67, 22, 54, 0.2);
  transform: rotate(-3deg);
}

.logo-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.est-badge,
.scoop-badge {
  position: absolute;
  z-index: 3;
  border: 2px solid var(--ink);
  box-shadow: 5px 7px 0 var(--ink);
}

.est-badge {
  top: 2%;
  right: 0;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transform: rotate(8deg);
}

.est-badge strong {
  display: block;
  margin-top: -16px;
  font-family: var(--font-heading);
  font-size: 26px;
}

.scoop-badge {
  right: 4%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(-4deg);
}

.scoop-badge svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.sprinkle {
  position: absolute;
  z-index: 4;
  width: 38px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.sprinkle-one {
  top: 15%;
  left: -1%;
  background: var(--pink);
  transform: rotate(38deg);
}

.sprinkle-two {
  right: -2%;
  bottom: 28%;
  width: 28px;
  background: var(--mint);
  transform: rotate(-32deg);
}

.sprinkle-three {
  bottom: 5%;
  left: 10%;
  width: 32px;
  background: var(--lavender);
  transform: rotate(12deg);
}

.flavour-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 30px);
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 18px 20px;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  text-align: center;
  list-style: none;
}

.flavour-strip li {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 30px);
}

.flavour-strip li:not(:last-child)::after {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.section {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 116px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.58fr);
  gap: 18px 64px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #8a3c69;
}

.section-heading h2,
.visit-content h2,
.final-cta h2 {
  font-size: clamp(43px, 5.3vw, 70px);
}

.section-heading > p:last-child,
.visit-content > p,
.final-cta > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(75, 29, 62, 0.08);
}

.menu-card::after {
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.menu-card-large {
  grid-row: span 3;
  padding-bottom: 28px;
  background: var(--paper);
}

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

.menu-card-blue {
  background: #d8edf3;
}

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

.menu-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.menu-kicker {
  margin: 0 0 4px;
  color: #8a3c69;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card h3,
.hours h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.menu-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--yellow);
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transform: rotate(4deg);
}

.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(67, 22, 54, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.menu-list {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px dashed rgba(67, 22, 54, 0.22);
}

.menu-item > div {
  min-width: 0;
}

.menu-item strong,
.menu-item span {
  display: block;
}

.menu-item strong {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.25;
}

.menu-item > div span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 14px;
}

.menu-item .price {
  flex: 0 0 auto;
  font-weight: 800;
}

.price-guide {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.price-guide span {
  display: grid;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 13px;
  background: var(--lavender-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.price-guide strong {
  font-size: 16px;
}

.menu-card-copy {
  position: relative;
  z-index: 1;
  margin: 16px 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.simple-prices {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.simple-prices span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.simple-prices-stacked {
  grid-template-columns: 1fr;
  margin-top: 20px;
}

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

.menu-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding-top: 92px;
}

.visit-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visit-gallery::before {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
  width: 45%;
  height: 48%;
  border-radius: 30px;
  background: var(--lavender);
  content: "";
  transform: rotate(-3deg);
}

.visit-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--pink-soft);
  box-shadow: 5px 6px 0 var(--ink);
}

.visit-shot-main {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  box-shadow: 9px 10px 0 var(--ink);
}

.visit-shot-small {
  aspect-ratio: 3 / 2;
}

.visit-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-shot-main img {
  object-position: 50% center;
}

.photo-label {
  position: absolute;
  right: -12px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 14px;
  font-weight: 800;
  transform: rotate(-2deg);
}

.photo-label svg {
  width: 22px;
  height: 22px;
}

.visit-content .eyebrow {
  color: #8a3c69;
}

.visit-content h2 {
  margin-bottom: 24px;
}

.visit-content > p {
  margin-bottom: 26px;
}

.visit-content address {
  display: grid;
  gap: 3px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--pink);
  border-radius: 0 15px 15px 0;
  background: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.visit-content address span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-content address strong {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
}

.hours {
  margin: 0 0 26px;
}

.hours h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(67, 22, 54, 0.22);
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.hours dd {
  font-weight: 800;
  white-space: nowrap;
}

.final-cta {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 40px), var(--container));
  margin-bottom: 48px;
  padding: clamp(70px, 9vw, 112px) 24px;
  border-radius: 40px;
  color: var(--cream);
  background:
    radial-gradient(circle at 13% 23%, rgba(247, 155, 182, 0.26), transparent 19rem),
    radial-gradient(circle at 88% 78%, rgba(203, 176, 229, 0.25), transparent 19rem),
    var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--pink);
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 span {
  color: var(--pink);
}

.final-cta > p:not(.eyebrow) {
  margin: 22px auto 28px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 18px;
}

.cta-sprinkles i {
  position: absolute;
  width: 30px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  transform: rotate(30deg);
}

.cta-sprinkles i:nth-child(1) { top: 18%; left: 8%; }
.cta-sprinkles i:nth-child(2) { top: 30%; right: 9%; background: var(--yellow); transform: rotate(-38deg); }
.cta-sprinkles i:nth-child(3) { bottom: 17%; left: 14%; background: var(--blue); transform: rotate(-17deg); }
.cta-sprinkles i:nth-child(4) { right: 18%; bottom: 13%; background: var(--mint); transform: rotate(22deg); }
.cta-sprinkles i:nth-child(5) { top: 12%; left: 31%; width: 17px; background: var(--lavender); transform: rotate(78deg); }
.cta-sprinkles i:nth-child(6) { right: 32%; bottom: 7%; width: 18px; background: var(--pink); transform: rotate(-75deg); }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 20px 0 38px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand {
  gap: 10px;
}

.footer-brand span {
  display: grid;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.15;
}

.footer-brand small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

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

.hero .reveal {
  animation: rise-in 650ms cubic-bezier(0.2, 0.75, 0.28, 1) both;
}

.hero .reveal-delay {
  animation-delay: 120ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.88fr;
    min-height: 650px;
  }

  .hero-art {
    min-height: 440px;
  }

  .est-badge {
    width: 88px;
    height: 88px;
  }

  .est-badge strong {
    font-size: 22px;
  }

  .scoop-badge {
    right: -2%;
  }

  .visit-section {
    grid-template-columns: 1fr 0.82fr;
    gap: 44px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p:first-of-type {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .status-pill,
  .hero-actions,
  .hero-notes {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-art {
    width: min(100%, 560px);
    min-height: 540px;
    margin: 0 auto;
  }

  .flavour-strip {
    flex-wrap: wrap;
  }

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

  .section-heading h2,
  .section-heading > p:last-child {
    max-width: 680px;
  }

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

  .menu-card-large {
    grid-row: auto;
  }

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

  .visit-gallery {
    order: 2;
  }

  .visit-content {
    order: 1;
  }

}

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

  html {
    scroll-padding-top: 94px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 64px;
    margin-top: 8px;
    border-radius: 18px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .button-small {
    min-height: 46px;
    padding: 10px 13px;
  }

  .button-small svg {
    display: none;
  }

  .hero,
  .section,
  .final-cta,
  footer {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 68px;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 72px);
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .hero-notes {
    gap: 9px 13px;
    font-size: 12px;
  }

  .hero-art {
    min-height: 360px;
  }

  .art-backdrop {
    width: 92%;
  }

  .logo-card {
    width: 78%;
    padding: 6px;
  }

  .est-badge {
    top: 0;
    right: 1%;
    width: 74px;
    height: 74px;
    font-size: 9px;
    box-shadow: 3px 4px 0 var(--ink);
  }

  .est-badge strong {
    margin-top: -12px;
    font-size: 18px;
  }

  .scoop-badge {
    right: 1%;
    bottom: 0;
    padding: 7px 10px;
    box-shadow: 3px 4px 0 var(--ink);
    font-size: 11px;
  }

  .scoop-badge svg {
    width: 32px;
    height: 32px;
  }

  .sprinkle {
    width: 28px;
    height: 9px;
  }

  .flavour-strip {
    gap: 9px 14px;
    min-height: 70px;
    font-size: 14px;
  }

  .flavour-strip li:not(:last-child)::after {
    width: 6px;
    height: 6px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .visit-content h2,
  .final-cta h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .menu-card {
    padding: 24px 20px;
    border-radius: 21px;
  }

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

  .menu-item {
    align-items: flex-start;
    gap: 12px;
  }

  .menu-item strong {
    font-size: 16px;
  }

  .menu-item > div span {
    font-size: 12px;
  }

  .menu-item .price {
    font-size: 13px;
  }

  .price-guide {
    grid-template-columns: 1fr;
  }

  .price-guide span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    text-align: left;
  }

  .simple-prices,
  .specialty-prices {
    grid-template-columns: 1fr;
  }

  .visit-section {
    padding-top: 66px;
  }

  .visit-gallery {
    gap: 8px;
  }

  .visit-gallery::before {
    top: -12px;
    left: -8px;
  }

  .visit-shot {
    border-radius: 16px;
    box-shadow: 3px 4px 0 var(--ink);
  }

  .visit-shot-main {
    border-radius: 24px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .photo-label {
    right: -2px;
    bottom: 16px;
    min-height: 42px;
    padding: 8px 11px;
    box-shadow: 3px 4px 0 var(--ink);
    font-size: 12px;
  }

  .hours dl div {
    gap: 10px;
  }

  .hours dt,
  .hours dd {
    font-size: 13px;
  }

  .final-cta {
    padding: 74px 20px;
    border-radius: 28px;
  }

  .cta-sprinkles i:nth-child(5),
  .cta-sprinkles i:nth-child(6) {
    display: none;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .hero .reveal {
    animation: none;
  }
}
