:root {
  --ink: #1b1a18;
  --ink-soft: #49443f;
  --paper: #f4f0e8;
  --paper-deep: #e9e3d9;
  --porcelain: #fcfaf6;
  --mist: #dedad3;
  --jade: #7a4f35;
  --jade-deep: #563522;
  --copper: #7a4f35;
  --gold: #ad8c6f;
  --gold-light: #d8c1ad;
  --line: rgba(27, 26, 24, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 64px rgba(20, 18, 16, 0.08);
  --shadow-deep: 0 32px 84px rgba(20, 18, 16, 0.22);
  --radius: 2px;
  --max: 1320px;
  --font-display: "Songti SC", STSong, "Iowan Old Style", Baskerville, Georgia, serif;
  --font-body: Inter, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.42) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 78% 62%, rgba(27, 26, 24, 0.18) 0 0.55px, transparent 0.75px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  color: var(--porcelain);
  background: var(--copper);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 18px;
  top: 18px;
  padding: 10px 16px;
  color: var(--porcelain);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 16px rgba(197, 164, 110, 0.56);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.topbar {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 88px;
  padding: 0 clamp(24px, 4vw, 64px);
  color: var(--porcelain);
  border-bottom: 1px solid transparent;
  transition:
    min-height 420ms var(--ease-out),
    color 420ms var(--ease-out),
    background-color 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out),
    backdrop-filter 420ms var(--ease-out);
}

.topbar::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.48), transparent);
  opacity: 1;
  transition: opacity 420ms var(--ease-out);
}

.topbar[data-elevated="true"] {
  min-height: 72px;
  color: var(--ink);
  background: rgba(244, 240, 232, 0.92);
  border-color: rgba(27, 26, 24, 0.09);
  box-shadow: 0 8px 28px rgba(20, 18, 16, 0.06);
  backdrop-filter: blur(24px) saturate(125%);
}

.topbar[data-elevated="true"]::before {
  opacity: 0;
}

.topbar__tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--porcelain);
  background: rgba(27, 26, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.12rem;
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease;
}

.brand__mark::after {
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0.24;
}

.topbar[data-elevated="true"] .brand__mark {
  color: var(--porcelain);
  background: var(--copper);
  border-color: var(--copper);
}

.brand__lockup {
  display: grid;
  gap: 1px;
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.brand__descriptor {
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  opacity: 0.6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  min-width: 0;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.74;
  transition: opacity 220ms ease;
}

.nav a::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: right 300ms var(--ease-out), left 300ms var(--ease-out);
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.nav a:hover::after,
.nav a.is-active::after {
  right: 0;
  left: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background-color 350ms ease, border-color 350ms ease;
}

.topbar[data-elevated="true"] .language-switch {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.lang-button {
  min-width: 37px;
  min-height: 30px;
  padding: 0 9px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0.6;
  transition: color 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.lang-button.is-active {
  color: var(--ink);
  background: var(--porcelain);
  opacity: 1;
}

.topbar[data-elevated="true"] .lang-button.is-active {
  color: var(--porcelain);
  background: var(--ink);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.topbar[data-elevated="true"] .icon-button,
.cart-drawer .icon-button {
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--line);
}

.icon-button:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.account-glyph {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
}

.account-glyph::before {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.account-glyph::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 2px 2px;
  content: "";
}

.cart-button {
  position: relative;
}

.cart-button__count {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  color: var(--porcelain);
  background: var(--copper);
  border: 2px solid rgba(27, 26, 24, 0.55);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.cart-button__count.is-bumping {
  animation: countBump 500ms var(--ease-out);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-particle-x: 0px;
  --hero-particle-y: 0px;
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background: var(--ink);
}

.hero__media,
.hero__media::before,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  inset: -2%;
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  will-change: transform;
}

.hero__media::before {
  inset: -4%;
  content: "";
  background-image: url("assets/hero-tea-sprout.jpg");
  background-position: center;
  background-size: cover;
  animation: heroBreath 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.88) 0%, rgba(20, 18, 16, 0.64) 35%, rgba(20, 18, 16, 0.16) 67%, rgba(20, 18, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.48), transparent 43%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.28), transparent 28%);
}

.hero__mist {
  position: absolute;
  z-index: -2;
  width: 54vw;
  height: 23vw;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(240, 242, 228, 0.19), rgba(240, 242, 228, 0) 68%);
  filter: blur(26px);
  opacity: 0.32;
}

.hero__mist--one {
  left: -13vw;
  top: 31%;
  animation: mistDriftOne 17s ease-in-out infinite alternate;
}

.hero__mist--two {
  right: 4vw;
  top: 8%;
  width: 34vw;
  opacity: 0.25;
  animation: mistDriftTwo 21s ease-in-out infinite alternate;
}

.hero__monogram {
  position: absolute;
  z-index: -1;
  right: 3vw;
  top: 50%;
  color: transparent;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: clamp(14rem, 28vw, 31rem);
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-44%);
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 64px));
  margin: auto 0 auto max(32px, calc((100vw - var(--max)) / 2));
  padding: 150px 0 126px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

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

h1,
h2,
.origin-metrics dt,
.price,
.plan strong {
  font-family: var(--font-display);
}

h1 {
  margin-bottom: 15px;
  font-size: clamp(5.4rem, 9vw, 8.4rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 0.98;
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
}

h2 {
  margin-bottom: 23px;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.hero__edition {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, serif;
  font-size: 0.67rem;
  letter-spacing: 0.27em;
}

.hero__edition::before {
  width: 38px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero__lead {
  max-width: 615px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  line-height: 1.95;
}

.hero__actions,
.filter-bar,
.choice-group,
.origin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transition: color 280ms ease, border-color 280ms ease, background-color 280ms ease, transform 280ms var(--ease-out), box-shadow 280ms ease;
  white-space: normal;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  display: none;
}

.button:hover::before {
  transform: translateX(135%);
}

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

.button--primary {
  color: var(--porcelain);
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 12px 28px rgba(122, 79, 53, 0.14);
}

.button--primary:hover {
  background: var(--jade-deep);
  border-color: var(--jade-deep);
  box-shadow: 0 14px 30px rgba(86, 53, 34, 0.18);
}

.button--ghost {
  color: var(--porcelain);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--dark {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.button--light {
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--porcelain);
}

.button--light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(27, 26, 24, 0.3);
}

.button--outline:hover {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 0;
  max-width: 570px;
  margin: 55px 0 0;
}

.hero__stats div {
  padding: 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__stats dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__stats dd {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  right: 26px;
  top: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: Georgia, serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: clamp(32px, 5vw, 84px);
  bottom: 38px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.hero__scroll span {
  position: relative;
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero__scroll span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold-light);
  animation: scrollLine 2.2s var(--ease-soft) infinite;
}

.hero__scroll small {
  font-family: Georgia, serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}

.hero__content > * {
  animation: heroReveal 1.05s var(--ease-out) both;
}

.hero__content > :nth-child(1) { animation-delay: 140ms; }
.hero__content > :nth-child(2) { animation-delay: 210ms; }
.hero__content > :nth-child(3) { animation-delay: 310ms; }
.hero__content > :nth-child(4) { animation-delay: 390ms; }
.hero__content > :nth-child(5) { animation-delay: 500ms; }
.hero__content > :nth-child(6) { animation-delay: 610ms; }

.brand-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-notes p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 18px;
  min-height: 132px;
  align-content: center;
  margin: 0;
  padding: 28px clamp(28px, 4vw, 70px);
  border-left: 1px solid var(--line);
}

.brand-notes p:first-child {
  border-left: 0;
}

.brand-notes span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.73rem;
}

.brand-notes strong {
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-notes small {
  color: rgba(27, 26, 24, 0.42);
  font-family: Georgia, serif;
  font-size: 0.57rem;
  letter-spacing: 0.2em;
}

.section,
.taste-lab {
  position: relative;
  padding: clamp(100px, 10vw, 160px) clamp(22px, 4vw, 64px);
}

.section-heading {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto 58px;
}

.section-number {
  display: block;
  margin-bottom: 30px;
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.section-number::after {
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  content: "";
  background: currentColor;
  opacity: 0.45;
}

.section-heading > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(27, 26, 24, 0.61);
  line-height: 1.9;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 26px;
}

.section-heading--split .section-number {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.taste-lab {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(122, 79, 53, 0.07), transparent 29%),
    linear-gradient(135deg, var(--paper-deep), var(--paper) 52%, #f7f4ee);
}

.taste-lab::before {
  position: absolute;
  right: -14vw;
  top: 4%;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(27, 26, 24, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 6vw rgba(27, 26, 24, 0.02),
    0 0 0 12vw rgba(27, 26, 24, 0.018);
  content: "";
  pointer-events: none;
}

.lab-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.38fr);
  gap: clamp(20px, 3vw, 40px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.lab-panel,
.recommendation,
.origin-card,
.plan,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lab-panel {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(251, 250, 246, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lab-panel::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(27, 26, 24, 0.06);
  content: "";
}

.lab-panel h3 {
  position: relative;
  margin-bottom: 16px;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lab-panel h3:not(:first-child) {
  margin-top: 34px;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.choice,
.filter,
.origin-tab {
  position: relative;
  min-height: 43px;
  padding: 0 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(27, 26, 24, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms var(--ease-out);
}

.choice:hover,
.filter:hover,
.origin-tab:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.choice.is-active,
.filter.is-active,
.origin-tab.is-active {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.recommendation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) minmax(300px, 1.22fr);
  min-height: 590px;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
  border-color: rgba(27, 26, 24, 0.55);
  box-shadow: var(--shadow-deep);
}

.recommendation::after {
  position: absolute;
  right: -17%;
  bottom: -28%;
  width: 54%;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(197, 164, 110, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(197, 164, 110, 0.025), 0 0 0 72px rgba(197, 164, 110, 0.018);
  content: "";
}

.recommendation__visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.recommendation__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(20, 18, 16, 0.72)), linear-gradient(90deg, transparent 72%, rgba(27, 26, 24, 0.45));
}

.recommendation__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms ease, transform 900ms var(--ease-out), filter 320ms ease;
}

.recommendation:hover .recommendation__visual img {
  transform: scale(1.035);
}

.recommendation__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, serif;
  font-size: 0.59rem;
  letter-spacing: 0.18em;
}

.recommendation__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(32px, 4vw, 56px);
}

.recommendation__label {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.recommendation__label::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 11px;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

.recommendation h3 {
  margin-bottom: 20px;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.recommendation__content > p:not(.recommendation__label) {
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.85;
}

.recommendation.is-refreshing .recommendation__content,
.recommendation.is-refreshing .recommendation__visual img {
  opacity: 0.42;
  filter: blur(4px);
}

.radar {
  display: grid;
  gap: 17px;
  margin: 30px 0 34px;
}

.radar span {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 31px;
  align-items: center;
  overflow: hidden;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.radar span::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--value);
  content: "";
  background: linear-gradient(90deg, rgba(197, 164, 110, 0.55), rgba(197, 164, 110, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  animation: radarFill 900ms var(--ease-out) forwards;
}

.recommendation .button {
  align-self: flex-start;
  min-width: 154px;
  margin-top: auto;
}

.shop {
  overflow: hidden;
  background: var(--porcelain);
}

.shop::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent 49.9%, rgba(27, 26, 24, 0.025) 50%, transparent 50.1%);
  background-size: 25% 100%;
}

.filter-bar {
  justify-content: flex-end;
}

.filter {
  min-width: 76px;
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 30px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.product-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --reveal-y: 0px;
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  background: var(--porcelain);
  box-shadow: 0 12px 36px rgba(27, 26, 24, 0.05);
  transform: perspective(1100px) translateY(var(--reveal-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: opacity 780ms var(--ease-out), filter 780ms var(--ease-out), transform 180ms ease-out, border-color 320ms ease, box-shadow 320ms ease;
}

.product-card:nth-child(even) {
  margin-top: 48px;
}

.product-card::after {
  position: absolute;
  z-index: 4;
  inset: -80% auto -80% -85%;
  width: 38%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(14deg);
  transition: left 850ms var(--ease-out);
}

.product-card:hover {
  border-color: rgba(152, 87, 47, 0.35);
  box-shadow: 0 26px 68px rgba(27, 26, 24, 0.13);
}

.product-card:hover::after {
  left: 145%;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(27, 26, 24, 0.2));
  opacity: 0;
  transition: opacity 450ms ease;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease-out), filter 450ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.055);
}

.product-card:hover .product-card__media::after {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  color: var(--porcelain);
  background: rgba(27, 26, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-card__body {
  display: grid;
  gap: 14px;
  padding: 24px 20px 22px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(27, 26, 24, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.product-card__meta span:last-child {
  text-align: right;
}

.product-card h3 {
  margin-bottom: 0;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.product-card p {
  min-height: 82px;
  margin: 0;
  color: rgba(27, 26, 24, 0.63);
  font-size: 0.87rem;
  line-height: 1.75;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(27, 26, 24, 0.08);
}

.price {
  font-size: 1.45rem;
  font-weight: 600;
}

.product-card .button {
  min-height: 41px;
  padding: 0 15px;
  font-size: 0.77rem;
}

.section--ink {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: clamp(50px, 8vw, 120px);
  min-height: 850px;
  align-items: center;
  overflow: hidden;
  color: var(--porcelain);
  background:
    radial-gradient(circle at 84% 28%, rgba(122, 79, 53, 0.22), transparent 31%),
    linear-gradient(130deg, #151412, var(--ink) 52%, #302821);
}

.section--ink::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    radial-gradient(ellipse at 20% 70%, transparent 0 35%, rgba(255, 255, 255, 0.09) 35.2%, transparent 35.6%),
    radial-gradient(ellipse at 15% 72%, transparent 0 46%, rgba(255, 255, 255, 0.07) 46.2%, transparent 46.6%);
}

.origin__watermark {
  position: absolute;
  right: -0.02em;
  top: 48%;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(12rem, 25vw, 28rem);
  line-height: 0.7;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  user-select: none;
}

.origin__copy {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(650px, 100%);
}

.section--ink .section-number,
.section--ink .eyebrow {
  color: var(--gold-light);
}

.origin__copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
}

.origin-tabs {
  margin-top: 34px;
}

.origin-tab {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.origin-tab:hover {
  color: var(--porcelain);
  border-color: var(--gold);
}

.origin-tab.is-active {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.origin-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --reveal-y: 0px;
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-deep);
  transform: perspective(1200px) translateY(var(--reveal-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: opacity 780ms var(--ease-out), filter 780ms var(--ease-out), transform 180ms ease-out;
}

.origin-card::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 135px;
  aspect-ratio: 1;
  border: 1px solid rgba(152, 87, 47, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(152, 87, 47, 0.035);
  content: "";
}

.origin-card.is-switching > * {
  opacity: 0;
  transform: translateY(12px);
}

.origin-card > * {
  transition: opacity 250ms ease, transform 250ms var(--ease-out);
}

.origin-card__line {
  display: block;
  width: 88px;
  height: 2px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  transform-origin: left;
}

.origin-card__label {
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.origin-card h3 {
  margin-bottom: 21px;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.origin-card p:not(.origin-card__label) {
  color: rgba(27, 26, 24, 0.62);
  line-height: 1.9;
}

.origin-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 38px 0 0;
}

.origin-metrics div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.origin-metrics dt {
  font-size: 2rem;
}

.origin-metrics dd {
  margin: 5px 0 0;
  color: rgba(27, 26, 24, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.subscription {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ed, var(--paper));
}

.subscription__word {
  position: absolute;
  left: 50%;
  top: 15px;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(6rem, 15vw, 13rem);
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px rgba(27, 26, 24, 0.055);
  transform: translateX(-50%);
  white-space: nowrap;
  user-select: none;
}

.plan-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 30px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.plan {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --reveal-y: 0px;
  position: relative;
  display: grid;
  gap: 17px;
  align-content: start;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(251, 250, 246, 0.75);
  box-shadow: 0 14px 38px rgba(27, 26, 24, 0.06);
  transform: perspective(1100px) translateY(var(--reveal-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: opacity 780ms var(--ease-out), filter 780ms var(--ease-out), transform 180ms ease-out, box-shadow 320ms ease, border-color 320ms ease;
}

.plan::before {
  position: absolute;
  right: -54px;
  top: -54px;
  width: 140px;
  aspect-ratio: 1;
  border: 1px solid rgba(27, 26, 24, 0.07);
  border-radius: 50%;
  content: "";
  transition: transform 700ms var(--ease-out);
}

.plan:hover {
  border-color: rgba(152, 87, 47, 0.3);
  box-shadow: 0 26px 64px rgba(27, 26, 24, 0.11);
}

.plan:hover::before {
  transform: scale(1.15);
}

.plan--featured {
  color: var(--porcelain);
  background: linear-gradient(145deg, #3a2d25, #251f1b);
  border-color: var(--jade-deep);
  box-shadow: 0 24px 60px rgba(27, 26, 24, 0.22);
  margin-top: -26px;
  margin-bottom: 26px;
}

.plan--featured::before {
  border-color: rgba(223, 199, 150, 0.2);
  box-shadow: 0 0 0 22px rgba(223, 199, 150, 0.025), 0 0 0 44px rgba(223, 199, 150, 0.018);
}

.plan__tag {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  color: var(--porcelain);
  background: var(--copper);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan--featured .plan__tag {
  color: var(--ink);
  background: var(--gold-light);
}

.plan h3 {
  margin-top: 18px;
  margin-bottom: 4px;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.plan p:not(.plan__tag) {
  color: rgba(27, 26, 24, 0.6);
  line-height: 1.85;
}

.plan--featured p:not(.plan__tag) {
  color: rgba(255, 255, 255, 0.65);
}

.plan strong {
  margin-top: auto;
  padding-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

.plan--featured .button--primary {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(470px, 100vw);
  height: 100svh;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -30px 0 90px rgba(20, 18, 16, 0.3);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 520ms var(--ease-out), visibility 0s linear 520ms;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.cart-drawer__header,
.cart-drawer__footer {
  position: relative;
  padding: 24px 26px;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

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

.cart-drawer__header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.cart-drawer__body {
  overflow: auto;
  overscroll-behavior: contain;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.cart-empty {
  padding: 32px;
  color: rgba(27, 26, 24, 0.58);
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.85;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  animation: cartItemIn 420ms var(--ease-out) both;
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 2px;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.cart-item p {
  margin: 0;
  color: rgba(27, 26, 24, 0.54);
  font-size: 0.78rem;
}

.cart-item__content {
  min-width: 0;
}

.cart-item__tools {
  display: flex;
  margin-top: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-quantity {
  display: grid;
  grid-template-columns: 30px 38px 30px;
  min-height: 32px;
  overflow: hidden;
  border: 1px solid rgba(27, 26, 24, 0.14);
  border-radius: 999px;
}

.cart-quantity button,
.cart-quantity input {
  min-width: 0;
  min-height: 30px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: center;
}

.cart-quantity button {
  cursor: pointer;
  font-size: 1rem;
}

.cart-quantity button:hover:not(:disabled) {
  color: #fff;
  background: var(--copper);
}

.cart-quantity input {
  border-inline: 1px solid rgba(27, 26, 24, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  appearance: textfield;
}

.cart-quantity input::-webkit-inner-spin-button,
.cart-quantity input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.cart-item__remove {
  padding: 4px 0;
  color: rgba(27, 26, 24, 0.5);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(27, 26, 24, 0.18);
  cursor: pointer;
  font-size: 0.67rem;
}

.cart-item__remove:hover {
  color: #9b3d31;
  border-color: currentColor;
}

.cart-total {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  font-size: 0.88rem;
}

.cart-total div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-total div:last-child {
  margin-top: 7px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cart-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.cart-drawer__footer .button {
  width: 100%;
}

.checkout-form {
  display: grid;
  gap: 20px;
  margin: 0 20px 20px;
  padding: 20px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkout-form[hidden] {
  display: none;
}

.checkout-form h3,
.checkout-form h4 {
  margin: 0;
}

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

.checkout-grid label {
  display: grid;
  gap: 7px;
  color: rgba(27, 26, 24, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: #f8f6ef;
  border: 1px solid rgba(27, 26, 24, 0.18);
  border-radius: 2px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.checkout-grid textarea {
  min-height: 76px;
  resize: vertical;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(122, 79, 53, 0.11);
}

.checkout-grid__full {
  grid-column: 1 / -1;
}

.checkout-block {
  display: grid;
  gap: 10px;
}

.option-list {
  display: grid;
  gap: 9px;
}

.checkout-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: #f8f6ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.checkout-option:hover,
.checkout-option:has(input:checked) {
  background: #f0ede3;
  border-color: rgba(122, 79, 53, 0.46);
}

.checkout-option input {
  margin-top: 5px;
  accent-color: var(--jade-deep);
}

.checkout-option strong,
.checkout-option span,
.checkout-option small {
  display: block;
}

.checkout-option small {
  color: rgba(27, 26, 24, 0.52);
}

.checkout-option__price {
  color: var(--jade-deep);
  font-weight: 800;
}

.checkout-note,
.order-result {
  margin: 0;
  color: rgba(27, 26, 24, 0.58);
  font-size: 0.84rem;
}

.order-result {
  font-weight: 700;
}

.order-result[data-state="success"] {
  color: var(--jade-deep);
}

.order-result[data-state="error"] {
  color: #8a2518;
}

.scrim {
  position: fixed;
  z-index: 65;
  inset: 0;
  background: rgba(20, 18, 16, 0.64);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 380ms ease, backdrop-filter 380ms ease;
}

.scrim.is-visible {
  opacity: 1;
  backdrop-filter: blur(5px);
}

.scrim[hidden] {
  display: none;
}

.footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 140px;
  padding: 36px clamp(24px, 4vw, 64px) 90px;
  color: rgba(255, 255, 255, 0.66);
  background: #151412;
  border-top: 1px solid var(--line-light);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand p,
.footer__note {
  margin: 0;
}

.footer__brand p {
  font-family: "Songti SC", STSong, Georgia, serif;
  letter-spacing: 0.08em;
}

.footer__note {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  text-align: right;
}

html.motion-ready [data-reveal] {
  --reveal-y: 28px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(var(--reveal-y));
  transition: opacity 850ms var(--ease-out), filter 850ms var(--ease-out), transform 850ms var(--ease-out);
}

html.motion-ready [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
}

html.motion-ready .product-card[data-reveal],
html.motion-ready .origin-card[data-reveal],
html.motion-ready .plan[data-reveal] {
  transform: perspective(1100px) translateY(var(--reveal-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

@keyframes heroBreath {
  from { transform: scale(1.02); }
  to { transform: scale(1.085); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes mistDriftOne {
  from { transform: translate3d(-5%, 2%, 0) scale(0.96); opacity: 0.38; }
  to { transform: translate3d(18%, -7%, 0) scale(1.08); opacity: 0.62; }
}

@keyframes mistDriftTwo {
  from { transform: translate3d(10%, -3%, 0) scale(0.94); }
  to { transform: translate3d(-18%, 9%, 0) scale(1.08); }
}

@keyframes scrollLine {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

@keyframes radarFill {
  to { transform: scaleX(1); }
}

@keyframes countBump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.35); }
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1180px) {
  .topbar {
    padding-inline: 28px;
  }

  .hero__content {
    margin-left: 42px;
  }

  .product-card__body {
    padding-inline: 17px;
  }

  .product-card p {
    min-height: 105px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 86px;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    z-index: 60;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    justify-content: space-around;
    gap: 8px;
    min-height: 58px;
    padding: 8px 14px;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.9);
    border: 1px solid rgba(27, 26, 24, 0.11);
    border-radius: 999px;
    box-shadow: 0 16px 50px rgba(27, 26, 24, 0.17);
    backdrop-filter: blur(22px) saturate(120%);
  }

  .nav a {
    flex: 1;
    padding: 10px 4px;
    text-align: center;
    white-space: nowrap;
  }

  .hero__content {
    width: min(680px, calc(100% - 64px));
  }

  h2 {
    font-size: clamp(2.8rem, 8vw, 4.3rem);
  }

  .lab-grid,
  .section--ink {
    grid-template-columns: 1fr;
  }

  .lab-grid {
    gap: 28px;
  }

  .section--ink {
    min-height: auto;
  }

  .origin__copy {
    justify-self: start;
  }

  .origin-card {
    justify-self: end;
  }

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

  .product-card p {
    min-height: 76px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 690px;
  }

  .plan,
  .plan--featured {
    min-height: 330px;
    margin: 0;
  }

  .footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .topbar[data-elevated="true"] {
    gap: 12px;
    min-height: 70px;
    padding: 0 16px;
  }

  .brand__descriptor {
    display: none;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 1rem;
  }

  .language-switch {
    transform: scale(0.9);
    transform-origin: right center;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero__media::before {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(20, 18, 16, 0.91), rgba(20, 18, 16, 0.55)),
      linear-gradient(0deg, rgba(20, 18, 16, 0.74), transparent 55%);
  }

  .hero__content {
    width: calc(100% - 38px);
    margin-left: 19px;
    padding: 120px 0 114px;
  }

  h1 {
    font-size: clamp(4.1rem, 21vw, 6rem);
    letter-spacing: 0.08em;
  }

  .hero__edition {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions .button {
    padding-inline: 13px;
    font-size: 0.77rem;
  }

  .hero__stats {
    gap: 0;
    margin-top: 38px;
  }

  .hero__stats div {
    padding-inline: 13px;
  }

  .hero__stats dt {
    font-size: 1.35rem;
  }

  .hero__stats dd {
    font-size: 0.66rem;
  }

  .hero__side-note {
    display: none;
  }

  .hero__scroll {
    right: 20px;
    bottom: 25px;
  }

  .brand-notes {
    grid-template-columns: repeat(3, minmax(270px, 78vw));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brand-notes::-webkit-scrollbar {
    display: none;
  }

  .brand-notes p {
    scroll-snap-align: start;
  }

  .section,
  .taste-lab {
    padding: 88px 18px;
  }

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

  .section-number {
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .lab-panel {
    padding: 30px 22px;
  }

  .recommendation {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .recommendation__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .recommendation__content {
    padding: 32px 24px;
  }

  .recommendation h3 {
    font-size: 2.6rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-card__media {
    aspect-ratio: 1 / 1;
  }

  .product-card p {
    min-height: auto;
  }

  .section--ink {
    gap: 52px;
  }

  .origin-card {
    padding: 34px 25px;
  }

  .origin-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .origin-tab {
    padding-inline: 7px;
    font-size: 0.73rem;
  }

  .origin__watermark {
    top: 67%;
  }

  .subscription__word {
    top: 40px;
  }

  .plan {
    padding: 30px 24px;
  }

  .cart-drawer {
    width: 100vw;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__note {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .topbar__tools {
    gap: 8px;
  }

  .nav {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 54px;
    padding: 7px 8px;
    font-size: 0.7rem;
  }

  .hero__content {
    padding-top: 104px;
  }

  .hero .eyebrow {
    max-width: 280px;
    font-size: 0.65rem;
  }

  h1 {
    font-size: 4rem;
  }

  .hero__lead {
    max-width: 350px;
    margin-bottom: 25px;
  }

  .hero__stats dd {
    letter-spacing: 0;
  }

  .choice-group {
    gap: 5px;
  }

  .choice {
    padding-inline: 7px;
  }

  .origin-metrics {
    gap: 12px;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .cart-item img {
    width: 62px;
    height: 62px;
  }

  .checkout-form {
    margin: 0 12px 12px;
    padding: 15px;
  }

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

  .checkout-grid__full {
    grid-column: auto;
  }

  .checkout-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-option__price {
    grid-column: 2;
  }
}

@media (max-height: 700px) and (orientation: landscape) {
  .hero {
    min-height: 680px;
    height: auto;
  }

  .hero__content {
    padding-block: 130px 100px;
  }
}

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

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

  .hero__media,
  .hero__media::before,
  .hero__mist,
  .product-card,
  .origin-card,
  .plan {
    transform: none !important;
  }

  .hero__mist {
    display: none;
  }

  html.motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Luxury Hero data cards: restrained hover reveal without layout shift. */
.hero__stats {
  height: 96px;
  max-width: 720px;
  align-items: start;
  gap: 10px;
  overflow: visible;
}

.hero__stats .hero-stat-card,
.hero__stats .hero-stat-card:first-child {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 96px;
  padding: 16px 20px 18px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 18px;
  outline: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0);
  transition:
    transform 520ms ease-out,
    min-height 560ms ease-out,
    background 520ms ease-out,
    border-color 520ms ease-out,
    box-shadow 520ms ease-out,
    backdrop-filter 520ms ease-out;
}

.hero__stats .hero-stat-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(255, 248, 240, 0.075), rgba(255, 248, 240, 0.025));
  opacity: 0;
  transition: opacity 520ms ease-out;
}

.hero__stats .hero-stat-card::after {
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(231, 198, 139, 0.95), transparent);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero__stats .hero-stat-card:hover,
.hero__stats .hero-stat-card:focus,
.hero__stats .hero-stat-card:focus-within {
  z-index: 4;
  min-height: 236px;
  background: rgba(255, 248, 240, 0.05);
  border-color: rgba(208, 170, 118, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__stats .hero-stat-card:hover::before,
.hero__stats .hero-stat-card:focus::before,
.hero__stats .hero-stat-card:focus-within::before {
  opacity: 1;
}

.hero__stats .hero-stat-card:hover::after,
.hero__stats .hero-stat-card:focus::after,
.hero__stats .hero-stat-card:focus-within::after {
  animation: heroStatGoldSweep 1s ease-out both;
}

.hero__stats .hero-stat-card dt {
  width: fit-content;
  font-family: "Playfair Display", "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 520ms ease-out, text-shadow 520ms ease-out;
}

.hero__stats .hero-stat-card:hover dt,
.hero__stats .hero-stat-card:focus dt,
.hero__stats .hero-stat-card:focus-within dt {
  text-shadow: 0 5px 24px rgba(222, 186, 124, 0.16);
  transform: scale(1.03);
}

.hero__stats .hero-stat-card dd {
  display: grid;
  gap: 0;
  margin: 11px 0 0;
  color: inherit;
}

.hero-stat-card__title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero-stat-card__reveal {
  display: grid;
  gap: 7px;
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition:
    max-height 560ms ease-out,
    padding-top 560ms ease-out,
    opacity 480ms ease-out,
    transform 560ms ease-out;
}

.hero-stat-card__reveal strong,
.hero-stat-card__reveal > span {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease-out, transform 480ms ease-out;
}

.hero-stat-card__reveal strong {
  color: rgba(244, 221, 180, 0.9);
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.hero-stat-card__reveal > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.015em;
}

.hero__stats .hero-stat-card:hover .hero-stat-card__reveal,
.hero__stats .hero-stat-card:focus .hero-stat-card__reveal,
.hero__stats .hero-stat-card:focus-within .hero-stat-card__reveal {
  max-height: 140px;
  padding-top: 13px;
  opacity: 1;
  transform: translateY(0);
}

.hero__stats .hero-stat-card:hover .hero-stat-card__reveal strong,
.hero__stats .hero-stat-card:focus .hero-stat-card__reveal strong,
.hero__stats .hero-stat-card:focus-within .hero-stat-card__reveal strong {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms;
}

.hero__stats .hero-stat-card:hover .hero-stat-card__reveal > span,
.hero__stats .hero-stat-card:focus .hero-stat-card__reveal > span,
.hero__stats .hero-stat-card:focus-within .hero-stat-card__reveal > span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 250ms;
}

.hero__stats .hero-stat-card:focus-visible {
  border-color: rgba(231, 198, 139, 0.7);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(231, 198, 139, 0.12);
}

@keyframes heroStatGoldSweep {
  0% { opacity: 0; transform: scaleX(0); }
  18% { opacity: 0.9; }
  78% { opacity: 0.75; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@media (max-width: 720px) {
  .hero__stats {
    height: 78px;
    gap: 4px;
    margin-top: 32px;
  }

  .hero__stats .hero-stat-card,
  .hero__stats .hero-stat-card:first-child {
    min-height: 78px;
    padding: 12px 8px 14px;
    border-radius: 14px;
  }

  .hero__stats .hero-stat-card:hover,
  .hero__stats .hero-stat-card:focus,
  .hero__stats .hero-stat-card:focus-within {
    min-height: 248px;
  }

  .hero__stats .hero-stat-card dt { font-size: clamp(30px, 9vw, 42px); }
  .hero-stat-card__title { font-size: 11px; letter-spacing: 0.08em; }
  .hero-stat-card__reveal { gap: 5px; }
  .hero-stat-card__reveal strong { font-size: 11px; line-height: 1.45; letter-spacing: 0; }
  .hero-stat-card__reveal > span { font-size: 11px; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stats .hero-stat-card,
  .hero__stats .hero-stat-card::before,
  .hero__stats .hero-stat-card dt,
  .hero-stat-card__reveal,
  .hero-stat-card__reveal strong,
  .hero-stat-card__reveal > span {
    transition-duration: 0.01ms !important;
  }

  .hero__stats .hero-stat-card::after { animation: none !important; }
}

/* Homepage navigation gateway to the trust story */
.nav a.trust-nav-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  color: #fff4db;
  background: linear-gradient(135deg, rgba(185, 134, 67, 0.28), rgba(215, 177, 110, 0.12));
  border: 1px solid rgba(226, 193, 132, 0.42);
  border-radius: 999px;
  text-decoration: none;
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.topbar[data-elevated="true"] .nav a.trust-nav-link {
  color: #66451f;
  background: rgba(185, 134, 67, 0.1);
  border-color: rgba(151, 104, 51, 0.28);
}

.nav a.trust-nav-link:hover {
  color: #231d15;
  background: linear-gradient(135deg, #edd8ad, #c99554);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(123, 84, 39, 0.18);
  transform: translateY(-2px);
}

.trust-nav-link i { font-style: normal; font-size: 0.74rem; }

@media (max-width: 980px) {
  .nav a.trust-nav-link { min-height: 38px; padding-inline: 0.75rem; }
}

/* Visible trust and contact cues */
.why-preview__hint {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  margin: 0.2rem 0 1.2rem;
  padding: 0.55rem 0.8rem;
  color: #ead3a5;
  background: rgba(213, 174, 105, 0.08);
  border: 1px solid rgba(213, 174, 105, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.why-preview__hint i {
  width: 0.48rem;
  height: 0.48rem;
  background: #d6ad69;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(214, 173, 105, 0.52);
  animation: whyHintPulse 2.1s ease-out infinite;
}

.recommendation__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.recommendation__actions .button { margin-top: 0; }
.recommendation__trust-link {
  min-width: 0 !important;
  color: rgba(255,255,255,0.84);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
}
.recommendation__trust-link:hover { color: #f3dfb6; border-color: rgba(218,181,111,0.64); background: rgba(218,181,111,0.08); }

@keyframes whyHintPulse {
  0% { box-shadow: 0 0 0 0 rgba(214,173,105,0.52); }
  70%, 100% { box-shadow: 0 0 0 0.65rem rgba(214,173,105,0); }
}

@media (max-width: 620px) {
  .recommendation__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .recommendation__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .why-preview__hint i { animation: none; }
}

/* Homepage trust gateway */
.why-preview {
  padding: clamp(24px, 3vw, 48px);
  color: #f7f2e8;
  background: #121713;
}

.why-preview__link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: min(700px, 76svh);
  overflow: hidden;
  color: inherit;
  background: #1b231d;
  border: 1px solid rgba(221, 190, 128, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: border-color 420ms ease, box-shadow 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.why-preview__link::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color 420ms ease, box-shadow 420ms ease;
}

.why-preview__visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.why-preview__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: filter 700ms ease, transform 1.1s var(--ease-out);
}

.why-preview__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 56%, rgba(27, 35, 29, 0.88)), linear-gradient(180deg, transparent 58%, rgba(12, 17, 13, 0.42));
}

.why-preview__proof {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  background: #eee8dc;
  border: 5px solid rgba(248, 242, 229, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transition: transform 600ms var(--ease-out);
}

.why-preview__proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-preview__proof--one {
  right: 7%;
  bottom: 7%;
  width: clamp(130px, 14vw, 205px);
  aspect-ratio: 0.76;
  transform: rotate(3deg);
}

.why-preview__proof--two {
  right: 26%;
  bottom: 11%;
  width: clamp(110px, 12vw, 175px);
  aspect-ratio: 0.92;
  transform: rotate(-5deg);
}

.why-preview__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 98px);
  background:
    radial-gradient(circle at 82% 12%, rgba(206, 169, 100, 0.12), transparent 31%),
    linear-gradient(145deg, rgba(31, 42, 34, 0.98), rgba(15, 20, 17, 0.99));
}

.why-preview__content .eyebrow {
  color: #d4ad6e;
}

.why-preview__content h2 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.3vw, 6.2rem);
  line-height: 1.02;
}

.why-preview__content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.9;
}

.why-preview__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-preview__content li {
  position: relative;
  padding: 17px 12px 17px 24px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.why-preview__content li::before {
  position: absolute;
  left: 2px;
  color: #d3ab69;
  content: "✦";
}

.why-preview__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  padding-bottom: 9px;
  color: #f4dfb7;
  border-bottom: 1px solid rgba(222, 184, 116, 0.55);
  font-weight: 650;
  letter-spacing: 0.05em;
}

.why-preview__cta b {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 320ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .why-preview__link:hover {
    border-color: rgba(224, 190, 126, 0.52);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.32), 0 0 42px rgba(199, 155, 84, 0.09);
    transform: translateY(-4px);
  }

  .why-preview__link:hover::after {
    border-color: rgba(230, 200, 142, 0.18);
    box-shadow: inset 0 0 70px rgba(205, 165, 94, 0.08);
  }

  .why-preview__link:hover .why-preview__visual > img {
    filter: saturate(0.94) contrast(1.04);
    transform: scale(1.025);
  }

  .why-preview__link:hover .why-preview__proof--one { transform: rotate(1deg) translateY(-8px); }
  .why-preview__link:hover .why-preview__proof--two { transform: rotate(-3deg) translateY(-6px); }
  .why-preview__link:hover .why-preview__cta b { transform: translate(4px, -4px); }
}

@media (max-width: 980px) {
  .why-preview__link {
    grid-template-columns: 1fr;
  }

  .why-preview__visual {
    min-height: 460px;
  }

  .why-preview__visual::after {
    background: linear-gradient(180deg, transparent 58%, rgba(27, 35, 29, 0.92));
  }
}

@media (max-width: 620px) {
  .why-preview { padding: 14px; }
  .why-preview__link { border-radius: 22px; }
  .why-preview__visual { min-height: 390px; }
  .why-preview__proof--one { right: 7%; width: 128px; }
  .why-preview__proof--two { right: 35%; width: 108px; }
  .why-preview__content { padding: 44px 26px 50px; }
  .why-preview__content ul { grid-template-columns: 1fr; }
}

/* Product-only additions: real image sequence and package pricing. */
.product-card--link {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.product-card--link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 8px;
}

.product-card__media img.is-long-detail {
  object-fit: contain;
  background: #eee8de;
}

.product-gallery-controls {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.9);
  border: 1px solid rgba(27, 26, 24, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.1);
  backdrop-filter: blur(10px);
}

.product-gallery-controls button {
  width: 34px;
  height: 34px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-gallery-controls span {
  min-width: 44px;
  font-size: 0.68rem;
  text-align: center;
}

.product-variant-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.product-variant {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 54px;
  align-content: center;
  padding: 8px 9px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(27, 26, 24, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.product-variant.is-active {
  background: var(--porcelain);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.product-variant span,
.product-variant strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-variant span {
  font-size: 0.7rem;
}

.product-variant strong {
  color: var(--copper);
  font-size: 0.76rem;
}

.product-variant em {
  position: absolute;
  top: -7px;
  right: 5px;
  padding: 1px 5px;
  color: var(--porcelain);
  background: var(--copper);
  border-radius: 999px;
  font-size: 0.52rem;
  font-style: normal;
}

.product-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 7px;
}

.product-price-block .price {
  flex-basis: 100%;
}

.product-compare-price {
  color: rgba(27, 26, 24, 0.45);
  font-size: 0.68rem;
}

.product-saving {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 700;
}

.product-card__footer {
  align-items: end;
}

@media (max-width: 980px) {
  .product-variant-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .product-gallery-controls {
    right: 9px;
    bottom: 9px;
  }
}

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--porcelain);
}

/* Refined brand system: warm neutrals, restrained hierarchy and quieter motion. */
.eyebrow {
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.24em;
}

.nav {
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero {
  min-height: 720px;
  height: min(940px, 100svh);
}

.hero__monogram,
.hero__mist--two {
  display: none;
}

.hero__lead {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 1.04rem;
  letter-spacing: 0.035em;
}

.button {
  min-height: 48px;
  padding-inline: 25px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.brand-notes p {
  min-height: 116px;
}

.brand-notes strong,
.lab-panel h3,
.recommendation h3,
.product-card h3,
.origin-card h3,
.plan h3,
.cart-item h3 {
  font-family: var(--font-display);
}

.section,
.taste-lab {
  padding-block: clamp(104px, 9vw, 152px);
}

.section-heading {
  margin-bottom: clamp(48px, 5vw, 70px);
}

.section-heading > p:not(.eyebrow) {
  color: rgba(27, 26, 24, 0.66);
  font-size: 0.97rem;
}

.taste-lab::before {
  opacity: 0.48;
}

.lab-panel {
  padding: clamp(30px, 4vw, 50px);
  background: rgba(252, 250, 246, 0.82);
  box-shadow: 0 18px 48px rgba(20, 18, 16, 0.06);
  backdrop-filter: none;
}

.lab-panel::before {
  display: none;
}

.choice,
.filter,
.origin-tab {
  min-height: 46px;
  border-color: rgba(27, 26, 24, 0.18);
  font-weight: 550;
}

.choice.is-active,
.filter.is-active {
  color: var(--porcelain);
  background: var(--ink);
  border-color: var(--ink);
}

.recommendation {
  grid-template-columns: minmax(240px, 0.95fr) minmax(320px, 1.05fr);
  min-height: 560px;
  background: #25221f;
  border-color: rgba(27, 26, 24, 0.5);
  box-shadow: 0 26px 68px rgba(20, 18, 16, 0.2);
}

.recommendation::after {
  display: none;
}

.recommendation__visual::after {
  background: linear-gradient(180deg, transparent 58%, rgba(20, 18, 16, 0.58));
}

.recommendation__content > p:not(.recommendation__label) {
  color: rgba(255, 255, 255, 0.7);
}

.radar {
  gap: 14px;
}

.radar span {
  min-height: 28px;
  padding: 0 0 8px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
}

.radar span::before {
  inset: auto auto -1px 0;
  height: 1px;
  background: var(--gold-light);
}

.shop::before {
  display: none;
}

.product-grid {
  gap: clamp(24px, 2.5vw, 38px);
}

.product-card,
.product-card:hover {
  overflow: visible;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(var(--reveal-y));
}

.product-card:nth-child(even) {
  margin-top: 0;
}

.product-card::after {
  display: none;
}

.product-card__media {
  aspect-ratio: 1;
  background: var(--mist);
  border: 1px solid rgba(27, 26, 24, 0.07);
}

.product-card__media::after {
  background: linear-gradient(180deg, transparent 72%, rgba(20, 18, 16, 0.14));
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__badge {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.86);
  border-color: rgba(27, 26, 24, 0.1);
  border-radius: var(--radius);
  font-weight: 600;
}

.product-card__body {
  gap: 12px;
  padding: 22px 1px 0;
}

.product-card__meta {
  color: rgba(27, 26, 24, 0.62);
  font-size: 0.72rem;
}

.product-card h3 {
  font-size: 1.72rem;
  font-weight: 500;
}

.product-card p {
  color: rgba(27, 26, 24, 0.68);
}

.product-card__footer {
  padding-top: 10px;
  border-top-color: rgba(27, 26, 24, 0.1);
}

.product-card .button {
  min-height: 44px;
  padding-inline: 18px;
}

.section--ink {
  min-height: 760px;
}

.section--ink::before {
  opacity: 0.08;
}

.origin-card {
  background: rgba(252, 250, 246, 0.97);
  box-shadow: 0 26px 68px rgba(20, 18, 16, 0.18);
  transform: translateY(var(--reveal-y));
}

.origin-card::after {
  display: none;
}

.origin-card__line {
  width: 64px;
  height: 1px;
  background: var(--copper);
}

.subscription {
  background: linear-gradient(180deg, #f8f5ef, var(--paper));
}

.plan {
  min-height: 380px;
  background: rgba(252, 250, 246, 0.84);
  box-shadow: 0 16px 42px rgba(20, 18, 16, 0.055);
  transform: translateY(var(--reveal-y));
}

.plan::before {
  display: none;
}

.plan:hover {
  border-color: rgba(122, 79, 53, 0.3);
  box-shadow: 0 20px 50px rgba(20, 18, 16, 0.085);
}

.plan--featured,
.plan--featured:hover {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--line);
  border-top: 2px solid var(--copper);
  box-shadow: 0 20px 54px rgba(20, 18, 16, 0.08);
}

.plan__tag,
.plan--featured .plan__tag {
  color: var(--copper);
  background: transparent;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 600;
}

.plan p:not(.plan__tag),
.plan--featured p:not(.plan__tag) {
  color: rgba(27, 26, 24, 0.66);
}

.plan--featured .button--primary {
  color: var(--porcelain);
  background: var(--copper);
  border-color: var(--copper);
}

.cart-drawer {
  background: var(--paper);
  box-shadow: -24px 0 72px rgba(20, 18, 16, 0.22);
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(122, 79, 53, 0.1);
}

.checkout-option:hover,
.checkout-option:has(input:checked) {
  border-color: rgba(122, 79, 53, 0.44);
}

.checkout-option input {
  accent-color: var(--copper);
}

.checkout-option__price {
  color: var(--copper);
}

.order-result[data-state="success"] {
  color: #506451;
}

.scrim {
  background: rgba(20, 18, 16, 0.64);
}

.footer__note {
  color: rgba(255, 255, 255, 0.58);
}

html.motion-ready [data-reveal] {
  --reveal-y: 18px;
  filter: blur(4px);
  transition-duration: 720ms;
}

html.motion-ready .product-card[data-reveal],
html.motion-ready .origin-card[data-reveal],
html.motion-ready .plan[data-reveal] {
  transform: translateY(var(--reveal-y));
}

@keyframes heroBreath {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 128px;
  }

  .nav {
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    min-height: 50px;
    justify-content: center;
    overflow-x: auto;
    padding: 0 clamp(10px, 3vw, 24px);
    color: var(--porcelain);
    background: rgba(20, 18, 16, 0.48);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(16px) saturate(110%);
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .topbar[data-elevated="true"] .nav {
    color: var(--ink);
    background: rgba(244, 240, 232, 0.96);
    border-color: var(--line);
  }

  .nav a {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 48px;
    align-items: center;
    padding: 0 12px;
  }

  .product-grid {
    gap: 54px 28px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 162px;
  }

  .hero__mist {
    display: none;
  }

  .brand-notes {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .brand-notes p {
    min-height: 104px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brand-notes p:first-child {
    border-top: 0;
  }

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

  .product-card__media {
    aspect-ratio: 1;
  }

  .plan,
  .plan--featured {
    min-height: 320px;
  }

  .footer {
    padding-bottom: 48px;
  }

  .cart-drawer {
    height: 100dvh;
  }

  .cart-drawer__footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .topbar__tools {
    gap: 6px;
  }

  .lang-button {
    min-width: 33px;
    min-height: 36px;
    padding-inline: 5px;
  }

  .topbar .icon-button { width: 40px; height: 40px; }

  .language-switch {
    transform: none;
  }

  .nav {
    right: 0;
    bottom: auto;
    left: 0;
    min-height: 50px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .nav a {
    min-width: max-content;
    min-height: 48px;
    padding-inline: 9px;
  }

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

  .hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .topbar { padding-inline: 11px; }
  .topbar .brand__text { display: none; }
  .topbar__tools { gap: 4px; }
}

html:lang(th) .hero h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

html:lang(th) .hero__lead,
html:lang(th) .section-heading p,
html:lang(th) .plan__description {
  line-height: 1.85;
}

html:lang(th) .hero-stat-card__title { letter-spacing: .04em; white-space: normal; }

/* Single luxury hero: reference image and restrained typographic motion. */
.hero__media::before {
  background-position: center;
  filter: saturate(0.84) contrast(1.04);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.74) 0%, rgba(17, 17, 15, 0.48) 35%, rgba(17, 17, 15, 0.08) 68%, rgba(17, 17, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.2), transparent 34%, rgba(17, 17, 15, 0.48));
}

.hero__mist,
.hero__monogram {
  display: none;
}

.hero__content > * {
  animation: none;
}

.hero .eyebrow {
  opacity: 0;
  transform: translateY(16px);
  animation: luxuryHeroFade 900ms 160ms var(--ease-out) forwards;
}

.hero__brand-title {
  display: flex;
  gap: clamp(10px, 1.8vw, 28px);
  letter-spacing: 0.02em;
}

.hero__brand-title span {
  display: inline-block;
  opacity: 0;
  clip-path: inset(100% 0 0);
  filter: blur(7px);
  transform: translateY(42px);
  animation: luxuryHeroChar 1.2s calc(340ms + var(--char-index) * 130ms) var(--ease-out) forwards;
}

.hero__edition,
.hero__lead,
.hero__actions,
.hero__stats,
.hero__scroll {
  opacity: 0;
  transform: translateY(16px);
  animation: luxuryHeroFade 950ms var(--ease-out) forwards;
}

.hero__edition { animation-delay: 820ms; }
.hero__lead { animation-delay: 960ms; }
.hero__actions { animation-delay: 1110ms; }
.hero__stats { animation-delay: 1260ms; }
.hero__scroll { animation-delay: 1480ms; }

.hero__side-note {
  opacity: 0;
  animation: luxuryHeroOpacity 950ms 1380ms ease forwards;
}

@keyframes luxuryHeroChar {
  to {
    opacity: 1;
    clip-path: inset(0);
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes luxuryHeroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryHeroOpacity {
  to { opacity: 1; }
}

@media (max-width: 720px) {
  .hero__media::before {
    background-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(17, 17, 15, 0.76), rgba(17, 17, 15, 0.28) 78%),
      linear-gradient(180deg, rgba(17, 17, 15, 0.18), transparent 36%, rgba(17, 17, 15, 0.58));
  }

  .hero__brand-title {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero__brand-title span,
  .hero__edition,
  .hero__lead,
  .hero__actions,
  .hero__stats,
  .hero__scroll {
    animation: none !important;
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  .hero__side-note {
    animation: none !important;
    opacity: 1;
  }
}

/* Premium Tea Membership experience */
.subscription {
  --membership-gold: #a9783f;
  --membership-gold-soft: #d8bd8a;
  --membership-ink: #1c1915;
  overflow: hidden;
  padding-block: clamp(120px, 12vw, 190px);
  background:
    radial-gradient(circle at 10% 16%, rgba(169, 120, 63, 0.09), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(75, 95, 75, 0.075), transparent 30%),
    linear-gradient(155deg, #f8f6f1 0%, #eee9df 48%, #f6f3ec 100%);
}

.subscription::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(53, 43, 34, 0.12) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
  opacity: 0.13;
}

.subscription__word {
  top: 35px;
  color: transparent;
  font-size: clamp(5rem, 13vw, 11rem);
  letter-spacing: 0.04em;
  -webkit-text-stroke-color: rgba(122, 79, 53, 0.07);
}

.membership-heading {
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(940px, 100%);
  margin-bottom: clamp(70px, 8vw, 110px);
  text-align: center;
}

.membership-heading .section-number {
  margin-bottom: 24px;
}

.membership-heading .eyebrow {
  color: var(--membership-gold);
  letter-spacing: 0.24em;
}

.membership-heading h2 {
  margin: 18px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.membership-heading > p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(28, 25, 21, 0.66);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.95;
}

.membership-heading .membership-subtitle {
  margin-top: 20px;
  color: var(--membership-ink);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: 0.02em;
}

.subscription .plan-grid {
  z-index: 2;
  align-items: stretch;
  gap: clamp(20px, 2.2vw, 30px);
  width: min(1320px, 100%);
}

.subscription .plan {
  display: flex;
  min-height: 790px;
  flex-direction: column;
  gap: 0;
  overflow: visible;
  padding: clamp(30px, 3vw, 42px);
  color: var(--membership-ink);
  background: rgba(255, 254, 251, 0.83);
  border: 1px solid rgba(63, 50, 39, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(52, 42, 33, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  transition: opacity 720ms var(--ease-out), filter 720ms var(--ease-out), transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out), border-color 420ms ease;
}

.subscription .plan::before {
  display: none;
}

html.motion-ready .subscription .plan[data-reveal] {
  transform: translateY(var(--reveal-y));
}

.subscription .plan:hover,
html.motion-ready .subscription .plan[data-reveal]:hover {
  border-color: rgba(169, 120, 63, 0.34);
  box-shadow: 0 34px 90px rgba(52, 42, 33, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(-10px);
}

.subscription .plan--featured,
.subscription .plan--featured:hover {
  z-index: 3;
  margin: 0;
  color: #fbf8f0;
  background:
    radial-gradient(circle at 88% 4%, rgba(216, 189, 138, 0.17), transparent 28%),
    linear-gradient(145deg, #2d2923, #171512 78%);
  border: 1px solid rgba(216, 189, 138, 0.42);
  box-shadow: 0 34px 95px rgba(31, 26, 21, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.motion-ready .subscription .plan--featured[data-reveal] {
  transform: translateY(var(--reveal-y)) scale(1.025);
}

html.motion-ready .subscription .plan--featured[data-reveal]:hover {
  transform: translateY(-12px) scale(1.025);
}

.subscription .plan__popular {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  padding: 8px 13px;
  color: #2a2118;
  background: linear-gradient(135deg, #ead5aa, #c89c5f);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.subscription .plan__header {
  min-height: 244px;
}

.subscription .plan__tag,
.subscription .plan--featured .plan__tag {
  width: fit-content;
  margin: 0 0 28px;
  padding: 0 0 8px;
  color: var(--membership-gold);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.subscription .plan--featured .plan__tag {
  color: var(--membership-gold-soft);
  padding-right: 112px;
}

.subscription .plan h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.subscription .plan__eyebrow {
  min-height: 2.8em;
  margin: 14px 0 0;
  color: rgba(28, 25, 21, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.6;
}

.subscription .plan__description {
  margin: 15px 0 0;
  color: rgba(28, 25, 21, 0.58);
  font-size: 0.82rem;
  line-height: 1.8;
}

.subscription .plan--featured .plan__eyebrow {
  color: rgba(255, 252, 245, 0.84);
}

.subscription .plan--featured .plan__description {
  color: rgba(255, 252, 245, 0.58);
}

.subscription .plan__daily-value {
  display: grid;
  min-height: 122px;
  align-content: center;
  margin: 28px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(169, 120, 63, 0.1), rgba(169, 120, 63, 0.025));
  border: 1px solid rgba(169, 120, 63, 0.16);
  border-radius: 18px;
}

.subscription .plan--featured .plan__daily-value {
  background: linear-gradient(135deg, rgba(216, 189, 138, 0.15), rgba(216, 189, 138, 0.04));
  border-color: rgba(216, 189, 138, 0.22);
}

.subscription .plan__daily-value span {
  color: var(--membership-gold);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.subscription .plan--featured .plan__daily-value span {
  color: var(--membership-gold-soft);
}

.subscription .plan__daily-value strong {
  margin: 7px 0 4px;
  padding: 0;
  color: var(--membership-ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.subscription .plan--featured .plan__daily-value strong {
  color: #fffaf0;
}

.subscription .plan__daily-value small {
  color: rgba(28, 25, 21, 0.52);
  font-size: 0.67rem;
  line-height: 1.55;
}

.subscription .plan--featured .plan__daily-value small {
  color: rgba(255, 252, 245, 0.54);
}

.subscription .plan__includes {
  flex: 1;
}

.subscription .plan__includes > p,
.subscription .plan--featured .plan__includes > p {
  margin: 0 0 16px;
  color: rgba(28, 25, 21, 0.48);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subscription .plan--featured .plan__includes > p {
  color: rgba(255, 252, 245, 0.46);
}

.subscription .plan__includes ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.subscription .plan__includes li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: rgba(28, 25, 21, 0.76);
  font-size: 0.78rem;
  line-height: 1.5;
}

.subscription .plan--featured .plan__includes li {
  color: rgba(255, 252, 245, 0.76);
}

.subscription .plan__includes li span {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-top: 1px;
  color: var(--membership-gold);
  border: 1px solid rgba(169, 120, 63, 0.32);
  border-radius: 50%;
  font-size: 0.54rem;
  font-weight: 700;
}

.subscription .plan--featured .plan__includes li span {
  color: var(--membership-gold-soft);
  border-color: rgba(216, 189, 138, 0.38);
}

.subscription .plan__footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 25, 21, 0.11);
}

.subscription .plan--featured .plan__footer {
  border-top-color: rgba(255, 252, 245, 0.12);
}

.subscription .plan__price {
  display: flex;
  align-items: baseline;
  margin: 0 0 20px;
  color: var(--membership-ink);
  gap: 8px;
}

.subscription .plan--featured .plan__price {
  color: #fffaf0;
}

.subscription .plan__price strong {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.subscription .plan__price span {
  color: rgba(28, 25, 21, 0.48);
  font-size: 0.75rem;
}

.subscription .plan--featured .plan__price span {
  color: rgba(255, 252, 245, 0.48);
}

.subscription .plan .button {
  position: relative;
  width: 100%;
  min-height: 52px;
  overflow: hidden;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.subscription .plan .button:hover {
  box-shadow: 0 12px 28px rgba(32, 27, 22, 0.16);
  transform: translateY(-2px);
}

.subscription .plan--featured .button--primary {
  color: #251d15;
  background: linear-gradient(135deg, #ead5aa, #c99a5a);
  border-color: #d7b477;
}

@media (max-width: 1050px) {
  .subscription .plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 26px;
  }

  .subscription .plan,
  .subscription .plan--featured {
    min-height: 0;
  }

  html.motion-ready .subscription .plan--featured[data-reveal],
  html.motion-ready .subscription .plan--featured[data-reveal]:hover {
    transform: translateY(var(--reveal-y));
  }

  .subscription .plan__header {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .subscription {
    padding: 94px 16px 108px;
  }

  .subscription__word {
    top: 30px;
    font-size: 4rem;
  }

  .membership-heading {
    margin-bottom: 56px;
  }

  .membership-heading h2 {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
  }

  .subscription .plan {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .subscription .plan__popular {
    top: 18px;
    right: 18px;
  }

  .subscription .plan--featured .plan__tag {
    max-width: 58%;
    padding-right: 0;
  }
}

/* Checkout: free-shipping progress and three scan-payment choices */
.shipping-benefit {
  position: relative;
  margin: 0 0 18px;
  padding: 13px 14px 15px;
  overflow: hidden;
  color: rgba(27, 26, 24, 0.68);
  background: rgba(169, 120, 63, 0.075);
  border: 1px solid rgba(169, 120, 63, 0.18);
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.45;
}

.shipping-benefit::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: rgba(169, 120, 63, 0.12);
}

.shipping-benefit > span {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: var(--shipping-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, #9b6b34, #d4b276);
  transition: width 380ms var(--ease-out);
}

.shipping-benefit.is-unlocked {
  color: #315f48;
  background: rgba(67, 111, 84, 0.08);
  border-color: rgba(67, 111, 84, 0.2);
}

.shipping-benefit.is-unlocked > span {
  background: #49785f;
}

.payment-option.checkout-option {
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  min-height: 74px;
  align-items: center;
  padding: 13px;
  overflow: hidden;
  background: #fbfaf6;
  border-radius: 14px;
}

.payment-option.checkout-option:has(input:checked) {
  background: #fffdf8;
  border-color: rgba(122, 79, 53, 0.52);
  box-shadow: 0 10px 28px rgba(31, 27, 22, 0.07);
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option__icon {
  display: grid !important;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.payment-option--wechat-pay .payment-option__icon {
  background: linear-gradient(145deg, #24bc6b, #11944e);
}

.payment-option--alipay .payment-option__icon {
  background: linear-gradient(145deg, #2d91ff, #1269d4);
}

.payment-option--promptpay .payment-option__icon {
  background: linear-gradient(145deg, #254c80, #173155);
}

.payment-option__check {
  display: grid !important;
  width: 20px;
  height: 20px;
  place-items: center;
  color: transparent;
  border: 1px solid rgba(27, 26, 24, 0.2);
  border-radius: 50%;
  font-size: 0.65rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.payment-option:has(input:checked) .payment-option__check {
  color: white;
  background: var(--copper);
  border-color: var(--copper);
}

.payment-option small {
  margin-top: 4px;
  line-height: 1.5;
}

.payment-option.is-unavailable {
  cursor: not-allowed;
  opacity: .58;
  filter: saturate(.45);
}

.payment-option.is-unavailable em {
  justify-self: end;
  padding: .32rem .48rem;
  color: #7a4f35;
  background: rgba(122, 79, 53, .08);
  border: 1px solid rgba(122, 79, 53, .18);
  border-radius: 999px;
  font-size: .62rem;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.checkout-support-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
  padding: .85rem 1rem;
  color: #f8f2e7;
  background: linear-gradient(135deg, #6f4b36, #8a6145);
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 .8rem 2rem rgba(58, 39, 27, .14);
  transition: transform .3s ease, box-shadow .3s ease;
}

.checkout-support-link[hidden] {
  display: none;
}

#checkoutOpen[hidden] {
  display: none;
}

.checkout-support-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.4rem rgba(58, 39, 27, .2);
}

.checkout-support-link b {
  color: #e6c590;
  font-weight: 500;
}

/* Homepage motion system: calm, cinematic, and GPU-friendly. */
.hero-particles,
.footer-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles {
  z-index: -1;
  transform: translate3d(var(--hero-particle-x), var(--hero-particle-y), 0);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}

.ambient-leaf,
.ambient-gold {
  position: absolute;
  left: var(--particle-x);
  bottom: -12%;
  display: block;
  width: var(--particle-size);
  height: var(--particle-size);
  opacity: var(--particle-opacity);
  will-change: transform, opacity;
}

.ambient-leaf {
  height: auto;
  aspect-ratio: 0.56;
  background: linear-gradient(145deg, rgba(223, 204, 151, 0.72), rgba(86, 112, 78, 0.2));
  border: 1px solid rgba(239, 220, 169, 0.28);
  border-radius: 100% 8% 100% 8%;
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.18), 0 4px 14px rgba(0, 0, 0, 0.08);
  animation: ambientLeafFloat var(--particle-duration) var(--particle-delay) linear infinite;
}

.ambient-leaf::after {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(250, 235, 192, 0.38);
  transform: rotate(42deg);
  transform-origin: center;
}

.ambient-gold {
  background: radial-gradient(circle, #f7dfa5 0%, #c89b50 34%, transparent 72%);
  border-radius: 50%;
  filter: drop-shadow(0 0 5px rgba(226, 188, 111, 0.52));
  animation: ambientGoldFloat var(--particle-duration) var(--particle-delay) linear infinite;
}

.hero__media {
  transition: transform 1.35s var(--ease-out);
}

.hero__media::before {
  transform-origin: 54% 48%;
}

.hero__brand-title {
  position: relative;
  width: fit-content;
}

.hero__brand-title span {
  clip-path: inset(0 100% 0 0);
  filter: blur(5px);
  transform: translateY(18px);
  animation: heroTypeCharacter 920ms calc(360ms + var(--char-index) * 190ms) var(--ease-out) forwards;
}

.hero__brand-title::after {
  align-self: stretch;
  width: 1px;
  min-height: 0.78em;
  margin: 0.06em 0 0 -0.02em;
  content: "";
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 10px rgba(234, 211, 159, 0.6);
  opacity: 0;
  animation: heroCaret 1.9s 310ms steps(2, end) forwards;
}

.hero__edition { animation-delay: 1750ms; }
.hero__lead { animation-delay: 2140ms; }
.hero__actions { animation-delay: 2320ms; }
.hero__stats { animation-delay: 2500ms; }
.hero__side-note { animation-delay: 2640ms; }
.hero__scroll { animation-delay: 2750ms; }

.button::before {
  z-index: 2;
  display: block;
  inset: -45% auto -45% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 174, 0.54), transparent);
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 720ms var(--ease-out), opacity 180ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(560%) skewX(-18deg);
}

html.motion-ready [data-reveal] {
  --reveal-scale: 0.985;
  transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
  transition-duration: 860ms;
}

html.motion-ready [data-reveal].is-visible {
  --reveal-scale: 1;
}

html.motion-ready .product-card[data-reveal],
html.motion-ready .origin-card[data-reveal],
html.motion-ready .plan[data-reveal],
html.motion-ready .lab-panel[data-reveal],
html.motion-ready .recommendation[data-reveal] {
  --card-lift: 0px;
  --card-scale: var(--reveal-scale);
  transform: perspective(1200px) translateY(calc(var(--reveal-y) + var(--card-lift))) scale(var(--card-scale)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.lab-panel,
.recommendation,
.origin-card,
.product-card__media,
.subscription .plan {
  transition: opacity 860ms var(--ease-out), filter 860ms var(--ease-out), transform 420ms var(--ease-out), border-color 420ms ease, box-shadow 420ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  html.motion-ready .product-card[data-reveal]:hover,
  html.motion-ready .origin-card[data-reveal]:hover,
  html.motion-ready .lab-panel[data-reveal]:hover,
  html.motion-ready .recommendation[data-reveal]:hover {
    --card-lift: -8px;
    --card-scale: 1.008;
  }

  .product-card:hover .product-card__media {
    border-color: rgba(195, 153, 83, 0.55);
    box-shadow: 0 26px 65px rgba(39, 31, 23, 0.17), 0 0 0 1px rgba(225, 188, 123, 0.12), 0 0 32px rgba(202, 158, 84, 0.12);
  }

  .lab-panel:hover,
  .recommendation:hover,
  .origin-card:hover {
    border-color: rgba(207, 169, 104, 0.42);
    box-shadow: 0 32px 80px rgba(31, 26, 21, 0.2), 0 0 0 1px rgba(224, 192, 135, 0.12), 0 0 36px rgba(201, 156, 83, 0.1);
  }

  .subscription .plan:hover,
  html.motion-ready .subscription .plan[data-reveal]:hover {
    border-color: rgba(194, 146, 73, 0.5);
    box-shadow: 0 36px 92px rgba(52, 42, 33, 0.18), 0 0 36px rgba(190, 144, 73, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}

.brand-notes {
  position: relative;
  isolation: isolate;
}

.brand-notes__progress {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(169, 120, 63, 0.16) 8%, rgba(169, 120, 63, 0.16) 92%, transparent);
}

.brand-notes__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #b88643 14%, #e0c083 50%, #b88643 86%, transparent);
  box-shadow: 0 0 12px rgba(184, 134, 67, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s 160ms var(--ease-out);
}

.brand-notes.is-active .brand-notes__progress i {
  transform: scaleX(1);
}

.brand-notes [data-timeline-step] {
  position: relative;
  z-index: 1;
  transition: opacity 700ms var(--ease-out), filter 700ms var(--ease-out), transform 700ms var(--ease-out), background 700ms ease;
}

.brand-notes [data-timeline-step] > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--paper-deep);
  border: 1px solid rgba(169, 120, 63, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--paper-deep);
  transition: color 500ms ease, background 500ms ease, box-shadow 500ms ease, transform 500ms var(--ease-out);
}

.brand-notes.is-active [data-timeline-step] {
  background: linear-gradient(90deg, transparent, rgba(207, 172, 111, 0.07), transparent);
  transition-delay: calc(260ms + var(--timeline-index) * 320ms);
}

.brand-notes.is-active [data-timeline-step] > span {
  color: #fff9eb;
  background: linear-gradient(145deg, #b98543, #d4b376);
  box-shadow: 0 0 0 6px var(--paper-deep), 0 0 24px rgba(184, 134, 67, 0.36);
  transform: scale(1.08);
  transition-delay: calc(260ms + var(--timeline-index) * 320ms);
}

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-ambient {
  z-index: 0;
  background: radial-gradient(circle at 72% 110%, rgba(169, 120, 63, 0.16), transparent 44%);
}

.footer .ambient-leaf {
  background: linear-gradient(145deg, rgba(211, 183, 120, 0.46), rgba(64, 91, 63, 0.25));
}

.footer__brand,
.footer__note {
  position: relative;
  z-index: 1;
}

@keyframes heroTypeCharacter {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(5px);
    transform: translateY(18px);
  }
  55% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0);
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroCaret {
  0%, 15%, 35%, 55%, 75% { opacity: 0; }
  8%, 25%, 45%, 65%, 88% { opacity: 0.92; }
  100% { opacity: 0; }
}

@keyframes ambientLeafFloat {
  0% { opacity: 0; transform: translate3d(0, 12vh, 0) rotate(var(--particle-rotate)); }
  12% { opacity: var(--particle-opacity); }
  52% { transform: translate3d(var(--particle-drift), -48vh, 0) rotate(calc(var(--particle-rotate) + 150deg)); }
  88% { opacity: var(--particle-opacity); }
  100% { opacity: 0; transform: translate3d(0, -112vh, 0) rotate(calc(var(--particle-rotate) + 330deg)); }
}

@keyframes ambientGoldFloat {
  0% { opacity: 0; transform: translate3d(0, 8vh, 0) scale(0.65); }
  16% { opacity: var(--particle-opacity); }
  55% { transform: translate3d(var(--particle-drift), -50vh, 0) scale(1); }
  84% { opacity: var(--particle-opacity); }
  100% { opacity: 0; transform: translate3d(var(--particle-drift), -105vh, 0) scale(0.55); }
}

@media (max-width: 720px) {
  .brand-notes__progress {
    top: 12%;
    right: auto;
    bottom: 12%;
    left: 42px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(169, 120, 63, 0.18) 12%, rgba(169, 120, 63, 0.18) 88%, transparent);
  }

  .brand-notes__progress i {
    transform: scaleY(0);
    transform-origin: top;
  }

  .brand-notes.is-active .brand-notes__progress i {
    transform: scaleY(1);
  }

  .brand-notes p {
    padding-left: 28px;
  }

  .hero__brand-title::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles,
  .footer-ambient .ambient-leaf,
  .footer-ambient .ambient-gold,
  .hero__brand-title::after {
    display: none;
  }

  .hero__brand-title span,
  .hero__edition,
  .hero__lead,
  .hero__actions,
  .hero__stats,
  .hero__side-note,
  .hero__scroll {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Hero gateway to the Brand Journal */
.button--journal {
  min-width: 190px;
  gap: 11px;
  color: #fff4dc;
  border-color: rgba(225, 190, 124, 0.5);
  background:
    linear-gradient(135deg, rgba(198, 151, 82, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(16, 29, 22, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 34px rgba(6, 13, 9, 0.16);
  backdrop-filter: blur(13px) saturate(1.15);
}

.button--journal > b {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e3bb75;
  box-shadow: 0 0 0 5px rgba(219, 176, 101, 0.1), 0 0 15px rgba(230, 188, 113, 0.55);
  animation: journalGatewayPulse 2.8s ease-out infinite;
}

.button--journal > span,
.button--journal > i {
  position: relative;
  z-index: 3;
}

.button--journal > i {
  margin-left: 4px;
  font-style: normal;
  font-size: 0.88rem;
  transition: transform 420ms var(--ease-out);
}

.button--journal:hover,
.button--journal:focus-visible {
  color: #201b14;
  border-color: rgba(238, 207, 150, 0.88);
  background: linear-gradient(135deg, #ecd5a8, #c89552);
  box-shadow: 0 18px 44px rgba(6, 13, 9, 0.24), 0 0 28px rgba(221, 176, 98, 0.18);
  transform: translateY(-3px);
}

.button--journal:hover > b,
.button--journal:focus-visible > b {
  background: #5e4324;
  box-shadow: 0 0 0 5px rgba(94, 67, 36, 0.1);
  animation: none;
}

.button--journal:hover > i,
.button--journal:focus-visible > i {
  transform: translate(3px, -3px);
}

@keyframes journalGatewayPulse {
  0%, 55%, 100% { box-shadow: 0 0 0 5px rgba(219, 176, 101, 0.1), 0 0 15px rgba(230, 188, 113, 0.45); }
  72% { box-shadow: 0 0 0 10px rgba(219, 176, 101, 0), 0 0 20px rgba(230, 188, 113, 0.62); }
}

@media (max-width: 720px) {
  .button--journal { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .button--journal > b { animation: none; }
}

/* Inventory and sales visibility */
.product-card__stock {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: #f8f3ea;
  background: rgba(35, 63, 47, .86);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(12, 22, 16, .16);
  backdrop-filter: blur(12px);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.product-card__stock[data-state="low"] {
  color: #2c2114;
  background: rgba(233, 198, 139, .92);
}

.product-card__stock[data-state="out"] {
  color: #fff;
  background: rgba(83, 49, 43, .9);
}

.product-card.is-sold-out .product-card__media img {
  filter: saturate(.55) contrast(.94);
  opacity: .82;
}

.product-card__commerce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 2px;
  color: rgba(27, 26, 24, .58);
  border-top: 1px solid rgba(27, 26, 24, .08);
  font-size: .72rem;
  font-weight: 650;
}

.product-card.is-sold-out .product-card__commerce span:first-child {
  color: #8b4539;
}

.cart-item.has-stock-warning {
  border-color: rgba(139, 69, 57, .3);
  background: #fff9f5;
}

.cart-item__inventory {
  margin-top: 5px !important;
  color: #315f48 !important;
  font-weight: 700;
}

.cart-item__inventory[data-state="out"],
.cart-item__warning {
  color: #8b4539 !important;
}

.cart-item__warning {
  margin-top: 6px !important;
  line-height: 1.55;
}

.cart-quantity input:disabled,
.cart-quantity button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .product-card__stock {
    right: 10px;
    bottom: 10px;
    padding: 6px 8px;
  }
}

/* 2026 responsive luxury refinement: clearer hierarchy across desktop, tablet and mobile. */
.mobile-nav-toggle {
  display: none;
  position: relative;
}

.mobile-nav-toggle > span,
.mobile-nav-toggle > span::before,
.mobile-nav-toggle > span::after {
  display: block;
  width: 17px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 360ms var(--ease-out), opacity 240ms ease;
}

.mobile-nav-toggle > span::before { transform: translateY(-5px); }
.mobile-nav-toggle > span::after { transform: translateY(4px); }
.topbar.nav-open .mobile-nav-toggle > span { background: transparent; }
.topbar.nav-open .mobile-nav-toggle > span::before { transform: translateY(1px) rotate(45deg); }
.topbar.nav-open .mobile-nav-toggle > span::after { transform: rotate(-45deg); }

.shop {
  padding-block: clamp(76px, 7.2vw, 116px);
}

.shop .section-heading {
  margin-bottom: clamp(34px, 3.8vw, 52px);
}

.product-card__commerce {
  justify-content: flex-end;
  min-height: 34px;
  color: rgba(122, 79, 53, .72);
  letter-spacing: .04em;
}

.product-card__footer {
  align-items: center;
}

.cart-drawer {
  inset: 0 0 0 auto;
  width: min(460px, 100dvw);
  max-width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  box-sizing: border-box;
}

.cart-drawer > *,
.cart-drawer__header > *,
.cart-drawer__footer > *,
.cart-item > * {
  min-width: 0;
}

.cart-drawer__header,
.cart-drawer__footer {
  padding-right: max(26px, env(safe-area-inset-right));
  padding-left: max(26px, env(safe-area-inset-left));
}

.cart-drawer__header .icon-button {
  flex: 0 0 44px;
}

.cart-total strong {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

.cart-item__remove {
  min-width: 44px;
  min-height: 36px;
  padding-inline: 8px;
  color: rgba(27, 26, 24, .68);
}

body.cart-open .contact-fab {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none !important;
  transform: translateY(12px);
}

:where(.button, .choice, .filter, .origin-tab, .product-card, .plan, .nav a):focus-visible {
  outline: 2px solid rgba(181, 131, 72, .92);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-7px);
  }

  .product-card:hover .product-card__media {
    box-shadow: 0 24px 54px rgba(30, 25, 20, .14);
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .shop {
    padding-inline: clamp(28px, 5vw, 58px);
  }

  .hero__stats {
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 86px;
  }

  .topbar,
  .topbar[data-elevated="true"] {
    grid-template-columns: minmax(0, auto) auto;
    min-height: 72px;
    padding: 0 clamp(14px, 3vw, 28px);
    gap: 14px;
  }

  .mobile-nav-toggle {
    display: inline-grid;
  }

  .nav {
    position: absolute;
    z-index: 64;
    top: calc(100% + 10px);
    right: clamp(14px, 3vw, 28px);
    bottom: auto;
    left: auto;
    display: grid;
    width: min(360px, calc(100vw - 28px));
    max-height: min(70dvh, 560px);
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    padding: 10px 14px;
    color: var(--ink);
    background: rgba(248, 244, 236, .97);
    border: 1px solid rgba(83, 65, 48, .14);
    border-radius: 20px;
    box-shadow: 0 28px 74px rgba(18, 16, 13, .24);
    backdrop-filter: blur(24px) saturate(120%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    transform-origin: 100% 0;
    pointer-events: none;
    transition: opacity 280ms ease, transform 360ms var(--ease-out), visibility 0s linear 360ms;
  }

  .topbar[data-elevated="true"] .nav {
    color: var(--ink);
    background: rgba(248, 244, 236, .98);
    border-color: rgba(83, 65, 48, .14);
  }

  .topbar.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav a,
  .topbar[data-elevated="true"] .nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: inherit;
    border-bottom: 1px solid rgba(83, 65, 48, .09);
    opacity: .82;
    text-align: left;
  }

  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }

  .nav a.trust-nav-link,
  .nav a.contact-nav-link {
    margin: 6px 0 0;
    padding-inline: 12px;
    border: 1px solid rgba(122, 79, 53, .24);
    border-radius: 999px;
  }

  .nav a.contact-nav-link { margin-top: 8px; }

  .section,
  .taste-lab {
    padding-block: clamp(82px, 10vw, 112px);
  }

  .cart-drawer {
    width: min(440px, 100dvw);
  }
}

@media (max-width: 720px) {
  .account-button {
    display: none;
  }

  .topbar__tools {
    gap: 6px;
  }

  .topbar .language-switch {
    padding: 2px;
  }

  .topbar .lang-button {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 6px;
  }

  .topbar .icon-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 760px;
    height: max(760px, 100svh);
  }

  .hero__content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 132px;
  }

  .hero__brand-title {
    font-size: clamp(3.5rem, 19vw, 5.25rem);
  }

  .hero__lead {
    max-width: 34em;
    font-size: .94rem;
    line-height: 1.95;
  }

  .hero__stats {
    gap: 8px;
  }

  .hero__stats .hero-stat-card,
  .hero__stats .hero-stat-card:first-child {
    padding-inline: 8px;
  }

  .shop {
    padding: 72px 18px 92px;
  }

  .shop .section-heading {
    margin-bottom: 32px;
  }

  .product-card__body {
    padding-top: 18px;
  }

  .product-card h3 {
    font-size: 1.9rem;
  }

  .product-card__commerce {
    justify-content: flex-start;
  }

  .cart-drawer {
    width: 100dvw;
    border-radius: 0;
  }

  .cart-drawer__header,
  .cart-drawer__footer {
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .cart-drawer__footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .cart-item__remove {
    min-height: 44px;
    color: rgba(91, 49, 39, .78);
  }
}

@media (max-width: 430px) {
  .topbar,
  .topbar[data-elevated="true"] {
    padding-inline: 12px;
  }

  .topbar .brand {
    gap: 8px;
  }

  .topbar .brand__mark {
    width: 40px;
    height: 40px;
  }

  .topbar .brand__text {
    font-size: .92rem;
    letter-spacing: .09em;
  }

  .topbar .brand__lockup {
    display: none;
  }

  .nav {
    right: 12px;
    width: calc(100vw - 24px);
  }

  .language-switch .lang-button {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 4px;
    font-size: .68rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__stats .hero-stat-card dt {
    font-size: clamp(27px, 8vw, 36px);
  }

  .cart-items {
    padding: 14px;
  }

  .cart-item {
    gap: 11px;
    padding: 11px;
  }
}

@media (max-width: 360px) {
  .topbar .brand__lockup {
    display: none;
  }

  .topbar,
  .topbar[data-elevated="true"] {
    gap: 8px;
    padding-inline: 8px;
  }

  .topbar__tools {
    gap: 4px;
  }

  .language-switch .lang-button {
    min-width: 44px;
  }
}

@media (max-width: 430px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  :where(button, a, input, select, textarea) {
    touch-action: manipulation;
  }

  :where(.filter, .choice, .origin-tab, .mobile-nav-toggle, .cart-button) {
    min-height: 44px;
  }

  .filter-bar {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-bar .filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .cart-drawer__header .icon-button,
  .cart-quantity button,
  .cart-item__remove {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-toggle > span,
  .mobile-nav-toggle > span::before,
  .mobile-nav-toggle > span::after,
  .nav {
    transition-duration: .01ms !important;
  }
}

/* Our Locations — Chiang Mai experience and Yunnan origin */
.locations {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 10vw, 156px) clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 14%, rgba(173, 140, 111, .14), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(63, 82, 66, .1), transparent 34%),
    linear-gradient(145deg, #f5f0e7 0%, #eee7db 100%);
}

.locations::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .32;
  background-image:
    linear-gradient(rgba(122, 79, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 79, 53, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.locations__heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  align-items: end;
  gap: clamp(38px, 7vw, 116px);
  width: min(100%, var(--max));
  margin: 0 auto clamp(46px, 6vw, 78px);
}

.locations__heading .section-number {
  display: inline-block;
  margin-bottom: 18px;
}

.locations__heading .eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  letter-spacing: .24em;
}

.locations__heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.25rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.locations__heading > p {
  max-width: 620px;
  margin: 0 0 4px;
  color: rgba(27, 26, 24, .66);
  font-size: clamp(.96rem, 1.25vw, 1.08rem);
  line-height: 1.95;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(20px, 2.2vw, 34px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.location-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(252, 250, 246, .75);
  border: 1px solid rgba(87, 67, 49, .14);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(45, 37, 29, .08);
  backdrop-filter: blur(18px) saturate(110%);
  transition:
    transform 560ms var(--ease-out),
    box-shadow 560ms var(--ease-out),
    border-color 420ms ease,
    background-color 420ms ease;
}

.location-card::before {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(173, 140, 111, .9), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}

.location-card__media {
  position: relative;
  min-height: clamp(330px, 31vw, 430px);
  overflow: hidden;
  background: #d9d2c6;
}

.location-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 22, 18, .03) 38%, rgba(14, 19, 16, .58) 100%),
    linear-gradient(120deg, rgba(238, 222, 195, .08), transparent 48%);
}

.location-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 700ms ease;
}

.location-card--chiangmai .location-card__media img {
  object-position: center 52%;
}

.location-card--yunnan .location-card__media img {
  object-position: center 48%;
}

.location-card__place {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  width: fit-content;
  max-width: calc(100% - 48px);
  align-items: center;
  gap: 12px;
  padding: 11px 16px 11px 12px;
  color: rgba(255, 255, 255, .96);
  background: rgba(16, 23, 19, .48);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .16);
  backdrop-filter: blur(16px) saturate(115%);
}

.location-card__place-copy {
  display: grid;
  min-width: 0;
}

.location-card__place--link {
  transition: background-color 320ms ease, border-color 320ms ease, transform 420ms var(--ease-out);
}

.location-card__map-arrow {
  margin-left: 2px;
  font-size: .92rem;
  font-style: normal;
  transition: transform 360ms var(--ease-out);
}

.location-card__place strong {
  overflow: hidden;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-card__place small {
  color: rgba(255, 255, 255, .65);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-card__pin {
  position: relative;
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(216, 193, 173, .68);
  border-radius: 50%;
}

.location-card__pin::after {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 193, 173, .12);
}

.location-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 44px);
}

.location-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: rgba(90, 57, 37, .78);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.location-card__meta i {
  color: rgba(27, 26, 24, .34);
  font-family: var(--font-display);
  font-size: .92rem;
  font-style: normal;
  letter-spacing: .08em;
}

.location-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.location-card__body > p {
  margin: 0;
  color: rgba(27, 26, 24, .64);
  font-size: .95rem;
  line-height: 1.95;
}

.location-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 30px;
}

.location-card__services span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  color: rgba(57, 48, 40, .74);
  background: rgba(233, 227, 217, .58);
  border: 1px solid rgba(122, 79, 53, .12);
  border-radius: 999px;
  font-size: .71rem;
  letter-spacing: .06em;
}

.location-card__services span::before {
  width: 4px;
  height: 4px;
  margin-right: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.location-card__action {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 0 20px;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid rgba(27, 26, 24, .14);
  border-bottom: 1px solid rgba(27, 26, 24, .14);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .1em;
  transition: color 360ms ease, padding 440ms var(--ease-out), border-color 360ms ease;
}

.location-card__action::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 520ms var(--ease-out);
}

.location-card__action i {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
  transition: transform 420ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .location-card__place--link:hover {
    background: rgba(16, 23, 19, .7);
    border-color: rgba(216, 193, 173, .6);
    transform: translateY(-2px);
  }

  .location-card__place--link:hover .location-card__map-arrow {
    transform: translate(2px, -2px);
  }

  .location-card:hover {
    background: rgba(252, 250, 246, .9);
    border-color: rgba(173, 140, 111, .45);
    box-shadow: 0 38px 96px rgba(45, 37, 29, .16);
    transform: translateY(-7px);
  }

  .location-card:hover::before {
    transform: scaleX(1);
  }

  .location-card:hover .location-card__media img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.045);
  }

  .location-card__action:hover {
    padding-inline: 24px;
    color: var(--porcelain);
    border-color: var(--ink);
  }

  .location-card__action:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .location-card__action:hover i {
    transform: translate(3px, -3px);
  }
}

.location-card__action:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

.location-card__place--link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .locations__heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    gap: 42px;
  }

  .location-card__media {
    min-height: 340px;
  }

  .location-card h3 {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  }
}

@media (max-width: 880px) {
  .locations__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .locations__heading > p {
    max-width: 680px;
  }

  .locations__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .location-card__media {
    min-height: clamp(340px, 72vw, 510px);
  }

  .location-card h3 {
    font-size: clamp(2.2rem, 7vw, 3.45rem);
  }
}

@media (max-width: 560px) {
  .locations {
    padding: 82px 18px 94px;
  }

  .locations__heading {
    margin-bottom: 34px;
  }

  .locations__heading h2 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .location-card {
    border-radius: 21px;
  }

  .location-card__media {
    min-height: 335px;
  }

  .location-card__place {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding-right: 13px;
  }

  .location-card__place strong {
    font-size: .72rem;
  }

  .location-card__place small {
    font-size: .59rem;
  }

  .location-card__body {
    padding: 25px 22px 27px;
  }

  .location-card__meta {
    font-size: .61rem;
    letter-spacing: .14em;
  }

  .location-card h3 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .location-card__body > p {
    font-size: .9rem;
  }

  .location-card__services {
    margin-block: 23px 27px;
  }

  .location-card__action {
    min-height: 56px;
    padding-inline: 14px;
    font-size: .77rem;
    letter-spacing: .06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-card,
  .location-card::before,
  .location-card__media img,
  .location-card__action,
  .location-card__action::before,
  .location-card__action i {
    transition-duration: .01ms !important;
  }
}
