:root {
  --paper: #f7f1e7;
  --paper-warm: #efe4d4;
  --surface: #fffaf1;
  --surface-strong: #fffdf8;
  --ink: #2b241c;
  --ink-soft: #50483d;
  --muted: #766e63;
  --forest: #214d3a;
  --forest-deep: #10281f;
  --forest-soft: #e5ede5;
  --clay: #a66a2c;
  --gold: #d8a441;
  --line: rgba(43, 36, 28, 0.12);
  --line-strong: rgba(43, 36, 28, 0.22);
  --white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(43, 36, 28, 0.09);
  --shadow-image: 0 28px 70px rgba(43, 36, 28, 0.16);
  --radius: 8px;
  --radius-lg: 24px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0) 520px),
    var(--paper);
  font-family: "HarmonyOS Sans SC", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(16, 40, 31, 0.26);
}

::selection {
  color: var(--surface);
  background: var(--forest);
}

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

img {
  width: 100%;
  height: auto;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
.brand-text strong {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.25vw, 42px);
  line-height: 1.14;
}

h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

p {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
p,
li,
a,
button,
span {
  overflow-wrap: anywhere;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--surface);
  background: var(--forest-deep);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 241, 231, 0.64);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(1.05);
  transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 250, 241, 0.9);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(43, 36, 28, 0.07);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background: url("assets/brand-logo-mark-160.webp") center / contain no-repeat;
  border-radius: 50%;
  text-indent: -999px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.08;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--forest);
  background: rgba(33, 77, 58, 0.08);
  border-color: rgba(33, 77, 58, 0.12);
}

.site-menu .nav-cta {
  justify-self: end;
  color: var(--surface);
  background: var(--forest);
  border-color: var(--forest);
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta.active {
  color: var(--surface);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 105;
  width: 44px;
  height: 44px;
  justify-self: end;
  cursor: pointer;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  border-radius: 999px;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  line-height: 1.25;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}

.button::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 250ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(43, 36, 28, 0.12);
}

.button:hover::after {
  transform: translateX(3px) rotate(-45deg);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button.primary,
.button.dark {
  color: var(--surface);
  background: var(--forest);
  border-color: var(--forest);
}

.button.primary:hover,
.button.dark:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.button.secondary,
.button.ghost,
.button.linkish {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(43, 36, 28, 0.3);
}

.button.secondary:hover,
.button.ghost:hover,
.button.linkish:hover {
  color: var(--forest-deep);
  background: rgba(216, 164, 65, 0.12);
  border-color: rgba(166, 106, 44, 0.38);
}

.button.light {
  color: var(--forest-deep);
  background: var(--surface);
  border-color: rgba(255, 250, 241, 0.78);
}

.button.text-button {
  min-height: auto;
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  padding: 46px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 164, 65, 0.12), transparent 28%),
    linear-gradient(115deg, var(--paper) 0%, #fbf6ec 55%, #eadfce 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.kicker,
.section-label,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.kicker::before,
.section-label::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.hero h1 {
  margin-top: 22px;
}

.hero-lede {
  max-width: 610px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.hero-tags li,
.scene-tag,
.product-card-body > span,
.compare-grid span,
.contact-card span,
.guide-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 12px;
  color: var(--forest);
  background: rgba(33, 77, 58, 0.08);
  border: 1px solid rgba(33, 77, 58, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

.hero-visual,
.image-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.46fr);
  gap: 16px;
}

.hero-visual {
  grid-template-columns: 1fr;
}

.hero-main,
.hero-side,
.mosaic-main,
.mosaic-small,
.photo-frame,
.product-card picture,
.scene-card picture,
.guide-card picture,
.page-hero picture,
.contact-hero picture,
.media-grid picture,
.proof-photo {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
}

.hero-main,
.mosaic-main {
  box-shadow: var(--shadow-image);
}

.hero-main {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.mosaic-main {
  min-height: 560px;
}

.hero-side,
.mosaic-stack {
  display: grid;
  gap: 16px;
}

.hero-side {
  position: absolute;
  left: -30px;
  bottom: -30px;
  z-index: 2;
  width: min(220px, 34%);
}

.hero-side .image-chip,
.mosaic-small {
  min-height: 260px;
}

.hero-side .image-chip {
  min-height: 0;
  box-shadow: 0 18px 44px rgba(43, 36, 28, 0.16);
}

.hero-side .image-chip:nth-child(2) {
  display: none;
}

.hero-visual img,
.image-mosaic img,
.photo-frame img,
.product-card img,
.scene-card img,
.guide-card img,
.page-hero img,
.contact-hero img,
.media-grid img,
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) sepia(0.03);
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
}

.hero-main img,
.mosaic-main img {
  aspect-ratio: 4 / 5;
}

.hero-side img,
.mosaic-small img {
  aspect-ratio: 1 / 1;
}

.hero-visual::after,
.image-mosaic::after,
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 241, 0.58);
  border-radius: calc(var(--radius-lg) - 6px);
}

.hero-note,
.mosaic-note {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  max-width: 270px;
  padding: 18px 20px;
  color: var(--surface);
  background: rgba(16, 40, 31, 0.88);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16, 40, 31, 0.24);
  backdrop-filter: blur(12px);
}

.hero-note span,
.mosaic-note span {
  display: block;
  color: rgba(255, 250, 241, 0.7);
  font-size: 12px;
  font-weight: 820;
}

.hero-note strong,
.mosaic-note strong {
  display: block;
  margin-top: 6px;
  color: var(--surface);
  font-size: 18px;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section.tight {
  padding-top: 76px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
  display: grid;
  gap: 14px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-items: center;
}

.section-heading p:not(.section-label),
.section-copy p,
.page-hero p,
.contact-hero p,
.image-copy p,
.cta-band p:not(.section-label),
.founder-card p {
  font-size: 17px;
}

.section-copy {
  display: grid;
  align-content: center;
}

.section-copy .section-label {
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(440px, 1.08fr) minmax(0, 0.92fr);
}

.poster-section {
  width: 100%;
  padding: 112px 0;
  background: var(--surface-strong);
}

.poster-section > .section {
  padding: 0;
}

.deep-section {
  width: 100%;
  padding: 108px 0;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(216, 164, 65, 0.1), transparent 34%),
    var(--forest-deep);
}

.deep-section .section {
  padding: 0;
}

.deep-section h2,
.deep-section h3 {
  color: var(--surface);
}

.deep-section p {
  color: rgba(255, 250, 241, 0.74);
}

.deep-section .section-label {
  color: #ecc77b;
}

.scene-grid,
.product-grid,
.compare-grid,
.faq-list,
.storage-grid,
.contact-grid,
.media-grid,
.guide-grid,
.proof-row,
.occasion-grid {
  display: grid;
  gap: 18px;
}

.scene-grid {
  grid-template-columns: repeat(3, 1fr);
}

.scene-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.scene-card picture {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 40, 31, 0.04), rgba(16, 40, 31, 0.78));
}

.scene-card-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.scene-card h3 {
  color: var(--surface);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 28px;
}

.scene-card p {
  margin-top: 10px;
  color: rgba(255, 250, 241, 0.78);
}

.scene-card .scene-tag {
  margin-bottom: 16px;
  color: var(--surface);
  background: rgba(255, 250, 241, 0.13);
  border-color: rgba(255, 250, 241, 0.22);
}

.proof-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.proof-row article,
.occasion-grid article,
.compare-grid article,
.storage-grid article,
.contact-card,
.faq-list details,
.order-script,
.notice-panel,
.feature-card {
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-row article,
.occasion-grid article,
.compare-grid article,
.storage-grid article,
.contact-card,
.notice-panel,
.feature-card {
  position: relative;
  padding: 26px;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease);
}

.proof-row article:hover,
.occasion-grid article:hover,
.compare-grid article:hover,
.storage-grid article:hover,
.contact-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  background: var(--surface);
  border-color: rgba(166, 106, 44, 0.28);
}

.proof-row span,
.occasion-grid span {
  display: block;
  color: rgba(166, 106, 44, 0.18);
  font-family: Georgia, serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 0.9;
}

.proof-row h3,
.occasion-grid h3 {
  margin-top: -12px;
}

.proof-row p,
.occasion-grid p,
.product-card p,
.compare-grid p,
.storage-grid p,
.notice-panel p,
.contact-card p,
.guide-card p,
.feature-card p {
  margin-top: 10px;
}

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

.filter-row + .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  background: var(--surface);
  border-color: rgba(166, 106, 44, 0.3);
  box-shadow: var(--shadow-soft);
}

.product-card.is-hidden {
  display: none;
}

.product-card picture {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.product-card:hover img,
.scene-card:hover img,
.guide-card:hover img,
.hero-visual:hover img,
.image-mosaic:hover img {
  transform: scale(1.04);
  filter: saturate(0.98) contrast(1.04) sepia(0.03);
}

.product-card-body {
  flex: 1;
  display: grid;
  align-content: start;
  padding: 24px;
}

.product-card-body > span,
.guide-card span {
  margin-bottom: 14px;
}

.product-card .button {
  width: 100%;
  margin-top: 20px;
  padding-inline: 16px;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.image-mosaic {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
}

.mosaic-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 250, 241, 0.22);
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
}

.timeline article {
  position: relative;
  min-height: 220px;
  padding: 32px 26px;
  border-right: 1px solid rgba(255, 250, 241, 0.14);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline .step-no,
.lifecycle .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  margin-top: 26px;
}

.timeline p {
  margin-top: 10px;
  font-size: 14px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.founder-card .photo-frame img {
  aspect-ratio: 4 / 5;
}

.founder-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.message-card,
.consult-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.message-card strong,
.consult-card strong {
  display: block;
  color: var(--ink);
}

.message-card p,
.consult-card p {
  margin-top: 8px;
}

.guide-grid {
  grid-template-columns: repeat(4, 1fr);
}

.guide-card {
  overflow: hidden;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.guide-card picture {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.guide-card div {
  padding: 22px;
}

.consult-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  gap: 42px;
  align-items: stretch;
}

.consult-card {
  display: grid;
  gap: 14px;
}

.consult-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.consult-row:last-of-type {
  border-bottom: 0;
}

.consult-row span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 820;
}

.consult-row p {
  color: var(--ink-soft);
}

.photo-frame img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-image);
}

.photo-frame figcaption {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.image-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.82fr);
  color: var(--surface);
  overflow: hidden;
  background: var(--forest-deep);
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.image-band picture,
.image-band img {
  height: 100%;
}

.image-band img {
  min-height: 620px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.9) contrast(1.03);
}

.image-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px min(7vw, 104px);
}

.image-copy p {
  color: rgba(255, 250, 241, 0.76);
}

.image-copy .section-label,
.cta-band .section-label {
  color: #ecc77b;
}

.image-copy h2 {
  color: var(--surface);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  width: 4px;
  height: 7px;
  border-right: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
  transform: rotate(45deg);
}

.section-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.text-link {
  color: var(--forest);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 220ms var(--ease), text-decoration-color 220ms var(--ease);
}

.text-link:hover {
  color: var(--clay);
  text-decoration-color: var(--gold);
}

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

.lifecycle article {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 14px;
  align-content: start;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease);
}

.lifecycle article:hover {
  transform: translateY(-3px);
  border-color: rgba(166, 106, 44, 0.3);
  background: var(--surface);
}

.lifecycle-media article {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.lifecycle-media .step-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: -18px -18px 18px;
  overflow: hidden;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.lifecycle-media .step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.lifecycle-media article:hover .step-photo img {
  transform: scale(1.04);
}

.lifecycle-media .step-body {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 5px 13px;
  align-items: start;
}

.lifecycle-media .step-no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 250, 241, 0.9);
}

.lifecycle .step-icon {
  grid-column: 1;
  grid-row: 2 / span 2;
  width: 38px;
  height: 38px;
  margin-top: 4px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--forest);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 820;
}

.lifecycle-media .step-icon {
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.lifecycle h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.lifecycle p {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin-top: 3px;
  font-size: 14px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  padding: 24px 18px 24px 0;
  color: var(--ink);
}

.metric-strip strong {
  display: block;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.media-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.media-grid img {
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.media-grid picture:nth-child(2) {
  margin-top: 54px;
}

.page-hero,
.contact-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.contact-hero h1 {
  color: var(--forest);
  font-size: clamp(38px, 4.6vw, 62px);
}

.page-hero p,
.contact-hero p {
  max-width: 720px;
  margin-top: 18px;
}

.page-hero img,
.contact-hero img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-image);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.filter-chip {
  min-height: 40px;
  padding: 8px 15px;
  color: var(--forest);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.filter-chip:hover {
  background: rgba(216, 164, 65, 0.13);
  border-color: rgba(216, 164, 65, 0.22);
}

.filter-chip.active {
  color: var(--surface);
  background: var(--forest);
  border-color: var(--forest);
}

.compare-grid {
  grid-template-columns: repeat(4, 1fr);
}

.storage-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card h2 {
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.12;
}

.order-script {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 42px;
  padding: 38px;
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.script-copy {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  color: var(--muted);
  font-size: 17px;
}

.faq-list {
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  padding: 0 22px;
  background: rgba(255, 250, 241, 0.7);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.faq-list details[open] {
  border-color: rgba(166, 106, 44, 0.32);
  background: var(--surface);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 1.5px solid var(--forest);
  border-bottom: 1.5px solid var(--forest);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  padding-bottom: 22px;
}

.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 82px;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(216, 164, 65, 0.12), transparent 38%),
    var(--forest-deep);
  border-radius: var(--radius-lg);
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}

.cta-band h2 {
  color: var(--surface);
  font-size: clamp(29px, 2.8vw, 40px);
}

.cta-band p:not(.section-label) {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 250, 241, 0.76);
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line-strong);
  font-size: 14px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 18px;
}

.site-footer p {
  margin-top: 6px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 220ms var(--ease), color 220ms var(--ease);
}

.site-footer a:hover {
  color: var(--clay);
  text-decoration-color: currentColor;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 110;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  max-width: min(92vw, 520px);
  padding: 12px 16px;
  color: var(--surface);
  background: var(--forest-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

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

.back-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 70;
  width: 44px;
  height: 44px;
  opacity: 0;
  pointer-events: none;
  color: var(--surface);
  cursor: pointer;
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 241, 0.94);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(43, 36, 28, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-buy .button {
  flex: 1;
  min-height: 46px;
  padding-inline: 10px;
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-menu a {
    padding-inline: 9px;
  }

  .hero-inner,
  .consult-panel,
  .founder-card,
  .split,
  .split.reverse,
  .page-hero,
  .contact-hero,
  .order-script {
    grid-template-columns: 1fr;
  }

  .quick-buy,
  .proof-row,
  .occasion-grid,
  .product-grid,
  .compare-grid,
  .storage-grid,
  .contact-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .scene-card {
    min-height: 360px;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-copy {
    order: 2;
  }

  .image-band picture {
    order: 1;
  }

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

  .timeline article {
    border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 88px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    min-height: 72px;
    grid-template-columns: auto auto;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 100;
    width: min(86vw, 360px);
    height: 100svh;
    display: grid;
    align-content: start;
    justify-content: stretch;
    visibility: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
    padding: 92px 22px 22px;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(43, 36, 28, 0.14);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms var(--ease);
  }

  .site-menu.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-menu a {
    min-height: 56px;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    font-size: 24px;
  }

  .site-menu .nav-cta {
    justify-content: center;
    margin-top: 22px;
    font-family: inherit;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    gap: 34px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 40px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions,
  .inline-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .mosaic-main {
    min-height: auto;
  }

  .hero-main img,
  .mosaic-main img {
    aspect-ratio: 4 / 5;
  }

  .hero-side,
  .mosaic-stack {
    grid-template-columns: 1fr 1fr;
  }

  .hero-side {
    display: none;
  }

  .hero-main img {
    aspect-ratio: 16 / 10;
  }

  .hero-side .image-chip,
  .mosaic-small {
    min-height: auto;
  }

  .hero-note,
  .mosaic-note {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }

  .hero-note {
    display: none;
  }

  .section,
  .page-hero,
  .contact-hero,
  .cta-band,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .poster-section,
  .deep-section {
    padding: 72px 0;
  }

  .section.tight {
    padding-top: 48px;
  }

  .page-hero,
  .contact-hero {
    padding: 48px 0 56px;
    gap: 30px;
  }

  .quick-buy,
  .proof-row,
  .occasion-grid,
  .product-grid,
  .compare-grid,
  .storage-grid,
  .contact-grid,
  .metric-strip,
  .media-grid,
  .lifecycle,
  .timeline,
  .guide-grid,
  .scene-grid,
  .consult-panel {
    grid-template-columns: 1fr;
  }

  .product-grid.mobile-scroll {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-right: -16px;
    padding: 2px 16px 12px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid.mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-grid.mobile-scroll .product-card {
    min-width: 82vw;
    scroll-snap-align: start;
  }

  .scene-card {
    min-height: 330px;
  }

  .photo-frame figcaption {
    max-width: 100%;
  }

  .image-band img {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .image-copy {
    padding: 50px 24px;
  }

  .media-grid img {
    min-height: 260px;
  }

  .media-grid picture:nth-child(2) {
    margin-top: 0;
  }

  .lifecycle article,
  .timeline article {
    min-height: auto;
  }

  .lifecycle-media .step-photo {
    aspect-ratio: 16 / 9;
  }

  .filter-row {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px;
    border-radius: var(--radius);
    scrollbar-width: none;
  }

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

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

  .order-script {
    padding: 28px 20px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    margin-bottom: 54px;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-buy {
    display: flex;
  }

  .back-top {
    bottom: 82px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: 36px;
  }

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

  .hero-tags li:last-child {
    grid-column: 1 / -1;
  }
}

/* Hero rollback to abc0f773278b83e6678ed9809324a35096b248ce. */
.hero {
  position: relative;
  display: block;
  min-height: 660px;
  height: calc(100svh - 72px);
  max-height: 780px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero > picture,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 17, 0.92), rgba(13, 22, 17, 0.6) 47%, rgba(13, 22, 17, 0.1)),
    linear-gradient(0deg, rgba(13, 22, 17, 0.66), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 12px);
  background-size: auto, auto, 16px 16px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding: 64px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero .kicker {
  gap: 9px;
  margin-bottom: 16px;
  color: #f0c978;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(240, 201, 120, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero .kicker::before {
  width: 28px;
}

.hero h1 {
  max-width: 880px;
  margin-top: 0;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.04;
}

.hero-lede {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero .button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
}

.hero .button::after {
  display: none;
}

.hero .button.primary {
  color: #241507;
  background: linear-gradient(180deg, #d79a32, var(--gold));
  border-color: rgba(36, 21, 7, 0.08);
}

.hero .button.ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-proof {
  max-width: 820px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(8px);
}

.hero-proof div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt {
  color: var(--white);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-proof dd {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (max-width: 780px) {
  .hero {
    min-height: 690px;
    height: auto;
    max-height: none;
  }

  .hero-bg {
    object-position: 63% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(13, 22, 17, 0.78), rgba(13, 22, 17, 0.46) 48%, rgba(13, 22, 17, 0.9)),
      linear-gradient(90deg, rgba(13, 22, 17, 0.4), transparent);
  }

  .hero-inner {
    min-height: 690px;
    width: min(100% - 32px, var(--max));
    padding: 38px 0 110px;
    justify-content: end;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-proof div,
  .hero-proof div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .hero-proof dt {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
