@import url("./story.css");
@import url("./product-details.css");
@import url("./collections.css");
:root {
  --ink: #35223d;
  --plum: #533264;
  --muted: #736a75;
  --paper: #fffdfa;
  --line: #e4dfe3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #9c76ab;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
h1 {
  font-size: clamp(42px, 5.8vw, 80px);
}
h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}
h3 {
  font-weight: 500;
  line-height: 1.25;
}
p {
  color: var(--muted);
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 94px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 23px;
}
.announcement {
  height: 34px;
  background: var(--ink);
  color: #fff9f0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.055em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.announcement > span {
  position: absolute;
  right: 36px;
  font-size: 11px;
  color: #dfd1e5;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.97);
  position: sticky;
  top: 0;
  z-index: 30;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand-mark {
  width: 35px;
  height: 43px;
}
.brand-mark svg {
  height: 100%;
  width: 100%;
}
.wordmark {
  font-family: var(--serif);
  font-size: 37px;
  letter-spacing: -2px;
  line-height: 0.9;
}
.wordmark > span {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: .08em;
  display: inline-block;
  margin: 0 0 0 14px;
  vertical-align: baseline;
  line-height: 1;
}
.site-header nav {
  display: flex;
  gap: 29px;
  align-items: center;
}
.site-header nav a {
  font-size: 14px;
  padding-block: 10px;
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s;
}
.site-header nav a:hover:after,
.site-header nav a[aria-current]:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.language {
  font-size: 13px;
}
.contact-link {
  border: 1px solid #c6b9ca;
  padding: 9px 17px;
  font-size: 13px;
}
.contact-link span {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.hero {
  position: relative;
  min-height: 570px;
  height: calc(100svh - 134px);
  max-height: 760px;
  overflow: hidden;
  background: #e9e6de;
}
.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(249, 245, 238, 0.52),
    transparent 65%
  );
}
.hero-copy {
  position: relative;
  width: 50%;
  padding: clamp(55px, 7.2vh, 92px) 0 80px max(56px, calc((100vw - 1280px) / 2));
  animation: hero-in 0.9s both;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(65px, 7.7vw, 112px);
  line-height: 0.99;
  margin-bottom: 26px;
  letter-spacing: -0.055em;
}
.hero-copy h1 em {
  font-weight: 400;
}
.hero-copy > p:not(.eyebrow) {
  color: #564755;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 14px 23px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #624573;
  transform: translateY(-2px);
}
.button-outline {
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  background: var(--ink);
  color: white;
}


.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin-bottom: 14px;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
.text-link {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #a296a5;
  padding-bottom: 5px;
  white-space: nowrap;
}
.text-link:hover {
  color: #9360a0;
}



.plum {
  background: #eee8f0;
}
.peach {
  background: #f6e9e2;
}
.teal {
  background: #e6eeeb;
}
.sand {
  background: #eee9df;
}




.selected-section {
  background: #f5f3ef;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.product-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.05;
  background: #eeebe6;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.product-tile:hover img {
  transform: scale(1.045);
}
.product-view {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--paper);
  padding: 9px 15px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.2s;
}
.product-tile:hover .product-view,
.product-image:focus-visible .product-view {
  opacity: 1;
  transform: none;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 19px;
}
.product-tile h3 {
  font-size: 25px;
  margin: 8px 0 7px;
  letter-spacing: -0.025em;
}
.product-tile p {
  font-size: 14px;
}
.collection-caption {
  font-size: 12px;
  margin: 24px 0 0;
}
.ingredient-feature {
  background: #eae3ed;
  padding-block: 83px;
  overflow: hidden;
}
.ingredient-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.ingredient-feature p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 29px;
}
.ingredient-orbit {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  width: 320px;
  height: 320px;
  border: 1px solid #c2accd;
  border-radius: 50%;
  position: absolute;
}
.orbit-ring:after {
  content: "";
  position: absolute;
  inset: 30px -40px;
  border: 1px solid #d4bfdc;
  border-radius: 50%;
  transform: rotate(-30deg);
}
.orbit-core {
  font-family: var(--serif);
  font-style: italic;
  font-size: 145px;
  line-height: 1;
  position: relative;
}
.orbit-core > span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-left: 11px;
  font-style: normal;
}
.orbit-dot {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #c7b7ce;
  display: grid;
  place-items: center;
  background: #f5f0f7;
  box-shadow: 0 12px 30px #53326412;
  font-size: 25px;
  font-family: var(--serif);
}
.dot-c {
  width: 78px;
  height: 78px;
  top: 25px;
  left: 25%;
  animation: bob 6s ease-in-out infinite;
}
.dot-mg {
  width: 100px;
  height: 100px;
  right: 5%;
  top: 160px;
  animation: bob 6s ease-in-out infinite -2s;
}
.dot-zn {
  width: 68px;
  height: 68px;
  bottom: 15px;
  left: 17%;
  animation: bob 6s ease-in-out infinite -4s;
}
.orbit-label {
  position: absolute;
  bottom: -10px;
  font-size: 10px;
  letter-spacing: 0.25em;
}
.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.large-copy {
  font-size: 22px;
  line-height: 1.65;
  margin-top: 38px;
}
.connect-section {
  padding: 75px 0;
  background: #eee9e1;
  text-align: center;
}
.connect-section h2 {
  font-family: var(--serif);
  font-size: 54px;
}
.connect-section .button {
  margin-right: 30px;
}
footer {
  background: var(--ink);
  color: #f8f2fa;
  padding: 66px 0 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 45px;
}
.footer-main p {
  color: #cebdcf;
  font-size: 14px;
  margin-top: 25px;
}
.footer-main h2 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 22px;
}
.footer-main > div > a:not(.logo) {
  display: block;
  font-size: 13px;
  color: #d7c9da;
  margin-bottom: 12px;
}
.footer-bottom {
  border-top: 1px solid #ffffff23;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 23px;
  font-size: 11px;
  color: #c7b8cc;
}
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--plum);
  border: 1px solid #fff4;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  z-index: 31;
  box-shadow: 0 4px 20px #35223d26;
}
.floating-contact svg {
  width: 23px;
  height: 23px;
  color: white;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  background: white;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus {
  top: 8px;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  padding-top: 28px;
}
.page-intro {
  padding-top: 58px;
  padding-bottom: 50px;
}
.page-intro h1 {
  max-width: 850px;
  margin-bottom: 25px;
}
.intro-copy {
  max-width: 620px;
  font-size: 18px;
}
.concept-note {
  padding: 17px 22px;
  border-left: 2px solid #a387ad;
  background: #f1edf3;
  color: #716074;
  font-size: 13px;
  line-height: 1.65;
  margin-block: 28px;
}
.filter-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 35px;
}
.filter-nav a {
  font-size: 14px;
  padding-bottom: 6px;
}
.filter-nav a[aria-current] {
  border-bottom: 2px solid var(--plum);
}
.catalog-section {
  padding-bottom: 80px;
}
.catalog-section .product-grid {
  row-gap: 40px;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 40px 65px;
}
.detail-photo {
  background: #eeebe6;
}
.detail-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.detail-copy h1 {
  font-size: 58px;
  margin-bottom: 14px;
}
.detail-copy .english-name {
  font-family: var(--serif);
  font-size: 23px;
}
.detail-copy .summary {
  font-size: 19px;
  max-width: 490px;
}
.detail-copy .spec-chip {
  font-size: 13px;
  border-block: 1px solid var(--line);
  padding-block: 16px;
  margin: 24px 0;
}
.detail-nav {
  display: flex;
  gap: 32px;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  font-size: 14px;
  flex-wrap: wrap;
}
.detail-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-block: 65px;
}
.detail-body h2 {
  font-size: 32px;
}
.detail-body h3 {
  font-size: 23px;
}
.detail-body section {
  margin-bottom: 48px;
  scroll-margin-top: 135px;
}
.detail-body ul {
  padding-left: 21px;
  color: var(--muted);
}
.spec-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}
.spec-table td,
.spec-table th {
  text-align: left;
  padding: 16px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  font-weight: 500;
  width: 35%;
}
.ingredient-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ingredient-link {
  padding: 10px 17px;
  border: 1px solid #c7b9cf;
  font-size: 14px;
}
.editorial-list {
  border-top: 1px solid var(--line);
}
.editorial-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 25px;
  gap: 30px;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-row h2 {
  font-size: 28px;
  margin: 0;
}
.editorial-row p {
  margin: 0;
  font-size: 15px;
}
.element-symbol {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid #ccbcd2;
  background: #f1ebf4;
  font-family: var(--serif);
  font-size: 28px;
  border-radius: 50%;
}
.education-panel {
  padding: 45px;
  background: #eee8f1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 65px;
}
.education-panel h2 {
  font-size: 37px;
}
.education-steps {
  display: grid;
  gap: 18px;
}
.education-step {
  border-bottom: 1px solid #d6c8dc;
  padding-bottom: 17px;
}
.education-step > span {
  font-size: 12px;
  color: var(--plum);
}
.education-step h3 {
  margin: 4px 0;
  font-size: 21px;
}
.education-step p {
  margin: 0;
  font-size: 14px;
}
.prose {
  max-width: 760px;
}
.prose h2 {
  font-size: 32px;
  margin-top: 40px;
}
.prose p {
  line-height: 1.85;
}
.source-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fact-list {
  margin: 0;
}
.fact-list > div {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.fact-list dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.fact-list dd {
  margin: 0;
  font-size: 18px;
}
.brand-statement {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.3;
  color: var(--ink);
}
.numbered-values {
  counter-reset: values;
}
.numbered-values article {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  position: relative;
  padding-left: 50px;
}
.numbered-values article:before {
  counter-increment: values;
  content: "0" counter(values);
  position: absolute;
  left: 0;
  font-size: 12px;
  color: var(--muted);
}
.numbered-values h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.numbered-values p {
  font-size: 15px;
  margin-bottom: 0;
}
.journey-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 70px;
}
.journey-visual {
  position: sticky;
  top: 140px;
  background: #eee9f1;
  aspect-ratio: 1.12;
  padding: 30px;
  overflow: hidden;
}
.journey-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.journey-visual .route-line {
  stroke: #b5a2bd;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 7 8;
}
.journey-visual .route-node {
  fill: #fffdfa;
  stroke: #80658f;
  stroke-width: 1.5;
}
.journey-visual text {
  font-family: var(--sans);
  font-size: 14px;
  fill: var(--ink);
}
.journey-visual .plane {
  fill: var(--plum);
  filter: drop-shadow(0 2px 2px #35223d30);
  pointer-events: none;
}
.journey-steps article {
  min-height: 240px;
  border-top: 1px solid var(--line);
  padding: 35px 0;
}
.journey-steps h2 {
  font-size: 29px;
}
.journey-steps p {
  max-width: 410px;
}
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-block: 30px;
}
.contact-options article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.contact-options h2 {
  font-size: 29px;
}
.contact-status {
  font-size: 14px;
  background: #eee9f1;
  padding: 16px 20px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
}
.faq details p {
  margin: 15px 0 0;
  font-size: 15px;
}
.body-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.body-diagram svg {
  width: 100%;
  max-width: 300px;
  height: 290px;
}
.diagram-particle {
  animation: particle 3s infinite;
}
.diagram-particle:nth-child(2) {
  animation-delay: 1s;
}
.diagram-particle:nth-child(3) {
  animation-delay: 2s;
}
.education-note {
  font-size: 12px;
  margin-bottom: 0;
}
.not-found {
  text-align: center;
  padding-block: 110px;
}
.not-found h1 {
  font-family: var(--serif);
}
[hidden] {
  display: none !important;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bob {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes particle {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(35px);
  }
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 90px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    padding-inline: 30px;
    gap: 16px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .contact-link {
    display: none;
  }
  .container {
    width: calc(100% - 72px);
  }
  .hero-copy {
    padding-left: 36px;
    width: 55%;
  }

  .ingredient-feature-inner,
  .story-teaser,
  .two-column,
  .detail-hero,
  .detail-body,
  .journey-layout {
    gap: 40px;
  }


  .product-grid {
    gap: 20px;
  }
  .footer-main {
    gap: 25px;
  }
  .detail-copy h1 {
    font-size: 46px;
  }
}
@media (max-width: 800px) {
  .announcement > span {
    display: none;
  }
  .site-header {
    height: 80px;
    padding-inline: 24px;
  }
  .wordmark {
    font-size: 32px;
  }
  .brand-mark {
    width: 29px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 15px #35223d10;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-header nav a {
    font-size: 16px;
  }
  .header-actions {
    gap: 14px;
  }
  .menu-toggle {
    display: block;
  }
  .container {
    width: calc(100% - 48px);
  }
  .hero {
    height: calc(100svh - 114px);
    min-height: 620px;
    max-height: 850px;
  }
  .hero-photo {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(249, 245, 238, 0.9),
      rgba(249, 245, 238, 0.42) 47%,
      transparent 85%
    );
  }
  .hero-copy {
    width: 70%;
    padding: 55px 0 80px 24px;
  }
  .hero-copy h1 {
    font-size: 76px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 260px;
  }
  .hero-copy > p br {
    display: none;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }


  .section {
    padding-block: 65px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }





  .product-grid {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .selected-section .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
  .product-meta {
    display: block;
    font-size: 10px;
  }
  .product-meta > span {
    display: block;
  }
  .product-tile h3 {
    font-size: 21px;
  }
  .product-tile p {
    font-size: 13px;
  }
  .ingredient-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ingredient-orbit {
    max-width: 450px;
    width: 100%;
    margin: auto;
    min-height: 350px;
  }
  .ingredient-feature-inner > div:last-child {
    max-width: 520px;
  }
  .story-teaser {
    gap: 25px;
  }
  .large-copy {
    font-size: 18px;
    margin-top: 28px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .connect-section h2 {
    font-size: 44px;
  }
  .detail-hero {
    gap: 30px;
  }
  .detail-copy h1 {
    font-size: 38px;
  }
  .detail-copy .summary {
    font-size: 16px;
  }
  .detail-copy .eyebrow {
    font-size: 10px;
  }
  .detail-body {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .detail-nav {
    gap: 20px;
  }
  .education-panel {
    padding: 30px;
    gap: 25px;
  }
  .editorial-row {
    grid-template-columns: 65px 1fr 20px;
    gap: 20px;
  }
  .editorial-row p {
    grid-column: 2;
    grid-row: 2;
  }
  .editorial-row > span:last-child {
    grid-column: 3;
    grid-row: 1;
  }
  .editorial-row h2 {
    font-size: 26px;
  }
  .journey-layout {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .journey-visual {
    padding: 15px;
    top: 110px;
  }
  .journey-visual text {
    font-size: 16px;
  }
  .journey-steps h2 {
    font-size: 25px;
  }
  .two-column {
    gap: 35px;
  }
  .page-intro {
    padding-top: 40px;
  }
  .intro-copy {
    font-size: 16px;
  }
  .contact-options {
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .hero {
    min-height: 670px;
    max-height: none;
    height: calc(100svh - 114px);
  }
  .hero-photo {
    object-position: 69% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(250, 245, 238, 0.9),
      rgba(250, 245, 238, 0.45) 45%,
      rgba(250, 245, 238, 0.06) 80%
    );
  }
  .hero-copy {
    width: 100%;
    padding-top: 36px;
  }
  .hero-copy h1 {
    font-size: 70px;
    max-width: 350px;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 240px;
    font-size: 14px;
  }
  .hero-copy .button {
    padding: 12px 18px;
    font-size: 13px;
    gap: 22px;
  }








  .selected-section .product-grid {
    grid-template-columns: 1fr;
  }
  .selected-section .product-image {
    aspect-ratio: 1.1;
  }
  .product-grid {
    gap: 30px 15px;
  }
  .product-meta {
    font-size: 10px;
  }
  .product-tile h3 {
    font-size: 21px;
  }
  .product-tile p {
    font-size: 12px;
  }
  .product-view {
    display: none;
  }
  .selected-section .product-meta {
    display: flex;
    font-size: 12px;
  }
  .selected-section .product-tile h3 {
    font-size: 27px;
  }
  .selected-section .product-tile p {
    font-size: 14px;
  }
  .ingredient-feature {
    padding-block: 50px;
  }
  .ingredient-orbit {
    min-height: 300px;
  }
  .orbit-ring {
    width: 260px;
    height: 260px;
  }
  .orbit-core {
    font-size: 120px;
  }
  .dot-mg {
    width: 80px;
    height: 80px;
    right: 0;
    top: 140px;
  }
  .dot-c {
    width: 65px;
    height: 65px;
    top: 0;
  }
  .dot-zn {
    bottom: 0;
    left: 5%;
  }
  .orbit-label {
    bottom: -25px;
  }
  .ingredient-feature-inner {
    gap: 65px;
  }
  .story-teaser,
  .two-column {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .large-copy {
    margin-top: 0;
  }
  .connect-section {
    padding-block: 60px;
  }
  .connect-section h2 {
    font-size: 40px;
  }
  .connect-section .button {
    margin: 0 0 20px;
  }
  .connect-section .text-link {
    display: flex;
    width: max-content;
    margin: auto;
  }
  .footer-main {
    gap: 32px 20px;
  }
  .footer-main > div:first-child,
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .footer-main > div:first-child p {
    margin-bottom: 0;
  }
  .footer-main > div:last-child p {
    margin-top: 0;
  }
  .footer-bottom {
    margin-top: 25px;
    padding-right: 40px;
  }
  .floating-contact {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
  }
  .detail-hero {
    grid-template-columns: 1fr;
  }
  .detail-copy h1 {
    font-size: 43px;
  }
  .detail-copy .summary {
    font-size: 17px;
  }
  .detail-copy .eyebrow {
    font-size: 12px;
  }
  .detail-copy .spec-chip {
    margin: 18px 0;
  }
  .detail-body {
    padding-block: 45px;
  }
  .detail-nav {
    gap: 16px;
    font-size: 12px;
  }
  .education-panel {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .education-panel h2 {
    font-size: 33px;
  }
  .journey-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .journey-visual {
    position: relative;
    top: 0;
    aspect-ratio: 1.15;
  }
  .journey-steps article {
    min-height: 0;
    padding-block: 28px;
  }
  .journey-steps h2 {
    font-size: 29px;
  }
  .contact-options {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-intro h1 {
    font-size: 46px;
  }
  .editorial-row {
    gap: 15px;
  }
  .element-symbol {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .filter-nav {
    gap: 14px;
  }
  .filter-nav a {
    font-size: 12px;
  }
  .concept-note {
    font-size: 12px;
    padding: 14px;
  }
  .spec-table {
    font-size: 13px;
  }
  .spec-table th {
    width: 35%;
  }
}
html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2 {
  letter-spacing: -0.025em;
  line-height: 1.25;
}
html[lang="zh-Hans"] .hero-copy h1 {
  font-family: var(--sans);
  font-size: clamp(58px, 6.5vw, 90px);
  font-weight: 450;
}
html[lang="zh-Hans"] .hero-copy h1 em {
  font-style: normal;
  font-weight: 400;
}
html[lang="zh-Hans"] .site-header nav {
  gap: 25px;
}
html[lang="zh-Hans"] .product-tile h3 {
  font-size: 22px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ingredient-single {
  display: block;
  margin-bottom: 0;
}
.ingredient-single .body-diagram {
  min-height: 330px;
}
html[lang="zh-Hans"] .detail-copy h1 {
  font-size: clamp(32px, 3.2vw, 46px);
}
@media (max-width: 540px) {
  .hero {
    height: calc(100svh - 114px);
    min-height: 710px;
    background: #eee9e1;
  }
  .hero-photo {
    height: 53%;
    bottom: 0;
    top: auto;
    object-position: 70% 45%;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #eee9e1 0%,
      #eee9e1 43%,
      rgba(238, 233, 225, 0.48) 52%,
      transparent 64%
    );
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero-copy h1 {
    font-size: 64px;
    margin-bottom: 20px;
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 300px;
    margin-bottom: 23px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 17px;
  }


  html[lang="zh-Hans"] .hero-copy h1 {
    font-size: 58px;
  }
}
@media (max-width: 540px) {


}

/* Subtle, centered navigation to the next section. */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 6px 18px;
  color: var(--ink);
  opacity: .65;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(255, 253, 250, .55);
  transition: opacity .2s ease;
}
.hero-scroll-arrow { display: block; width: 76px; height: 28px; }
.hero-scroll-hint:hover, .hero-scroll-hint:focus-visible { opacity: 1; }
@media (max-width: 540px) { .hero-scroll-hint { bottom: 14px; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-hint { transition: none; } }

/* More relaxed hero spacing and readable supporting copy. */
.hero-copy > p:not(.eyebrow) { font-size: 18px; }
.hero-copy .button { font-size: 16px; padding: 15px 26px; }
.hero-scroll-hint { font-size: 16px; gap: 6px; }
@media (min-width: 801px) {
  .hero-copy { padding-top: calc(clamp(55px, 7.2vh, 92px) + 36px); }
}
@media (min-width: 541px) and (max-width: 800px) {
  .hero-copy { padding-top: 73px; }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
}
@media (max-width: 540px) {
  .hero-copy { padding-top: 42px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; max-width: 320px; padding-right: 12px; }
  .hero-copy .button { font-size: 15px; padding: 13px 20px; }
  .hero-scroll-hint { font-size: 15px; }
  .hero-scroll-arrow { width: 66px; height: 25px; }
}

/* Brand lockup and roomier main navigation. */
.wordmark { white-space: nowrap; }
.site-header nav a { font-size: 16px; padding: 14px 3px; }
@media (max-width: 1300px) {
  .site-header .contact-link { display: none; }
  .site-header nav { gap: 20px; }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .site-header nav { display: none; position: absolute; top: 100px; left: 0; right: 0; background: var(--paper); padding: 20px 30px; border-bottom: 1px solid var(--line); }
  .site-header nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
  .menu-toggle { display: block; }
}
@media (max-width: 1100px) { .site-header nav a { font-size: 18px; } }
@media (max-width: 540px) {
  .site-header { padding-inline: 16px; gap: 12px; }
  .header-actions { gap: 8px; }
  .menu-toggle { width: 32px; padding-inline: 4px; }
}

@media (max-width: 800px) {
  .wordmark > span { font-size: 18px; margin-left: 8px; }
}
@media (max-width: 360px) {
  .wordmark { font-size: 28px; }
  .wordmark > span { font-size: 16px; margin-left: 6px; }
  .site-header { padding-inline: 10px; gap: 6px; }
  .site-header .logo { gap: 6px; }
  .site-header .brand-mark { width: 24px; }
  .header-actions { gap: 6px; }
}
