:root {
  --xy-red: #ff009b;
  --xy-orange: #fc5f00;
  --xy-yellow: #ffff00;
  --xy-purple: #311e42;
  --ink: #211916;
  --muted: #7b6f67;
  --paper: #fff8ee;
  --porcelain: #fffdf8;
  --line: #eadcc8;
  --soft-red: rgba(232, 25, 122, 0.1);
  --soft-orange: rgba(252, 95, 0, 0.12);
  --shadow: 0 28px 70px rgba(63, 32, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(232, 25, 122, 0.09) 0 18px, transparent 18px),
    var(--paper);
  font-family:
    "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC",
    Arial, sans-serif;
}

body.is-map-modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

main section {
  scroll-margin-top: 82px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 248, 238, 0.9);
  border-bottom: 1px solid rgba(234, 220, 200, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 23vw, 310px);
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid rgba(232, 25, 122, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.brand img {
  width: 100%;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.6vw, 48px);
  font-size: 15px;
  font-weight: 900;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--xy-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.top-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mini-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 950;
  white-space: nowrap;
}

.mini-cta,
.primary-button {
  color: #fff;
  background: var(--xy-red);
  box-shadow: 0 14px 34px rgba(232, 25, 122, 0.24);
}

.secondary-button {
  color: var(--xy-purple);
  border: 1px solid rgba(49, 30, 66, 0.22);
  background: rgba(255, 255, 255, 0.76);
}

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

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  isolation: isolate;
  align-items: center;
  min-height: 90vh;
  padding: 116px clamp(18px, 5vw, 64px) 72px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.46), rgba(18, 12, 9, 0.22) 48%, rgba(18, 12, 9, 0.04)),
    linear-gradient(0deg, rgba(18, 12, 9, 0.14), rgba(18, 12, 9, 0.02));
  clip-path: none;
  opacity: 1;
  pointer-events: none;
}

.hero-section::after {
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.06) saturate(1.04) contrast(1.01);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.flavor-hero-copy h1,
.feature-copy h2,
.story-copy h2,
.intro-panel h2,
.section-heading h2,
.craft-heading h2,
.split-copy h2,
.member-section h2,
.official-section h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 86px;
  line-height: 0.98;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.82;
}

.hero-section .eyebrow {
  color: var(--xy-yellow);
}

.hero-section .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

body.loader-lock {
  overflow: hidden;
}

.page-loader[hidden] {
  display: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 213, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #fff8ee, #fffdf8 52%, #fbd5e6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  --loader-progress: 0;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-loader::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(34vw, 430px);
  background: var(--xy-red);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.1;
}

.page-loader::after {
  left: 50%;
  top: 50%;
  width: min(620px, 78vw);
  height: min(620px, 78vw);
  border: 18px solid rgba(252, 95, 0, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.page-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.loader-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(370px, 100%);
  min-height: 432px;
  padding: 34px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(232, 25, 122, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.98)),
    var(--porcelain);
  box-shadow: 0 32px 80px rgba(63, 32, 16, 0.18);
}

.loader-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.loader-card::after {
  position: absolute;
  right: -74px;
  bottom: -84px;
  width: 180px;
  height: 180px;
  content: "";
  border: 20px solid rgba(49, 30, 66, 0.06);
  border-radius: 50%;
}

.loader-scene {
  position: relative;
  width: 224px;
  height: 188px;
  margin-top: 10px;
}

.loader-grip {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 2;
  width: 214px;
  height: 122px;
  transform: translateX(-50%);
  animation: loaderLift 1500ms ease-in-out infinite;
}

.loader-chopstick {
  position: absolute;
  left: 10px;
  width: 188px;
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--xy-purple), #5a3322 48%, var(--xy-orange));
  box-shadow: 0 4px 12px rgba(49, 30, 66, 0.16);
  transform-origin: 88% 50%;
}

.loader-chopstick-back {
  top: 30px;
  z-index: 1;
  opacity: 0.82;
  transform: rotate(-15deg);
}

.loader-chopstick-front {
  top: 72px;
  z-index: 5;
  transform: rotate(-8deg);
}

.loader-bao {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 96px;
  border: 1px solid rgba(234, 220, 200, 0.96);
  border-bottom: 11px solid #e5a52d;
  border-radius: 54% 54% 48% 48%;
  background:
    radial-gradient(circle at 50% 18%, #fff 0 18%, transparent 19%),
    radial-gradient(circle at 34% 36%, rgba(255, 213, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fff1dc 78%, #f5bd40 100%);
  box-shadow:
    inset 0 -8px 18px rgba(252, 95, 0, 0.16),
    0 18px 34px rgba(63, 32, 16, 0.16);
  transform: translateX(-50%);
}

.loader-bao::before {
  position: absolute;
  right: 16px;
  bottom: -8px;
  left: 16px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #b86d13, var(--xy-yellow), #b86d13);
}

.loader-bao::after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: var(--xy-red);
  box-shadow: -16px 3px 0 rgba(232, 25, 122, 0.46);
}

.loader-bao-fold {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 28px;
  height: 48px;
  border-left: 2px solid rgba(49, 30, 66, 0.11);
  border-radius: 50%;
  transform-origin: bottom center;
}

.loader-bao-fold.fold-1 {
  transform: translateX(-50%) rotate(-18deg);
}

.loader-bao-fold.fold-2 {
  transform: translateX(-50%) rotate(0deg);
}

.loader-bao-fold.fold-3 {
  transform: translateX(-50%) rotate(18deg);
}

.loader-steam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 134px;
  height: 98px;
  transform: translateX(-50%);
}

.loader-steam span {
  position: absolute;
  bottom: 10px;
  width: 34px;
  height: 58px;
  border-left: 3px solid rgba(232, 25, 122, 0.25);
  border-radius: 50%;
  opacity: 0;
  animation: loaderSteam 1700ms ease-in-out infinite;
}

.loader-steam span:nth-child(1) {
  left: 22px;
}

.loader-steam span:nth-child(2) {
  left: 54px;
  border-color: rgba(252, 95, 0, 0.25);
  animation-delay: 220ms;
}

.loader-steam span:nth-child(3) {
  left: 84px;
  border-color: rgba(49, 30, 66, 0.18);
  animation-delay: 440ms;
}

.loader-shadow {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 126px;
  height: 18px;
  border-radius: 50%;
  background: rgba(63, 32, 16, 0.16);
  filter: blur(5px);
  transform: translateX(-50%);
  animation: loaderShadow 1500ms ease-in-out infinite;
}

.loader-label {
  margin: 8px 0 16px;
  color: var(--xy-purple);
  font-size: 22px;
  font-weight: 950;
}

.loader-progress {
  position: relative;
  width: min(260px, 100%);
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(49, 30, 66, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow)),
    var(--xy-red);
  transform: scaleX(var(--loader-progress));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.loader-percent {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.page-loader.is-complete .loader-card {
  animation: loaderComplete 320ms ease forwards;
}

@keyframes loaderLift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes loaderSteam {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.86);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-22px) scale(1.1);
  }
}

@keyframes loaderShadow {
  0%,
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.55;
    transform: translateX(-50%) scaleX(0.76);
  }
}

@keyframes loaderComplete {
  to {
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
  }
}

.hero-visual {
  min-height: 520px;
}

.hero-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(47vw, 620px);
  height: min(47vw, 620px);
  object-fit: cover;
  object-position: 50% 52%;
  border: 12px solid var(--porcelain);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-bao-mark {
  position: absolute;
  top: 6px;
  right: 58px;
  width: 360px;
  height: 360px;
  border: 10px solid rgba(232, 25, 122, 0.12);
  border-radius: 48% 48% 54% 54%;
}

.hero-bao-mark span {
  position: absolute;
  top: -30px;
  width: 42px;
  height: 70px;
  border: 10px solid rgba(232, 25, 122, 0.12);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.hero-bao-mark span:nth-child(1) {
  left: calc(50% - 62px);
  transform: rotate(-24deg);
}

.hero-bao-mark span:nth-child(2) {
  left: calc(50% - 21px);
}

.hero-bao-mark span:nth-child(3) {
  left: calc(50% + 20px);
  transform: rotate(24deg);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.brand-strip article {
  min-height: 146px;
  padding: 24px 28px;
  background: var(--porcelain);
}

.brand-strip span,
.standard-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.brand-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.brand-strip p,
.brand-story-section p,
.feature-copy p,
.standard-grid p,
.section-heading p,
.craft-heading p,
.craft-grid p,
.dish-detail-grid p,
.split-copy p,
.member-section p,
.official-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.08), rgba(252, 95, 0, 0.08)),
    var(--porcelain);
}

.feature-copy h2 {
  max-width: 640px;
  font-size: 52px;
  line-height: 1.08;
}

.feature-copy p {
  max-width: 600px;
  margin: 20px 0 28px;
  font-size: 17px;
}

.feature-dishes {
  display: grid;
  grid-template-columns: 1.05fr 0.86fr;
  grid-template-rows: repeat(2, 210px);
  gap: 14px;
}

.feature-dishes article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-dishes article:first-child {
  grid-row: span 2;
}

.feature-dishes img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff8ee;
}

.feature-dishes strong {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: #fff;
  border-radius: 8px;
  background: rgba(33, 25, 22, 0.78);
  font-size: 16px;
}

.home-campaign-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(232, 25, 122, 0.11), transparent 44%),
    #fffdf8;
}

.home-campaign-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
}

.home-campaign-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.78;
}

.home-campaign-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  min-height: 520px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(232, 25, 122, 0.18);
  border-radius: 8px;
  background: #fff8ee;
  box-shadow: var(--shadow);
}

.home-campaign-visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}

.home-campaign-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.flavor-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.7fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  min-height: 88vh;
  padding: 116px clamp(18px, 5vw, 64px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.2)),
    var(--paper);
}

.flavor-hero::before {
  position: absolute;
  top: 76px;
  right: 0;
  bottom: 0;
  width: min(38vw, 560px);
  content: "";
  background: var(--xy-red);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.flavor-hero-copy,
.flavor-hero-plate {
  position: relative;
  z-index: 1;
}

.flavor-hero-copy h1 {
  max-width: 780px;
  font-size: 82px;
  line-height: 0.98;
}

.flavor-hero-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.82;
}

.flavor-hero-plate {
  display: grid;
  justify-items: center;
}

.flavor-hero-plate img {
  width: min(42vw, 560px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 14px solid var(--porcelain);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.detail-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.detail-stat-strip article {
  min-height: 132px;
  padding: 24px;
  background: var(--porcelain);
}

.detail-stat-strip span,
.craft-grid span,
.dish-detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.detail-stat-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1.32;
}

.product-orbit-section {
  background: var(--paper);
}

.craft-section,
.menu-deep-dive {
  padding: 92px clamp(18px, 5vw, 64px);
}

.craft-section {
  background:
    linear-gradient(135deg, rgba(49, 30, 66, 0.06), rgba(232, 25, 122, 0.08)),
    var(--paper);
}

.craft-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 30px;
}

.craft-heading h2 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.08;
}

.craft-heading p {
  margin: 0;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.craft-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(63, 32, 16, 0.07);
}

.craft-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.menu-deep-dive {
  background: var(--porcelain);
}

.dish-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.dish-detail-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(63, 32, 16, 0.07);
}

.dish-detail-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: contain;
  padding: 10px;
  background: #fff8ee;
}

.dish-detail-grid div {
  padding: 20px;
}

.dish-detail-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.other-menu-section {
  padding: 68px clamp(18px, 4vw, 52px) 72px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 238, 0.96)),
    var(--paper);
}

.other-menu-section .section-heading,
.other-menu-grid {
  width: min(80%, 1160px);
  margin-right: auto;
  margin-left: auto;
}

.other-menu-section .section-heading {
  margin-bottom: 26px;
}

.other-menu-section .section-heading h2 {
  font-size: 38px;
}

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

.other-menu-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(63, 32, 16, 0.07);
}

.other-menu-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 9px;
  background: #fff8ee;
}

.other-menu-grid div {
  display: grid;
  gap: 6px;
  padding: 13px 15px 15px;
}

.other-menu-grid span {
  color: var(--xy-pink);
  font-size: 13px;
  font-weight: 900;
}

.other-menu-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.brand-story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 92px clamp(18px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.28)),
    var(--paper);
}

.brand-story-section::before {
  position: absolute;
  right: -150px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  border: 30px solid rgba(252, 95, 0, 0.08);
  border-radius: 50%;
}

.story-copy,
.story-board,
.culture-grid {
  position: relative;
  z-index: 1;
}

.story-copy h2 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.08;
}

.story-copy p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 17px;
}

.story-board {
  display: grid;
  gap: 14px;
}

.story-quote,
.timeline-list,
.culture-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(63, 32, 16, 0.08);
}

.story-quote {
  padding: 28px;
  border-color: rgba(232, 25, 122, 0.22);
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.1), rgba(255, 255, 255, 0.86)),
    #fff;
}

.story-quote span,
.timeline-list span,
.culture-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.story-quote strong {
  display: block;
  max-width: 640px;
  font-size: 30px;
  line-height: 1.22;
}

.story-quote p {
  margin-top: 14px;
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
}

.timeline-list li:first-child {
  border-top: 0;
}

.timeline-list span {
  margin-bottom: 0;
  color: var(--xy-orange);
  font-size: 22px;
}

.timeline-list p {
  margin: 0;
}

.culture-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.culture-grid article {
  min-height: 142px;
  padding: 24px;
}

.culture-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.42;
}

.brand-story-section {
  position: relative;
  display: block;
  padding: 44px clamp(18px, 5vw, 64px) 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 0, 155, 0.1) 0 16px, transparent 16px),
    repeating-linear-gradient(90deg, rgba(49, 30, 66, 0.035) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(252, 95, 0, 0.028) 0 1px, transparent 1px 116px),
    radial-gradient(circle at 88% 8%, rgba(252, 95, 0, 0.16), transparent 30%),
    var(--paper);
}

.brand-story-section::before {
  right: auto;
  left: -112px;
  bottom: 18%;
  width: 420px;
  height: 620px;
  border: 0;
  border-radius: 210px;
  background: rgba(252, 95, 0, 0.11);
  transform: rotate(-18deg);
}

.brand-story-section::after {
  position: absolute;
  top: 92px;
  right: clamp(18px, 5vw, 64px);
  width: min(38vw, 560px);
  height: 18px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-orbit-map {
  position: absolute;
  top: 118px;
  right: clamp(18px, 5vw, 64px);
  width: min(520px, 42vw);
  height: 310px;
  pointer-events: none;
  border: 1px solid rgba(255, 0, 155, 0.18);
  border-radius: 50%;
  opacity: 0.58;
  transform: rotate(-8deg);
}

.story-orbit-map::before,
.story-orbit-map::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.story-orbit-map::before {
  inset: 12%;
  border: 1px dashed rgba(252, 95, 0, 0.24);
}

.story-orbit-map::after {
  inset: 25%;
  background: conic-gradient(
    from 18deg,
    transparent 0deg,
    rgba(255, 0, 155, 0.04) 52deg,
    rgba(255, 0, 155, 0.72) 64deg,
    rgba(255, 255, 0, 0.5) 72deg,
    transparent 84deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 48%, #000 50%, #000 59%, transparent 61%);
  mask: radial-gradient(circle, transparent 48%, #000 50%, #000 59%, transparent 61%);
  animation: storyOrbitScan 10s linear infinite;
}

.story-orbit-map span {
  position: absolute;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--xy-red), var(--xy-yellow));
  box-shadow: 0 0 24px rgba(255, 0, 155, 0.22);
}

.story-orbit-map span:nth-child(1) {
  top: 32px;
  left: 60px;
}

.story-orbit-map span:nth-child(2) {
  right: 22px;
  bottom: 86px;
  background: linear-gradient(90deg, transparent, var(--xy-orange), var(--xy-yellow));
}

.story-orbit-map span:nth-child(3) {
  bottom: 34px;
  left: 152px;
  background: linear-gradient(90deg, transparent, var(--xy-purple), var(--xy-red));
}

.brand-story-hero,
.story-timeline,
.story-proof-grid,
.culture-lab,
.honor-wall,
.store-image-track {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.brand-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

.story-home-birth-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(234, 220, 200, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(255, 246, 236, 0.9)),
    #fff;
  box-shadow: 0 24px 70px rgba(63, 32, 16, 0.12);
}

.story-home-birth-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 28%;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-home-birth-card figure {
  margin: 0;
  overflow: hidden;
}

.story-home-birth-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.story-home-birth-card div {
  padding: 22px;
}

.story-home-birth-card span,
.story-home-birth-card strong {
  display: block;
}

.story-home-birth-card span {
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.story-home-birth-card strong {
  margin-top: 10px;
  color: var(--xy-purple);
  font-size: 26px;
  line-height: 1.24;
}

.story-home-birth-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.story-title-block h2 {
  max-width: 820px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
}

.story-title-block p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.story-color-system {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-color-system span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(49, 30, 66, 0.12);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.story-color-system span:nth-child(1) {
  color: #fff;
  border-color: var(--xy-red);
  background: var(--xy-red);
}

.story-color-system span:nth-child(2) {
  color: #fff;
  border-color: var(--xy-orange);
  background: var(--xy-orange);
}

.story-color-system span:nth-child(3) {
  color: var(--xy-purple);
  border-color: var(--xy-yellow);
  background: var(--xy-yellow);
}

.story-color-system span:nth-child(4) {
  color: #fff;
  border-color: var(--xy-purple);
  background: var(--xy-purple);
}

.story-archive-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.9);
  border-radius: 8px;
  background: var(--xy-purple);
  box-shadow: 0 24px 70px rgba(63, 32, 16, 0.16);
}

.story-archive-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.06);
}

.story-archive-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(49, 30, 66, 0.82);
  backdrop-filter: blur(10px);
}

.story-archive-card span,
.story-timeline span,
.story-proof-grid span,
.culture-lab span,
.honor-wall .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-archive-card span {
  color: var(--xy-yellow);
}

.story-archive-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.36;
}

.story-archive-card-manual {
  min-height: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-archive-card-manual img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 18px 34px rgba(63, 32, 16, 0.08));
  mix-blend-mode: multiply;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.story-timeline article {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 44px rgba(63, 32, 16, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-timeline article::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  content: "";
  border: 18px solid rgba(255, 0, 155, 0.12);
  border-radius: 50%;
}

.story-timeline article:nth-child(2)::after {
  border-color: rgba(252, 95, 0, 0.16);
}

.story-timeline article:nth-child(3) {
  color: #fff;
  border-color: var(--xy-red);
  background:
    linear-gradient(135deg, rgba(255, 0, 155, 0.94), rgba(252, 95, 0, 0.88)),
    var(--xy-red);
}

.story-timeline article:nth-child(3) span,
.story-timeline article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.84);
}

.story-timeline h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.story-timeline p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.story-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.story-scale-card,
.story-quality-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(63, 32, 16, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-scale-card strong {
  display: block;
  color: var(--xy-red);
  font-size: 54px;
  line-height: 0.95;
}

.story-quality-card {
  color: #fff;
  border-color: var(--xy-purple);
  background:
    linear-gradient(135deg, rgba(49, 30, 66, 0.96), rgba(255, 0, 155, 0.88)),
    var(--xy-purple);
}

.story-quality-card span,
.story-quality-card p {
  color: rgba(255, 255, 255, 0.78);
}

.story-quality-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.28;
}

.story-proof-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.culture-lab {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.culture-lab article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.culture-lab .culture-mission {
  grid-row: span 2;
  color: var(--xy-purple);
  background:
    radial-gradient(circle at 92% 10%, var(--xy-yellow), transparent 24%),
    linear-gradient(135deg, rgba(255, 0, 155, 0.14), rgba(255, 255, 255, 0.92));
}

.culture-lab strong {
  display: block;
  font-size: 25px;
  line-height: 1.34;
}

.culture-lab .culture-mission strong {
  max-width: 480px;
  font-size: 42px;
  line-height: 1.1;
}

.culture-lab p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.honor-wall {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 12px;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 30, 66, 0.96), rgba(49, 30, 66, 0.88)),
    var(--xy-purple);
  box-shadow: 0 22px 64px rgba(49, 30, 66, 0.2);
}

.honor-wall h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.honor-wall ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.honor-wall li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 950;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.honor-wall li:nth-child(3n + 1) {
  color: var(--xy-purple);
  border-color: var(--xy-yellow);
  background: var(--xy-yellow);
}

.store-image-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.store-image-track span {
  min-height: 62px;
  padding: 18px;
  border: 1px solid rgba(252, 95, 0, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(252, 95, 0, 0.12), rgba(255, 255, 255, 0.8)),
    #fff;
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-timeline article:hover,
.story-scale-card:hover,
.culture-lab article:hover,
.store-image-track span:hover {
  border-color: rgba(255, 0, 155, 0.32);
  box-shadow: 0 22px 54px rgba(63, 32, 16, 0.12);
  transform: translateY(-3px);
}

.story-quality-card:hover {
  border-color: rgba(255, 255, 0, 0.72);
  box-shadow: 0 24px 58px rgba(49, 30, 66, 0.18);
  transform: translateY(-3px);
}

.honor-wall li:not(:nth-child(3n + 1)):hover {
  border-color: rgba(255, 255, 0, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.story-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.story-page {
  overflow: hidden;
  background: #fff;
}

.manual-cover {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 128px clamp(18px, 6vw, 96px) 84px;
  overflow: hidden;
  color: #fff;
  background: var(--xy-red);
}

.manual-cover::after {
  position: absolute;
  right: clamp(18px, 6vw, 96px);
  bottom: 54px;
  left: clamp(18px, 6vw, 96px);
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.9);
}

.manual-cover-mark {
  position: absolute;
  left: -22vw;
  bottom: -42vw;
  width: min(78vw, 980px);
  height: min(78vw, 980px);
  border: clamp(58px, 7vw, 112px) solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.manual-cover-brand {
  position: absolute;
  top: 138px;
  right: clamp(18px, 6vw, 96px);
  width: min(320px, 28vw);
  filter: brightness(0) invert(1);
}

.manual-cover-copy {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-left: auto;
  padding: 52px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.manual-cover-copy p {
  margin: 0 0 26px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manual-cover-copy h1 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 128px);
  line-height: 1.08;
  font-weight: 950;
}

.manual-spread,
.manual-timeline-section {
  position: relative;
  min-height: 820px;
  padding: 72px clamp(18px, 5.8vw, 112px) 92px;
  overflow: hidden;
  background: #fff;
}

.manual-spread:nth-of-type(odd),
.manual-timeline-section {
  background: var(--porcelain);
}

.manual-spread-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto 70px;
}

.manual-spread-head h2 {
  margin: 0;
  color: var(--xy-red);
  font-size: clamp(50px, 5.4vw, 86px);
  line-height: 0.95;
  font-weight: 950;
}

.manual-spread-head span {
  height: 20px;
  background: rgba(252, 95, 0, 0.45);
}

.manual-spread-head img {
  width: min(260px, 18vw);
}

.manual-spread-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
}

.manual-spread-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
}

.manual-spread-grid-reverse .manual-story-copy {
  order: 2;
}

.manual-spread-grid-reverse .manual-page-shot {
  order: 1;
}

.manual-story-copy {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.manual-story-copy::before {
  position: absolute;
  top: 20px;
  bottom: -64px;
  left: -7vw;
  z-index: -1;
  width: min(560px, 45vw);
  content: "";
  border-radius: 50% 50% 46% 54%;
  background: rgba(252, 95, 0, 0.13);
  transform: rotate(-18deg);
}

.manual-topic {
  margin: 0 0 10px;
  color: var(--xy-red);
  font-size: clamp(34px, 3.7vw, 62px);
  line-height: 1.02;
  font-weight: 950;
}

.manual-story-copy h3,
.manual-growth-copy h3 {
  margin: 0 0 58px;
  color: var(--xy-red);
  font-size: clamp(46px, 5.4vw, 88px);
  line-height: 1.14;
  font-weight: 950;
}

.manual-story-copy h3::after,
.manual-growth-copy h3::after {
  display: block;
  width: 196px;
  height: 2px;
  margin-top: 54px;
  content: "";
  background: var(--xy-red);
}

.manual-story-copy em {
  font-style: normal;
  font-size: clamp(88px, 9.4vw, 156px);
  line-height: 0.82;
}

.manual-story-copy p:not(.manual-topic),
.manual-growth-copy p {
  max-width: 540px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.72;
  font-weight: 800;
}

.manual-page-shot,
.manual-page-wide-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.86);
  background: #fff;
  box-shadow: 0 28px 76px rgba(63, 32, 16, 0.14);
}

.manual-page-shot img,
.manual-page-wide-shot img {
  width: 100%;
  height: auto;
}

.manual-page-shot {
  border-radius: 4px;
}

.manual-page-wide-shot {
  border-radius: 4px;
}

.manual-timeline-layout {
  max-width: 1680px;
  margin: 0 auto;
}

.manual-growth-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.manual-growth-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(14, minmax(66px, 1fr));
  gap: 6px;
  min-height: 470px;
  margin: 20px 0 44px;
  padding: 42px 0 98px;
  align-items: end;
}

.manual-growth-path::before {
  position: absolute;
  right: 2%;
  bottom: 156px;
  left: 1%;
  z-index: 0;
  height: clamp(36px, 5vw, 72px);
  content: "";
  background: var(--xy-red);
  clip-path: polygon(0 72%, 100% 0, 96% 100%, 0 100%);
}

.manual-growth-path article {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(72px, 6.5vw, 116px);
  height: clamp(72px, 6.5vw, 116px);
  margin-inline: auto;
  color: var(--ink);
  border-radius: 50%;
  background: #f7ba83;
  box-shadow: 0 10px 24px rgba(63, 32, 16, 0.08);
}

.manual-growth-path article:nth-child(1) {
  transform: translateY(118px);
}

.manual-growth-path article:nth-child(2) {
  transform: translateY(100px);
}

.manual-growth-path article:nth-child(3) {
  transform: translateY(82px);
}

.manual-growth-path article:nth-child(4) {
  transform: translateY(66px);
}

.manual-growth-path article:nth-child(5) {
  transform: translateY(48px);
}

.manual-growth-path article:nth-child(6) {
  transform: translateY(30px);
}

.manual-growth-path article:nth-child(7) {
  transform: translateY(12px);
}

.manual-growth-path article:nth-child(8) {
  transform: translateY(-4px);
}

.manual-growth-path article:nth-child(9) {
  transform: translateY(-20px);
}

.manual-growth-path article:nth-child(10) {
  transform: translateY(-38px);
}

.manual-growth-path article:nth-child(11) {
  transform: translateY(-58px);
}

.manual-growth-path article:nth-child(12) {
  transform: translateY(-78px);
}

.manual-growth-path article:nth-child(13) {
  transform: translateY(-98px);
}

.manual-growth-path article:nth-child(14) {
  transform: translateY(-118px);
}

.manual-growth-path strong {
  color: var(--xy-red);
  font-size: clamp(26px, 3.2vw, 52px);
  line-height: 0.9;
  font-weight: 950;
}

.manual-growth-path article:nth-child(2n) strong {
  color: var(--ink);
}

.manual-growth-path span {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

.manual-growth-path small {
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.manual-honor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.manual-honor-list li {
  min-height: 50px;
  padding: 12px 14px;
  color: var(--xy-red);
  border: 1px solid rgba(255, 0, 155, 0.2);
  border-radius: 4px;
  background: rgba(255, 0, 155, 0.06);
  font-size: 15px;
  font-weight: 950;
}

.story-cinematic-page {
  --story-content-width: min(85vw, 1540px);
  --story-birth-width: min(75vw, 1360px);

  background:
    linear-gradient(90deg, rgba(49, 30, 66, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff9f1, #fffdf8 38%, #fff6ec);
  background-size: 220px 100%, 100% 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 880ms ease,
    transform 960ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-54px) translateY(18px);
}

[data-reveal="right"] {
  transform: translateX(54px) translateY(18px);
}

[data-reveal="up"] {
  transform: translateY(52px);
}

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

.brand-strip article:nth-child(2),
.story-proof-grid article:nth-child(2),
.feature-dishes article:nth-child(2),
.contact-hub-grid article:nth-child(2) {
  --reveal-delay: 110ms;
}

.brand-strip article:nth-child(3),
.story-proof-grid article:nth-child(3),
.feature-dishes article:nth-child(3) {
  --reveal-delay: 190ms;
}

.brand-strip article:nth-child(4),
.story-proof-grid article:nth-child(4) {
  --reveal-delay: 270ms;
}

.story-cinema-hero {
  min-height: 100vh;
  padding: 118px clamp(18px, 5vw, 64px) 74px;
}

.story-cinema-frame {
  position: relative;
  max-width: 1720px;
  min-height: min(72vh, 780px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.96);
  border-radius: 8px;
  background: var(--xy-purple);
  box-shadow: 0 34px 86px rgba(63, 32, 16, 0.16);
}

.story-cinema-frame::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 28%;
  z-index: 3;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-cinema-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(49, 30, 66, 0.04), rgba(49, 30, 66, 0.26)),
    linear-gradient(90deg, rgba(49, 30, 66, 0.2), transparent 48%);
  pointer-events: none;
}

.story-cinema-frame img {
  width: 100%;
  height: min(72vh, 780px);
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.9);
}

.story-birth-hero {
  min-height: auto;
  padding: 112px 0 72px;
}

.story-birth-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  box-sizing: border-box;
  width: var(--story-birth-width);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 54%, rgba(244, 185, 133, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 244, 0.94)),
    #fff;
  box-shadow: 0 26px 72px rgba(63, 32, 16, 0.1);
}

.story-birth-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 22%;
  height: 9px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-birth-copy {
  position: relative;
  z-index: 1;
}

.story-birth-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--xy-red);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.12;
  font-weight: 950;
}

.story-birth-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.86;
}

.story-birth-copy p:not(.eyebrow)::before {
  display: block;
  width: 150px;
  height: 2px;
  margin-bottom: 24px;
  content: "";
  background: var(--xy-red);
}

.story-birth-photo {
  position: relative;
  z-index: 1;
  margin: 0;
}

.story-birth-photo img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 18px 52px rgba(63, 32, 16, 0.1);
}

.story-cinema-caption {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 64px);
  left: clamp(24px, 4vw, 64px);
  z-index: 4;
  max-width: 1320px;
  margin: 0;
  padding: clamp(24px, 3.5vw, 46px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(49, 30, 66, 0.92);
  box-shadow: 0 20px 48px rgba(22, 12, 30, 0.22);
  backdrop-filter: blur(14px);
}

.story-cinema-caption span {
  display: block;
  margin-bottom: 20px;
  color: var(--xy-yellow);
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 950;
}

.story-cinema-caption h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: 1.18;
  font-weight: 950;
}

.story-cinema-caption p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
}

.story-fact-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  box-sizing: border-box;
  width: var(--story-content-width);
  max-width: none;
  margin: -26px auto 0;
  padding: 0;
  position: relative;
  z-index: 4;
}

.story-fact-ribbon article {
  min-height: 128px;
  padding: 24px;
  color: #fff;
  background: var(--xy-purple);
}

.story-fact-ribbon article:first-child {
  border-radius: 8px 0 0 8px;
}

.story-fact-ribbon article:last-child {
  border-radius: 0 8px 8px 0;
}

.story-fact-ribbon span {
  display: block;
  color: var(--xy-yellow);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.92;
  font-weight: 950;
}

.story-fact-ribbon strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.story-scroll-section,
.story-growth-section,
.story-honor-showcase {
  padding: 110px clamp(18px, 5vw, 64px);
}

.story-section-kicker {
  width: min(var(--story-content-width), 1240px);
  max-width: none;
  margin: 0 auto 54px;
  text-align: center;
}

.story-section-kicker h2,
.story-honor-copy h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(46px, 5.4vw, 86px);
  line-height: 1.08;
  font-weight: 950;
}

.story-section-kicker p:not(.eyebrow),
.story-honor-copy p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.story-reveal-chapter {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: var(--story-content-width);
  max-width: none;
  margin: 0 auto 86px;
}

.story-chapter-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--xy-red);
  font-size: 15px;
  font-weight: 950;
}

.story-chapter-copy h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.14;
  font-weight: 950;
}

.story-chapter-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.story-evidence-card,
.story-memory-frame,
.story-honor-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(63, 32, 16, 0.12);
}

.story-evidence-card::before,
.story-memory-frame::before,
.story-honor-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 30%;
  z-index: 2;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-evidence-card img {
  width: 100%;
  aspect-ratio: 1.44;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.story-evidence-card figcaption {
  padding: 22px;
  border-top: 1px solid rgba(234, 220, 200, 0.92);
}

.story-evidence-card strong,
.story-evidence-card span {
  display: block;
}

.story-evidence-card strong {
  font-size: 24px;
}

.story-evidence-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

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

.story-origin-notes article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 0, 0.18), transparent 26%),
    #fff;
  box-shadow: 0 20px 48px rgba(63, 32, 16, 0.08);
}

.story-origin-notes span {
  display: block;
  color: var(--xy-red);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.9;
  font-weight: 950;
}

.story-origin-notes strong {
  display: block;
  margin-top: 30px;
  font-size: 24px;
  line-height: 1.2;
}

.story-origin-notes p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-wide-memory {
  max-width: 1540px;
  margin: 0 auto;
}

.story-memory-frame img {
  width: 100%;
  height: min(68vh, 720px);
  min-height: 560px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.94) contrast(1.04);
}

.story-memory-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(49, 30, 66, 0.78));
}

.story-memory-frame figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 58px);
  left: clamp(22px, 4vw, 58px);
  z-index: 2;
  max-width: 1120px;
  padding: clamp(22px, 3vw, 38px);
  color: #fff;
  border-radius: 8px;
  background: rgba(49, 30, 66, 0.9);
  backdrop-filter: blur(12px);
}

.story-memory-frame span {
  color: var(--xy-yellow);
  font-weight: 950;
}

.story-memory-frame strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.18;
}

.story-memory-frame p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.story-growth-section {
  background: #fff;
}

.story-manual-gallery {
  --growth-left: 1fr;
  --growth-right: 0.54fr;

  display: grid;
  grid-template-columns: minmax(0, var(--growth-left)) minmax(280px, var(--growth-right));
  gap: 18px;
  align-items: start;
  width: var(--story-content-width);
  max-width: none;
  margin: 0 auto;
  transition: grid-template-columns 760ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.story-manual-gallery[data-growth-focus] {
  cursor: ew-resize;
}

.story-manual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(63, 32, 16, 0.12);
  transition:
    border-color 420ms ease,
    box-shadow 520ms ease,
    transform 680ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.story-manual-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 22%;
  z-index: 2;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
}

.story-manual-card img {
  width: 100%;
  height: auto;
  background: #fff;
}

.story-manual-card-map {
  transform: translateY(54px);
}

.story-manual-gallery[data-growth-side="left"] .story-manual-card-timeline {
  border-color: rgba(255, 0, 155, 0.3);
  box-shadow: 0 32px 82px rgba(63, 32, 16, 0.16);
  transform: translateY(-6px) scale(1.02);
}

.story-manual-gallery[data-growth-side="right"] .story-manual-card-map {
  border-color: rgba(255, 0, 155, 0.3);
  box-shadow: 0 32px 82px rgba(63, 32, 16, 0.16);
  transform: translateY(40px) scale(1.035);
}

.story-manual-card-map img {
  padding: 12px;
}

.story-manual-card figcaption {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(234, 220, 200, 0.92);
}

.story-manual-card strong,
.story-manual-card span {
  display: block;
}

.story-manual-card strong {
  font-size: 24px;
}

.story-manual-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.64;
}

.story-growth-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  max-width: 1540px;
  margin: 0 auto;
  padding: 42px 0 34px;
}

.story-growth-line::before {
  position: absolute;
  top: 50%;
  right: 3%;
  left: 3%;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--xy-red), var(--xy-orange), var(--xy-yellow));
  transform: translateY(-50%);
}

.story-growth-line article {
  position: relative;
  z-index: 1;
  min-height: 182px;
  padding: 24px;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 48px rgba(63, 32, 16, 0.08);
}

.story-growth-line article:nth-child(even) {
  transform: translateY(44px);
}

.story-growth-line span {
  color: var(--muted);
  font-weight: 950;
}

.story-growth-line strong {
  display: block;
  margin-top: 22px;
  color: var(--xy-red);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.92;
  font-weight: 950;
}

.story-growth-line small {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 950;
}

.story-quality-showcase {
  padding: 110px clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 0, 155, 0.08), transparent 28%),
    var(--porcelain);
}

.story-quality-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  width: var(--story-content-width);
  max-width: none;
  margin: 0 auto;
}

.quality-tile {
  position: relative;
  z-index: 1;
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 20px 52px rgba(63, 32, 16, 0.09);
  transition:
    border-color 420ms ease,
    box-shadow 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.quality-tile-large {
  grid-column: 1 / span 5;
}

.quality-tile-wide {
  grid-column: 6 / span 7;
  margin-top: 54px;
}

.quality-tile:nth-child(3) {
  grid-column: 2 / span 4;
  margin-top: -18px;
}

.quality-tile:nth-child(4) {
  grid-column: 6 / span 3;
  margin-top: 28px;
}

.quality-tile-small {
  grid-column: 9 / span 4;
  margin-top: -10px;
}

.quality-tile:hover,
.quality-tile:focus-visible {
  z-index: 3;
  border-color: rgba(255, 0, 155, 0.28);
  box-shadow: 0 28px 76px rgba(63, 32, 16, 0.16);
  transform: translateY(-8px) scale(1.045);
}

.quality-tile:focus-visible {
  outline: 3px solid rgba(255, 0, 155, 0.32);
  outline-offset: 4px;
}

.quality-tile img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.quality-tile-wide img {
  max-height: 260px;
}

.quality-tile figcaption {
  padding: 18px 6px 4px;
}

.quality-tile strong {
  display: block;
  color: var(--xy-red);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.quality-tile span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.68;
}

.story-old-store-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  box-sizing: border-box;
  width: var(--story-content-width);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  padding: 110px clamp(18px, 5vw, 64px);
  background: #fff;
}

.story-old-store-copy {
  max-width: 620px;
  justify-self: end;
}

.story-old-store-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.08;
  font-weight: 950;
}

.story-old-store-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.story-old-store-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.story-old-store-photos figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: var(--xy-purple);
  box-shadow: 0 24px 62px rgba(63, 32, 16, 0.12);
}

.story-old-store-photos img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.story-old-store-photos figcaption {
  min-height: 98px;
  padding: 18px;
  color: #fff;
  line-height: 1.6;
}

.story-honor-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  box-sizing: border-box;
  width: var(--story-content-width);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 0, 155, 0.12), transparent 30%),
    var(--porcelain);
}

.story-honor-copy {
  max-width: 900px;
  justify-self: end;
}

.story-honor-copy h2 {
  margin-right: 0;
  margin-left: 0;
}

.story-honor-copy p {
  margin-right: 0;
  margin-left: 0;
}

.story-honor-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.story-honor-copy li {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 0, 155, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--xy-red);
  font-weight: 950;
}

.story-honor-card {
  justify-self: start;
  max-width: 430px;
  padding: 18px;
}

.story-honor-card img {
  width: 100%;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.dish-page {
  position: relative;
  min-height: 100vh;
  padding: 92px clamp(18px, 5vw, 64px) 54px;
  overflow: hidden;
}

.dish-page::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(30vw, 430px);
  content: "";
  background: var(--xy-orange);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.09;
  pointer-events: none;
}

.dish-page::after {
  position: absolute;
  left: 46px;
  bottom: 34px;
  width: 230px;
  height: 230px;
  content: "";
  border: 18px solid rgba(49, 30, 66, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.intro-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 4px;
  text-align: center;
}

.intro-panel h2 {
  font-size: 78px;
  line-height: 0.96;
}

.section-lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.flavor-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  color: var(--xy-purple);
  border: 1px solid rgba(49, 30, 66, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.orbit-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  max-width: 1320px;
  margin: 0 auto;
}

.orbit-stage {
  position: relative;
  height: min(62vw, 690px);
  min-height: 590px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
  --scanner-y: -48%;
}

.orbit-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(79vw, 1010px);
  height: min(44vw, 540px);
  content: "";
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(232, 25, 122, 0.56) 18deg,
    rgba(255, 213, 0, 0.36) 32deg,
    transparent 58deg,
    transparent 180deg,
    rgba(252, 95, 0, 0.42) 205deg,
    transparent 236deg,
    transparent 360deg
  );
  opacity: 0.44;
  transform: translate(-50%, var(--scanner-y));
  pointer-events: none;
  animation: orbitScanner 18s linear infinite;
  -webkit-mask: radial-gradient(ellipse at center, transparent 0 63%, #000 64% 67%, transparent 68%);
  mask: radial-gradient(ellipse at center, transparent 0 63%, #000 64% 67%, transparent 68%);
}

.orbit-stage.is-dragging {
  cursor: grabbing;
}

.orbit-stage.is-auto-rotating .orbit-track {
  border-color: rgba(232, 25, 122, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 213, 0, 0.1),
    0 0 46px rgba(232, 25, 122, 0.12);
}

.orbit-track,
.bao-outline,
.dish-orbit,
.dish-copy {
  position: absolute;
  top: 50%;
  left: 50%;
}

.orbit-track {
  z-index: 1;
  width: min(76vw, 970px);
  height: min(42vw, 520px);
  border: 1px solid rgba(232, 25, 122, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -48%);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.orbit-track::before,
.orbit-track::after {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px dashed rgba(252, 95, 0, 0.2);
  border-radius: 50%;
}

.orbit-track::after {
  inset: 20%;
  border-color: rgba(49, 30, 66, 0.12);
}

.bao-outline {
  z-index: 1;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  min-width: 420px;
  min-height: 420px;
  border: 11px solid rgba(33, 25, 22, 0.055);
  border-radius: 48% 48% 54% 54%;
  transform: translate(-50%, -45%);
  pointer-events: none;
}

.bao-outline span {
  position: absolute;
  top: -34px;
  width: 54px;
  height: 88px;
  border: 11px solid rgba(33, 25, 22, 0.055);
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
  background: var(--paper);
}

.bao-outline span:nth-child(1) {
  left: calc(50% - 78px);
  transform: rotate(-24deg);
}

.bao-outline span:nth-child(2) {
  left: calc(50% - 27px);
}

.bao-outline span:nth-child(3) {
  left: calc(50% + 24px);
  transform: rotate(24deg);
}

.dish-orbit {
  z-index: 3;
  width: 1px;
  height: 1px;
  transform: translate(-50%, -49%);
}

.dish-node {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(132px, 16vw, 230px);
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 4px solid var(--porcelain);
  border-radius: 50%;
  background: var(--porcelain);
  box-shadow: 0 22px 44px rgba(58, 33, 18, 0.18);
  opacity: var(--opacity);
  transform:
    translate(-50%, -50%)
    translate3d(var(--x), var(--y), 0)
    scale(var(--scale));
  z-index: var(--z);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.dish-node::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  box-shadow: inset 0 -34px 48px rgba(36, 17, 4, 0.16);
  pointer-events: none;
}

.dish-node img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--image-position);
  padding: 10px;
  background: #fff8ee;
}

.dish-node.is-active {
  border-color: var(--xy-yellow);
  box-shadow:
    0 28px 70px rgba(232, 25, 122, 0.26),
    0 0 42px rgba(255, 213, 0, 0.16),
    0 0 0 10px rgba(255, 213, 0, 0.18);
}

.dish-node:focus-visible {
  outline: 3px solid var(--xy-purple);
  outline-offset: 4px;
}

.dish-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  width: clamp(280px, 34vw, 438px);
  min-height: clamp(280px, 34vw, 438px);
  padding: clamp(26px, 4vw, 46px);
  text-align: center;
  border: 1px solid rgba(232, 25, 122, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.88)),
    var(--porcelain);
  box-shadow: var(--shadow);
  transform: translate(-50%, -42%);
  z-index: 90;
}

.dish-kicker {
  margin: 0 0 10px;
  color: var(--xy-orange);
  font-size: 13px;
  font-weight: 950;
}

.dish-copy h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.dish-copy p:not(.dish-kicker) {
  max-width: 310px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.dish-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 22px 0 0;
}

.dish-meta div {
  min-height: 62px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.82);
}

.dish-meta dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dish-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}

.orbit-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--xy-purple);
  border: 1px solid rgba(49, 30, 66, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(63, 32, 16, 0.1);
  cursor: pointer;
}

.orbit-button span {
  display: block;
  margin-top: -2px;
  font-size: 40px;
  line-height: 1;
}

.orbit-button:hover,
.orbit-button:focus-visible {
  color: #fff;
  border-color: var(--xy-red);
  background: var(--xy-red);
}

.dish-footer {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
  margin: -26px auto 0;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  min-height: 32px;
}

.dish-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.dish-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(49, 30, 66, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dish-dot.is-active {
  border-color: var(--xy-red);
  background: var(--xy-red);
  box-shadow: 0 0 0 5px rgba(232, 25, 122, 0.12);
  transform: scale(1.25);
}

@keyframes orbitScanner {
  from {
    transform: translate(-50%, var(--scanner-y)) rotate(0deg);
  }

  to {
    transform: translate(-50%, var(--scanner-y)) rotate(360deg);
  }
}

@keyframes storyOrbitScan {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-grip,
  .loader-steam span,
  .loader-shadow,
  .page-loader.is-complete .loader-card,
  .orbit-stage::before,
  .story-orbit-map::after {
    animation: none;
  }

  .page-loader,
  .loader-progress span,
  .story-timeline article,
  .story-scale-card,
  .story-quality-card,
  .culture-lab article,
  .store-image-track span,
  .honor-wall li,
  .map-choice-modal,
  .map-choice-dialog,
  .map-choice-options a {
    transition: none;
  }
}

.content-section,
.split-section,
.member-section,
.official-section {
  padding: 86px clamp(18px, 5vw, 64px);
}

.standard-section {
  background: var(--porcelain);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(520px, 1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.member-section h2,
.official-section h2 {
  font-size: 46px;
  line-height: 1.12;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.standard-grid article,
.store-card div,
.official-section dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(63, 32, 16, 0.07);
}

.standard-grid article {
  min-height: 240px;
  padding: 26px;
}

.standard-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: 38px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.1), rgba(252, 95, 0, 0.1)),
    var(--paper);
}

.split-copy p {
  max-width: 620px;
  margin-top: 18px;
}

.store-card {
  display: grid;
  gap: 12px;
}

.store-card div {
  min-height: 92px;
  padding: 20px;
}

.store-card span,
.official-section dt {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.store-card strong,
.official-section dd {
  display: block;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.store-locator-section {
  padding: 92px clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.1), rgba(252, 95, 0, 0.1)),
    var(--paper);
}

.store-locator-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1fr);
  gap: 38px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 32px;
}

.store-locator-heading h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.store-locator-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.store-locator-app {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(420px, 1.28fr) minmax(300px, 0.82fr);
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.store-filter-panel,
.store-results-panel,
.store-detail-panel {
  border: 1px solid rgba(234, 220, 200, 0.9);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 44px rgba(63, 32, 16, 0.08);
}

.store-filter-panel,
.store-detail-panel {
  position: sticky;
  top: 94px;
}

.store-filter-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.store-location-card {
  padding: 20px;
  border: 1px solid rgba(232, 25, 122, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.08), rgba(255, 213, 0, 0.18)),
    #fff;
}

.store-location-card span,
.store-field-grid label span,
.store-summary-grid span,
.store-results-head span,
.store-detail-panel > span,
.store-result-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.store-location-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.12;
}

.store-location-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.store-locate-button,
.store-clear-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
}

.store-locate-button {
  width: 100%;
  color: #fff;
  background: var(--xy-red);
  box-shadow: 0 12px 28px rgba(232, 25, 122, 0.2);
}

.store-locate-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.store-field-grid {
  display: grid;
  gap: 12px;
}

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

.store-field-grid input,
.store-field-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(49, 30, 66, 0.18);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.store-field-grid input:focus,
.store-field-grid select:focus {
  border-color: var(--xy-red);
  outline: 3px solid rgba(232, 25, 122, 0.12);
}

.store-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.store-summary-grid div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.store-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 23px;
  line-height: 1;
}

.store-results-panel {
  min-height: 680px;
  overflow: hidden;
}

.store-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.store-results-head strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.store-clear-button {
  padding: 0 14px;
  color: var(--xy-purple);
  border: 1px solid rgba(49, 30, 66, 0.18);
  background: rgba(255, 248, 238, 0.9);
}

.store-state {
  min-height: 38px;
  padding: 10px 18px;
  color: var(--muted);
  border-bottom: 1px solid rgba(234, 220, 200, 0.74);
  background: rgba(255, 248, 238, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.store-state[data-state="success"] {
  color: var(--xy-purple);
  background: rgba(255, 213, 0, 0.16);
}

.store-state[data-state="error"] {
  color: var(--xy-red);
  background: rgba(232, 25, 122, 0.08);
}

.store-list {
  display: grid;
  gap: 10px;
  max-height: 600px;
  padding: 14px;
  overflow: auto;
}

.store-result-card {
  border: 1px solid rgba(234, 220, 200, 0.9);
  border-radius: 8px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.store-result-card.is-active {
  border-color: rgba(232, 25, 122, 0.44);
  box-shadow: 0 16px 34px rgba(232, 25, 122, 0.12);
}

.store-result-main {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  width: 100%;
  padding: 16px;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.store-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 50%;
  background: var(--xy-red);
  font-size: 14px;
  font-weight: 950;
}

.store-result-copy {
  min-width: 0;
}

.store-result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.store-result-topline strong {
  min-width: 0;
  font-size: 19px;
  line-height: 1.32;
}

.store-result-topline em {
  flex: 0 0 auto;
  padding: 4px 7px;
  color: var(--xy-red);
  border: 1px solid rgba(232, 25, 122, 0.22);
  border-radius: 8px;
  background: rgba(232, 25, 122, 0.06);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.store-result-address {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.store-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.store-result-meta span {
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.72);
}

.store-result-meta .is-ready {
  color: var(--xy-purple);
  border-color: rgba(255, 213, 0, 0.72);
  background: rgba(255, 213, 0, 0.22);
}

.store-result-meta .is-pending {
  color: var(--xy-red);
  border-color: rgba(232, 25, 122, 0.18);
  background: rgba(232, 25, 122, 0.06);
}

.store-result-meta .is-address-nav {
  color: var(--xy-purple);
  border-color: rgba(49, 30, 66, 0.16);
  background: rgba(255, 248, 238, 0.86);
}

.store-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px 66px;
}

.store-result-actions a,
.store-result-actions button,
.store-result-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(49, 30, 66, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.store-result-actions a,
.store-result-actions button {
  color: var(--xy-purple);
  background: rgba(255, 255, 255, 0.8);
}

.store-result-actions button {
  cursor: pointer;
  font: inherit;
}

.store-result-actions span {
  color: var(--muted);
  background: rgba(234, 220, 200, 0.28);
}

.store-empty-state {
  display: grid;
  align-content: center;
  min-height: 240px;
  padding: 28px;
  text-align: center;
  border: 1px dashed rgba(49, 30, 66, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.store-empty-state strong {
  font-size: 22px;
}

.store-empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
}

.store-detail-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.store-detail-panel > strong {
  font-size: 30px;
  line-height: 1.16;
}

.store-detail-panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.store-detail-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.store-detail-panel dl div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.76);
}

.store-detail-panel dt {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.store-detail-panel dd {
  margin: 0;
  font-weight: 950;
  line-height: 1.35;
}

.store-detail-actions {
  display: grid;
  gap: 10px;
}

.store-detail-actions .primary-button,
.store-detail-actions .secondary-button {
  width: 100%;
}

.store-detail-actions .is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.store-detail-actions .is-copy-success {
  color: var(--xy-purple);
  border-color: var(--xy-yellow);
  background: var(--xy-yellow);
  box-shadow: 0 14px 34px rgba(255, 255, 0, 0.24);
}

.map-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.map-choice-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.map-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 22, 0.46);
  backdrop-filter: blur(10px);
}

.map-choice-dialog {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(560px, 100%);
  padding: 26px;
  border: 1px solid rgba(234, 220, 200, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.08), rgba(255, 213, 0, 0.14)),
    var(--porcelain);
  box-shadow: 0 34px 90px rgba(33, 25, 22, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.map-choice-modal.is-open .map-choice-dialog {
  transform: translateY(0) scale(1);
}

.map-choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--xy-purple);
  border: 1px solid rgba(49, 30, 66, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.map-choice-kicker {
  color: var(--xy-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-choice-dialog h2 {
  margin: 0;
  padding-right: 44px;
  font-size: 34px;
  line-height: 1.12;
}

.map-choice-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-choice-dialog [data-map-modal-address] {
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(255, 213, 0, 0.72);
  border-radius: 8px;
  background: rgba(255, 213, 0, 0.18);
  font-weight: 900;
}

.map-choice-options {
  display: grid;
  gap: 10px;
}

.map-choice-options a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 14px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.map-choice-options a:hover,
.map-choice-options a:focus-visible {
  border-color: rgba(232, 25, 122, 0.44);
  outline: none;
  box-shadow: 0 14px 30px rgba(232, 25, 122, 0.12);
  transform: translateY(-1px);
}

.map-choice-options span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 50%;
  background: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.map-choice-options a:nth-child(2) span {
  background: var(--xy-purple);
}

.map-choice-options a:nth-child(3) span {
  color: var(--xy-purple);
  background: var(--xy-yellow);
}

.map-choice-options strong {
  align-self: end;
  font-size: 20px;
}

.map-choice-options small {
  color: var(--muted);
  font-weight: 850;
}

.map-choice-note {
  font-size: 13px;
}

.member-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  color: #fff;
  background: var(--xy-red);
}

.member-section .eyebrow,
.member-section p {
  color: rgba(255, 255, 255, 0.78);
}

.member-section p {
  max-width: 640px;
  margin-top: 16px;
}

.member-connect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.member-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-benefits span {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 950;
}

.member-qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px;
  color: var(--xy-purple);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(49, 30, 66, 0.16);
}

.member-qr-card img {
  width: min(178px, 100%);
  height: auto;
  border-radius: 8px;
}

.member-qr-card figcaption {
  display: grid;
  gap: 4px;
  text-align: center;
}

.member-qr-card span {
  color: var(--xy-red);
  font-size: 12px;
  font-weight: 950;
}

.member-qr-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.official-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(640px, 1fr);
  gap: 42px;
  background: var(--porcelain);
}

.official-section p {
  max-width: 620px;
  margin-top: 18px;
}

.official-section dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.official-section dl div {
  padding: 20px;
}

.official-intro {
  position: sticky;
  top: 104px;
  align-self: start;
}

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

.contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 620px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(63, 32, 16, 0.1);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.contact-card-recruit::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 88%, rgba(232, 25, 122, 0.08) 88% 100%),
    linear-gradient(135deg, rgba(232, 25, 122, 0.1), rgba(255, 213, 0, 0.2));
}

.contact-card-feedback::before {
  background:
    radial-gradient(circle at 88% 8%, rgba(49, 30, 66, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 238, 0.72), rgba(255, 255, 255, 0));
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-head span,
.job-pay-grid span,
.contact-info-list span,
.complaint-callout span,
.feedback-prep > span,
.official-note span {
  display: block;
  color: var(--xy-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card-head h3 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
}

.contact-card-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.job-pay-grid {
  display: grid;
  gap: 10px;
}

.job-pay-grid div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(232, 25, 122, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.job-pay-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.25;
}

.benefit-list,
.feedback-prep ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.feedback-prep li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.5;
}

.benefit-list li::before,
.feedback-prep li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--xy-yellow);
  box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.2);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info-list {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.contact-info-list p {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(234, 220, 200, 0.9);
}

.contact-info-list strong {
  display: block;
  margin-top: 5px;
  line-height: 1.45;
}

.complaint-callout {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 30, 66, 0.92), rgba(232, 25, 122, 0.9)),
    var(--xy-purple);
  box-shadow: 0 20px 42px rgba(49, 30, 66, 0.18);
}

.complaint-callout span {
  color: rgba(255, 255, 255, 0.72);
}

.complaint-callout strong {
  font-size: 36px;
  line-height: 1;
}

.complaint-callout .primary-button {
  width: 100%;
  color: var(--xy-purple);
  background: var(--xy-yellow);
  box-shadow: none;
}

.feedback-prep {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(49, 30, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.72);
}

.official-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(234, 220, 200, 0.95);
}

.official-note strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.45;
}

.campaign-page {
  background:
    linear-gradient(90deg, rgba(232, 25, 122, 0.08) 0 18px, transparent 18px),
    linear-gradient(180deg, #fff8ee 0%, #fffdf8 46%, #fff1e7 100%);
}

.campaign-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68vh;
  padding: 112px clamp(18px, 5vw, 64px) 58px;
  overflow: hidden;
}

.campaign-hero::before {
  position: absolute;
  inset: 92px 0 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.96) 0%, rgba(255, 248, 238, 0.88) 38%, rgba(255, 248, 238, 0.18) 66%, rgba(255, 248, 238, 0.8) 100%),
    linear-gradient(135deg, rgba(232, 25, 122, 0.18), transparent 44%),
    #fffdf8;
}

.campaign-hero-copy,
.campaign-hero-art {
  position: relative;
  z-index: 1;
}

.campaign-hero-copy {
  width: min(720px, 58vw);
}

.campaign-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.3vw, 69px);
  line-height: 0.96;
}

.campaign-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 760;
  line-height: 1.75;
}

.campaign-hero-art {
  position: absolute;
  top: 108px;
  right: clamp(18px, 5vw, 64px);
  bottom: 52px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  width: min(30vw, 416px);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(232, 25, 122, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(63, 32, 16, 0.18);
}

.campaign-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.campaign-hero-art figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.campaign-timeline {
  position: relative;
  padding: 42px clamp(18px, 5vw, 64px) 72px;
}

.campaign-timeline::before {
  position: absolute;
  top: 58px;
  bottom: 92px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--xy-red), rgba(232, 25, 122, 0.08));
}

.campaign-year {
  position: sticky;
  top: 88px;
  z-index: 2;
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 13px;
  border: 1px solid rgba(232, 25, 122, 0.18);
  border-radius: 8px;
  color: var(--xy-red);
  background: rgba(255, 253, 248, 0.9);
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.campaign-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 0.78fr);
  gap: 19px;
  align-items: center;
  width: min(784px, calc(50% - 28px));
  margin: 0 0 27px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(63, 32, 16, 0.1);
}

.campaign-card:nth-of-type(even) {
  margin-left: calc(50% + 28px);
}

.campaign-card::before {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  content: "";
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--xy-red);
  box-shadow: 0 0 0 1px rgba(232, 25, 122, 0.24);
}

.campaign-card:nth-of-type(odd)::before {
  right: -36px;
}

.campaign-card:nth-of-type(even)::before {
  left: -36px;
}

.campaign-card figure {
  display: grid;
  place-items: center;
  min-height: 288px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 25, 122, 0.08), transparent),
    #fff8ee;
}

.campaign-card img {
  width: 100%;
  max-height: 416px;
  object-fit: contain;
}

.campaign-card-copy {
  padding: 10px 4px;
}

.campaign-card-copy span {
  color: var(--xy-red);
  font-size: 13px;
  font-weight: 950;
}

.campaign-card-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.08;
}

.campaign-card-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.75;
}

.campaign-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.campaign-tags em {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--xy-purple);
  background: rgba(255, 0, 155, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.campaign-card[data-campaign-reveal] {
  opacity: 0;
  transform: translateX(-42px) rotate(-1deg);
  transition:
    opacity 780ms ease,
    transform 900ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.campaign-card:nth-of-type(even)[data-campaign-reveal] {
  transform: translateX(42px) rotate(1deg);
}

.campaign-card.is-visible,
.campaign-card:nth-of-type(even).is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--xy-purple);
}

.site-footer img {
  width: clamp(220px, 24vw, 320px);
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .story-cinematic-page {
    --story-content-width: calc(100vw - 36px);
    --story-birth-width: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .top-nav {
    display: none;
  }

  .mini-cta {
    justify-self: end;
  }

  .hero-section,
  .flavor-hero,
  .story-page-hero,
  .home-feature-section,
  .home-campaign-section,
  .brand-story-section,
  .section-heading,
  .story-chapter-heading,
  .craft-heading,
  .split-section,
  .store-locator-heading,
  .store-locator-app,
  .member-section,
  .official-section {
    grid-template-columns: 1fr;
  }

  .store-filter-panel,
  .store-detail-panel,
  .official-intro {
    position: static;
  }

  .store-results-panel {
    min-height: auto;
  }

  .store-list {
    max-height: 580px;
  }

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

  .story-cinema-frame img {
    height: 680px;
  }

  .story-reveal-chapter,
  .story-birth-panel,
  .story-manual-gallery,
  .story-quality-wall,
  .story-old-store-section,
  .story-honor-showcase {
    grid-template-columns: 1fr;
  }

  .story-growth-line {
    grid-template-columns: repeat(7, minmax(160px, 1fr));
    margin-right: calc(clamp(18px, 5vw, 64px) * -1);
    overflow-x: auto;
    padding-right: clamp(18px, 5vw, 64px);
  }

  .story-honor-copy,
  .story-old-store-copy,
  .story-honor-card {
    justify-self: stretch;
  }

  .story-manual-card-map {
    max-width: 680px;
    transform: none;
  }

  .story-old-store-photos {
    max-width: none;
  }

  .story-honor-card {
    max-width: 520px;
  }

  .manual-cover {
    min-height: 780px;
  }

  .manual-cover-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .manual-spread-grid,
  .manual-spread-grid-reverse {
    grid-template-columns: 1fr;
  }

  .manual-spread-grid-reverse .manual-story-copy,
  .manual-spread-grid-reverse .manual-page-shot {
    order: initial;
  }

  .manual-story-copy {
    min-height: auto;
  }

  .manual-growth-path {
    grid-template-columns: repeat(14, 104px);
    margin-right: calc(clamp(18px, 5.8vw, 112px) * -1);
    overflow-x: auto;
  }

  .story-history-list,
  .story-belief-grid,
  .story-page-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-connect {
    grid-template-columns: minmax(0, 1fr) 200px;
    align-items: start;
  }

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

  .hero-visual img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(72vw, 540px);
    height: min(72vw, 540px);
  }

  .hero-bao-mark {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .story-orbit-map {
    top: 142px;
    width: min(620px, 72vw);
    height: 300px;
    opacity: 0.32;
  }

  .brand-strip,
  .detail-stat-strip,
  .culture-grid,
  .craft-grid,
  .story-page-stat-strip,
  .story-history-list,
  .story-belief-grid,
  .dish-detail-grid,
  .other-menu-grid,
  .standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .orbit-button {
    position: absolute;
    top: calc(50% - 26px);
  }

  .orbit-button-prev {
    left: 0;
  }

  .orbit-button-next {
    right: 0;
  }

  .orbit-stage {
    height: 710px;
    min-height: 710px;
  }

  .campaign-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .campaign-hero-copy {
    width: min(720px, 100%);
  }

  .campaign-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    height: min(56vh, 544px);
  }

  .campaign-timeline::before {
    left: clamp(18px, 5vw, 64px);
  }

  .campaign-card,
  .campaign-card:nth-of-type(even) {
    width: auto;
    margin-left: 26px;
  }

  .campaign-card,
  .campaign-card:nth-of-type(even) {
    grid-template-columns: minmax(220px, 0.56fr) minmax(0, 0.9fr);
  }

  .campaign-card:nth-of-type(odd)::before,
  .campaign-card:nth-of-type(even)::before {
    left: -34px;
    right: auto;
  }

  .orbit-stage::before {
    width: min(92vw, 700px);
    height: min(92vw, 700px);
  }

  .orbit-track {
    width: min(92vw, 700px);
    height: min(92vw, 700px);
    transform: translate(-50%, -47%);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .page-loader {
    padding: 18px;
  }

  .page-loader::before {
    width: 46vw;
  }

  .loader-card {
    width: min(342px, 100%);
    min-height: 392px;
    padding: 28px 22px 24px;
  }

  .loader-scene {
    width: 206px;
    height: 170px;
    margin-top: 4px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .loader-label {
    margin-top: 0;
    font-size: 20px;
  }

  .loader-percent {
    font-size: 34px;
  }

  .brand {
    width: min(210px, 58vw);
  }

  .mini-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-section {
    min-height: auto;
    padding: 92px 14px 42px;
  }

  .campaign-hero {
    min-height: auto;
    padding: 96px 14px 36px;
  }

  .campaign-hero::before {
    inset: 76px 14px 18px;
  }

  .campaign-hero h1 {
    font-size: 42px;
  }

  .home-campaign-section {
    padding: 58px 14px;
  }

  .home-campaign-copy h2 {
    font-size: 40px;
  }

  .home-campaign-visual {
    min-height: 360px;
  }

  .home-campaign-visual img {
    max-height: 420px;
  }

  .other-menu-section .section-heading,
  .other-menu-grid {
    width: 100%;
  }

  .other-menu-section .section-heading h2 {
    font-size: 32px;
  }

  .campaign-timeline {
    padding-right: 14px;
    padding-left: 14px;
  }

  .campaign-card,
  .campaign-card:nth-of-type(even) {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-left: 24px;
    padding: 12px;
  }

  .campaign-card figure {
    min-height: 0;
  }

  .campaign-card img {
    max-height: 416px;
  }

  .hero-section::before,
  .hero-section::after,
  .flavor-hero::before,
  .story-page-hero::before,
  .brand-story-section::before,
  .story-orbit-map,
  .dish-page::before,
  .dish-page::after {
    display: none;
  }

  .hero-copy h1,
  .flavor-hero-copy h1,
  .story-page-copy h1,
  .feature-copy h2,
  .craft-heading h2,
  .story-chapter-heading h2,
  .story-copy h2,
  .intro-panel h2 {
    font-size: 48px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .flavor-hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    width: 306px;
    height: 306px;
  }

  .flavor-hero-plate img {
    width: 306px;
  }

  .hero-bao-mark {
    width: 280px;
    height: 280px;
  }

  .brand-strip,
  .detail-stat-strip,
  .culture-grid,
  .craft-grid,
  .story-page-stat-strip,
  .story-history-list,
  .story-belief-grid,
  .dish-detail-grid,
  .other-menu-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip article {
    min-height: 112px;
    padding: 20px;
  }

  .story-page-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .story-cinema-hero {
    min-height: auto;
    padding: 92px 14px 46px;
  }

  .story-cinema-frame {
    min-height: auto;
  }

  .story-cinema-frame::before,
  .story-evidence-card::before,
  .story-memory-frame::before,
  .story-honor-card::before {
    left: 18%;
    height: 7px;
  }

  .story-cinema-frame img {
    height: 560px;
    min-height: 560px;
  }

  .story-cinema-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 20px;
  }

  .story-cinema-caption span {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .story-cinema-caption h1 {
    font-size: 30px;
  }

  .story-cinema-caption p {
    font-size: 15px;
  }

  .story-fact-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding: 0 14px;
  }

  .story-fact-ribbon article {
    min-height: 104px;
    padding: 18px;
  }

  .story-fact-ribbon article:first-child,
  .story-fact-ribbon article:last-child {
    border-radius: 0;
  }

  .story-scroll-section,
  .story-growth-section,
  .story-quality-showcase,
  .story-old-store-section,
  .story-honor-showcase {
    padding: 58px 14px;
  }

  .story-section-kicker {
    margin-bottom: 36px;
    text-align: left;
  }

  .story-section-kicker h2,
  .story-honor-copy h2 {
    font-size: 38px;
  }

  .story-section-kicker p:not(.eyebrow),
  .story-honor-copy p,
  .story-old-store-copy p:not(.eyebrow),
  .story-chapter-copy p,
  .story-memory-frame p {
    font-size: 16px;
  }

  .story-reveal-chapter {
    gap: 24px;
    margin-bottom: 58px;
  }

  .story-chapter-copy h3 {
    font-size: 34px;
  }

  .story-origin-notes,
  .story-old-store-photos {
    grid-template-columns: 1fr;
  }

  .story-quality-wall {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quality-tile,
  .quality-tile-large,
  .quality-tile-wide,
  .quality-tile-small,
  .quality-tile:nth-child(3),
  .quality-tile:nth-child(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .quality-tile img,
  .quality-tile-wide img {
    max-height: none;
  }

  .story-origin-notes article {
    min-height: 180px;
    padding: 20px;
  }

  .story-memory-frame img {
    height: 560px;
    min-height: 560px;
  }

  .story-memory-frame figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 20px;
  }

  .story-memory-frame strong {
    font-size: 28px;
  }

  .story-growth-line {
    grid-template-columns: repeat(7, 150px);
    margin-right: -14px;
    padding: 28px 14px 70px 0;
  }

  .story-growth-line::before {
    top: calc(50% - 12px);
    right: 26px;
    left: 22px;
  }

  .story-growth-line article {
    min-height: 156px;
    padding: 18px;
  }

  .story-growth-line article:nth-child(even) {
    transform: translateY(34px);
  }

  .story-manual-gallery {
    gap: 14px;
  }

  .story-manual-card figcaption {
    padding: 18px;
  }

  .quality-tile figcaption {
    padding: 16px 4px 2px;
  }

  .quality-tile strong {
    font-size: 26px;
  }

  .story-old-store-copy h2 {
    font-size: 36px;
  }

  .story-old-store-photos figcaption {
    min-height: auto;
  }

  .story-honor-copy ul {
    grid-template-columns: 1fr;
  }

  .story-honor-card {
    max-width: 100%;
  }

  .manual-cover {
    min-height: 640px;
    padding: 108px 14px 58px;
  }

  .manual-cover::after {
    right: 14px;
    bottom: 28px;
    left: 14px;
  }

  .manual-cover-mark {
    left: -56vw;
    bottom: -50vw;
    width: 116vw;
    height: 116vw;
    border-width: 48px;
  }

  .manual-cover-brand {
    top: 92px;
    right: 14px;
    width: 168px;
  }

  .manual-cover-copy {
    padding: 34px 0;
  }

  .manual-cover-copy p {
    font-size: 13px;
  }

  .manual-cover-copy h1 {
    font-size: 48px;
  }

  .manual-spread,
  .manual-timeline-section {
    min-height: auto;
    padding: 48px 14px 58px;
  }

  .manual-spread-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .manual-spread-head h2 {
    font-size: 46px;
  }

  .manual-spread-head span {
    width: 100%;
    height: 10px;
  }

  .manual-spread-head img {
    width: 172px;
  }

  .manual-story-copy::before {
    top: 18px;
    left: -42vw;
    width: 96vw;
    opacity: 0.86;
  }

  .manual-topic {
    font-size: 34px;
  }

  .manual-story-copy h3,
  .manual-growth-copy h3 {
    margin-bottom: 36px;
    font-size: 43px;
  }

  .manual-story-copy h3::after,
  .manual-growth-copy h3::after {
    width: 146px;
    margin-top: 30px;
  }

  .manual-story-copy em {
    font-size: 82px;
  }

  .manual-story-copy p:not(.manual-topic),
  .manual-growth-copy p {
    font-size: 16px;
  }

  .manual-page-shot,
  .manual-page-wide-shot {
    overflow-x: auto;
  }

  .manual-page-shot img,
  .manual-page-wide-shot img {
    min-width: 680px;
  }

  .manual-growth-path {
    grid-template-columns: repeat(14, 92px);
    min-height: 390px;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 74px;
  }

  .manual-growth-path::before {
    bottom: 116px;
    height: 44px;
  }

  .manual-growth-path article {
    width: 86px;
    height: 86px;
  }

  .manual-growth-path strong {
    font-size: 30px;
  }

  .manual-growth-path span {
    font-size: 14px;
  }

  .manual-growth-path small {
    font-size: 11px;
  }

  .manual-honor-list {
    grid-template-columns: 1fr;
  }

  .story-page-copy p:not(.eyebrow),
  .story-chapter-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .story-page-visual {
    min-height: 320px;
  }

  .story-page-visual img {
    min-height: 320px;
  }

  .story-history-list article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dish-page {
    padding: 62px 14px 28px;
  }

  .home-feature-section,
  .flavor-hero,
  .story-page-hero,
  .story-chapter-section,
  .store-locator-section,
  .craft-section,
  .menu-deep-dive {
    padding: 58px 14px;
  }

  .store-locator-heading {
    gap: 16px;
    margin-bottom: 20px;
  }

  .store-locator-heading h2 {
    font-size: 38px;
  }

  .store-filter-panel,
  .store-results-panel,
  .store-detail-panel {
    box-shadow: 0 12px 32px rgba(63, 32, 16, 0.08);
  }

  .store-summary-grid,
  .store-detail-panel dl {
    grid-template-columns: 1fr;
  }

  .store-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-result-main {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .store-rank {
    width: 30px;
    height: 30px;
  }

  .store-result-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .store-result-actions {
    padding: 0 14px 14px 56px;
  }

  .store-detail-panel > strong {
    font-size: 26px;
  }

  .contact-hub-grid {
    grid-template-columns: 1fr;
  }

  .member-connect {
    grid-template-columns: 1fr;
  }

  .member-qr-card img {
    width: min(210px, 100%);
  }

  .contact-card {
    min-height: auto;
    padding: 20px;
  }

  .contact-card-head h3 {
    font-size: 30px;
  }

  .job-pay-grid strong {
    font-size: 20px;
  }

  .complaint-callout strong {
    font-size: 30px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .primary-button,
  .contact-actions .secondary-button {
    width: 100%;
  }

  .contact-info-list strong,
  .official-note strong {
    overflow-wrap: anywhere;
  }

  .map-choice-modal {
    align-items: end;
    padding: 14px;
  }

  .map-choice-dialog {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 22px;
    overflow: auto;
    transform: translateY(22px);
  }

  .map-choice-dialog h2 {
    font-size: 30px;
  }

  .map-choice-options a {
    min-height: 72px;
  }

  .flavor-hero {
    padding-top: 92px;
    min-height: auto;
  }

  .feature-dishes {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .feature-dishes article,
  .feature-dishes article:first-child {
    grid-row: auto;
  }

  .orbit-stage {
    height: 650px;
    min-height: 650px;
    --scanner-y: -47%;
  }

  .orbit-stage::before {
    width: 360px;
    height: 360px;
  }

  .bao-outline {
    width: 340px;
    height: 340px;
    min-width: 340px;
    min-height: 340px;
    border-width: 8px;
    transform: translate(-50%, -47%);
  }

  .bao-outline span {
    top: -25px;
    width: 40px;
    height: 62px;
    border-width: 8px;
  }

  .bao-outline span:nth-child(1) {
    left: calc(50% - 58px);
  }

  .bao-outline span:nth-child(2) {
    left: calc(50% - 20px);
  }

  .bao-outline span:nth-child(3) {
    left: calc(50% + 18px);
  }

  .dish-copy {
    width: 286px;
    min-height: 286px;
    padding: 24px;
    transform: translate(-50%, -36%);
  }

  .dish-copy h3 {
    font-size: 30px;
  }

  .dish-copy p:not(.dish-kicker) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.62;
  }

  .dish-meta {
    margin-top: 14px;
  }

  .dish-meta div {
    min-height: 56px;
    padding: 8px;
  }

  .dish-meta dd {
    font-size: 13px;
  }

  .orbit-button {
    top: calc(100% - 92px);
    width: 46px;
    height: 46px;
  }

  .dish-footer {
    margin-top: -18px;
  }

  .content-section,
  .brand-story-section,
  .split-section,
  .member-section,
  .official-section {
    padding: 58px 14px;
  }

  .section-heading h2,
  .feature-copy h2,
  .craft-heading h2,
  .story-copy h2,
  .split-copy h2,
  .member-section h2,
  .official-section h2 {
    font-size: 34px;
  }

  .split-section,
  .home-feature-section,
  .flavor-hero,
  .craft-heading,
  .brand-story-section,
  .official-section {
    gap: 24px;
  }

  .story-copy p {
    font-size: 16px;
  }

  .story-quote,
  .culture-grid article {
    padding: 20px;
  }

  .story-quote strong {
    font-size: 24px;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }

  .store-card strong,
  .official-section dd {
    font-size: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
