:root {
  --ink: #3f2f24;
  --muted: #8a7a68;
  --paper: #f3efe6;
  --ivory: #fbf8f0;
  --line: rgba(173, 135, 83, 0.18);
  --gold: #ad8753;
  --tone: #ad8753;
  --soft: #f4eee4;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.52), transparent 38%),
    linear-gradient(180deg, #f8f5ee 0%, var(--paper) 46%, #eee8dc 100%);
}

body.drawer-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 44px;
  color: #fff;
  transition: background 240ms ease, color 240ms ease, padding 240ms ease, box-shadow 240ms ease;
}

.site-header.is-solid {
  padding: 16px 34px;
  color: var(--ink);
  background: rgba(248, 245, 236, 0.92);
  box-shadow: 0 1px 0 rgba(31, 49, 39, 0.09);
  backdrop-filter: blur(18px) saturate(1.12);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-button {
  display: grid;
  gap: 7px;
  width: 38px;
  padding: 8px 4px;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
}

.language {
  font-size: 14px;
  letter-spacing: 0.14em;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.share-button,
.primary-link,
.secondary-link,
.text-button,
.drawer-close {
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.share-button {
  justify-self: end;
  padding: 0 20px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-solid .share-button {
  background: transparent;
}

.quick-menu {
  position: fixed;
  top: 96px;
  left: 34px;
  z-index: 22;
  display: none;
  width: min(320px, calc(100vw - 68px));
  padding: 18px;
  border: 1px solid rgba(31, 49, 39, 0.10);
  background: rgba(251, 248, 240, 0.96);
  box-shadow: 0 18px 48px rgba(34, 48, 39, 0.10);
}

.quick-menu.is-open {
  display: grid;
}

.quick-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.quick-menu button:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #59625a url("./assets/optimized/hero-bilanbay-wellness.jpg") center / cover no-repeat;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 49, 39, 0.24) 0%, rgba(31, 49, 39, 0.06) 36%, rgba(31, 49, 39, 0.54) 100%),
    linear-gradient(90deg, rgba(31, 49, 39, 0.34), rgba(31, 49, 39, 0.04) 58%, rgba(31, 49, 39, 0.26));
}

.hero-title-art {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 45%;
  width: min(520px, 58vw);
  height: auto;
  transform: translate(-50%, -50%);
  animation: heroTitleRise 1200ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
  pointer-events: none;
}

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

@keyframes heroTitleRise {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-art {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 86px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  max-width: 560px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.18;
}

.hero-cn {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.wellness-chooser {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 16px auto 0;
}

.wellness-chooser[hidden] {
  display: none;
}

.wellness-chooser button,
.wellness-chooser a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.wellness-chooser button.is-active,
.wellness-chooser button:active {
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 22px;
}

.primary-link {
  color: var(--ink);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.92);
}

.secondary-link {
  color: #fff;
}

.story-section,
.catalog-section,
.active-section,
.systems-section,
.wellness-showcase-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.story-section {
  padding: 96px 0 70px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 72px;
  margin-top: 24px;
}

.story-grid h2,
.section-head h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.24;
}

.story-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.method-copy {
  max-width: 660px;
  text-align: left;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.method-figure {
  margin: 10px 0 0;
}

.method-figure img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  filter: saturate(0.94) contrast(0.98);
}

.wellness-showcase-section {
  padding: 10px 0 calc(116px + env(safe-area-inset-bottom));
}

.wellness-showcase-list {
  display: grid;
  gap: 18px;
}

.wellness-showcase-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 0 56px 42px;
  color: #fff;
  background: #050505;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 40px rgba(34, 48, 39, 0.08);
  transform: scale(1);
  transform-origin: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.wellness-showcase-card::before,
.wellness-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wellness-showcase-card::before {
  z-index: -2;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  opacity: 0.94;
  transform: scale(1.01);
  transition: transform 520ms ease;
}

.wellness-showcase-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.30) 100%);
}

.wellness-showcase-card:hover::before {
  transform: scale(1.05);
}

.wellness-showcase-card.is-in-focus {
  transform: scale(1.025);
  box-shadow: 0 18px 42px rgba(96, 73, 52, 0.12);
}

.wellness-showcase-card.is-in-focus::before {
  transform: scale(1.045);
}

@media (min-width: 701px), (prefers-reduced-motion: reduce) {
  .wellness-showcase-card,
  .wellness-showcase-card.is-in-focus {
    transform: none;
  }

  .wellness-showcase-card.is-in-focus {
    box-shadow: 0 16px 40px rgba(34, 48, 39, 0.08);
  }

  .wellness-showcase-card.is-in-focus::before {
    transform: scale(1.01);
  }
}

.wellness-showcase-brand {
  position: absolute;
  left: 50px;
  top: 54px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.wellness-showcase-brand img {
  display: block;
  width: 116px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.wellness-showcase-text {
  position: absolute;
  left: 50px;
  bottom: 42px;
  padding-bottom: 0;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.46);
}

.wellness-showcase-arrow {
  position: absolute;
  right: 56px;
  bottom: 39px;
  display: block;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.42));
}

.wellness-showcase-arrow::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 22px;
  height: 22px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.catalog-section {
  padding: 58px 0 72px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head.compact {
  display: block;
}

.active-section {
  padding: 24px 0 92px;
}

.active-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.active-category-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 320px);
  margin: 0 0 8px;
}

.active-category-logo {
  display: block;
  width: 128px;
  max-width: 38vw;
  height: auto;
  object-fit: contain;
}

.active-copy h2 {
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
}

.active-copy .lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.group-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.group-item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 248, 240, 0.74);
  box-shadow: 0 12px 34px rgba(34, 48, 39, 0.05);
}

.group-item-image {
  overflow: hidden;
  background: var(--soft);
}

.group-item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.group-item-body {
  padding: 20px;
}

.group-item h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 22px;
  font-weight: 400;
}

.group-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 54px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-toolbar p {
  display: none;
  margin: 0;
  color: var(--muted);
}

.text-button {
  min-height: 38px;
  padding: 0 18px;
  color: var(--ink);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(251, 248, 240, 0.76);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-group {
  position: absolute;
  left: 16px;
  bottom: 14px;
  max-width: calc(100% - 32px);
  padding: 7px 11px;
  color: #fff;
  background: rgba(173, 135, 83, 0.60);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-body h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;
}

.product-body p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.card-action {
  justify-self: start;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--tone);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.interest-toggle,
.drawer-interest {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(173, 135, 83, 0.34);
  border-radius: 999px;
  color: var(--tone);
  background: rgba(173, 135, 83, 0.10);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.interest-toggle.is-selected,
.drawer-interest.is-selected {
  color: #fff;
  background: #ad8753;
  border-color: #ad8753;
}

.systems-section {
  padding: 0 0 92px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.system-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 240, 0.70);
}

.system-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.system-card h3 {
  margin: 10px 0 10px;
  font-size: 18px;
}

.system-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.contact-brand {
  display: grid;
  place-items: center;
}

.contact-brand img {
  display: block;
  width: min(310px, 82%);
  height: auto;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.contact-form h2 {
  margin: -10px 0 10px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
}

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
}

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31, 49, 39, 0.82);
  border-radius: 0;
  padding: 8px 0 14px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 18px;
  line-height: 1.4;
  outline: 0;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(96, 73, 52, 0.68);
}

.contact-submit {
  justify-self: start;
  min-width: 148px;
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.detail-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.detail-drawer.is-open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 23, 19, 0.46);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  padding: 42px;
  overflow-y: auto;
  background: var(--ivory);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.18);
}

.drawer-close {
  padding: 0 18px;
  color: var(--ink);
}

.drawer-kicker {
  margin: 42px 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.drawer-panel h2 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.16;
}

.drawer-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  white-space: pre-line;
}

.drawer-actions {
  margin-top: 24px;
}

.drawer-interest {
  min-width: 112px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 60;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 18px;
  color: #fff;
  background: rgba(173, 135, 83, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - var(--phone-width, 402px)) / 2 + 18px));
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 58;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: #fff;
  background: rgba(173, 135, 83, 0.68);
  box-shadow: 0 10px 26px rgba(34, 48, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top::before {
  display: block;
  height: 18px;
  width: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12%2019V5M5%2012l7-7%207%207'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12%2019V5M5%2012l7-7%207%207'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.interest-dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 59;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0;
  width: min(100%, var(--phone-width, 402px));
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(139, 104, 62, 0.70);
  box-shadow: 0 -10px 28px rgba(74, 48, 28, 0.16);
  transform: translateX(-50%);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.home-dock-hidden .interest-dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 100%);
}

.interest-dock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: auto;
}

.interest-submit-trigger {
  min-width: 0;
  padding-left: 6px;
  padding-right: 8px;
  gap: 7px;
}

.interest-submit-trigger.is-submitted {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.interest-submit-trigger.is-dirty {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
}

.interest-submit-trigger em {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
}

.interest-submit-trigger em::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.7;
}

.interest-dock-icon {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.interest-dock-icon-favorite {
  -webkit-mask-image: url("./assets/navigation/interest.png");
  mask-image: url("./assets/navigation/interest.png");
}

.interest-dock-icon-consult {
  -webkit-mask-image: url("./assets/navigation/consult.png");
  mask-image: url("./assets/navigation/consult.png");
}

.interest-dock-icon-shop {
  -webkit-mask-image: url("./assets/navigation/shop.png");
  mask-image: url("./assets/navigation/shop.png");
}

.interest-dock-separator {
  align-self: center;
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, 0.36);
}

.interest-submit:disabled {
  cursor: default;
  opacity: 0.58;
}

.interest-consult-trigger,
.interest-shop-trigger {
  min-width: 0;
  gap: 7px;
}

.interest-shop-trigger {
  text-decoration: none;
}

@media (max-width: 360px) {
  .interest-dock {
    padding-right: 8px;
    padding-left: 8px;
  }

  .interest-dock-button {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 12px;
  }

  .interest-submit-trigger,
  .interest-consult-trigger,
  .interest-shop-trigger {
    gap: 5px;
  }

  .interest-dock-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }
}

.interest-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.interest-modal.is-open {
  display: block;
}

.interest-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 23, 19, 0.36);
}

.interest-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, var(--phone-width, 402px));
  max-height: min(82svh, 720px);
  padding: 22px 24px calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  background: rgba(251, 248, 240, 0.97);
  box-shadow: 0 -20px 70px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.interest-modal-close {
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: #f2eadd;
  cursor: pointer;
}

.interest-panel h2 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

#interestSubmitTitle {
  font-size: 28px;
  line-height: 1.25;
}

.interest-privacy-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.interest-selected-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(31, 49, 39, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.interest-selected-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.interest-selected-tools button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(173, 135, 83, 0.28);
  border-radius: 999px;
  color: var(--tone);
  background: rgba(173, 135, 83, 0.10);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.interest-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.interest-selected-item span {
  display: grid;
  gap: 3px;
}

.interest-selected-item strong {
  font-size: 15px;
  font-weight: 500;
}

.interest-selected-item input {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--tone);
  cursor: pointer;
}

.interest-selected-item small,
.interest-empty,
.interest-context,
.interest-qr-tip {
  color: var(--muted);
}

.interest-empty {
  margin: 0;
  font-size: 14px;
}

.interest-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.interest-salutation {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.interest-salutation legend {
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.interest-salutation > div {
  display: flex;
  gap: 10px;
}

.interest-salutation label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(173, 135, 83, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(173, 135, 83, 0.08);
  cursor: pointer;
  font-size: 14px;
}

.interest-salutation input {
  margin: 0;
  accent-color: var(--tone);
}

.interest-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.interest-field input,
.interest-field textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(31, 49, 39, 0.70);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 18px;
  outline: none;
}

.interest-field textarea {
  min-height: 88px;
  padding: 10px 0;
  resize: vertical;
  line-height: 1.65;
}

.interest-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.interest-remove-selected {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border: 1px solid rgba(173, 135, 83, 0.36);
  border-radius: 12px;
  color: var(--tone);
  background: rgba(173, 135, 83, 0.10);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.interest-consult-panel {
  text-align: center;
}

.interest-qr-wrap {
  display: block;
  width: min(220px, 64vw);
  margin: 10px auto 14px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(34, 48, 39, 0.10);
}

.interest-qr {
  display: block;
  width: 100%;
  height: auto;
  border: 10px solid #fff;
  border-radius: 14px;
}

.interest-qr-tip {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.interest-context {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    padding: 20px 22px;
  }

  .story-grid,
  .active-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 16px;
  }

  .language {
    display: none;
  }

  .share-button {
    min-width: auto;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-bottom: 58px;
  }

  .hero-actions,
  .section-head,
  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .story-section,
  .catalog-section,
  .active-section,
  .systems-section {
    width: min(100% - 28px, 640px);
  }

  .product-grid,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .drawer-panel {
    padding: 28px 24px;
  }
}

/* iPhone Pro mobile-first experience */
:root {
  --phone-width: 402px;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-dark: rgba(32, 43, 36, 0.28);
}

html {
  background: #ddd5c8;
}

body {
  width: min(100%, var(--phone-width));
  max-width: var(--phone-width);
  min-height: 100svh;
  margin: 0 auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.52), transparent 32%),
    var(--paper);
  box-shadow: 0 0 0 1px rgba(31, 49, 39, 0.08), 0 18px 54px rgba(34, 48, 39, 0.14);
}

.site-header {
  left: 50%;
  right: auto;
  width: min(100%, var(--phone-width));
  transform: translateX(-50%);
  grid-template-columns: 52px 1fr 52px;
  padding: calc(12px + env(safe-area-inset-top)) 14px 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(28, 38, 31, 0.34), rgba(28, 38, 31, 0));
}

.site-header.is-solid {
  padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  color: var(--ink);
  background: rgba(248, 245, 236, 0.78);
  border-bottom: 1px solid rgba(31, 49, 39, 0.08);
  box-shadow: 0 10px 28px rgba(32, 43, 36, 0.06);
  backdrop-filter: blur(24px) saturate(1.7);
}

.header-left {
  gap: 0;
}

.menu-button {
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header.is-solid .menu-button {
  background: transparent;
}

.menu-button span {
  width: 18px;
}

.language,
.brand {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: calc(16px + env(safe-area-inset-top));
  transform: translateX(-50%);
}

.brand-logo {
  width: 126px;
  max-width: 36vw;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.20));
}

.site-header.is-solid .brand-logo {
  filter: none;
}

.share-button {
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px);
}

.site-header.is-solid .share-button {
  border-color: rgba(34, 48, 39, 0.13);
  background: rgba(255, 255, 255, 0.54);
}

.quick-menu {
  top: calc(72px + env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 24px), 378px);
  padding: 8px;
  border: 1px solid rgba(31, 49, 39, 0.10);
  border-radius: 14px;
  background: rgba(251, 248, 240, 0.88);
  box-shadow: 0 18px 52px rgba(34, 48, 39, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(28px) saturate(1.55);
}

.quick-menu button {
  min-height: 52px;
  padding: 13px 14px;
  border-bottom: 0;
  border-radius: 10px;
}

.quick-menu strong {
  color: var(--gold);
}

.quick-menu span {
  color: var(--ink);
}

.quick-menu button:active {
  background: rgba(94, 116, 100, 0.10);
}

.hero {
  min-height: 100svh;
  border-radius: 0 0 18px 18px;
}

.hero-image {
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(31, 49, 39, 0.18) 0%, rgba(31, 49, 39, 0.03) 38%, rgba(31, 49, 39, 0.70) 100%),
    linear-gradient(90deg, rgba(31, 49, 39, 0.26), rgba(31, 49, 39, 0.08));
}

.hero-title-art {
  top: 46%;
  width: min(56vw, 230px);
}

.hero-content {
  width: calc(100% - 30px);
  padding: 0 0 calc(28px + env(safe-area-inset-bottom));
  text-align: left;
}

.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 285px;
  margin: 0;
  font-size: 31px;
  line-height: 1.18;
}

.hero-cn {
  max-width: 340px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.72;
}

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

.wellness-chooser {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.wellness-chooser button,
.wellness-chooser a {
  min-height: 42px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.primary-link,
.secondary-link,
.text-button {
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.primary-link {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
}

#exploreButton {
  justify-self: center;
  width: min(86%, 680px);
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#exploreButton[aria-expanded="true"] {
  border-color: #fff;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

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

.hero-actions .hero-shop-link {
  justify-self: center;
  width: min(86%, 680px);
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.secondary-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
}

.story-section,
.catalog-section,
.active-section,
.systems-section,
.wellness-showcase-section {
  width: calc(100% - 28px);
}

.story-section {
  padding: 48px 0 34px;
}

.story-grid,
.active-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.story-grid {
  margin-top: 0;
}

.story-grid h2,
.section-head h2 {
  font-size: 27px;
  line-height: 1.22;
}

.story-grid .method-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
  text-align: left;
}

.method-figure {
  width: 100%;
  padding: 0 16px;
}

.method-figure img {
  width: 100%;
  max-width: 300px;
}

.wellness-showcase-section {
  padding: 24px 0 calc(126px + env(safe-area-inset-bottom));
}

.wellness-showcase-list {
  gap: 14px;
}

.wellness-showcase-card {
  min-height: 214px;
  border-radius: 15px;
  padding: 0;
}

.wellness-showcase-brand {
  left: 22px;
  top: 26px;
}

.wellness-showcase-brand img {
  width: 92px;
  max-width: 34vw;
}

.wellness-showcase-text {
  left: 22px;
  bottom: 18px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: left;
}

.wellness-showcase-arrow {
  right: 28px;
  bottom: 17px;
  width: 22px;
  height: 22px;
}

.wellness-showcase-arrow::before {
  left: 2px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.catalog-section {
  padding: 24px 0 28px;
  border-top: 0;
}

.section-head {
  display: block;
  margin-bottom: 16px;
}

.section-kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
}

.active-section {
  padding: 4px 0 calc(34px + env(safe-area-inset-bottom));
}

.active-copy {
  padding: 6px 2px 0;
}

.active-category-logo-wrap {
  margin-bottom: 6px;
}

.active-category-logo {
  width: 112px;
  max-width: 38vw;
}

.active-copy h2 {
  margin: 6px 0 12px;
  font-size: 42px;
}

.active-copy .lead {
  font-size: 14px;
  line-height: 1.88;
}

.group-list {
  gap: 14px;
  margin-top: 18px;
}

.group-item {
  border: 1px solid rgba(31, 49, 39, 0.09);
  border-radius: 12px;
  background: rgba(251, 248, 240, 0.72);
  box-shadow: 0 8px 24px rgba(34, 48, 39, 0.05);
}

.group-item-image img {
  aspect-ratio: 16 / 9;
}

.group-item-body {
  padding: 16px;
}

.group-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.group-item p {
  font-size: 13px;
  line-height: 1.78;
}

.product-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  padding-top: 18px;
}

.product-toolbar p {
  display: none;
  font-size: 13px;
  line-height: 1.45;
}

.text-button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  color: #fff;
  background: #26382e;
}

.product-grid,
.systems-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-card,
.system-card {
  overflow: hidden;
  border: 1px solid rgba(31, 49, 39, 0.09);
  border-radius: 12px;
  background: rgba(251, 248, 240, 0.72);
  box-shadow: 0 8px 24px rgba(34, 48, 39, 0.05);
  backdrop-filter: blur(12px) saturate(1.1);
}

.group-filter-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: stretch;
  margin: 28px 0 18px;
}

.group-filter-shell[hidden] {
  display: none;
}

.group-filter {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0 4px;
  overflow-x: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.group-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-height: 76px;
  padding: 0;
  border: 0;
  color: #ad8753;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.group-scroll-hint[hidden] {
  display: none;
}

.group-scroll-hint span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  animation: group-scroll-nudge 1.15s ease-in-out infinite;
}

@keyframes group-scroll-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .group-scroll-hint span {
    animation: none;
  }
}

.group-filter[hidden] {
  display: none;
}

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

.group-filter button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 76px;
  padding: 20px 22px 16px;
  border: 0;
  border-radius: 0;
  color: rgba(96, 73, 52, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease;
}

.group-filter button + button::before {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 24px;
  width: 1px;
  background: rgba(31, 49, 39, 0.20);
  content: "";
}

.group-filter button b {
  display: none;
}

.group-filter button.is-active {
  color: var(--ink);
  background: transparent;
}

.group-filter button.is-active::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.subcategory-section {
  display: grid;
  gap: 20px;
  padding: 28px 0 0;
}

.subcategory-head {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.subcategory-head h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 26px;
  font-weight: 500;
}

.subcategory-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.subcategory-head b {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--tone);
  font-size: 12px;
}

.subcategory-products {
  display: grid;
  gap: 14px;
}

.subcategory-products,
.product-grid:not(.is-grouped) {
  display: flex;
  gap: 14px;
  margin-right: -14px;
  padding: 2px 14px 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.subcategory-products::-webkit-scrollbar,
.product-grid:not(.is-grouped)::-webkit-scrollbar {
  display: none;
}

.subcategory-products .product-card,
.product-grid:not(.is-grouped) .product-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
}

.product-grid:not(.is-grouped).is-expanded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-right: 0;
  padding: 2px 0 10px;
  overflow: visible;
  scroll-snap-type: none;
}

.product-grid:not(.is-grouped).is-expanded .product-card {
  min-width: 0;
  flex: none;
  scroll-snap-align: none;
}

.product-grid:not(.is-grouped).is-expanded .product-image img {
  aspect-ratio: 1 / 1;
}

.product-grid:not(.is-grouped).is-expanded .product-group {
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.product-grid:not(.is-grouped).is-expanded .product-body {
  gap: 8px;
  padding: 12px;
}

.product-grid:not(.is-grouped).is-expanded .product-body h3 {
  font-size: 16px;
  line-height: 1.34;
}

.product-grid:not(.is-grouped).is-expanded .product-body p {
  font-size: 12px;
  line-height: 1.58;
  -webkit-line-clamp: 3;
}

.product-grid:not(.is-grouped).is-expanded .card-action {
  justify-self: stretch;
  min-height: 34px;
  border-radius: 8px;
  font-size: 12px;
}

.product-image img {
  aspect-ratio: 16 / 10;
}

.product-group {
  left: 14px;
  bottom: 12px;
  border-radius: 8px;
  background: rgba(173, 135, 83, 0.60);
  backdrop-filter: blur(14px);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-body h3 {
  font-size: 19px;
}

.product-body p {
  font-size: 14px;
  line-height: 1.72;
  -webkit-line-clamp: 3;
}

.product-body .product-description {
  display: block;
  height: auto;
  overflow: visible;
  font-size: 14px;
  line-height: 1.72;
  -webkit-line-clamp: unset;
}

.product-grid:not(.is-grouped).is-expanded .product-body .product-description {
  height: auto;
  font-size: 14px;
  line-height: 1.72;
  -webkit-line-clamp: unset;
}

.product-meta {
  display: grid;
  gap: 9px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

.product-audience {
  display: grid;
  gap: 4px;
}

.product-audience strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.product-audience span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.nutrient-product-audience span {
  min-height: 3.04em;
  -webkit-line-clamp: 2;
}

.product-supplements span {
  display: -webkit-box;
  min-height: 4.56em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--ink);
  font-weight: 800;
}

.card-action {
  justify-self: stretch;
  flex: 1 1 auto;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(173, 135, 83, 0.12);
  font-size: 13px;
}

.product-card-actions .interest-toggle {
  flex: 0 0 auto;
  min-height: 42px;
}

.systems-section {
  padding: 0 0 calc(34px + env(safe-area-inset-bottom));
}

.system-card {
  padding: 18px;
}

.contact-section {
  grid-template-columns: 1fr;
  gap: 22px;
  width: calc(100% - 56px);
  padding: 38px 0 calc(46px + env(safe-area-inset-bottom));
}

.contact-brand img {
  width: 150px;
  max-width: 52vw;
}

.contact-form {
  gap: 18px;
}

.contact-form h2 {
  margin: -4px 0 0;
  font-size: 28px;
}

.contact-row {
  grid-template-columns: 82px 1fr;
  gap: 16px;
}

.contact-field span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  padding: 5px 0 11px;
  font-size: 14px;
}

.contact-submit {
  justify-self: stretch;
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.detail-drawer {
  left: 50%;
  width: min(100%, var(--phone-width));
  transform: translateX(-50%);
}

.drawer-backdrop {
  background: rgba(16, 23, 19, 0.28);
}

.drawer-panel {
  top: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  height: min(76svh, 720px);
  padding: 18px 20px calc(24px + env(safe-area-inset-bottom));
  border-radius: 18px 18px 0 0;
  background: rgba(251, 248, 240, 0.95);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(24px) saturate(1.18);
}

.drawer-panel::before {
  display: block;
  width: 42px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(34, 48, 39, 0.20);
  content: "";
}

.drawer-close {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: #f2eadd;
}

.drawer-kicker {
  margin: 26px 0 10px;
  font-size: 12px;
}

.drawer-panel h2 {
  font-size: 34px;
}

.drawer-panel p {
  font-size: 15px;
  line-height: 1.82;
}

.toast {
  bottom: calc(88px + env(safe-area-inset-bottom));
  width: min(calc(100% - 32px), 360px);
  border-radius: 8px;
}

.back-to-top {
  right: max(16px, calc((100vw - var(--phone-width)) / 2 + 16px));
  bottom: calc(86px + env(safe-area-inset-bottom));
  width: 34px;
  height: 34px;
}

.back-to-top::before {
  width: 17px;
  height: 17px;
}

@media (min-width: 700px) {
  body {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .hero {
    border-radius: 18px;
  }
}

.products-page {
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.products-topbar {
  position: sticky;
  top: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  min-height: calc(64px + env(safe-area-inset-top));
  padding: calc(10px + env(safe-area-inset-top)) 18px 10px;
  border-bottom: 1px solid rgba(31, 49, 39, 0.08);
  background: rgba(248, 245, 236, 0.88);
  backdrop-filter: blur(22px) saturate(1.14);
}

.products-back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.products-brand-logo {
  justify-self: center;
  width: 118px;
  max-width: 34vw;
  height: auto;
}

.products-main {
  width: calc(100% - 28px);
  margin: 0 auto;
}

.category-main {
  width: 100%;
}

.category-detail-section {
  padding-top: 28px;
}

.products-hero {
  padding: 28px 0 20px;
}

.products-hero h1 {
  max-width: 100%;
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.12;
}

.products-hero p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.all-products {
  display: grid;
  gap: 34px;
}

.all-category-section {
  display: grid;
  gap: 14px;
}

.all-category-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 49, 39, 0.10);
}

.all-category-divider img {
  display: block;
  width: 112px;
  max-width: 42vw;
  height: auto;
}

.all-category-divider span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.all-subcategory-list {
  display: grid;
  gap: 28px;
}

.all-subcategory-section {
  display: grid;
  gap: 14px;
}

.all-subcategory-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.all-subcategory-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.all-product-row {
  display: flex;
  gap: 12px;
  margin-right: -14px;
  padding: 2px 14px 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.all-product-row::-webkit-scrollbar {
  display: none;
}

.all-product-row .product-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
}

.product-card-actions.is-interest-only .interest-toggle {
  flex: 1 1 100%;
  width: 100%;
}

.systems-page {
  --tone: #ad8753;
}

.systems-main {
  padding-bottom: calc(124px + env(safe-area-inset-bottom));
}

.systems-hero {
  padding: 28px 0 18px;
}

.systems-hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
}

.systems-detail-list {
  display: grid;
  gap: 14px;
}

.systems-detail-card {
  padding: 20px 18px 22px;
  border: 1px solid rgba(31, 49, 39, 0.09);
  border-radius: 12px;
  background: rgba(251, 248, 240, 0.76);
  box-shadow: 0 8px 22px rgba(34, 48, 39, 0.05);
}

.systems-detail-card p {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.10em;
}

.systems-detail-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.34;
}

.systems-card-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  white-space: pre-line;
}

.systems-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(173, 135, 83, 0.18);
}

.systems-card-actions .interest-toggle,
.system-detail-button {
  min-height: 40px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.systems-card-actions .interest-toggle {
  border-color: rgba(173, 135, 83, 0.34);
  background: rgba(173, 135, 83, 0.08);
}

.system-detail-button {
  border: 1px solid rgba(31, 49, 39, 0.78);
  color: var(--ink);
  background: transparent;
}

.systems-drawer-panel h2 {
  margin: 12px 0 26px;
}

.systems-drawer-panel .drawer-toolbar {
  background: none;
}

.systems-drawer-panel .drawer-close {
  background: #f2eadd;
}

.systems-drawer-panel .drawer-toolbar .drawer-interest {
  background: #f3ede0;
}

.system-detail-section {
  margin-top: 24px;
}

.system-detail-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.systems-drawer-panel .system-detail-section p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
  white-space: pre-line;
}

.system-detail-tags-section {
  padding-top: 20px;
  border-top: 1px solid rgba(173, 135, 83, 0.18);
}

.system-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.system-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(173, 135, 83, 0.28);
  border-radius: 999px;
  color: #8f6f4b;
  background: rgba(173, 135, 83, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 700px) {
  .products-page {
    border-radius: 18px;
  }

  .systems-main {
    width: min(920px, calc(100% - 48px));
  }

  .systems-hero h1 {
    font-size: 34px;
  }

  .systems-detail-card {
    padding: 24px 26px 26px;
    border-radius: 12px;
  }
}

.drawer-toolbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 12px;
  background: none;
}

.drawer-toolbar .drawer-interest {
  min-width: 126px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(173, 135, 83, 0.46);
  border-radius: 10px;
  color: #8f5f48;
  background: #f3ede0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.drawer-toolbar .drawer-interest.is-selected {
  color: #fff;
  border-color: #ad8753;
  background: #ad8753;
}

.drawer-toolbar .drawer-interest:disabled {
  cursor: default;
  opacity: 1;
}

.drawer-feature-showcase {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.drawer-feature-showcase[hidden] {
  display: none;
}

.drawer-feature-carousel {
  overflow: hidden;
  border: 1px solid rgba(173, 135, 83, 0.18);
  border-radius: 14px;
  background: rgba(173, 135, 83, 0.08);
  touch-action: pan-y;
}

.drawer-feature-track {
  display: flex;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-feature-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
}

.drawer-feature-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.drawer-feature-slide figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 9px;
  color: #fff;
  background: rgba(173, 135, 83, 0.74);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.drawer-feature-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.drawer-feature-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(173, 135, 83, 0.28);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.drawer-feature-dots button.is-active {
  width: 22px;
  background: var(--tone);
}

.drawer-feature-list {
  border-top: 1px solid rgba(173, 135, 83, 0.24);
}

.drawer-feature-item {
  padding: 18px 2px;
  border-bottom: 1px solid rgba(173, 135, 83, 0.24);
}

.drawer-feature-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.drawer-panel .drawer-feature-item p {
  display: -webkit-box;
  min-height: 5.16em;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.drawer-panel .drawer-feature-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .drawer-feature-track {
    transition: none;
  }
}

.drawer-audience {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(173, 135, 83, 0.09);
}

.drawer-audience h3,
.drawer-projects h3,
.drawer-detail-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.drawer-panel .drawer-audience p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.drawer-detail-sections {
  display: grid;
  gap: 12px;
  padding-bottom: 10px;
}

.drawer-detail-sections[hidden] {
  display: none;
}

.drawer-detail-section {
  padding: 15px 17px;
  border: 1px solid rgba(173, 135, 83, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.30);
}

.drawer-panel .drawer-detail-section p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.drawer-detail-divider {
  height: 1px;
  margin: 24px 0;
  background: rgba(173, 135, 83, 0.24);
}

.drawer-projects {
  padding-bottom: 10px;
}

.drawer-projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.drawer-projects-header h3 span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.drawer-select-all,
.drawer-group-select {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.drawer-select-all input,
.drawer-group-select input,
.drawer-project-item input {
  width: 21px;
  height: 21px;
  margin: 0;
  accent-color: var(--tone);
  cursor: pointer;
}

.drawer-project-groups {
  display: grid;
  gap: 10px;
}

.drawer-project-group {
  overflow: hidden;
  border: 1px solid rgba(173, 135, 83, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.30);
}

.drawer-project-group summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.drawer-project-group summary::-webkit-details-marker {
  display: none;
}

.drawer-project-group summary::before {
  color: var(--tone);
  content: "›";
  font-size: 21px;
  line-height: 1;
  transition: transform 160ms ease;
}

.drawer-project-group[open] summary::before {
  transform: rotate(90deg);
}

.drawer-project-group summary > span:first-of-type {
  flex: 1 1 auto;
}

.drawer-project-group summary em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.drawer-project-group .drawer-project-list {
  border-top: 1px solid rgba(173, 135, 83, 0.14);
}

.drawer-project-list {
  display: grid;
}

.drawer-project-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(31, 49, 39, 0.07);
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.55;
  transition: background 140ms ease, color 140ms ease;
}

.drawer-project-item:last-child {
  border-bottom: 0;
}

.drawer-project-item.is-selected {
  color: var(--ink);
  background: rgba(173, 135, 83, 0.10);
}

.interest-selected-projects {
  max-width: 460px;
  color: #8f6f4b;
  line-height: 1.55;
}

@media (max-width: 699px) {
  .drawer-panel {
    height: min(88svh, 820px);
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
  }

  .drawer-toolbar {
    padding-bottom: 10px;
  }

  .drawer-toolbar .drawer-interest {
    min-width: 118px;
    min-height: 38px;
    font-size: 13px;
  }

  .drawer-kicker {
    margin-top: 20px;
  }

  .drawer-projects-header {
    align-items: flex-start;
  }

  .drawer-project-group summary {
    padding: 0 10px;
  }

  .drawer-group-select {
    font-size: 12px;
  }
}
