:root {
  --ink: #12100e;
  --charcoal: #211d18;
  --charcoal-soft: #302923;
  --paper: #f4ede1;
  --ivory: #fffaf1;
  --gold: #c7a35f;
  --gold-soft: #eadbb9;
  --red: #8f241f;
  --herb: #6f6544;
  --jade: #244d45;
  --line: rgba(199, 163, 95, 0.3);
  --white-line: rgba(255, 250, 241, 0.18);
  --shadow: 0 24px 80px rgba(18, 16, 14, 0.22);
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 36px;
  color: var(--ivory);
  background: rgba(18, 16, 14, 0.86);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(143, 36, 31, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  overflow: hidden;
}

.brand-mark-image {
  background: #201b18;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup strong,
.footer-brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-lockup small,
.footer-brand p {
  display: block;
  margin: 3px 0 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 11px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav-link,
.product-menu > button {
  display: grid;
  gap: 0;
  min-width: 52px;
  padding: 8px 0;
  color: rgba(255, 250, 241, 0.78);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  text-align: left;
}

.nav-link span,
.product-menu > button {
  font-size: 14px;
}

.nav-link small,
.product-menu small {
  color: rgba(255, 250, 241, 0.48);
  font-size: 10px;
  line-height: 1.2;
}

.nav-link:hover,
.nav-link.is-active,
.product-menu:hover > button {
  color: var(--ivory);
  border-bottom-color: var(--gold);
}

.product-menu {
  position: relative;
}

.product-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  display: grid;
  gap: 10px;
  width: 260px;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  background: rgba(18, 16, 14, 0.96);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.product-menu:hover .product-menu-panel,
.product-menu:focus-within .product-menu-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.product-menu-panel a {
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid transparent;
  color: var(--ivory);
}

.product-menu-panel a:hover {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.06);
}

.product-menu-panel small {
  color: rgba(255, 250, 241, 0.54);
}

.header-cta,
.primary-button,
.ghost-button,
.footer-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.ghost-button {
  background: transparent;
  color: var(--ivory);
}

.ghost-button.dark {
  color: var(--ink);
}

.primary-button:hover,
.header-cta:hover {
  background: var(--gold-soft);
}

.ghost-button:hover {
  background: rgba(255, 250, 241, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  background: transparent;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ivory);
}

.home-hero,
.page-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  color: var(--ivory);
  background: var(--ink);
}

.page-hero {
  min-height: 68vh;
}

.home-hero-media,
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(199, 163, 95, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(18, 16, 14, 0.9), rgba(18, 16, 14, 0.48), rgba(18, 16, 14, 0.2)),
    linear-gradient(0deg, rgba(18, 16, 14, 0.74), rgba(18, 16, 14, 0));
}

.home-hero::before,
.page-hero::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(199, 163, 95, 0.16) 42.2% 42.8%, transparent 43% 100%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(199, 163, 95, 0.07) 47px, transparent 48px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 72%);
}

.home-hero-content,
.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 48px));
  padding: 128px 0 96px;
  margin-left: max(24px, 8vw);
}

.home-hero-content h1,
.hero-content h1,
.product-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 600;
}

.home-hero-content h2 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--gold-soft);
}

.home-hero-content p,
.hero-copy,
.product-hero-copy p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.78);
}

.hero-en {
  margin: 12px 0 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: max(24px, 6vw);
  bottom: 38px;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid var(--white-line);
  background: rgba(18, 16, 14, 0.56);
  color: var(--ivory);
}

.hero-side-note span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.section {
  padding: 92px max(24px, 6vw);
}

.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.section-dark,
.process-section,
.usage-section,
.atlas-section {
  position: relative;
  overflow: hidden;
}

.section-dark::before,
.process-section::before,
.usage-section::before,
.atlas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 36, 31, 0.32), transparent 26%),
    linear-gradient(135deg, transparent 0 48%, rgba(199, 163, 95, 0.22) 48.4% 49%, transparent 49.4% 100%);
}

.section-dark > *,
.process-section > *,
.usage-section > *,
.atlas-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.statement h2,
.editorial-block h2,
.signature-copy h2,
.cta-section h2,
.detail-copy h2,
.scene-panel h2,
.contact-intro h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.24;
  font-weight: 600;
}

.section-heading p,
.statement p,
.editorial-block p,
.signature-copy p,
.cta-section p,
.detail-copy li,
.note-list li,
.contact-intro p {
  color: rgba(18, 16, 14, 0.7);
}

.section-dark .section-heading p,
.section-dark .product-card p,
.section-dark .product-card small {
  color: rgba(255, 250, 241, 0.68);
}

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

.statement {
  min-height: 320px;
  padding: 72px max(24px, 6vw);
  background: var(--ivory);
}

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

.product-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  background: rgba(255, 250, 241, 0.05);
  border-radius: 8px;
}

.product-card a {
  display: grid;
  grid-template-rows: 240px 1fr;
  height: 100%;
}

.product-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.product-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.product-card h3 {
  margin: 0;
  font-size: 24px;
}

.product-card span,
.text-link {
  color: var(--gold-soft);
  font-weight: 700;
}

.signature-section,
.product-detail-section,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.signature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signature-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.concept-section {
  background: var(--ivory);
}

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

.concept-card {
  min-height: 220px;
  padding: 34px;
  background: var(--paper);
}

.concept-card strong {
  display: block;
  color: var(--red);
  font-size: 54px;
  line-height: 1;
}

.atlas-section {
  background: var(--ink);
  color: var(--ivory);
}

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

.atlas-group {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.03)),
    rgba(18, 16, 14, 0.5);
}

.atlas-group a {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--white-line);
}

.atlas-group a span {
  font-size: 18px;
  color: var(--ivory);
}

.atlas-group a small {
  color: rgba(255, 250, 241, 0.52);
  font-family: Georgia, "Times New Roman", serif;
}

.atlas-group a:hover span {
  color: var(--gold-soft);
}

.process-section {
  background: var(--ink);
  color: var(--ivory);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--white-line);
}

.process-step {
  min-height: 180px;
  padding: 24px;
  background: var(--charcoal);
}

.process-step span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.process-step h3 {
  margin: 30px 0 0;
  font-size: 18px;
}

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

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

.article-card,
.editorial-block,
.scene-panel,
.detail-copy,
.large-contact-form,
.contact-intro,
.depth-intro,
.motif-panel,
.chapter-block,
.related-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.62);
  border-radius: 8px;
}

.article-card {
  min-height: 260px;
  padding: 28px;
}

.article-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.article-card small {
  color: var(--herb);
}

.depth-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  background: var(--ivory);
}

.depth-intro,
.motif-panel {
  padding: 34px;
}

.depth-intro h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.24;
}

.depth-intro p {
  max-width: 860px;
  color: rgba(18, 16, 14, 0.72);
}

.motif-panel {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(199, 163, 95, 0.22), transparent 35%),
    var(--paper);
}

.motif-panel strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
}

.motif-panel small {
  color: var(--herb);
}

.motif-flower {
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--red) 0 12%, transparent 13%),
    conic-gradient(from 10deg, rgba(143, 36, 31, 0.88), rgba(199, 163, 95, 0.78), rgba(143, 36, 31, 0.88));
  mask-image: radial-gradient(circle, transparent 0 12%, #000 13% 100%);
}

.chapter-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.chapter-block {
  min-height: 360px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.chapter-block::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(199, 163, 95, 0.34);
  transform: rotate(45deg);
}

.chapter-block > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.chapter-block h2 {
  margin: 16px 0 12px;
  font-size: 26px;
  line-height: 1.28;
}

.chapter-block p:not(.eyebrow) {
  color: rgba(18, 16, 14, 0.7);
}

.related-section {
  background: var(--charcoal);
  color: var(--ivory);
}

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

.related-card {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 8px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.06);
  border-color: var(--white-line);
}

.related-card span {
  color: var(--ivory);
  font-size: 22px;
}

.related-card small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.mystique-strip-section,
.incense-map-section,
.seasonal-stack-section,
.store-scene-section,
.display-principle-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.mystique-strip-section,
.service-blueprint-section,
.gift-suite-section,
.mini-atlas-section {
  background: var(--ivory);
}

.mystique-strip-copy,
.incense-map-copy,
.stack-copy,
.store-scene-copy,
.display-principle-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.13), transparent 38%),
    rgba(255, 250, 241, 0.72);
}

.mystique-strip-copy h2,
.incense-map-copy h2,
.stack-copy h2,
.store-scene-copy h2,
.display-principle-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.24;
}

.mystique-strip-copy p:not(.eyebrow),
.incense-map-copy p:not(.eyebrow),
.stack-copy p:not(.eyebrow),
.store-scene-copy p:not(.eyebrow),
.display-principle-copy p:not(.eyebrow) {
  color: rgba(18, 16, 14, 0.72);
}

.mystique-strip-grid,
.ledger-grid,
.routine-grid,
.blueprint-grid,
.suite-grid,
.journey-grid,
.mini-atlas-grid {
  display: grid;
  gap: 16px;
}

.mystique-strip-grid,
.ledger-grid,
.routine-grid,
.journey-grid,
.mini-atlas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blueprint-grid,
.suite-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mystique-tile,
.ledger-card,
.routine-card,
.blueprint-card,
.suite-card,
.journey-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(234, 219, 185, 0.42)),
    var(--paper);
}

.mystique-tile::after,
.ledger-card::after,
.routine-card::after,
.blueprint-card::after,
.suite-card::after,
.journey-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(199, 163, 95, 0.34);
  transform: rotate(45deg);
}

.mystique-tile {
  display: grid;
  align-content: end;
  min-height: 280px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 16%, rgba(199, 163, 95, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(143, 36, 31, 0.46), transparent 48%),
    var(--charcoal);
}

.mystique-tile small,
.ledger-card span,
.blueprint-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.mystique-tile span {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1.2;
}

.ledger-card h3,
.blueprint-card h3,
.suite-card h3,
.journey-card h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.ledger-card p,
.routine-card p,
.blueprint-card p,
.suite-card p,
.journey-card p {
  color: rgba(18, 16, 14, 0.68);
}

.routine-card strong,
.journey-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(143, 36, 31, 0.22);
  border-radius: 4px;
  color: var(--red);
  background: rgba(143, 36, 31, 0.06);
}

.incense-map-panel,
.display-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.incense-map-panel span,
.display-principle-grid span {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  color: var(--ivory);
  text-align: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(199, 163, 95, 0.2), transparent 34%),
    var(--charcoal);
}

.seasonal-program,
.product-navigation-section,
.experience-upgrade-section {
  background: var(--paper);
}

.stack-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stack-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.76);
}

.stack-list span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
}

.stack-list small {
  color: var(--herb);
}

.store-scene-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.store-scene-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.service-blueprint-section .section-heading,
.gift-suite-section .section-heading,
.seasonal-program .section-heading,
.product-navigation-section .section-heading {
  max-width: 900px;
}

.mini-atlas-grid .related-card {
  min-height: 180px;
}

.consumer-purpose-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(244, 237, 225, 0.94)),
    var(--ivory);
}

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

.consumer-purpose-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.14), transparent 42%),
    rgba(255, 250, 241, 0.72);
}

.consumer-purpose-card small {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.consumer-purpose-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.consumer-purpose-card p {
  margin: 0;
  color: rgba(18, 16, 14, 0.7);
}

.consumer-purpose-card a {
  align-self: end;
  margin-top: 20px;
  color: var(--red);
  font-weight: 700;
}

.audience-gateway-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(244, 237, 225, 0.96)),
    var(--ivory);
}

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

.audience-path-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 520px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.18), rgba(255, 250, 241, 0.04) 45%),
    rgba(255, 250, 241, 0.76);
  box-shadow: 0 22px 60px rgba(75, 42, 35, 0.1);
}

.audience-path-business {
  color: var(--ivory);
  border-color: var(--white-line);
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.22), rgba(133, 32, 31, 0.16) 45%),
    var(--ink);
}

.audience-path-card small,
.conversion-card small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-path-card h3,
.conversion-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.audience-path-card p,
.conversion-card p {
  margin: 0;
  color: rgba(18, 16, 14, 0.72);
}

.audience-path-business p,
.audience-path-business .path-list,
.audience-path-business .ghost-button.dark {
  color: rgba(255, 250, 241, 0.74);
}

.path-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(18, 16, 14, 0.72);
  list-style: none;
}

.path-list li {
  position: relative;
  padding-left: 18px;
}

.path-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.pathway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: end;
  margin-top: 8px;
}

.channel-flow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  background: var(--paper);
}

.channel-flow-copy {
  position: sticky;
  top: 108px;
}

.channel-flow-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.channel-flow-copy p {
  color: rgba(18, 16, 14, 0.72);
}

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

.flow-card,
.conversion-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.flow-card span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.flow-card h3 {
  margin: 0;
  font-size: 24px;
}

.flow-card p {
  margin: 0;
  color: rgba(18, 16, 14, 0.68);
}

.cta-section {
  text-align: center;
  background: var(--ivory);
}

.cta-section .hero-actions {
  justify-content: center;
}

.conversion-section {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.92), rgba(44, 38, 32, 0.96)),
    var(--ink);
  color: var(--ivory);
}

.conversion-section h2 {
  margin: 0 auto 16px;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04;
}

.conversion-section > p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 250, 241, 0.72);
}

.conversion-card {
  min-height: 300px;
  text-align: left;
  border-color: var(--white-line);
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.16), rgba(255, 250, 241, 0.04)),
    rgba(255, 250, 241, 0.06);
}

.conversion-card p {
  color: rgba(255, 250, 241, 0.72);
}

.conversion-card .primary-button {
  align-self: end;
  justify-self: start;
  margin-top: 12px;
}

.page-hero .hero-content {
  padding-top: 118px;
}

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

.editorial-block {
  min-height: 320px;
  padding: 30px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 72px max(24px, 6vw);
}

.product-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.product-hero-image {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-hero-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.product-hero-signature {
  background: #1b1511;
}

.product-hero-warm {
  background: #2c2018;
}

.product-hero-jade {
  background: #122622;
}

.product-hero-incense {
  background: #201b18;
}

.detail-copy,
.scene-panel {
  min-height: 360px;
  padding: 34px;
}

.detail-copy ul,
.note-list {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.scene-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ivory);
}

.usage-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.usage-section .section-heading p,
.usage-section .note-list li {
  color: rgba(255, 250, 241, 0.72);
}

.note-list {
  max-width: 880px;
  margin: 0;
}

.contact-page-section {
  background: var(--ivory);
}

.contact-page-grid {
  align-items: start;
}

.contact-intro,
.large-contact-form {
  padding: 34px;
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--herb);
}

.contact-form,
.large-contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label,
.large-contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(18, 16, 14, 0.78);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.large-contact-form input,
.large-contact-form select,
.large-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 16, 14, 0.18);
  border-radius: 4px;
  background: var(--ivory);
  color: var(--ink);
}

.contact-form textarea,
.large-contact-form textarea {
  resize: vertical;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--herb);
}

.form-feedback[data-tone="success"] {
  color: var(--gold);
}

.form-feedback[data-tone="error"] {
  color: #b85b4f;
}

.contact-form button:disabled,
.large-contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 48px;
  padding: 56px max(24px, 6vw);
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid var(--white-line);
}

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

.footer-brand {
  align-content: start;
}

.logo-placeholder,
.qr-placeholder {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  min-height: 84px;
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed rgba(199, 163, 95, 0.58);
  background: rgba(255, 250, 241, 0.04);
}

.brand-logo-image {
  width: min(280px, 100%);
  max-height: 150px;
  object-fit: contain;
  padding: 10px;
  background: var(--ivory);
  border-radius: 4px;
}

.wechat-qr-image {
  width: 112px;
  height: 112px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border-radius: 4px;
}

.logo-placeholder span,
.qr-placeholder span {
  color: var(--gold-soft);
  font-weight: 700;
}

.logo-placeholder small,
.qr-placeholder small {
  color: rgba(255, 250, 241, 0.52);
}

.qr-placeholder {
  width: min(220px, 100%);
  min-height: 0;
  place-items: start;
  text-align: left;
  border: 1px solid rgba(199, 163, 95, 0.34);
  background:
    linear-gradient(135deg, rgba(199, 163, 95, 0.12), rgba(255, 250, 241, 0.04)),
    rgba(18, 16, 14, 0.48);
}

.qr-placeholder .wechat-qr-image {
  justify-self: start;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.footer-links a,
.footer-links button,
.footer-links p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 250, 241, 0.7);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.footer-links a[href^="tel"] {
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--gold-soft);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--red);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.floating-contact span {
  font-weight: 700;
  line-height: 1;
}

.floating-contact small {
  font-size: 10px;
  color: var(--gold-soft);
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.contact-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.contact-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.68);
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-panel.is-open .contact-panel-backdrop {
  opacity: 1;
}

.contact-panel-card {
  position: absolute;
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 40px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.contact-panel.is-open .contact-panel-card {
  transform: translateX(0);
}

.contact-panel-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.panel-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
}

.contact-meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--herb);
  font-size: 14px;
}

.panel-qr {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.motion-ready .reveal:not(.is-visible) {
  opacity: 1;
  transform: translateY(12px);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    align-items: stretch;
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 18px 24px 28px;
    transform: translateY(-120%);
    transition: transform 220ms ease;
    background: rgba(18, 16, 14, 0.98);
    border-bottom: 1px solid var(--white-line);
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .nav-link,
  .product-menu > button {
    padding: 14px 0;
    border-bottom-color: var(--white-line);
  }

  .product-menu-panel {
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border-color: var(--white-line);
    margin: 10px 0 0;
  }

  .header-cta {
    display: none;
  }

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

  .channel-flow-section {
    grid-template-columns: 1fr;
  }

  .channel-flow-copy {
    position: static;
  }

  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand-lockup {
    grid-template-columns: 38px auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup strong {
    font-size: 16px;
  }

  .home-hero-content,
  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 92px 0 130px;
  }

  .home-hero-content h1,
  .hero-content h1,
  .product-hero h1 {
    font-size: 42px;
  }

  .home-hero-content h2 {
    font-size: 22px;
  }

  .hero-side-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .section {
    padding: 64px 18px;
  }

  .dual-statements,
  .signature-section,
  .product-detail-section,
  .contact-page-grid,
  .site-footer,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .statement {
    min-height: auto;
    padding: 44px 18px;
  }

  .product-grid,
  .concept-grid,
  .article-grid,
  .editorial-section,
  .footer-links,
  .audience-gateway-grid,
  .channel-flow-grid,
  .conversion-grid,
  .atlas-grid,
  .depth-intro-section,
  .chapter-section,
  .related-grid,
  .consumer-purpose-grid,
  .mystique-strip-section,
  .incense-map-section,
  .seasonal-stack-section,
  .store-scene-section,
  .display-principle-section,
  .mystique-strip-grid,
  .ledger-grid,
  .routine-grid,
  .blueprint-grid,
  .suite-grid,
  .journey-grid,
  .mini-atlas-grid,
  .incense-map-panel,
  .display-principle-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

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

  .product-card a {
    grid-template-rows: 260px auto;
  }

  .audience-path-card,
  .conversion-card {
    min-height: auto;
    padding: 26px;
  }

  .pathway-actions {
    display: grid;
  }

  .signature-image img,
  .product-hero-image img {
    height: 420px;
  }

  .product-hero {
    padding: 54px 18px;
  }

  .contact-panel-card {
    padding: 34px 18px;
  }

  .mystique-strip-copy,
  .incense-map-copy,
  .stack-copy,
  .store-scene-copy,
  .display-principle-copy,
  .mystique-tile,
  .ledger-card,
  .routine-card,
  .blueprint-card,
  .suite-card,
  .journey-card {
    padding: 24px;
  }

  .mystique-tile {
    min-height: 190px;
  }

  .stack-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .store-scene-media img {
    min-height: 320px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 64px;
    height: 64px;
  }
}


/* Ingredient atlas enhancement */
.ingredient-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  background: var(--ivory);
}

.ingredient-feature-copy {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 36, 31, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.95), rgba(234, 219, 185, 0.52));
  box-shadow: 0 20px 70px rgba(18, 16, 14, 0.12);
}

.ingredient-feature-copy h2,
.ingredient-atlas-section .section-heading h2 {
  max-width: 880px;
}

.ingredient-feature-copy p:not(.eyebrow),
.ingredient-atlas-section .section-heading p {
  color: rgba(18, 16, 14, 0.72);
}

.ingredient-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.ingredient-metrics span {
  display: grid;
  gap: 4px;
  min-height: 108px;
  align-content: center;
  padding: 18px 14px;
  border: 1px solid rgba(199, 163, 95, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.ingredient-metrics strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.ingredient-metrics small {
  color: var(--herb);
  font-size: 12px;
  line-height: 1.45;
}

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

.ingredient-preview-card,
.ingredient-card,
.ingredient-group-card,
.ingredient-contact-sheet {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 18px 48px rgba(18, 16, 14, 0.1);
  overflow: hidden;
}

.ingredient-preview-card {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 430px;
}

.ingredient-preview-card img,
.ingredient-card img,
.ingredient-contact-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-preview-card div {
  padding: 20px;
}

.ingredient-preview-card small,
.ingredient-card small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.ingredient-preview-card h3,
.ingredient-card h3,
.ingredient-group-card h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.ingredient-preview-card p,
.ingredient-card p,
.ingredient-group-card p,
.ingredient-disclaimer {
  color: rgba(18, 16, 14, 0.7);
}

.ingredient-atlas-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 163, 95, 0.16), transparent 28%),
    var(--paper);
  overflow-x: hidden;
}

.ingredient-atlas-section .section-heading,
.ingredient-contact-sheet,
.ingredient-group-grid,
.ingredient-grid,
.ingredient-disclaimer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.ingredient-contact-sheet {
  width: min(100%, 980px);
  margin-top: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.32)),
    var(--ivory);
}

.ingredient-contact-sheet img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: top center;
  background: var(--ivory);
  border: 1px solid rgba(199, 163, 95, 0.28);
  border-radius: 6px;
}

.ingredient-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ingredient-group-card {
  min-height: 220px;
  padding: 30px;
  display: grid;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(234, 219, 185, 0.48)),
    var(--ivory);
}

.ingredient-group-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ingredient-group-card span {
  padding: 6px 10px;
  border: 1px solid rgba(143, 36, 31, 0.22);
  border-radius: 999px;
  color: var(--red);
  background: rgba(143, 36, 31, 0.06);
  font-size: 13px;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.ingredient-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  min-height: 0;
}

.ingredient-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  min-height: 252px;
  border-right: 1px solid rgba(199, 163, 95, 0.25);
}

.ingredient-card figure img {
  object-fit: contain;
  object-position: center;
  background: #fffaf1;
}

.ingredient-card-copy {
  display: grid;
  align-content: start;
  min-height: 232px;
  padding: 24px;
}

.ingredient-card .latin {
  margin: 0 0 14px;
  color: var(--herb);
  font-size: 13px;
  font-family: Georgia, "Times New Roman", serif;
}

.ingredient-card strong {
  display: block;
  color: var(--red);
}

.ingredient-disclaimer {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px dashed rgba(143, 36, 31, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.62);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .ingredient-feature-section,
  .ingredient-group-grid,
  .ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-feature-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .ingredient-feature-section,
  .ingredient-preview-grid,
  .ingredient-group-grid,
  .ingredient-grid,
  .ingredient-metrics {
    grid-template-columns: 1fr;
  }

  .ingredient-feature-copy,
  .ingredient-group-card,
  .ingredient-card-copy {
    padding: 24px;
  }

  .ingredient-preview-card,
  .ingredient-card {
    min-height: auto;
  }

  .ingredient-card {
    grid-template-columns: 1fr;
  }

  .ingredient-card figure {
    aspect-ratio: 1.273 / 1;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 163, 95, 0.25);
  }

  .ingredient-contact-sheet img {
    max-height: none;
  }
}


/* Bracelet formula enhancement */
.bracelet-formula-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(111, 101, 68, 0.18), transparent 30%),
    var(--ivory);
  overflow-x: hidden;
}

.bracelet-formula-section .section-heading,
.bracelet-overview,
.bracelet-formula-grid,
.bead-material-section,
.bracelet-story-section {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.bracelet-formula-section .section-heading p {
  color: rgba(18, 16, 14, 0.72);
}

.bracelet-overview {
  width: min(100%, 1040px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(234, 219, 185, 0.38));
  box-shadow: 0 18px 50px rgba(18, 16, 14, 0.12);
}

.bracelet-overview img {
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: contain;
  border: 1px solid rgba(199, 163, 95, 0.28);
  border-radius: 6px;
  background: var(--ivory);
}

.bracelet-formula-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.bracelet-formula-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 52px rgba(18, 16, 14, 0.12);
}

.bracelet-formula-card figure {
  margin: 0;
  min-height: 420px;
  border-right: 1px solid rgba(199, 163, 95, 0.28);
  background: var(--ivory);
}

.bracelet-formula-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bracelet-formula-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.bracelet-formula-copy small,
.bead-material-card small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.bracelet-formula-copy h3,
.bead-material-copy h2,
.bracelet-story-copy h2,
.bead-material-card h3 {
  margin: 0;
  line-height: 1.25;
}

.bracelet-formula-copy h3 {
  font-size: 34px;
}

.bracelet-formula-copy p,
.bead-material-copy p,
.bracelet-story-copy p,
.bead-material-card p {
  color: rgba(18, 16, 14, 0.72);
}

.formula-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.formula-note-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(143, 36, 31, 0.22);
  border-radius: 999px;
  color: var(--red);
  background: rgba(143, 36, 31, 0.06);
  font-size: 13px;
}

.bead-material-section,
.bracelet-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  background: var(--paper);
}

.bead-material-copy,
.bracelet-story-copy {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 77, 69, 0.12), transparent 40%),
    rgba(255, 250, 241, 0.78);
}

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

.bead-material-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
}

.bead-material-card h3 {
  margin-top: 10px;
  font-size: 28px;
}

.bracelet-story-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 18px 52px rgba(18, 16, 14, 0.12);
}

.bracelet-story-image img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1180px) {
  .bracelet-formula-card,
  .bead-material-section,
  .bracelet-story-section {
    grid-template-columns: 1fr;
  }

  .bracelet-formula-card figure {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 163, 95, 0.28);
  }
}

@media (max-width: 820px) {
  .bracelet-formula-grid,
  .bead-material-grid {
    grid-template-columns: 1fr;
  }

  .bracelet-formula-card figure {
    min-height: 430px;
  }

  .bracelet-formula-copy,
  .bead-material-copy,
  .bracelet-story-copy,
  .bead-material-card {
    padding: 24px;
  }
}



.consultation-path-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 163, 95, 0.16), transparent 28%),
    var(--ivory);
}

.consultation-path-section .section-heading {
  max-width: 920px;
}

.consultation-path-section .section-heading p,
.consultation-path-card p,
.partner-notice p,
.conversion-notice,
.contact-panel-notice {
  color: rgba(18, 16, 14, 0.72);
}

.consultation-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 34px auto 0;
}

.consultation-path-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.42)),
    var(--paper);
  box-shadow: 0 18px 56px rgba(18, 16, 14, 0.12);
}

.consultation-partner {
  background:
    linear-gradient(135deg, rgba(36, 77, 69, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.38));
}

.consultation-path-card small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.consultation-path-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.consultation-step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 163, 95, 0.3);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.72);
}

.consultation-step-list span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.partner-notice {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border: 1px dashed rgba(143, 36, 31, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.partner-notice strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.partner-notice p {
  margin: 8px 0 0;
}

.conversion-notice,
.contact-panel-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed rgba(143, 36, 31, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.62);
  font-size: 14px;
}

.contact-panel-notice {
  color: rgba(18, 16, 14, 0.68);
}

@media (max-width: 820px) {
  .consultation-path-grid {
    grid-template-columns: 1fr;
  }

  .consultation-path-card {
    min-height: auto;
    padding: 24px;
  }

  .consultation-step-list li {
    grid-template-columns: 42px 1fr;
  }

  .partner-notice {
    padding: 20px;
  }
}



.consultation-path-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 163, 95, 0.16), transparent 28%),
    var(--ivory);
}

.consultation-path-section .section-heading {
  max-width: 920px;
}

.consultation-path-section .section-heading p,
.consultation-path-card p,
.partner-notice p,
.conversion-notice,
.contact-panel-notice {
  color: rgba(18, 16, 14, 0.72);
}

.consultation-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 34px auto 0;
}

.consultation-path-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.42)),
    var(--paper);
  box-shadow: 0 18px 56px rgba(18, 16, 14, 0.12);
}

.consultation-partner {
  background:
    linear-gradient(135deg, rgba(36, 77, 69, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.38));
}

.consultation-path-card small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.consultation-path-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.consultation-step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 163, 95, 0.3);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.72);
}

.consultation-step-list span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.partner-notice {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border: 1px dashed rgba(143, 36, 31, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.partner-notice strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.partner-notice p {
  margin: 8px 0 0;
}

.conversion-notice,
.contact-panel-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed rgba(143, 36, 31, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.62);
  font-size: 14px;
}

.contact-panel-notice {
  color: rgba(18, 16, 14, 0.68);
}

@media (max-width: 820px) {
  .consultation-path-grid {
    grid-template-columns: 1fr;
  }

  .consultation-path-card {
    min-height: auto;
    padding: 24px;
  }

  .consultation-step-list li {
    grid-template-columns: 42px 1fr;
  }

  .partner-notice {
    padding: 20px;
  }
}


/* Consultation pathway enhancement */
.consultation-path-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 163, 95, 0.16), transparent 28%),
    var(--ivory);
}

.consultation-path-section .section-heading {
  max-width: 920px;
}

.consultation-path-section .section-heading p,
.consultation-path-card p,
.partner-notice p,
.conversion-notice,
.contact-panel-notice {
  color: rgba(18, 16, 14, 0.72);
}

.consultation-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 34px auto 0;
}

.consultation-path-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.42)),
    var(--paper);
  box-shadow: 0 18px 56px rgba(18, 16, 14, 0.12);
}

.consultation-partner {
  background:
    linear-gradient(135deg, rgba(36, 77, 69, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(234, 219, 185, 0.38));
}

.consultation-path-card small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.consultation-path-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.consultation-step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 163, 95, 0.3);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.72);
}

.consultation-step-list span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.partner-notice {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border: 1px dashed rgba(143, 36, 31, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.partner-notice strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.partner-notice p {
  margin: 8px 0 0;
}

.conversion-notice,
.contact-panel-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed rgba(143, 36, 31, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.62);
  font-size: 14px;
}

.contact-panel-notice {
  color: rgba(18, 16, 14, 0.68);
}

@media (max-width: 820px) {
  .consultation-path-grid {
    grid-template-columns: 1fr;
  }

  .consultation-path-card {
    min-height: auto;
    padding: 24px;
  }

  .consultation-step-list li {
    grid-template-columns: 42px 1fr;
  }

  .partner-notice {
    padding: 20px;
  }
}



.incense-system-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(199, 163, 95, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 219, 185, 0.42));
  overflow-x: hidden;
}

.incense-system-section .section-heading,
.incense-overview,
.incense-family-grid,
.incense-system-grid,
.incense-space-section {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.incense-system-section .section-heading p,
.incense-family-card p,
.incense-system-copy p,
.incense-space-copy p,
.incense-space-card p {
  color: rgba(18, 16, 14, 0.72);
}

.product-hero-incense .product-hero-image img {
  object-fit: contain;
  background: #fffaf1;
}

.incense-overview {
  width: min(100%, 1080px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 219, 185, 0.32)),
    var(--ivory);
  box-shadow: 0 20px 58px rgba(18, 16, 14, 0.12);
}

.incense-overview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(199, 163, 95, 0.3);
  border-radius: 6px;
  background: #fffaf1;
}

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

.incense-family-card,
.incense-system-card,
.incense-space-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 48px rgba(18, 16, 14, 0.1);
}

.incense-family-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
}

.incense-family-card h3,
.incense-space-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.incense-family-card div,
.incense-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.incense-family-card span,
.incense-material-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(143, 36, 31, 0.22);
  border-radius: 999px;
  color: var(--red);
  background: rgba(143, 36, 31, 0.06);
  font-size: 13px;
}

.incense-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.incense-system-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 520px;
  overflow: hidden;
}

.incense-system-card figure {
  margin: 0;
  min-height: 520px;
  border-right: 1px solid rgba(199, 163, 95, 0.28);
  background: #fffaf1;
}

.incense-system-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fffaf1;
}

.incense-system-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.incense-system-copy small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.incense-system-copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.incense-system-copy strong {
  color: var(--herb);
  font-size: 17px;
}

.incense-space-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 92% 10%, rgba(36, 77, 69, 0.14), transparent 32%),
    var(--paper);
}

.incense-space-copy {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
}

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

.incense-space-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px;
}

@media (max-width: 1180px) {
  .incense-family-grid,
  .incense-system-grid,
  .incense-space-section {
    grid-template-columns: 1fr;
  }

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

  .incense-system-card {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .incense-family-grid,
  .incense-system-grid,
  .incense-space-grid {
    grid-template-columns: 1fr;
  }

  .incense-system-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .incense-system-card figure {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 163, 95, 0.28);
  }

  .incense-family-card,
  .incense-system-copy,
  .incense-space-copy,
  .incense-space-card {
    padding: 24px;
  }

  .incense-overview img {
    max-height: none;
  }
}


/* Incense system enhancement */
.incense-system-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(199, 163, 95, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 219, 185, 0.42));
  overflow-x: hidden;
}

.incense-system-section .section-heading,
.incense-overview,
.incense-family-grid,
.incense-system-grid,
.incense-space-section {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.incense-system-section .section-heading p,
.incense-family-card p,
.incense-system-copy p,
.incense-space-copy p,
.incense-space-card p {
  color: rgba(18, 16, 14, 0.72);
}

.product-hero-incense .product-hero-image img {
  object-fit: contain;
  background: #fffaf1;
}

.incense-overview {
  width: min(100%, 1080px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 219, 185, 0.32)),
    var(--ivory);
  box-shadow: 0 20px 58px rgba(18, 16, 14, 0.12);
}

.incense-overview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(199, 163, 95, 0.3);
  border-radius: 6px;
  background: #fffaf1;
}

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

.incense-family-card,
.incense-system-card,
.incense-space-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 48px rgba(18, 16, 14, 0.1);
}

.incense-family-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
}

.incense-family-card h3,
.incense-space-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.incense-family-card div,
.incense-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.incense-family-card span,
.incense-material-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(143, 36, 31, 0.22);
  border-radius: 999px;
  color: var(--red);
  background: rgba(143, 36, 31, 0.06);
  font-size: 13px;
}

.incense-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.incense-system-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 520px;
  overflow: hidden;
}

.incense-system-card figure {
  margin: 0;
  min-height: 520px;
  border-right: 1px solid rgba(199, 163, 95, 0.28);
  background: #fffaf1;
}

.incense-system-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fffaf1;
}

.incense-system-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.incense-system-copy small {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.incense-system-copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.incense-system-copy strong {
  color: var(--herb);
  font-size: 17px;
}

.incense-space-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 92% 10%, rgba(36, 77, 69, 0.14), transparent 32%),
    var(--paper);
}

.incense-space-copy {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
}

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

.incense-space-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px;
}

@media (max-width: 1180px) {
  .incense-family-grid,
  .incense-system-grid,
  .incense-space-section {
    grid-template-columns: 1fr;
  }

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

  .incense-system-card {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .incense-family-grid,
  .incense-system-grid,
  .incense-space-grid {
    grid-template-columns: 1fr;
  }

  .incense-system-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .incense-system-card figure {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 163, 95, 0.28);
  }

  .incense-family-card,
  .incense-system-copy,
  .incense-space-copy,
  .incense-space-card {
    padding: 24px;
  }

  .incense-overview img {
    max-height: none;
  }
}
