:root {
  --plum-900: #220516;
  --plum-800: #3a0d28;
  --plum-700: #5f173b;
  --pink-500: #ff5d96;
  --pink-300: #ffc7d9;
  --gold-500: #ffbf49;
  --gold-300: #ffe3a2;
  --cream-100: #fff6e8;
  --cream-200: #f7e6c6;
  --cream-300: #ecd1a5;
  --ink-900: #4f271b;
  --ink-700: #71452f;
  --green-500: #72811e;
  --orange-500: #c95d22;
  --red-500: #981829;
  --shadow: 0 30px 70px rgba(44, 8, 23, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream-100);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 73, 0.18), transparent 18%),
    radial-gradient(circle at 84% 8%, rgba(255, 93, 150, 0.14), transparent 20%),
    linear-gradient(180deg, #561128 0%, #300718 46%, #17030d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 10%, rgba(255,191,73,0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 15%, rgba(255,255,255,0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 24%, rgba(255,191,73,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 72%, rgba(255,255,255,0.88) 0 2px, transparent 3px);
}

body::after {
  left: -8rem;
  top: 9rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  opacity: 0.08;
  background: radial-gradient(circle, var(--pink-500), transparent 68%);
}

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

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

.sprinkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,0.7) 48%, rgba(255,255,255,0.7) 52%, transparent 52%),
    linear-gradient(-20deg, transparent 48%, rgba(255,191,73,0.8) 48%, rgba(255,191,73,0.8) 52%, transparent 52%),
    linear-gradient(70deg, transparent 48%, rgba(255,93,150,0.75) 48%, rgba(255,93,150,0.75) 52%, transparent 52%);
  background-size: 170px 170px, 210px 210px, 190px 190px;
  background-position: 0 0, 48px 28px, 96px 42px;
}

.site-frame {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.brand-seal,
.ribbon-nav,
.call-pill,
.marquee-hero,
.portal-card,
.flavor-panel,
.story-note,
.road-step,
.contact-tile,
.walk-card,
.site-footer {
  box-shadow: var(--shadow);
}

.brand-seal {
  padding: 14px 18px 16px;
  border-radius: 28px;
  display: grid;
  gap: 4px;
  background: linear-gradient(180deg, rgba(255,246,232,0.97), rgba(250,224,186,0.97));
  color: var(--ink-900);
  border: 2px solid rgba(122, 58, 37, 0.16);
}

.brand-seal__mini,
.kicker,
.flavor-name,
.runway-label,
.contact-tile span,
.walk-card span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-seal__mini,
.kicker,
.runway-label,
.contact-tile span,
.walk-card span {
  font-size: 0.74rem;
}

.brand-seal__mini {
  color: var(--plum-700);
}

.brand-seal__name,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-seal__name {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1;
}

.ribbon-nav {
  padding: 10px 14px;
  min-height: 62px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(121, 23, 69, 0.94), rgba(72, 15, 47, 0.96));
  border: 1px solid rgba(255, 214, 111, 0.2);
}

.ribbon-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--pink-300);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,244,214,0.98), rgba(255,210,117,0.96));
}

.ribbon-nav a:hover,
.ribbon-nav a.is-active {
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--gold-500), var(--pink-500));
  transform: translateY(-1px);
}

.call-pill,
.cta {
  border-radius: 999px;
  font-weight: 800;
}

.call-pill {
  padding: 14px 18px;
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--gold-500), #ffdc89);
}

.site-domain-banner {
  margin: -8px auto 20px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 111, 0.24);
  background: rgba(34, 5, 22, 0.7);
  box-shadow: var(--shadow);
}

.site-domain-banner a,
.footer-domain {
  color: var(--gold-300);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-main {
  display: grid;
  gap: 34px;
}

.marquee-hero {
  padding: 34px;
  border-radius: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.52fr);
  gap: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 73, 0.18), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(255, 93, 150, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(64, 11, 36, 0.96), rgba(33, 7, 20, 0.98));
  border: 1px solid rgba(255, 219, 128, 0.24);
}

.marquee-copy,
.marquee-prices,
.portal-card,
.story-note,
.road-step,
.contact-tile,
.site-footer,
.page-banner,
.flavor-panel {
  position: relative;
}

.marquee-copy::before,
.marquee-prices::before,
.portal-card::before,
.story-note::before,
.road-step::before,
.contact-tile::before,
.page-banner::before,
.flavor-panel::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 225, 162, 0.32);
  pointer-events: none;
}

.marquee-copy,
.marquee-prices {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255,255,255,0.035);
}

.kicker {
  color: var(--gold-300);
  margin: 0 0 10px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.9vw, 3.3rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.02;
}

p {
  margin: 0;
  line-height: 1.65;
  color: #f8ddcc;
}

.marquee-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.cta-primary {
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--gold-500), var(--pink-500));
}

.cta-secondary {
  border: 1px solid rgba(255, 225, 173, 0.24);
  background: rgba(255,255,255,0.06);
}

.marquee-prices {
  display: grid;
  align-content: center;
  gap: 14px;
}

.price-medallion,
.story-pill {
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.price-medallion {
  display: grid;
  gap: 4px;
  color: var(--ink-900);
  background: linear-gradient(180deg, rgba(255,244,214,0.98), rgba(255,210,117,0.96));
}

.price-medallion strong {
  font-size: 1.55rem;
}

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

.runway-card {
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,248,236,0.98), rgba(240,220,185,0.98));
  border: 1px solid rgba(137, 66, 35, 0.16);
  color: var(--ink-900);
  box-shadow: var(--shadow);
}

.runway-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 14px;
}

.runway-card::before,
.flavor-panel__art::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 10% 14% 22% 14%;
  z-index: 2;
  opacity: 0.72;
  background:
    radial-gradient(circle at 52% 18%, rgba(255,255,255,0.92) 0 2%, rgba(255,255,255,0) 10%),
    radial-gradient(circle at 50% 28%, rgba(255,248,211,0.72) 0 10%, rgba(255,248,211,0) 34%),
    conic-gradient(from 180deg at 50% 28%, rgba(255,255,255,0) 0deg, rgba(255,255,255,0.64) 38deg, rgba(255,255,255,0) 76deg, rgba(255,255,255,0) 360deg);
  mix-blend-mode: screen;
  filter: blur(0.4px);
  transform: rotate(-10deg);
  animation: cupcake-shine 4.8s ease-in-out infinite;
}

.menu-ledger .flavor-panel__art::before {
  content: none;
  animation: none;
}

.runway-label,
.flavor-name {
  margin-bottom: 6px;
  font-weight: 700;
}

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

.portal-card,
.story-note,
.road-step,
.contact-tile,
.walk-card,
.site-footer,
.page-banner {
  border-radius: 34px;
  border: 1px solid rgba(255, 220, 145, 0.2);
}

.portal-card {
  padding: 28px;
}

.portal-card--menu {
  background: linear-gradient(135deg, rgba(112,129,30,0.22), rgba(44,10,27,0.95));
}

.portal-card--story {
  background: linear-gradient(135deg, rgba(255,93,150,0.14), rgba(39,9,25,0.96));
}

.portal-card--order {
  background: linear-gradient(135deg, rgba(255,191,73,0.16), rgba(41,10,25,0.96));
}

.portal-card--contact {
  background: linear-gradient(135deg, rgba(255,143,174,0.16), rgba(49,9,29,0.96));
}

.text-jump {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-300);
  font-weight: 800;
}

.page-banner {
  padding: 28px 30px;
}

.page-banner__copy {
  position: relative;
  z-index: 1;
}

.page-banner__art {
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 222, 155, 0.28);
  box-shadow: 0 18px 38px rgba(54, 12, 24, 0.24);
}

.page-banner__art img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.banner-menu {
  background: linear-gradient(135deg, rgba(255, 194, 82, 0.16), rgba(67, 13, 37, 0.96));
}

.menu-logo-banner {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 34px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 222, 155, 0.28);
  box-shadow: 0 18px 38px rgba(54, 12, 24, 0.24);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 191, 73, 0.2), transparent 26%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 80% 44%, rgba(255, 93, 150, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(61, 11, 34, 0.92), rgba(35, 7, 20, 0.98));
  text-align: center;
}

.menu-logo-banner__sistas,
.menu-logo-banner__cupcake,
.menu-logo-banner__topia {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0.88;
  text-shadow:
    0 6px 0 rgba(20, 3, 12, 0.75),
    0 16px 28px rgba(0, 0, 0, 0.28);
}

.menu-logo-banner__sistas {
  color: var(--cream-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-style: italic;
  font-weight: 700;
}

.menu-logo-banner__cupcake {
  color: var(--pink-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 10vw, 6.8rem);
  font-style: italic;
  font-weight: 800;
}

.menu-logo-banner__topia {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.1rem);
  font-style: italic;
  font-weight: 800;
}

.menu-logo-banner__rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.menu-logo-banner__rain span {
  position: absolute;
  top: -14%;
  width: 34px;
  height: 44px;
  opacity: 0;
  --drop-scale: 1;
  transform-origin: 50% 55%;
  background-image: url("./assets/generated/banner-rain-cupcake.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 7px 10px rgba(34, 7, 18, 0.24));
  animation: cupcake-fall var(--fall-duration, 11s) linear infinite;
}

.menu-logo-banner__rain span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 10px;
  height: 10px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  background: radial-gradient(circle, rgba(255,255,255,1) 0 28%, rgba(255,244,174,0.98) 29% 62%, rgba(255,244,174,0) 63%);
  filter: drop-shadow(0 0 10px rgba(255, 247, 196, 0.95));
  animation: cupcake-star var(--fall-duration, 11s) linear infinite;
  animation-delay: inherit;
  pointer-events: none;
}

.cupcake-drop--berry {
  --drop-scale: 0.82;
}

.cupcake-drop--gold {
  --drop-scale: 1.08;
}

.cupcake-drop--cream {
  --drop-scale: 0.92;
}

.menu-logo-banner__rain span:nth-child(1) {
  left: 8%;
  animation-delay: -1s;
  --fall-duration: 12.6s;
  --drop-scale: 0.78;
}

.menu-logo-banner__rain span:nth-child(2) {
  left: 19%;
  animation-delay: -5.5s;
  --fall-duration: 10.4s;
  --drop-scale: 1.06;
}

.menu-logo-banner__rain span:nth-child(3) {
  left: 31%;
  animation-delay: -8.2s;
  --fall-duration: 11.7s;
  --drop-scale: 0.9;
}

.menu-logo-banner__rain span:nth-child(4) {
  left: 43%;
  animation-delay: -3.4s;
  --fall-duration: 9.6s;
  --drop-scale: 1.14;
}

.menu-logo-banner__rain span:nth-child(5) {
  left: 56%;
  animation-delay: -9.1s;
  --fall-duration: 12.1s;
  --drop-scale: 0.74;
}

.menu-logo-banner__rain span:nth-child(6) {
  left: 68%;
  animation-delay: -6.1s;
  --fall-duration: 8.9s;
  --drop-scale: 1.08;
}

.menu-logo-banner__rain span:nth-child(7) {
  left: 80%;
  animation-delay: -2.3s;
  --fall-duration: 10.8s;
  --drop-scale: 0.86;
}

.menu-logo-banner__rain span:nth-child(8) {
  left: 90%;
  animation-delay: -7.2s;
  --fall-duration: 9.8s;
  --drop-scale: 1.18;
}
.banner-story {
  background: linear-gradient(135deg, rgba(255, 93, 150, 0.15), rgba(60, 14, 39, 0.96));
}

.banner-order {
  background: linear-gradient(135deg, rgba(255, 221, 151, 0.14), rgba(65, 13, 33, 0.96));
}

.banner-contact {
  background: linear-gradient(135deg, rgba(255, 166, 193, 0.16), rgba(63, 10, 34, 0.96));
}

.menu-ledger {
  display: grid;
  gap: 22px;
}

.menu-ledger__tabbar {
  margin-top: -4px;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}

.menu-ledger__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 22px 22px 10px 10px;
  color: var(--ink-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 96, 150, 0.96), rgba(219, 56, 122, 0.96));
  border: 1px solid rgba(123, 27, 68, 0.28);
  box-shadow: 0 16px 34px rgba(82, 17, 40, 0.18);
}

.menu-ledger__tab small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.menu-ledger__tab.is-active {
  position: relative;
}

.menu-ledger__tab:not(.is-active) {
  color: var(--cream-100);
  background: linear-gradient(180deg, rgba(106, 23, 62, 0.92), rgba(70, 15, 45, 0.96));
  border-color: rgba(255, 214, 111, 0.16);
}

.menu-ledger__tab--specialties {
  margin-left: 11rem;
}

.menu-ledger__tab.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 193, 73, 0.9), rgba(255, 145, 191, 0.9));
}

.flavor-panel {
  padding: 18px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(250,238,214,0.98), rgba(239,218,180,0.98));
  color: var(--ink-900);
}

.flavor-panel__art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.flavor-panel__art {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.flavor-panel__copy {
  display: grid;
  gap: 12px;
}

.purchase-row {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.size-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option,
.qty-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.size-option {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-700);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(144, 80, 37, 0.16);
}

.size-option.is-active {
  color: var(--ink-900);
  background: linear-gradient(135deg, rgba(255, 191, 73, 0.95), rgba(255, 145, 191, 0.95));
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  position: relative;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(144, 80, 37, 0.16);
  overflow: visible;
}

.qty-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-900);
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--pink-500));
}

.qty-display {
  min-width: 18px;
  text-align: center;
  color: var(--ink-900);
  font-weight: 800;
}

.ingredient-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-700);
}

.ingredient-list li {
  position: relative;
  padding-left: 18px;
}

.ingredient-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--pink-500);
}

.price-column {
  padding: 14px;
  border-radius: 28px;
  display: grid;
  gap: 12px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(144, 80, 37, 0.16);
}

.price-column span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.price-column b {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-column strong {
  font-size: 1.5rem;
}

.pistachio-tone .flavor-name,
.pistachio-tone .price-column strong,
.pistachio-tone h2 { color: var(--green-500); }
.carrot-tone .flavor-name,
.carrot-tone .price-column strong,
.carrot-tone h2 { color: var(--orange-500); }
.velvet-tone .flavor-name,
.velvet-tone .price-column strong,
.velvet-tone h2 { color: var(--red-500); }
.strawberry-tone .flavor-name,
.strawberry-tone .price-column strong,
.strawberry-tone h2 { color: var(--pink-500); }

.story-board {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.story-note {
  padding: 28px;
  background: rgba(37, 7, 22, 0.88);
}

.story-note--large {
  min-height: 320px;
}

.story-note--tall {
  min-height: 320px;
  background: linear-gradient(180deg, rgba(255, 191, 73, 0.12), rgba(40, 7, 22, 0.94));
}

.story-note--pillbox {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 93, 150, 0.12), rgba(41, 7, 24, 0.94));
}

.story-note--quote {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 225, 159, 0.12), rgba(47, 8, 24, 0.94));
}

.story-pill {
  color: var(--ink-900);
  background: linear-gradient(135deg, #ffd778, #ff91bf);
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.about-portrait-shell {
  display: grid;
  gap: 16px;
}

.about-portrait-card,
.about-copy-card {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 220, 145, 0.2);
  box-shadow: var(--shadow);
}

.about-portrait-card {
  background: linear-gradient(180deg, rgba(250,238,214,0.98), rgba(239,218,180,0.98));
}

.about-copy-card {
  background:
    radial-gradient(circle at top right, rgba(255, 191, 73, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 93, 150, 0.17), rgba(60, 14, 39, 0.98));
}

.about-portrait-card::before,
.about-copy-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 225, 162, 0.32);
  pointer-events: none;
}

.about-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.about-signature {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 225, 173, 0.14);
  box-shadow: var(--shadow);
}

.about-signature__label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-signature strong {
  display: block;
  font-size: 1.55rem;
}

.about-copy-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.about-copy-card h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
}

.about-lead {
  font-size: 1.12rem;
  color: var(--cream-100);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-quote {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 191, 73, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 225, 173, 0.16);
}

.about-quote p {
  color: var(--cream-100);
  font-size: 1.18rem;
  font-style: italic;
}

.about-note {
  margin-top: 4px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 225, 173, 0.14);
}

.about-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.confetti-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 5;
}

.confetti-piece {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 8px;
  height: 12px;
  border-radius: 3px;
  background: var(--confetti-color);
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.7);
  animation: confetti-pop 760ms ease-out forwards;
  animation-delay: var(--confetti-delay);
}

@keyframes confetti-pop {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.5);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(var(--confetti-x), var(--confetti-y)) rotate(var(--confetti-rotate)) scale(1);
  }
}

.order-roadmap {
  display: grid;
  gap: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.cart-sheet,
.checkout-card {
  position: relative;
  padding: 24px 26px;
  border-radius: 34px;
  border: 1px solid rgba(255, 220, 145, 0.2);
  box-shadow: var(--shadow);
}

.cart-sheet {
  background: linear-gradient(180deg, rgba(250,238,214,0.98), rgba(239,218,180,0.98));
  color: var(--ink-900);
}

.checkout-card {
  background: linear-gradient(135deg, rgba(255, 191, 73, 0.16), rgba(71, 12, 35, 0.96));
}

.cart-sheet::before,
.checkout-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 225, 162, 0.32);
  pointer-events: none;
}

.cart-sheet__head {
  margin-bottom: 18px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-line,
.cart-empty,
.checkout-note {
  border-radius: 24px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(144, 80, 37, 0.12);
}

.cart-line__copy {
  display: grid;
  gap: 4px;
}

.cart-line__copy strong,
.cart-line__total,
.cart-totals strong {
  color: var(--ink-900);
}

.cart-line__copy span {
  color: var(--ink-700);
}

.cart-line__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  overflow: visible;
}

.cart-line__controls span {
  min-width: 16px;
  text-align: center;
  color: var(--ink-900);
  font-weight: 800;
}

.cart-totals {
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(144, 80, 37, 0.18);
  color: var(--ink-700);
}

.cart-totals strong {
  font-size: 2rem;
}

.cart-empty {
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(144, 80, 37, 0.12);
}

.cart-empty strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
}

.checkout-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 225, 173, 0.14);
}

.checkout-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 225, 173, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--cream-100);
  background: rgba(255, 255, 255, 0.08);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(248, 221, 204, 0.7);
}

.field-group textarea {
  resize: vertical;
  min-height: 112px;
}

.checkout-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.checkout-actions {
  margin-top: 14px;
}

.checkout-note strong {
  display: block;
  margin-bottom: 6px;
}

.road-step {
  padding: 24px 28px;
  display: grid;
  gap: 10px;
  background: rgba(35, 7, 21, 0.9);
}

.road-step--highlight {
  background: linear-gradient(135deg, rgba(255, 191, 73, 0.16), rgba(71, 12, 35, 0.96));
}

.road-step__number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--ink-900);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), #ffd988);
}

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

.contact-station {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contact-summary,
.contact-form-card {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 220, 145, 0.2);
  box-shadow: var(--shadow);
}

.contact-summary {
  background: linear-gradient(180deg, rgba(250,238,214,0.98), rgba(239,218,180,0.98));
  color: var(--ink-900);
}

.contact-form-card {
  background: linear-gradient(135deg, rgba(255, 191, 73, 0.16), rgba(71, 12, 35, 0.96));
}

.contact-form-card--full {
  display: grid;
  gap: 18px;
}

.contact-summary::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 225, 162, 0.32);
  pointer-events: none;
}

.contact-summary h1 {
  margin-bottom: 18px;
  color: var(--ink-900);
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.contact-summary p {
  color: var(--ink-700);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 225, 173, 0.14);
}

.contact-line,
.social-line {
  padding: 4px 0;
  display: grid;
  gap: 6px;
}

.contact-line strong,
.social-line strong {
  color: var(--cream-100);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.contact-line__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 800;
}

.social-line {
  margin-top: 10px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.social-line__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cream-100);
  background: linear-gradient(135deg, #4f8cff, #1848b8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.social-line__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-line__copy {
  display: grid;
  gap: 6px;
}

.contact-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.contact-tile {
  padding: 28px;
  display: grid;
  gap: 10px;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.98), rgba(244, 222, 186, 0.98));
  color: var(--ink-900);
}

.contact-tile strong {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.1;
}

.contact-tile em {
  color: var(--ink-700);
  font-style: normal;
  line-height: 1.5;
}

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

.walk-card {
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  background: rgba(255,255,255,0.05);
}

.walk-card strong {
  font-size: 1.3rem;
}

.site-footer {
  margin-top: 32px;
  padding: 22px 24px;
  display: grid;
  gap: 16px;
  background: rgba(29, 5, 18, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--pink-300);
}

.footer-note {
  color: #f7d8c5;
}

@media (max-width: 1100px) {
  .site-header,
  .marquee-hero,
  .cart-layout,
  .contact-station,
  .about-stage,
  .story-board,
  .contact-parlor,
  .flavor-panel,
  .page-walkthrough {
    grid-template-columns: 1fr;
  }

  .home-flavor-runway,
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    justify-items: center;
  }

  .menu-ledger__tab--specialties {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-frame {
    width: min(100% - 18px, 1260px);
    padding-top: 14px;
  }

  .site-header {
    justify-items: stretch;
  }

  .ribbon-nav,
  .footer-links,
  .marquee-actions {
    justify-content: stretch;
  }

  .ribbon-nav a,
  .call-pill,
  .cta,
  .footer-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-flavor-runway,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .marquee-hero,
  .portal-card,
  .page-banner,
  .story-note,
  .road-step,
  .contact-tile,
  .site-footer,
  .brand-seal {
    border-radius: 26px;
  }

  .marquee-hero,
  .page-banner,
  .story-note,
  .road-step,
  .contact-tile,
  .site-footer,
  .portal-card,
  .flavor-panel,
  .brand-seal {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2.5rem);
  }

  .flavor-panel__art img {
    aspect-ratio: 4 / 4.7;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }
}
@keyframes cupcake-fall {
  0% {
    transform: translate3d(0, -12%, 0) rotate(-8deg) scale(calc(var(--drop-scale) * 0.78));
    opacity: 0;
    filter: drop-shadow(0 5px 8px rgba(34, 7, 18, 0.18));
  }

  10% {
    opacity: 0.96;
    transform: translate3d(0, 16px, 0) rotate(2deg) scale(var(--drop-scale));
  }

  28% {
    opacity: 0.95;
    transform: translate3d(0, 78px, 0) rotate(-5deg) scale(calc(var(--drop-scale) * 1.02));
  }

  48% {
    opacity: 0.94;
    transform: translate3d(0, 132px, 0) rotate(4deg) scale(calc(var(--drop-scale) * 0.98));
  }

  66% {
    opacity: 0.92;
    transform: translate3d(0, 188px, 0) rotate(-3deg) scale(calc(var(--drop-scale) * 0.94));
  }

  76% {
    opacity: 1;
    transform: translate3d(0, 218px, 0) rotate(1deg) scale(calc(var(--drop-scale) * 1.08));
    filter:
      drop-shadow(0 0 14px rgba(255, 241, 176, 0.92))
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.95));
  }

  81% {
    opacity: 0.32;
    transform: translate3d(0, 222px, 0) rotate(8deg) scale(calc(var(--drop-scale) * 0.24));
    filter:
      drop-shadow(0 0 24px rgba(255, 246, 204, 1))
      drop-shadow(0 0 8px rgba(255, 255, 255, 1));
  }

  86% {
    opacity: 0.88;
    transform: translate3d(0, 226px, 0) rotate(-4deg) scale(calc(var(--drop-scale) * 0.7));
    filter:
      drop-shadow(0 0 12px rgba(255, 239, 156, 0.82))
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.88));
  }

  92% {
    opacity: 0.04;
    transform: translate3d(0, 233px, 0) rotate(12deg) scale(calc(var(--drop-scale) * 0.08));
    filter:
      drop-shadow(0 0 28px rgba(255, 247, 210, 1))
      drop-shadow(0 0 12px rgba(255, 255, 255, 1));
  }

  100% {
    transform: translate3d(0, 240px, 0) rotate(15deg) scale(0.02);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255,255,255,0));
  }
}

@keyframes cupcake-star {
  0%, 72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12) rotate(0deg);
  }

  77% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.38) rotate(12deg);
  }

  81% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.45) rotate(42deg);
  }

  85% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.52) rotate(66deg);
  }

  89% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.2) rotate(88deg);
  }

  94%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1) rotate(110deg);
  }
}

@keyframes cupcake-shine {
  0%, 100% {
    opacity: 0.12;
    transform: translate3d(-18%, -6%, 0) rotate(-12deg);
  }

  28% {
    opacity: 0.42;
    transform: translate3d(6%, -1%, 0) rotate(-6deg);
  }

  52% {
    opacity: 0.82;
    transform: translate3d(20%, 4%, 0) rotate(0deg);
  }

  70% {
    opacity: 0.28;
    transform: translate3d(34%, 8%, 0) rotate(8deg);
  }
}
