:root {
  --forest-950: #061c17;
  --forest-900: #0b2c23;
  --forest-800: #123d31;
  --forest-700: #1b5141;
  --linen: #eee5d2;
  --paper: #f7f1e5;
  --paper-deep: #e6dbc5;
  --ink: #18231d;
  --muted: #647069;
  --gold: #c8a15a;
  --gold-bright: #f1c76f;
  --pink: #ff6f9e;
  --cyan: #62d9c6;
  --line: rgba(24, 35, 29, .15);
  --serif: "Songti SC", "STSong", "SimSun", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(4, 24, 18, .18);
  --page: min(88vw, 1380px);
  --radius-xl: 72px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--linen);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 18px;
  color: var(--forest-950);
  background: var(--gold-bright);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
}

.ambient-one {
  top: 15vh;
  right: -12rem;
  background: var(--pink);
}

.ambient-two {
  bottom: 4vh;
  left: -14rem;
  background: var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 28, 23, .88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(92vw, 1520px);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-seal {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(241, 199, 111, .85);
  border-radius: 11px 16px 11px 16px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 22px;
  box-shadow: 0 0 22px rgba(241, 199, 111, .15);
  transform: rotate(-3deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(247, 241, 229, .54);
  font-size: 9px;
  letter-spacing: .08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 46px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: rgba(247, 241, 229, .75);
  font-size: 13px;
  letter-spacing: .08em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 9px 8px 14px;
  border: 1px solid rgba(247, 241, 229, .24);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease;
}

.cart-trigger:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .1);
}

.cart-trigger svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-trigger > span:not(.cart-count) {
  font-size: 12px;
}

.cart-count {
  display: grid;
  min-width: 27px;
  height: 27px;
  padding: 0 7px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 82px);
  padding: 142px max(6vw, calc((100vw - 1380px) / 2)) 132px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 83% 22%, rgba(98, 217, 198, .1), transparent 20%),
    radial-gradient(circle at 45% 76%, rgba(255, 111, 158, .08), transparent 23%),
    linear-gradient(115deg, var(--forest-950), var(--forest-900) 55%, #0d3329);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero::after {
  content: "夜市";
  position: absolute;
  top: 10%;
  right: -2vw;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(180px, 23vw, 410px);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(238, 229, 210, .045);
  writing-mode: vertical-rl;
  pointer-events: none;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow.light {
  color: var(--gold-bright);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(64px, 7.2vw, 124px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span {
  position: relative;
  color: var(--gold-bright);
  font-style: italic;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: -.15em;
  bottom: -.08em;
  left: .08em;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 111, 158, .8);
  transform: rotate(-2deg) scaleY(.38);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(247, 241, 229, .68);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.9;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button-primary {
  color: var(--forest-950);
  background: var(--gold-bright);
  box-shadow: 0 10px 30px rgba(241, 199, 111, .15);
}

.button-primary:hover {
  background: #ffda87;
  box-shadow: 0 14px 34px rgba(241, 199, 111, .24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 241, 229, .35);
  color: rgba(247, 241, 229, .88);
  font-size: 13px;
}

.text-link span {
  color: var(--cyan);
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 55px 0 0;
  list-style: none;
  color: rgba(247, 241, 229, .52);
  font-size: 11px;
  letter-spacing: .09em;
}

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

.hero-notes span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 9px;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.moon-disc {
  position: absolute;
  top: 3%;
  right: 3%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(238, 229, 210, .07);
  box-shadow: 0 0 100px rgba(98, 217, 198, .08), inset 0 0 0 1px rgba(247, 241, 229, .08);
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 720px);
  border: 1px solid rgba(247, 241, 229, .13);
  border-radius: 48% 48% 24% 24% / 24% 24% 12% 12%;
  overflow: hidden;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .32), 0 0 35px rgba(98, 217, 198, .09);
  transform: rotate(1.5deg);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgba(6, 28, 23, .25);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
}

.floating-ticket {
  position: absolute;
  z-index: 3;
  background: rgba(6, 28, 23, .88);
  border: 1px solid rgba(241, 199, 111, .35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.ticket-top {
  top: 13%;
  left: -1%;
  padding: 17px 24px;
  border-radius: 18px 18px 6px 18px;
  transform: rotate(-5deg);
}

.ticket-top span,
.ticket-top strong {
  display: block;
}

.ticket-top span {
  color: var(--pink);
  font-size: 9px;
  letter-spacing: .25em;
}

.ticket-top strong {
  margin-top: 2px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.ticket-bottom {
  right: -1%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  border-radius: 18px 6px 18px 18px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.ticket-bottom small,
.ticket-bottom strong {
  display: block;
}

.ticket-bottom small {
  color: rgba(247, 241, 229, .48);
  font-size: 9px;
}

.ticket-bottom strong {
  color: var(--paper);
  font-size: 12px;
}

.marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(247, 241, 229, .12);
  border-bottom: 1px solid rgba(247, 241, 229, .12);
  background: rgba(6, 28, 23, .52);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  color: rgba(247, 241, 229, .72);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .16em;
  animation: marquee 30s linear infinite;
}

.marquee-track i {
  color: var(--gold-bright);
  font-style: normal;
  font-size: 10px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin: 0 auto;
}

.lane-picker {
  padding-top: 128px;
  padding-bottom: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2,
.brand-story h2,
.faq h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading h2 em,
.brand-story h2 em,
.faq h2 em {
  color: var(--forest-700);
  font-weight: 500;
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}

.lane-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lane-card {
  position: relative;
  min-width: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(24, 35, 29, .1);
  border-radius: 72px 28px 68px 26px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(24, 35, 29, .07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.lane-card:nth-child(2) {
  border-radius: 28px 72px 28px 68px;
  transform: translateY(22px);
}

.lane-card:nth-child(3) {
  border-radius: 68px 28px 72px 28px;
}

.lane-card:hover {
  z-index: 2;
  border-color: rgba(200, 161, 90, .6);
  box-shadow: 0 30px 60px rgba(24, 35, 29, .14);
  transform: translateY(-8px) rotate(-.5deg);
}

.lane-card:nth-child(2):hover {
  transform: translateY(14px) rotate(.5deg);
}

.lane-card-food {
  background: #d8aa6f;
}

.lane-card-fashion {
  color: var(--paper);
  background: var(--forest-800);
}

.lane-card-island {
  background: #a8c3ad;
}

.lane-number {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .72;
}

.lane-card img {
  width: 100%;
  height: 260px;
  margin-top: -10px;
  object-fit: contain;
  transition: transform .45s ease;
}

.lane-card:hover img {
  transform: scale(1.04) rotate(1.5deg);
}

.lane-card-copy {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 12px;
}

.lane-card-copy strong,
.lane-card-copy small {
  display: block;
}

.lane-card-copy strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

.lane-card-copy small {
  max-width: 88%;
  color: currentColor;
  font-size: 11px;
  line-height: 1.6;
  opacity: .66;
}

.lane-arrow {
  position: absolute;
  right: 30px;
  bottom: 24px;
  font-size: 21px;
  transition: transform .25s ease;
}

.lane-card:hover .lane-arrow {
  transform: translate(4px, -4px);
}

.story-lanes {
  background: var(--paper);
}

.story-lane {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.story-lane:nth-child(even) .story-visual {
  order: 2;
}

.story-visual,
.story-copy {
  min-width: 0;
}

.story-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
}

.story-food .story-visual {
  background: #d8aa6f;
  border-radius: 0 90px 30px 0;
}

.story-fashion .story-visual {
  background: var(--forest-800);
  border-radius: 90px 0 0 30px;
}

.story-island .story-visual {
  background: #a8c3ad;
  border-radius: 0 30px 90px 0;
}

.story-visual::before {
  content: "";
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.story-visual img {
  position: relative;
  z-index: 1;
  width: min(80%, 680px);
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.13));
  transition: transform .6s ease;
}

.story-lane:hover .story-visual img {
  transform: scale(1.025);
}

.vertical-label {
  position: absolute;
  z-index: 2;
  top: 44px;
  left: 38px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .45em;
  writing-mode: vertical-rl;
  opacity: .6;
}

.story-fashion .vertical-label {
  right: 38px;
  left: auto;
  color: var(--paper);
}

.story-stamp {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 8%;
  display: grid;
  width: 90px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--forest-900);
  border-radius: 50% 48% 51% 46%;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
  text-align: center;
  transform: rotate(7deg);
}

.stamp-pink {
  border-color: var(--pink);
  color: var(--pink);
}

.stamp-cyan {
  border-color: var(--forest-800);
  color: var(--forest-800);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(50px, 8vw, 150px);
}

.story-copy h2 {
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 70px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.05em;
}

.story-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}

.detail-list {
  max-width: 570px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .15em;
}

.detail-list strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
}

.pill-link {
  align-self: flex-start;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 30px;
  padding: 9px 18px;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.pill-link:hover {
  color: var(--paper);
  background: var(--forest-900);
  transform: translateY(-2px);
}

.stalls {
  padding-top: 130px;
  padding-bottom: 140px;
}

.stalls-heading {
  margin-bottom: 45px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 13px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.filter-button span {
  font-family: Georgia, serif;
  font-size: 9px;
  opacity: .6;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--forest-900);
  color: var(--paper);
  background: var(--forest-900);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 20px;
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50px 18px 50px 18px;
  background: var(--paper-deep);
}

.product-card:nth-child(even) .product-image {
  border-radius: 18px 50px 18px 50px;
}

.product-image::before {
  content: "";
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 35, 29, .2);
  border-radius: 50%;
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 86%;
  transition: transform .45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045) rotate(1.5deg);
}

.product-food { background: #dcb77f; }
.product-food-alt { background: #c9a26c; }
.product-fashion { background: #174436; }
.product-fashion-alt { background: #203a34; }
.product-island { background: #aec8b2; }
.product-island-alt { background: #91b6a2; }

.product-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .1em;
  opacity: .7;
}

.product-fashion .product-tag,
.product-fashion-alt .product-tag {
  color: var(--paper);
}

.product-index {
  position: absolute;
  right: 18px;
  bottom: 13px;
  font-family: Georgia, serif;
  font-size: 11px;
  opacity: .5;
}

.product-fashion .product-index,
.product-fashion-alt .product-index {
  color: var(--paper);
}

.product-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px 14px;
}

.product-info p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
}

.product-info h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.2;
}

.price {
  flex: 0 0 auto;
  font-family: Georgia, serif;
  font-size: 23px;
}

.price small {
  margin-right: 2px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
}

.add-button {
  width: 100%;
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 3px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .2s ease, padding .2s ease;
}

.add-button span:last-child {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest-900);
  font-size: 17px;
  font-weight: 300;
}

.add-button:hover {
  padding-right: 7px;
  padding-left: 7px;
  color: var(--forest-700);
}

.market-map {
  width: min(94vw, 1540px);
  padding-bottom: 130px;
}

.map-shell {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 150px);
  padding: clamp(65px, 8vw, 130px);
  overflow: hidden;
  border-radius: var(--radius-xl) 24px var(--radius-xl) 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 100%, rgba(255, 111, 158, .12), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(98, 217, 198, .11), transparent 24%),
    var(--forest-900);
}

.map-shell::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(247, 241, 229, .1);
  border-radius: 52px 14px 52px 14px;
  pointer-events: none;
}

.map-intro,
.map-route {
  position: relative;
  z-index: 1;
}

.map-intro h2 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.map-intro > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 32px;
  color: rgba(247, 241, 229, .63);
  font-family: var(--serif);
  font-size: 15px;
}

.button-linen {
  color: var(--forest-950);
  background: var(--paper);
}

.button-linen:hover {
  background: #fff;
}

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

.map-route li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  padding-bottom: 35px;
}

.map-route li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 5px;
  left: 28px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 4px, transparent 4px 9px);
}

.route-number {
  display: grid;
  width: 58px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(241, 199, 111, .55);
  border-radius: 50% 46% 50% 44%;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 11px;
}

.map-route strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.map-route p {
  margin-bottom: 0;
  color: rgba(247, 241, 229, .55);
  font-size: 12px;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  padding-top: 15px;
  padding-bottom: 140px;
}

.brand-collage {
  position: relative;
  min-height: 690px;
}

.brand-collage::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 5%;
  width: 79%;
  height: 88%;
  border: 1px solid rgba(24, 35, 29, .18);
  border-radius: 48% 48% 15% 15% / 22% 22% 9% 9%;
}

.brand-collage img {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 72%;
  padding: 12px;
  border: 1px solid rgba(24, 35, 29, .12);
  border-radius: 48% 48% 18px 18px / 24% 24% 18px 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.collage-poster {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 1%;
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  border: 1px solid var(--pink);
  color: var(--pink);
  background: var(--forest-900);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  box-shadow: 0 0 20px rgba(255, 111, 158, .24);
  transform: rotate(-7deg);
}

.collage-note {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 11%;
  display: grid;
  width: 105px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--gold-bright);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 16px 40px rgba(24, 35, 29, .16);
  transform: rotate(8deg);
}

.story-lead {
  margin: 32px 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.75;
}

.brand-story-copy > p:not(.eyebrow):not(.story-lead) {
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 37px;
}

.value-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px 12px 28px 12px;
  background: rgba(247, 241, 229, .42);
}

.value-grid span,
.value-grid strong {
  display: block;
}

.value-grid span {
  margin-bottom: 10px;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.value-grid strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 9vw, 150px);
  padding-bottom: 145px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 2px;
  font-family: var(--serif);
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 17px;
  transition: transform .25s ease, color .25s ease, background-color .25s ease;
}

.faq-list details[open] summary span {
  color: var(--paper);
  background: var(--forest-900);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 48px 25px 2px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.closing {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px max(6vw, calc((100vw - 1380px) / 2));
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(98, 217, 198, .18), transparent 42%),
    var(--forest-950);
}

.closing::before,
.closing::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247, 241, 229, .09);
  border-radius: 50%;
}

.closing::before {
  width: min(76vw, 960px);
  aspect-ratio: 1;
}

.closing::after {
  width: min(55vw, 690px);
  aspect-ratio: 1;
}

.closing-glow {
  position: absolute;
  top: 21%;
  width: 240px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(42px);
  opacity: .24;
}

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

.closing h2 {
  margin-bottom: 38px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.5vw, 100px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.closing h2 span {
  color: var(--gold-bright);
  font-style: italic;
}

.button-outline-light {
  border-color: rgba(247, 241, 229, .45);
  color: var(--paper);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--paper);
  background: rgba(247, 241, 229, .08);
}

.closing-brand {
  margin: 65px 0 0;
  color: rgba(247, 241, 229, .38);
  font-size: 10px;
  letter-spacing: .18em;
}

.cart-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.cart-dialog::backdrop {
  background: rgba(3, 15, 12, .68);
  backdrop-filter: blur(4px);
}

.cart-panel {
  width: min(100%, 480px);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  padding: 32px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
  animation: panel-in .32s ease both;
}

@keyframes panel-in {
  from { transform: translateX(100%); }
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header p {
  margin-bottom: 2px;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.cart-header h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  font-weight: 300;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  padding: 6px 0;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 19px 1px;
  border-bottom: 1px solid var(--line);
}

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

.cart-item small {
  color: var(--forest-700);
  font-size: 9px;
  letter-spacing: .12em;
}

.cart-item strong {
  margin: 3px 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.cart-item-price {
  font-family: Georgia, serif;
  font-size: 14px;
  text-align: right;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  width: 30px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 18px;
  font-size: 11px;
  text-align: center;
}

.remove-item {
  align-self: end;
  padding: 4px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 18px;
  text-align: center;
}

.cart-empty > span {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 28px;
}

.cart-empty strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.cart-empty p {
  max-width: 270px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.text-button,
.clear-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.cart-summary {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cart-summary > div span {
  color: var(--muted);
  font-size: 11px;
}

.cart-summary > div strong {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.cart-summary > p {
  margin: 3px 0 16px;
  color: var(--muted);
  font-size: 10px;
}

.button-full {
  width: 100%;
}

.clear-button {
  display: block;
  margin: 14px auto 0;
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: calc(100vw - 48px);
  padding: 12px 18px;
  border: 1px solid rgba(241, 199, 111, .5);
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest-950);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-note {
  position: fixed;
  z-index: 400;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px;
  margin: 0;
  color: var(--forest-950);
  background: var(--gold-bright);
  text-align: center;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.lane-cards .reveal:nth-child(2),
.product-grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(5) {
  transition-delay: .08s;
}

.lane-cards .reveal:nth-child(3),
.product-grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(6) {
  transition-delay: .16s;
}

@media (max-width: 1120px) {
  .brand-copy small {
    display: none;
  }

  .primary-nav {
    gap: 22px;
  }

  .hero {
    min-height: 840px;
  }

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

  .story-copy {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(90vw, 760px);
    --radius-xl: 48px;
  }

  .nav-shell {
    width: 90vw;
    min-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    order: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    margin-left: 0;
    border: 1px solid rgba(247, 241, 229, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 10vw;
    background: rgba(6, 28, 23, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(30px, 8vw, 48px);
    letter-spacing: 0;
  }

  .cart-trigger {
    margin-left: auto;
  }

  .cart-trigger > span:not(.cart-count) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 130px 5vw 100px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero h1 {
    font-size: clamp(62px, 14vw, 104px);
  }

  .hero-visual {
    width: min(100%, 700px);
    min-height: 560px;
    margin: 10px auto 30px;
  }

  .section-heading,
  .brand-story,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .lane-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lane-card,
  .lane-card:nth-child(2) {
    min-height: 340px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    transform: none;
  }

  .lane-card:hover,
  .lane-card:nth-child(2):hover {
    transform: translateY(-5px);
  }

  .lane-card img {
    grid-row: 1 / 3;
    height: 260px;
    margin: 0;
  }

  .lane-number {
    align-self: end;
  }

  .lane-card-copy {
    align-self: start;
    padding-top: 20px;
  }

  .story-lane {
    grid-template-columns: 1fr;
  }

  .story-lane:nth-child(even) .story-visual {
    order: initial;
  }

  .story-visual {
    min-height: 560px;
  }

  .story-food .story-visual,
  .story-fashion .story-visual,
  .story-island .story-visual {
    border-radius: 0 0 60px 20px;
  }

  .story-copy {
    min-height: 560px;
    padding: 75px max(7vw, calc((100vw - 760px) / 2));
  }

  .map-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .brand-story {
    gap: 50px;
  }

  .brand-collage {
    width: min(100%, 650px);
    min-height: 600px;
    margin: 0 auto;
  }

  .faq {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: 90vw;
  }

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

  .brand-seal {
    width: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .nav-shell {
    gap: 8px;
  }

  .cart-trigger {
    min-height: 42px;
    padding: 6px;
  }

  .cart-trigger svg {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

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

  .hero-lead {
    font-size: 15px;
  }

  .hero-notes {
    margin-top: 38px;
  }

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

  .ticket-top {
    top: 8%;
    left: 0;
  }

  .ticket-bottom {
    right: 0;
    bottom: 7%;
  }

  .marquee-track {
    padding: 13px 0;
  }

  .lane-picker,
  .stalls {
    padding-top: 92px;
    padding-bottom: 95px;
  }

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

  .section-heading h2,
  .brand-story h2,
  .faq h2 {
    font-size: 42px;
  }

  .lane-card,
  .lane-card:nth-child(2) {
    min-height: 410px;
    display: flex;
    border-radius: 48px 18px 48px 18px;
  }

  .lane-card img {
    height: 240px;
    margin-top: -8px;
  }

  .lane-number {
    align-self: flex-start;
  }

  .lane-card-copy {
    padding-top: 0;
  }

  .story-visual {
    min-height: 400px;
  }

  .story-stamp {
    width: 70px;
    font-size: 14px;
  }

  .story-copy {
    min-height: 520px;
    padding: 65px 7vw;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-right: -5vw;
    padding-right: 5vw;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .product-image {
    aspect-ratio: 1 / .92;
  }

  .market-map {
    width: 94vw;
    padding-bottom: 95px;
  }

  .map-shell {
    padding: 64px 8vw;
    border-radius: 46px 18px 46px 18px;
  }

  .map-shell::before {
    inset: 12px;
    border-radius: 36px 12px 36px 12px;
  }

  .map-intro h2 {
    font-size: 48px;
  }

  .map-route li {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .route-number {
    width: 48px;
    height: 44px;
  }

  .map-route li:not(:last-child)::before {
    top: 44px;
    left: 23px;
  }

  .map-route strong {
    font-size: 20px;
  }

  .brand-story {
    padding-bottom: 100px;
  }

  .brand-collage {
    min-height: 440px;
  }

  .collage-note {
    width: 82px;
    font-size: 16px;
  }

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

  .faq {
    padding-bottom: 100px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 16px;
  }

  .closing {
    min-height: 580px;
    padding: 90px 6vw;
  }

  .closing h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .closing-actions {
    justify-content: center;
  }

  .cart-panel {
    padding: 24px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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