:root {
  --bg: #0b0b0b;
  --bg-soft: #15110d;
  --card: rgba(255,255,255,0.06);
  --gold: #d89b52;
  --gold-light: #ffbe5c;
  --cream: #fff2df;
  --caramel: #c68642;
  --brown: #4a2414;
  --text: #ffffff;
  --muted: #d8c2a3;
  --line: rgba(216, 155, 82, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(216, 155, 82, 0.18), transparent 22rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 46%, #110c08 100%);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.brand-intro-active,
html.brand-intro-active body {
  overflow: hidden;
}

.brand-intro[hidden] {
  display: none;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  opacity: 1;
  transition: opacity 220ms ease-out;
}

.brand-intro.is-finishing {
  opacity: 0;
}

.brand-intro__visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.brand-intro__video,
.brand-intro__fallback {
  width: min(100vw, 100vh);
  height: min(100vw, 100vh);
  object-fit: contain;
}

.brand-intro__fallback {
  display: block;
}

.brand-intro__fallback[hidden],
.brand-intro__video[hidden] {
  display: none;
}

.brand-intro__skip {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 3;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 232, 140, 0.42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(12, 8, 5, 0.5);
  backdrop-filter: blur(12px);
  font: 700 0.72rem/1 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.brand-intro__skip:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

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

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

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

.page-shell {
  position: relative;
  isolation: isolate;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 11, 11, 0.86), rgba(11, 11, 11, 0.94)),
    url("/assets/images/bg-cinnamon-dark.jpg") top center / 760px auto;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.42);
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 242, 223, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(216, 155, 82, 0.28) 0 1px, transparent 1.7px);
  background-size: 86px 86px, 142px 142px;
  background-position: 12px 18px, 40px 70px;
  opacity: 0.16;
  z-index: 0;
}

.page-shell > * {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 8px 16px;
  background: rgba(7, 7, 7, 0.68);
  border-bottom: 1px solid rgba(216, 155, 82, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.brand {
  display: grid;
  place-items: center;
  width: 160px;
  height: 80px;
}

.brand img {
  width: auto;
  height: 80px;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(216, 155, 82, 0.24));
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  min-height: 36px;
  padding: 0 14px;
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 22px rgba(216, 155, 82, 0.28);
}

.header-cta::after,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -70%;
  width: 48%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(18deg);
  animation: cta-shine 5.8s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 646px;
  padding: 86px 20px 34px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0b0b0b;
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.04);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 6800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 50%, rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 526px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.hero-content.reveal {
  transform: translateY(24px) scale(0.985);
  transition-duration: 760ms;
}

.hero h1,
.section-heading h2,
.party-banner h2,
.final-cta h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 16vw, 4.7rem);
  line-height: 0.9;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.78);
}

.hero p {
  max-width: 29ch;
  margin: 18px 0 0;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.55;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0;
}

.hero-carousel-dots {
  display: flex;
  min-height: 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.hero-carousel-dots:empty {
  display: none;
}

.hero-carousel-dot {
  appearance: none;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 242, 223, 0.44);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-carousel-dot.is-active {
  width: 24px;
  background: var(--gold-light);
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.btn {
  padding: 0 18px;
}

.btn-primary {
  color: #1a1008;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 28px rgba(216, 155, 82, 0.34);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.section-pad {
  padding: 34px 16px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.78rem, 8vw, 2.45rem);
  line-height: 1;
}

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

.action-card {
  position: relative;
  display: flex;
  min-height: 168px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0);
}

.action-card.tall {
  min-height: 186px;
}

.action-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 640ms cubic-bezier(.2, .9, .2, 1), filter 640ms ease;
}

.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 20% 18%, rgba(255, 190, 92, 0.2), transparent 42%);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 155, 82, 0.5);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.54);
}

.card-icon img {
  width: 20px;
  height: 20px;
}

.card-copy {
  display: grid;
  gap: 5px;
  padding-right: 20px;
}

.card-copy strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.05;
}

.card-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #1a1008;
  background: var(--gold-light);
  font-weight: 800;
  line-height: 1;
  transform: rotate(45deg);
  transition: transform 240ms ease, background 240ms ease;
}

.secondary-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.secondary-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(216, 155, 82, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
}

.secondary-links img {
  width: 20px;
  height: 20px;
}

.flavors {
  padding-right: 0;
}

.rail-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: 12px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-hint::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  animation: rail-nudge 1.8s ease-in-out infinite;
}

.flavor-rail {
  display: grid;
  grid-auto-columns: minmax(178px, 58%);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 16px 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, #000 0 calc(100% - 34px), transparent 100%);
}

.flavor-rail::-webkit-scrollbar {
  display: none;
}

.flavor-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  border: 1px solid rgba(216, 155, 82, 0.26);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.flavor-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  transition: transform 720ms cubic-bezier(.2, .9, .2, 1), filter 720ms ease;
}

.flavor-card div {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px 12px;
}

.flavor-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.1;
}

.flavor-note {
  max-width: 28ch;
  margin: 8px 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(216, 155, 82, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 190, 92, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.055);
}

.inline-cta span {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.inline-cta .btn {
  min-height: 38px;
  padding-inline: 16px;
}

.party-banner {
  position: relative;
  min-height: 310px;
  margin: 10px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(216, 155, 82, 0.28);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.party-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.party-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
}

.party-banner div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.party-banner h2 {
  max-width: 8ch;
  font-size: 2.6rem;
  line-height: 0.92;
}

.party-banner p {
  max-width: 24ch;
  margin: 10px 0 0;
  color: var(--cream);
  line-height: 1.45;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(216, 155, 82, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.review::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.review blockquote {
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.review figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin: 4px 16px 22px;
  padding: 28px;
  border: 1px solid rgba(216, 155, 82, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(74, 36, 20, 0.68), rgba(10, 8, 6, 0.9)),
    url("/assets/images/card-order-now.jpg") center / cover;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 9ch;
  font-size: 2.45rem;
  line-height: 0.96;
}

.footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 24px 18px 34px;
  border-top: 1px solid rgba(216, 155, 82, 0.16);
  background: rgba(0, 0, 0, 0.22);
}

.footer img {
  width: 154px;
  height: auto;
  max-width: 72vw;
  object-fit: contain;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.footer a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.reveal {
  opacity: 1;
  visibility: visible;
}

.motion-enabled .reveal {
  opacity: 0;
  visibility: hidden;
}

.motion-enabled .reveal:not(.is-visible) {
  transition: none !important;
}

.motion-enabled .reveal.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero-content.reveal.is-visible,
.payment-hero > .section-heading.reveal.is-visible,
.menu-heading.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (hover: hover) {
  .btn,
  .action-card,
  .secondary-links a,
  .flavor-card,
  .payment-card,
  .payment-info-card {
    transition:
      opacity 560ms ease,
      transform 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .btn:hover,
  .action-card:hover,
  .secondary-links a:hover,
  .flavor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 190, 92, 0.56);
  }

  .action-card:hover > img,
  .flavor-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.12) contrast(1.05);
  }

  .action-card:hover .arrow,
  .payment-card:hover .payment-arrow {
    transform: rotate(90deg) scale(1.05);
  }
}

.action-card:active,
.secondary-links a:active,
.flavor-card:active {
  transform: scale(0.985);
}

@media (min-width: 768px) {
  body {
    padding: 24px 0;
  }

  .page-shell {
    border: 1px solid rgba(216, 155, 82, 0.2);
    border-radius: 30px;
  }

  .hero {
    min-height: 590px;
    padding-top: 78px;
    padding-bottom: 26px;
  }

  .hero-content {
    min-height: 486px;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    max-width: 520px;
  }
}

.payments-page {
  min-height: 100vh;
}

.payment-hero {
  padding-top: 120px;
}

.payment-kicker {
  margin: 0 0 10px;
  color: var(--gold, #f7c86b);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.payment-hero .section-heading {
  display: block;
  margin-bottom: 6px;
  padding: 0 4px 14px;
  text-align: center;
}

.payment-hero .section-heading h1 {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 11vw, 4.8rem);
  line-height: 0.94;
  margin-bottom: 18px;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.9);
}

.payment-hero .section-heading p {
  max-width: 640px;
  margin-inline: auto;
  color: var(--cream);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.72);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.payment-card,
.payment-info-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px;
  min-height: 190px;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 200, 107, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 420ms cubic-bezier(.2, .9, .2, 1),
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.payment-card.reveal,
.payment-info-card.reveal {
  transform: translateY(22px) scale(0.985);
}

.payment-card.reveal.is-visible,
.payment-info-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.payment-card:hover,
.payment-info-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(247, 200, 107, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.payment-card:active {
  transform: scale(0.985);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(247, 200, 107, 0.14);
  color: var(--gold, #f7c86b);
  border: 1px solid rgba(247, 200, 107, 0.22);
}

.payment-card-copy {
  display: grid;
  gap: 8px;
}

.payment-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.payment-card-heading h2 {
  flex: 1;
}

.payment-logo {
  flex: 0 0 auto;
  width: 58px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.payment-logo-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
}

.payment-logo-small {
  width: 54px;
}

.payment-logo-wide {
  width: 76px;
}

.payment-card h2,
.payment-info-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 5vw, 1.72rem);
  line-height: 1;
}

.payment-card p,
.payment-info-card p {
  margin: 0;
  opacity: 0.78;
}

.payment-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(247, 200, 107, 0.16);
  color: var(--gold, #f7c86b);
  transition: transform 240ms ease, background 240ms ease;
}

.payment-info-card {
  margin-top: 18px;
  min-height: auto;
  text-align: center;
}

.copy-payment-number {
  appearance: none;
  border: 0;
  cursor: pointer;
  margin: 22px auto 8px;
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #1b1209;
  background: linear-gradient(135deg, #f7c86b, #fff0b8);
  box-shadow: 0 14px 38px rgba(247, 200, 107, 0.26);
  transition: transform 280ms cubic-bezier(.2, .9, .2, 1);
}

.copy-payment-number:active {
  transform: scale(0.96);
}

.copy-payment-number:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.payment-info-card small {
  display: block;
  opacity: 0.62;
}

.payment-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pickup-summary {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.pickup-summary article,
.pickup-summary figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 200, 107, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.pickup-summary article {
  padding: 22px;
}

.pickup-summary h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font-size: clamp(1.25rem, 5vw, 1.62rem);
  line-height: 1.02;
}

.pickup-summary p {
  margin: 0;
  color: rgba(255, 242, 223, 0.78);
  line-height: 1.48;
}

.pickup-summary .payment-badge {
  margin-bottom: 18px;
}

.pickup-summary figcaption,
.payment-info-card figcaption {
  padding: 12px 16px 15px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.pickup-photo {
  width: 100%;
  height: auto;
}

.pickup-map-action {
  margin-top: 14px;
}

.menu-hero {
  padding-top: 28px;
  padding-bottom: 32px;
}

.menu-heading {
  display: block;
  margin-bottom: 18px;
  text-align: center;
}

.menu-heading h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 15vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
}

.menu-heading p:not(.payment-kicker) {
  max-width: 30ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.menu-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 155, 82, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 190, 92, 0.16), transparent 30%),
    rgba(7, 6, 5, 0.86);
  box-shadow: var(--shadow);
}

.menu-showcase img {
  width: 100%;
  height: auto;
}

.menu-showcase figcaption {
  padding: 12px 16px 15px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.menu-actions .btn {
  min-height: 48px;
}

.bake-hero {
  padding-top: 90px;
}

.bake-page .section-heading {
  margin-bottom: 20px;
}

.bake-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 155, 82, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 190, 92, 0.18), transparent 34%),
    rgba(7, 6, 5, 0.88);
  box-shadow: var(--shadow);
}

.bake-showcase img {
  width: 100%;
  height: auto;
}

.bake-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.bake-actions .btn {
  min-height: 50px;
}

@media (max-width: 760px) {
  .payment-hero {
    padding-top: 96px;
  }

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

  .payment-card,
  .payment-info-card {
    border-radius: 24px;
    padding: 22px;
  }

  .menu-hero {
    padding-top: 24px;
  }

  .bake-hero {
    padding-top: 78px;
  }
}

@media (min-width: 460px) {
  .menu-actions {
    grid-template-columns: 1fr 1fr;
  }

  .bake-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .payment-card-heading {
    gap: 8px;
  }

  .payment-logo {
    width: 46px;
    border-radius: 12px;
  }

  .payment-logo-small {
    width: 46px;
  }

  .payment-logo-wide {
    width: 68px;
  }
}

@keyframes cta-shine {
  0%,
  55% {
    transform: translateX(0) rotate(18deg);
  }

  78%,
  100% {
    transform: translateX(430%) rotate(18deg);
  }
}

@keyframes rail-nudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.42;
  }

  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

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

  .hero-media {
    transform: none;
  }

  .hero-slide,
  .hero-slide.is-active {
    transform: none;
    transition: none;
  }

  .hero-carousel-dot {
    transition: none;
  }

  .motion-enabled .reveal {
    opacity: 1;
    visibility: visible;
  }

  .brand-intro {
    transition: none;
  }
}
