:root {
  --ivory: #f5f0e7;
  --cream: #fbf8f2;
  --paper: #fffdf9;
  --forest: #173b31;
  --forest-deep: #0e2b24;
  --forest-soft: #31574b;
  --gold: #936828;
  --gold-light: #d9bd82;
  --ink: #20312b;
  --muted: #6d756f;
  --line: rgba(32, 49, 43, 0.16);
  --white-line: rgba(255, 253, 249, 0.2);
  --shadow: 0 28px 70px rgba(24, 48, 39, 0.12);
  --serif: "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-language="zh"] {
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

::selection {
  background: var(--gold-light);
  color: var(--forest-deep);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--forest-deep);
  color: var(--paper);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 82px);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}

.section-heading--compact {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-heading--compact h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading--left h2 {
  max-width: 560px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 350ms var(--ease),
    background-color 350ms var(--ease),
    border-color 350ms var(--ease),
    color 350ms var(--ease);
}

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

.button--small {
  min-height: 42px;
  padding: 10px 19px;
}

.button--gold {
  background: var(--gold);
  color: var(--paper);
}

.button--gold:hover {
  background: #a57939;
}

.button--dark {
  background: var(--forest);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--forest-deep);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
}

.image-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--forest-soft);
  background-position: center;
  background-size: cover;
}

.image-panel::before,
.image-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.image-panel::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 18%, rgba(235, 223, 200, 0.58), transparent 24%),
    radial-gradient(circle at 25% 75%, rgba(181, 137, 67, 0.32), transparent 32%),
    linear-gradient(135deg, #496b5d 0%, #1c4035 46%, #0e2b24 100%);
}

.image-panel::after {
  inset: auto -10% -38% 26%;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 253, 249, 0.035),
    0 0 0 78px rgba(255, 253, 249, 0.025);
}

.image-panel--loaded::before,
.image-panel--loaded::after {
  opacity: 0;
}

.image-panel--loaded .image-panel__fallback {
  opacity: 0;
}

.image-panel__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 253, 249, 0.58);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: opacity 500ms ease;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(8, 26, 21, 0.58), rgba(8, 26, 21, 0.08));
  color: var(--paper);
  transition:
    height 350ms var(--ease),
    color 350ms ease,
    background-color 350ms ease,
    box-shadow 350ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: transparent;
  background: rgba(251, 248, 242, 0.94);
  box-shadow: 0 12px 34px rgba(23, 59, 49, 0.08);
  color: var(--forest);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand__logo {
  width: 72px;
  height: 68px;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand__logo {
  width: 88px;
  height: 82px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-navigation > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 300ms var(--ease);
}

.primary-navigation > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
  color: inherit;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: none;
}

.language-selector__trigger {
  display: inline-flex;
  min-width: 66px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(14, 43, 36, 0.12);
  color: inherit;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition:
    background-color 250ms var(--ease),
    border-color 250ms var(--ease);
}

.site-header.is-scrolled .language-selector__trigger {
  background: rgba(255, 253, 249, 0.68);
}

.language-selector__trigger:hover,
.language-selector.is-open .language-selector__trigger {
  border-color: var(--gold);
  background: rgba(147, 104, 40, 0.12);
}

.language-selector__trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.language-selector__chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms var(--ease);
}

.language-selector.is-open .language-selector__chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-selector__menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 120;
  display: grid;
  width: 244px;
  max-height: min(456px, calc(100vh - 112px));
  gap: 2px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(147, 104, 40, 0.24);
  border-radius: 4px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 24px 58px rgba(14, 43, 36, 0.18);
  color: var(--forest);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.language-selector__menu[hidden] {
  display: none;
}

.language-selector__menu button {
  display: grid;
  min-height: 42px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  padding: 9px 12px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.language-selector__menu button:hover,
.language-selector__menu button:focus-visible,
.language-selector__menu button.is-active {
  background: var(--ivory);
}

.language-selector__menu button.is-active {
  box-shadow: inset 2px 0 0 var(--gold);
}

.language-selector__menu button span:first-child {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.language-selector__menu button span:last-child {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(1050px, 115svh);
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.prelaunch-banner {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 4;
  border-block: 1px solid rgba(217, 189, 130, 0.38);
  background: rgba(14, 43, 36, 0.92);
  color: var(--paper);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.prelaunch-banner__inner {
  display: flex;
  min-height: 48px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-block: 9px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.prelaunch-banner strong {
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prelaunch-banner a {
  border-bottom: 1px solid rgba(217, 189, 130, 0.58);
  color: var(--gold-light);
}

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

.hero__media {
  background-color: #f6f0e7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__media::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(232, 216, 185, 0.52), transparent 21%),
    linear-gradient(135deg, #668071 0%, #22483c 42%, #0e2b24 100%);
}

.hero__media .image-panel__fallback {
  right: 6vw;
  left: auto;
  width: 42vw;
  color: rgba(255, 253, 249, 0.08);
  font-size: min(42vw, 36rem);
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 26, 21, 0.8) 0%, rgba(8, 26, 21, 0.42) 52%, rgba(8, 26, 21, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 26, 21, 0.7) 0%, transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: clamp(300px, 26vw, 360px);
}

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

.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 9.3vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  position: relative;
  padding-bottom: 6px;
  color: rgba(255, 253, 249, 0.88);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.55);
}

.hero__scroll {
  position: absolute;
  right: 3.5vw;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--gold-light), transparent);
}

/* Collections */
.collections {
  background:
    radial-gradient(circle at 2% 10%, rgba(184, 138, 69, 0.08), transparent 20%),
    var(--cream);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  transition:
    transform 500ms var(--ease),
    box-shadow 500ms var(--ease),
    border-color 500ms var(--ease);
}

.collection-card:hover {
  transform: translateY(-10px);
  border-color: rgba(184, 138, 69, 0.45);
  box-shadow: var(--shadow);
}

.collection-card--featured {
  margin-top: -24px;
  border-color: rgba(184, 138, 69, 0.52);
}

.collection-card--featured::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: var(--gold);
  content: "";
}

.collection-card__image {
  aspect-ratio: 16 / 10;
  background-color: var(--forest-soft);
}

.collection-card:nth-child(2) .collection-card__image::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(239, 227, 204, 0.48), transparent 23%),
    radial-gradient(circle at 82% 68%, rgba(193, 151, 86, 0.28), transparent 27%),
    linear-gradient(135deg, #7c8a78 0%, #345248 46%, #16372e 100%);
}

.collection-card:nth-child(3) .collection-card__image::before {
  background:
    radial-gradient(circle at 78% 15%, rgba(232, 217, 194, 0.5), transparent 24%),
    radial-gradient(circle at 28% 70%, rgba(182, 137, 67, 0.33), transparent 29%),
    linear-gradient(145deg, #606f65 0%, #28483d 45%, #112e27 100%);
}

.collection-card__body {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
}

.collection-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.collection-card__number {
  margin: 0;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.collection-card h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: clamp(2.45rem, 3.5vw, 3.35rem);
  letter-spacing: -0.025em;
}

.collection-card__ideal {
  min-height: 54px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.collection-card__ideal span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-card__details {
  padding-block: 26px;
  border-block: 1px solid var(--line);
}

.collection-card__details h4 {
  margin-bottom: 16px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collection-card__details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-card__details li {
  position: relative;
  padding-left: 18px;
  color: #39473f;
  font-size: 0.86rem;
}

.collection-card__details li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.collection-card__status {
  width: 100%;
  margin: auto 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(184, 138, 69, 0.42);
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.collection-card__concept-note {
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: center;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.collection-card__details .collection-specs {
  gap: 13px;
}

.collection-card__details .collection-spec {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding-left: 0;
}

.collection-card__details .collection-spec::before {
  display: none;
}

.collection-spec__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(176, 132, 68, 0.36);
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.72);
  color: var(--gold);
}

.collection-spec__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.collection-spec__copy {
  color: #39473f;
  font-size: 0.82rem;
  line-height: 1.4;
}

.collection-spec__copy strong {
  display: inline-block;
  min-width: 22px;
  margin-right: 2px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.collection-card__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 24px 30px;
}

.collection-card__benefits span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
}

.collection-card .button {
  width: 100%;
  margin-top: auto;
}

/* Shared package benefits */
.package-benefits {
  padding-top: 0;
  background: var(--cream);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.benefit {
  min-height: 220px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit__number {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.benefit p {
  max-width: 220px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
}

/* Real Touch */
.real-touch {
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
}

.real-touch__inner {
  max-width: 850px;
  text-align: center;
}

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

.real-touch h2 {
  margin-bottom: 36px;
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.real-touch__inner > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 253, 249, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.55;
}

.real-touch__botanical {
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 189, 130, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.real-touch__botanical::before,
.real-touch__botanical::after {
  position: absolute;
  border: 1px solid rgba(217, 189, 130, 0.16);
  border-radius: 50% 0 50% 50%;
  content: "";
}

.real-touch__botanical::before {
  inset: 20% 18% 48% 48%;
  transform: rotate(25deg);
}

.real-touch__botanical::after {
  inset: 48% 48% 18% 20%;
  transform: rotate(-12deg);
}

.real-touch__botanical--left {
  bottom: -28%;
  left: -12%;
}

.real-touch__botanical--right {
  top: -30%;
  right: -12%;
}

/* Why Silybum */
.why-silybum {
  background: var(--paper);
}

.why-silybum__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.reason__number {
  margin: 3px 0 0;
  color: var(--gold);
  font-family: var(--serif);
}

.reason h3 {
  margin-bottom: 7px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.reason div p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Notes */
.notes {
  padding-top: 0;
  background: var(--paper);
}

.notes__box {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(42px, 6vw, 80px);
  background: var(--ivory);
}

.notes h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.notes ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notes li {
  position: relative;
  padding-left: 24px;
  color: #4d5c55;
  font-size: 0.9rem;
}

.notes li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
  content: "";
}

/* Pre-launch */
.prelaunch {
  background: var(--ivory);
}

.prelaunch__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(184, 138, 69, 0.28);
  background:
    radial-gradient(circle at 92% 5%, rgba(217, 189, 130, 0.14), transparent 34%),
    var(--paper);
  box-shadow: 0 24px 72px rgba(23, 59, 49, 0.08);
}

.prelaunch__panel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 3px;
  background: var(--gold);
  content: "";
}

.prelaunch h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
}

.prelaunch__intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.prelaunch__list {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin: 36px 0 40px;
  padding: 0;
  list-style: none;
}

.prelaunch__list li {
  position: relative;
  padding-left: 26px;
  color: #4d5c55;
  font-size: 0.9rem;
}

.prelaunch__list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--gold);
  content: "";
}

/* Legacy contact styles retained for the future post-registration version. */
.contact {
  background: var(--ivory);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: 120px;
}

.contact h2 {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--forest);
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
}

.contact__intro > p:not(.eyebrow):not(.contact__location) {
  max-width: 430px;
  color: var(--muted);
}

.contact__location {
  margin-top: 40px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__email-block {
  display: grid;
  width: fit-content;
  gap: 7px;
  margin-top: 18px;
}

.contact__email-label {
  color: var(--forest);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__email-link {
  border-bottom: 1px solid rgba(184, 138, 69, 0.42);
  color: var(--forest-soft);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.contact__email-link:hover,
.contact__email-link:focus-visible {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(184, 138, 69, 0.22);
  background: var(--paper);
  box-shadow: 0 22px 62px rgba(23, 59, 49, 0.07);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 300;
  transition: border-color 200ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  min-height: 108px;
  padding-block: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-form .button {
  width: fit-content;
  min-width: 240px;
  margin-top: 8px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--forest-soft);
  font-size: 0.82rem;
}

.form-notice {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  padding-block: 64px;
  background: var(--forest-deep);
  color: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
}

.brand--footer {
  width: 132px;
  height: 132px;
}

.brand--footer .brand__logo {
  width: 100%;
  height: 100%;
}

.site-footer__details {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer__status {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__email {
  border-bottom: 1px solid rgba(184, 138, 69, 0.48);
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.site-footer__email:hover,
.site-footer__email:focus-visible {
  border-bottom-color: var(--gold-light);
  color: var(--gold-light);
}

.site-footer__legal {
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-footer__legal:hover,
.site-footer__legal:focus-visible {
  color: var(--gold-light);
}

/* Legal page */
.legal-page {
  background: var(--cream);
}

.legal-header {
  position: relative;
  height: var(--header-height);
  border-bottom: 1px solid rgba(147, 104, 40, 0.18);
  background: rgba(251, 248, 242, 0.96);
  color: var(--forest);
}

.legal-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand {
  width: 78px;
  height: 78px;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-header__back::before {
  width: 26px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 220ms var(--ease);
}

.legal-header__back:hover::before {
  width: 38px;
}

.legal-hero {
  padding-block: clamp(76px, 10vw, 140px) clamp(62px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 189, 130, 0.2), transparent 28%),
    var(--ivory);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: end;
}

.legal-hero__inner > * {
  min-width: 0;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.legal-hero__intro {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.legal-status {
  padding: 26px;
  border: 1px solid rgba(147, 104, 40, 0.3);
  background: rgba(255, 253, 249, 0.7);
}

.legal-status strong,
.legal-status span {
  display: block;
}

.legal-status strong {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-status span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 140px);
  padding-block: clamp(72px, 9vw, 130px);
}

.legal-toc {
  position: sticky;
  top: 40px;
  align-self: start;
  padding-top: 8px;
}

.legal-toc__label {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
}

.legal-toc li {
  counter-increment: legal-toc;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 30px 1fr;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  transition: color 180ms ease;
}

.legal-toc a::before {
  color: var(--gold);
  content: counter(legal-toc, decimal-leading-zero);
  font-family: var(--serif);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--forest);
}

.legal-content {
  max-width: 860px;
}

.legal-alert {
  margin-bottom: 48px;
  padding: 24px 26px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  color: #4d5c55;
  font-size: 0.82rem;
}

.legal-section {
  padding-block: 40px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 28px;
}

.legal-section:first-of-type {
  border-top: 0;
}

.legal-section__heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.legal-section__number {
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.legal-section h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: #53615b;
  font-size: 0.91rem;
  line-height: 1.85;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-placeholder {
  display: inline;
  padding: 2px 7px;
  background: rgba(217, 189, 130, 0.23);
  color: var(--forest);
  font-weight: 500;
}

.legal-contact-box {
  margin-top: 44px;
  padding: clamp(28px, 5vw, 50px);
  background: var(--forest-deep);
  color: var(--paper);
}

.legal-contact-box h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-contact-box p {
  color: rgba(255, 253, 249, 0.68);
}

.legal-contact-box a {
  color: var(--gold-light);
  overflow-wrap: anywhere;
}

.legal-page .site-footer__inner {
  grid-template-columns: 1fr auto;
}

.legal-page .site-footer p:last-child {
  justify-self: end;
}

.legal-footer__details {
  justify-items: start;
  text-align: left;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

.js .collection-grid .reveal:nth-child(2),
.js .benefit-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.js .collection-grid .reveal:nth-child(3),
.js .benefit-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.js .benefit-grid .reveal:nth-child(4) {
  transition-delay: 270ms;
}

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 40px, 920px);
  }

  .primary-navigation {
    gap: 18px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
    gap: 34px;
  }

  .collection-card,
  .collection-card--featured {
    display: block;
    margin-top: 0;
  }

  .collection-card__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .collection-card__body {
    min-height: 640px;
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 96px 24px 36px;
    overflow-y: auto;
    opacity: 0;
    background: var(--forest-deep);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    transition:
      opacity 350ms var(--ease),
      visibility 0s linear 350ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transition:
      opacity 350ms var(--ease),
      visibility 0s linear 0s;
  }

  .primary-navigation .button {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .language-selector {
    width: min(320px, calc(100vw - 48px));
    margin-top: 2px;
    color: var(--paper);
  }

  .language-selector__trigger {
    min-width: 82px;
    margin-inline: auto;
    background: rgba(255, 253, 249, 0.06);
  }

  .site-header.is-scrolled .language-selector__trigger {
    background: rgba(255, 253, 249, 0.06);
  }

  .language-selector__menu {
    position: static;
    width: 100%;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    border-color: rgba(255, 253, 249, 0.18);
    background: rgba(255, 253, 249, 0.06);
    box-shadow: none;
    color: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .language-selector__menu button:hover,
  .language-selector__menu button:focus-visible,
  .language-selector__menu button.is-active {
    background: rgba(217, 189, 130, 0.16);
  }

  .language-selector__menu button.is-active {
    box-shadow: inset 2px 0 0 var(--gold-light);
  }

  .language-selector__menu button span:first-child {
    color: var(--gold-light);
  }

  .site-header:has(.primary-navigation.is-open) {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    color: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header:has(.primary-navigation.is-open) .brand {
    position: relative;
    z-index: 102;
  }

  .hero h1 {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero {
    min-height: calc(100vw + 650px);
  }

  .hero__media {
    background-position: center top;
    background-size: 100% auto;
  }

  .hero__content {
    padding-top: calc(100vw + 48px);
    padding-bottom: 74px;
  }

  .hero__scroll {
    display: none;
  }

  .collection-card,
  .collection-card--featured {
    grid-template-columns: 1fr;
  }

  .collection-card__image {
    aspect-ratio: 16 / 10;
  }

  .collection-card__body {
    min-height: auto;
  }

  .why-silybum__layout,
  .notes__box,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .contact__intro {
    position: static;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__details {
    justify-items: start;
    text-align: left;
  }

  .site-footer p:last-child {
    justify-self: start;
  }

  .legal-header .brand {
    width: 66px;
    height: 66px;
  }

  .legal-header__back {
    font-size: 0.61rem;
  }

  .legal-hero__inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__inner {
    gap: 38px;
  }

  .legal-layout {
    gap: 42px;
  }

  .legal-toc {
    position: static;
    padding: 24px;
    background: var(--ivory);
  }

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

  .legal-page .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .legal-page .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section {
    padding-block: 82px;
  }

  .legal-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-section__heading {
    grid-template-columns: 36px 1fr;
  }

  .site-header .brand__logo {
    width: 72px;
    height: 68px;
  }

  .hero {
    min-height: calc(100vw + 650px);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 26, 21, 0.76), rgba(8, 26, 21, 0.25)),
      linear-gradient(0deg, rgba(8, 26, 21, 0.78), transparent 60%);
  }

  .hero__content {
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 18vw, 5.2rem);
    line-height: 0.86;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .section-heading h2,
  .section-heading--compact h2 {
    font-size: 3rem;
  }

  .collection-card__image {
    aspect-ratio: 16 / 10;
  }

  .collection-card__body {
    padding: 28px 24px 30px;
  }

  .collection-card h3 {
    font-size: 2.55rem;
  }

  .collection-card__ideal {
    min-height: 0;
  }

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

  .benefit {
    display: grid;
    min-height: auto;
    grid-template-columns: 42px 1fr;
    align-items: start;
    padding: 26px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit__number {
    margin: 3px 0 0;
  }

  .benefit p {
    font-size: 1.3rem;
  }

  .real-touch h2 {
    font-size: 3.8rem;
  }

  .real-touch__inner > p:last-child {
    font-size: 1.3rem;
  }

  .notes__box {
    padding: 34px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-form .button {
    width: 100%;
    min-width: 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
