:root {
  --cream: #faf6f0;
  --blush: #f7e8ef;
  --lavender: #e8e4f5;
  --ink: #2c2420;
  --ink-soft: rgba(44, 36, 32, 0.72);
  --accent: #c17b6e;
  --donut-size: min(54vw, 400px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --slide-count: 4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-height: calc(var(--slide-count) * 100vh);
}

body.is-push-stage {
  overscroll-behavior-y: contain;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.ambient__orb--1 {
  width: 45vmax;
  height: 45vmax;
  background: #f9d5e5;
  top: -10%;
  left: -15%;
}

.ambient__orb--2 {
  width: 40vmax;
  height: 40vmax;
  background: #d4e4ff;
  bottom: 10%;
  right: -20%;
}

.ambient__orb--3 {
  width: 35vmax;
  height: 35vmax;
  background: #ffe9c7;
  top: 40%;
  left: 30%;
  opacity: 0.4;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.35rem 1.75rem;
  padding-top: calc(1.35rem + env(safe-area-inset-top));
  padding-left: calc(1.75rem + env(safe-area-inset-left));
  padding-right: calc(1.75rem + env(safe-area-inset-right));
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 5.5vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  pointer-events: none;
  background-color: transparent;
  overflow: visible;
  transition:
    background-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

/* Solid bar only on inner pages (home/index stays transparent over the hero). */
.top-bar--scrolled {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.07);
}

body.page--inner .top-bar--open,
body.page--home .top-bar--open {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.07);
}

.top-bar__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  pointer-events: auto;
  overflow: visible;
}

.top-bar__nav-cluster {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  overflow: visible;
}

/* Tiny “click me” — JS toggles .nav-hint--visible when the bar goes solid (see nav.js). */
.nav-hint {
  display: none;
  pointer-events: none;
  white-space: nowrap;
}

.nav-hint__label {
  display: inline-block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.2rem 0.5rem 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 123, 110, 0.35);
  box-shadow: 0 3px 14px rgba(44, 36, 32, 0.12);
}

@media (max-width: 899px) {
  /* Fixed under the header so nothing clips it; sits near the donut control */
  .nav-hint.nav-hint--visible {
    display: block;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 4.65rem);
    right: max(1rem, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 50;
    transform: none;
  }

  .nav-hint.nav-hint--visible .nav-hint__label {
    animation: nav-hint-pop 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
  }

  /* Full-viewport nav must not steal flex space from the wordmark row */
  .top-bar > .site-nav {
    flex: 0 0 0;
    min-width: 0;
    min-height: 0;
    overflow: visible;
  }
}

@keyframes nav-hint-pop {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 900px) {
  .nav-hint {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-hint.nav-hint--visible .nav-hint__label {
    animation: none;
    opacity: 1;
  }
}

.top-bar__logo {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.top-bar__logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.top-bar__mark {
  position: relative;
  font-weight: 600;
}

.top-bar__wordmark {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}

.top-bar .love-with-donut__visual {
  letter-spacing: -0.035em;
}

.top-bar .love-o-donut {
  width: 0.76em;
  height: 0.76em;
  margin: 0 -0.05em;
  vertical-align: -0.12em;
}

.top-bar__amp {
  font-weight: 600;
  opacity: 0.92;
}

.top-bar__glow.h1-glow {
  animation-name: top-bar-glow-pulse;
}

@keyframes top-bar-glow-pulse {
  0%,
  100% {
    text-shadow:
      0 0 4px rgba(248, 184, 217, 0.38),
      0 0 10px rgba(240, 171, 207, 0.28),
      0 0 18px rgba(228, 146, 186, 0.16);
  }
  50% {
    text-shadow:
      0 0 7px rgba(252, 210, 230, 0.62),
      0 0 16px rgba(240, 171, 207, 0.48),
      0 0 28px rgba(228, 146, 186, 0.32),
      0 0 38px rgba(216, 120, 165, 0.16);
  }
}

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

.backdrop-slide {
  position: absolute;
  inset: 0;
  will-change: opacity;
}

.backdrop-slide--hero {
  background: transparent;
}

.backdrop-slide--story {
  background: linear-gradient(180deg, transparent 0%, var(--blush) 18%, var(--blush) 100%);
}

.backdrop-slide--reviews {
  background: linear-gradient(180deg, var(--blush) 0%, #f0e8f8 50%, var(--lavender) 100%);
}

.backdrop-slide--visit {
  background: linear-gradient(180deg, var(--lavender) 0%, var(--cream) 55%, var(--cream) 100%);
}

.donut-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.donut {
  position: absolute;
  top: 50%;
  left: var(--donut-x, 50%);
  width: var(--donut-size);
  height: var(--donut-size);
  margin-top: calc(var(--donut-size) / -2);
  margin-left: calc(var(--donut-size) / -2);
  transform: rotate(var(--donut-rot, 0deg));
  will-change: transform, left;
  filter: drop-shadow(0 18px 28px rgba(44, 36, 32, 0.2));
}

.donut__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.stage-viewport {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
}

.stage-stack {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.85rem 1.75rem 4rem;
  will-change: transform, opacity;
}

.panel--hero {
  background: transparent;
}

/* Hero only: wide purple glow on “light” is clipped by .slide overflow-x otherwise. */
.slide.panel--hero {
  overflow-x: visible;
}

.panel--hero .panel__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 36rem;
  text-align: center;
}

.panel--hero h1 {
  line-height: 1.2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.love-with-donut {
  position: relative;
  display: inline;
}

.love-with-donut__visual {
  display: inline;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.04em;
}

.love-o-donut {
  display: inline-block;
  width: 0.74em;
  height: 0.74em;
  margin: 0 -0.06em;
  vertical-align: -0.12em;
  filter: drop-shadow(0 1px 2px rgba(44, 36, 32, 0.16));
}

.panel--story,
.panel--reviews,
.panel--visit {
  background: transparent;
}

.panel__inner {
  max-width: 34rem;
  width: 100%;
}

.panel__inner--wide {
  max-width: 56rem;
}

.reviews-intro {
  margin-bottom: 1.75rem !important;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 1.75rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(44, 36, 32, 0.06);
}

.review-card__quote {
  margin: 0;
}

.review-card__quote p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  font-style: italic;
  color: var(--ink);
}

.review-card__cite {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reviews-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 123, 110, 0.45);
  padding-bottom: 2px;
  display: inline-block;
}

.reviews-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.panel__inner p a:not([class]) {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(193, 123, 110, 0.45);
  text-underline-offset: 0.18em;
}

.panel__inner p a:not([class]):hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.menu-board__note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(193, 123, 110, 0.45);
  text-underline-offset: 0.18em;
}

.menu-board__note a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.page-section p a:not(.cta) {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(193, 123, 110, 0.45);
  text-underline-offset: 0.18em;
}

.page-section p a:not(.cta):hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.hours {
  padding: 1rem 0 0.25rem;
  margin-bottom: 1rem !important;
  border-top: 1px solid rgba(44, 36, 32, 0.1);
  border-bottom: 1px solid rgba(44, 36, 32, 0.1);
}

.hours__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.hours__note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.cta--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  background: var(--ink);
  color: var(--cream) !important;
  border-bottom: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0;
}

.cta--button:hover {
  color: var(--cream) !important;
  background: #3d332e;
}

/* Playful “coming soon” chip (replaces online order link until Square is live) */
.cta-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  padding: 0.65rem 1.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(
    125deg,
    #fff0f7 0%,
    #f3e8ff 38%,
    #fff4e0 72%,
    #ffe8f4 100%
  );
  background-size: 220% 220%;
  animation: cta-soon-gradient 9s ease-in-out infinite;
  border: 2px dashed rgba(193, 123, 110, 0.55);
  box-shadow:
    0 8px 28px rgba(232, 155, 196, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.65) inset;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.25;
  color: var(--ink);
  transform: rotate(-1.25deg);
  position: relative;
  isolation: isolate;
}

.cta-soon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 22%, rgba(255, 230, 150, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(167, 230, 200, 0.4) 0%, transparent 38%);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}

.cta-soon__main {
  letter-spacing: -0.02em;
}

.cta-soon__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3d2f2a 0%, var(--ink) 100%);
  color: #fff8f2;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(2deg);
  box-shadow: 0 3px 10px rgba(44, 36, 32, 0.2);
  animation: cta-soon-badge 2.8s ease-in-out infinite;
}

.cta-soon__spark {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
  animation: cta-soon-spark 2.2s ease-in-out infinite;
}

.cta-soon__spark:last-of-type {
  animation-delay: 0.5s;
}

@keyframes cta-soon-gradient {
  0%,
  100% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
}

@keyframes cta-soon-badge {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-2px);
  }
}

@keyframes cta-soon-spark {
  0%,
  100% {
    transform: scale(1) rotate(-6deg);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12) rotate(6deg);
    opacity: 1;
  }
}

.cta--ghost {
  border-bottom-color: rgba(44, 36, 32, 0.25);
  margin-top: 0;
}

.site-footer-inline {
  margin: 2.5rem 0 0 !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
  font-size: 0.85rem !important;
  text-align: center;
  color: var(--ink-soft);
}

.site-credit {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--ink-soft);
}

.site-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(44, 36, 32, 0.22);
  text-underline-offset: 0.15em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-credit a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 3.35rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.h1-glow {
  display: inline-block;
  color: var(--ink);
  animation: h1-glow-pink-pulse 2.8s ease-in-out infinite;
}

@keyframes h1-glow-pink-pulse {
  0%,
  100% {
    text-shadow:
      0 0 6px rgba(248, 184, 217, 0.42),
      0 0 14px rgba(240, 171, 207, 0.32),
      0 0 26px rgba(228, 146, 186, 0.2);
  }
  50% {
    text-shadow:
      0 0 10px rgba(252, 210, 230, 0.72),
      0 0 22px rgba(240, 171, 207, 0.58),
      0 0 38px rgba(228, 146, 186, 0.4),
      0 0 52px rgba(216, 120, 165, 0.22);
  }
}

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lede,
.panel p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.scroll-hint__line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  animation: pulse-line 2.4s ease-in-out infinite;
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(44, 36, 32, 0.08);
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 123, 110, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.fineprint {
  font-size: 0.85rem !important;
  opacity: 0.65;
  margin-top: 1.5rem !important;
}

@media (prefers-reduced-motion: reduce) {
  body {
    min-height: 0;
  }

  body.is-push-stage {
    overscroll-behavior-y: auto;
  }

  .stage-viewport {
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 0;
  }

  .stage-stack {
    height: auto;
  }

  .slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .slide .panel__inner {
    transform: none !important;
    opacity: 1 !important;
  }

  .backdrop-stack {
    display: none;
  }

  .panel--story {
    background: linear-gradient(180deg, transparent 0%, var(--blush) 18%, var(--blush) 100%);
  }

  .panel--reviews {
    background: linear-gradient(180deg, var(--blush) 0%, #f0e8f8 50%, var(--lavender) 100%);
  }

  .panel--visit {
    background: linear-gradient(180deg, var(--lavender) 0%, var(--cream) 55%, var(--cream) 100%);
  }

  .donut-stage {
    display: none;
  }

  .scroll-hint__line {
    animation: none;
  }

  .h1-glow {
    animation: none;
    text-shadow:
      0 0 8px rgba(248, 184, 217, 0.48),
      0 0 18px rgba(240, 171, 207, 0.36),
      0 0 30px rgba(228, 146, 186, 0.22);
  }

  .top-bar__glow.h1-glow {
    animation: none;
    text-shadow:
      0 0 5px rgba(248, 184, 217, 0.42),
      0 0 12px rgba(240, 171, 207, 0.32),
      0 0 20px rgba(228, 146, 186, 0.18);
  }

  .ambient__orb {
    transform: none !important;
  }
}

/* Home index: native stacked sections on small viewports; fixed donut spins with scroll */
@media (max-width: 899px) {
  /* Let the root scroll chain behave like a normal page (helps iOS swipe momentum). */
  html {
    overscroll-behavior-y: auto;
  }

  body.is-mobile-stack {
    min-height: 0;
    overscroll-behavior-y: auto;
  }

  body.is-mobile-stack .stage-viewport {
    position: relative;
    inset: auto;
    z-index: 5;
    overflow: visible;
    height: auto;
    min-height: 0;
  }

  body.is-mobile-stack .stage-stack {
    height: auto;
  }

  body.is-mobile-stack .slide {
    position: relative;
    inset: auto;
    z-index: 3;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body.is-mobile-stack .slide.panel--hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* Above section ::before washes so copy stays sharp; no extra padding */
  body.is-mobile-stack .slide .panel__inner {
    position: relative;
    z-index: 1;
    transform: none !important;
    opacity: 1 !important;
  }

  body.is-mobile-stack .backdrop-stack {
    display: none;
  }

  /* Full-width gradients sit in ::before with a right-edge mask so the fixed donut shows through */
  body.is-mobile-stack .slide.panel--story,
  body.is-mobile-stack .slide.panel--reviews,
  body.is-mobile-stack .slide.panel--visit {
    background: transparent;
  }

  body.is-mobile-stack .slide.panel--story::before,
  body.is-mobile-stack .slide.panel--reviews::before,
  body.is-mobile-stack .slide.panel--visit::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 86%);
    mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 86%);
  }

  body.is-mobile-stack .slide.panel--story::before {
    background: linear-gradient(180deg, transparent 0%, var(--blush) 18%, var(--blush) 100%);
  }

  body.is-mobile-stack .slide.panel--reviews::before {
    background: linear-gradient(180deg, var(--blush) 0%, #f0e8f8 50%, var(--lavender) 100%);
  }

  body.is-mobile-stack .slide.panel--visit::before {
    background: linear-gradient(180deg, var(--lavender) 0%, var(--cream) 55%, var(--cream) 100%);
  }

  body.is-mobile-stack .donut-stage {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  body.is-mobile-stack .donut {
    will-change: transform;
  }
}

/* —— Site navigation (desktop + mobile “glaze drawer”) —— */
.nav-bun {
  position: relative;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: radial-gradient(circle at 32% 28%, #fff4e0 0%, #e8a86a 42%, #c97b3c 100%);
  box-shadow:
    0 4px 0 rgba(180, 110, 55, 0.35),
    0 8px 20px rgba(44, 36, 32, 0.18);
  transition: transform 0.35s var(--ease-out), box-shadow 0.25s ease;
}

.nav-bun:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 5px 0 rgba(180, 110, 55, 0.32),
    0 12px 24px rgba(44, 36, 32, 0.2);
}

.nav-bun:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 2px 0 rgba(180, 110, 55, 0.4),
    0 4px 12px rgba(44, 36, 32, 0.16);
}

.nav-bun:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-bun__face {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.nav-bun__icing {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffe8f4 0%, #f8b8d9 55%, #e89bc4 100%);
  box-shadow: inset 0 -2px 4px rgba(44, 36, 32, 0.08);
  transition: transform 0.45s var(--ease-out), opacity 0.35s ease;
}

.nav-bun__seed {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff59a;
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.12);
  transition: transform 0.45s var(--ease-out), opacity 0.35s ease;
}

.nav-bun__seed--1 {
  top: 28%;
  left: 62%;
  background: #fde68a;
}

.nav-bun__seed--2 {
  top: 48%;
  left: 24%;
  background: #a8e6cf;
}

.nav-bun__seed--3 {
  top: 58%;
  left: 58%;
  background: #c4b5fd;
}

.top-bar--open .nav-bun__icing {
  transform: scale(0.35) rotate(90deg);
  opacity: 0.85;
}

.top-bar--open .nav-bun__seed--1 {
  transform: translate(-6px, 10px) scale(1.15);
}

.top-bar--open .nav-bun__seed--2 {
  transform: translate(10px, -4px) scale(1.1);
}

.top-bar--open .nav-bun__seed--3 {
  transform: translate(-8px, -8px) scale(0.9);
}

.site-nav {
  pointer-events: auto;
}

.site-nav__scrim {
  display: none;
}

.site-nav__tagline {
  margin: 0 0 1.25rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav__link {
  display: block;
  padding: 0.55rem 0.15rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s ease, transform 0.35s var(--ease-out);
}

.site-nav__link:hover {
  color: var(--accent);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-nav__link[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.site-nav__social {
  flex-shrink: 0;
}

.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icons--footer {
  margin: 0 0 1rem;
  justify-content: center;
  gap: 0.75rem;
}

.social-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(44, 36, 32, 0.1);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}

.social-icons__link:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 22px rgba(44, 36, 32, 0.14);
}

.social-icons__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.social-icons__img {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}

@media (max-width: 899px) {
  .top-bar__shell {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-bun {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.4s var(--ease-out),
      visibility 0.4s step-end;
  }

  .site-nav--open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition:
      opacity 0.4s var(--ease-out),
      visibility 0s step-start;
  }

  .site-nav__scrim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      145deg,
      rgba(250, 246, 240, 0.12) 0%,
      rgba(247, 232, 239, 0.55) 35%,
      rgba(232, 228, 245, 0.5) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .site-nav__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding: calc(6.35rem + env(safe-area-inset-top)) 1.75rem calc(2.5rem + env(safe-area-inset-bottom));
    padding-left: calc(1.75rem + env(safe-area-inset-left));
    padding-right: calc(1.75rem + env(safe-area-inset-right));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.72) 28%, rgba(255, 255, 255, 0.88) 100%);
    border-radius: 1.75rem 1.75rem 0 0;
    box-shadow: 0 -16px 48px rgba(44, 36, 32, 0.12);
    transform: translateY(110%);
    transition: transform 0.55s var(--ease-out);
  }

  .site-nav--open .site-nav__panel {
    transform: translateY(0);
  }

  .site-nav__link {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  .site-nav--open .site-nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav--open .site-nav__list li:nth-child(1) .site-nav__link {
    transition-delay: 0.05s;
  }

  .site-nav--open .site-nav__list li:nth-child(2) .site-nav__link {
    transition-delay: 0.1s;
  }

  .site-nav--open .site-nav__list li:nth-child(3) .site-nav__link {
    transition-delay: 0.15s;
  }

  .site-nav--open .site-nav__list li:nth-child(4) .site-nav__link {
    transition-delay: 0.2s;
  }

  .site-nav--open .site-nav__list li:nth-child(5) .site-nav__link {
    transition-delay: 0.25s;
  }

  .site-nav__social {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(44, 36, 32, 0.1);
  }

  .site-nav__social .social-icons__link {
    width: 2.85rem;
    height: 2.85rem;
  }

  .site-nav__social .social-icons__img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (min-width: 900px) {
  .top-bar__shell {
    flex: 0 0 auto;
  }

  .nav-bun {
    display: none;
  }

  .site-nav {
    position: static;
    flex: 0 0 auto;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0;
    padding: 0;
  }

  .site-nav__tagline {
    display: none;
  }

  .site-nav__panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1rem;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    transform: none !important;
  }

  .site-nav__social {
    margin: 0;
    padding: 0;
    border: none;
  }

  .site-nav__social .social-icons__link {
    width: 2.2rem;
    height: 2.2rem;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 10px rgba(44, 36, 32, 0.08);
  }

  .site-nav__social .social-icons__img {
    width: 1.12rem;
    height: 1.12rem;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.35rem 1.35rem;
  }

  .site-nav__link {
    padding: 0.2rem 0;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 500;
    opacity: 1 !important;
    transform: none !important;
    transition: color 0.2s ease;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Inner pages: readable document flow */
body.page--inner {
  min-height: 100vh;
  min-height: 100dvh;
}

.page-main {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(6.6rem + env(safe-area-inset-top)) 1.75rem 3rem;
  padding-left: calc(1.75rem + env(safe-area-inset-left));
  padding-right: calc(1.75rem + env(safe-area-inset-right));
}

.page-main--wide {
  max-width: 56rem;
}

.page-hero {
  margin-bottom: 2.25rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.page-hero .lede {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.page-section {
  margin: 2.5rem 0 0;
  padding: 0;
}

.page-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
}

.page-section p,
.page-section li {
  font-size: 1.02rem;
  line-height: 1.6;
}

.page-section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.menu-board {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .menu-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}

.menu-board__section {
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(44, 36, 32, 0.06);
}

.menu-board__section h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.menu-board__section .menu-board__note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(44, 36, 32, 0.08);
  font-size: 0.98rem;
  line-height: 1.45;
}

.menu-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-list__name {
  font-weight: 500;
  color: var(--ink);
}

.menu-list__detail {
  flex: 1 1 100%;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0.15rem 0 0;
}

.menu-list__price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--accent);
}

.menu-disclaimer {
  margin: 2rem 0 0;
  padding: 1rem 1.1rem;
  background: rgba(247, 232, 239, 0.45);
  border-radius: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.site-footer-page {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
  text-align: center;
}

.site-footer-page p {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .top-bar {
    transition: none;
  }

  .cta-soon,
  .cta-soon__badge,
  .cta-soon__spark {
    animation: none !important;
  }

  .cta-soon {
    transform: none;
    background-position: 0 0;
    background-size: 100% 100%;
  }

  .cta-soon__badge {
    transform: none;
  }

  .nav-bun,
  .nav-bun__icing,
  .nav-bun__seed,
  .site-nav,
  .site-nav__panel,
  .site-nav__link {
    transition: none !important;
  }

  .site-nav__link {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-nav--open .site-nav__panel {
    transform: none !important;
  }
}
