:root {
  --forest: #173d32;
  --forest-dark: #0f2b24;
  --forest-mid: #245446;
  --clay: #c86c3a;
  --brass: #b48a4a;
  --ivory: #f2e8d8;
  --paper: #fbf7ef;
  --ink: #24251f;
  --muted: #68685f;
  --line: rgba(36, 37, 31, .16);
  --serif: Iowan Old Style, Baskerville, 'Times New Roman', serif;
  --sans: Aptos, Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow: 0 32px 80px rgba(27, 30, 24, .16);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: 12px; transform: translateY(-140%); background: #fff; padding: 10px 16px; border-radius: 6px; }
.skip-link:focus { transform: none; }
.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: fixed; z-index: 100; left: 22px; right: 22px; top: 18px; min-height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 12px 10px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(251,247,239,.84); box-shadow: 0 12px 40px rgba(25,31,25,.08); backdrop-filter: blur(18px); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.site-header.is-scrolled { background: rgba(251,247,239,.95); box-shadow: 0 14px 42px rgba(25,31,25,.12); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; width: max-content; }
.brand img { border-radius: 11px; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-family: var(--serif); letter-spacing: .14em; font-size: 16px; }
.brand small { margin-top: 4px; font-size: 8px; letter-spacing: .18em; font-weight: 700; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; text-decoration: none; font-size: 13px; font-weight: 700; color: #494b43; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--clay); transition: right .25s var(--ease); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; }
.menu-button { display: none; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 0 25px; font-weight: 800; font-size: 14px; letter-spacing: .02em; cursor: pointer; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 44px; padding: 0 19px; font-size: 12px; }
.button-dark { color: #fff; background: var(--forest); box-shadow: 0 10px 24px rgba(23,61,50,.18); }
.button-dark:hover { background: var(--forest-dark); }
.button-clay { color: #fff; background: var(--clay); box-shadow: 0 12px 30px rgba(200,108,58,.24); }
.button-clay:hover { background: #ad572e; }
.button-ivory { color: var(--forest); background: var(--ivory); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; border: 0; background: transparent; font-weight: 800; font-size: 14px; text-decoration: none; cursor: pointer; }
.text-link span { font-size: 18px; transition: transform .2s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }

.hero { min-height: 810px; padding: 132px clamp(24px, 5vw, 84px) 62px; display: grid; grid-template-columns: minmax(340px, .82fr) minmax(480px, 1.18fr); align-items: center; gap: clamp(34px, 6vw, 92px); overflow: hidden; background: radial-gradient(circle at 77% 36%, rgba(200,108,58,.12), transparent 30%), linear-gradient(180deg, #f8f0e4 0%, var(--paper) 100%); }
.hero-copy { max-width: 620px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--forest); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 900; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
.eyebrow.light { color: #f6e7cf; }
.launch-badge { width: max-content; display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; padding: 8px 12px; border: 1px solid rgba(23,61,50,.18); border-radius: 999px; color: var(--forest); background: rgba(255,255,255,.55); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.launch-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(200,108,58,.14); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
h1 { max-width: 660px; margin-bottom: 28px; font-size: clamp(54px, 6.2vw, 92px); }
h2 { font-size: clamp(43px, 5vw, 74px); }
h3 { line-height: 1.14; }
.hero-lede { max-width: 590px; margin-bottom: 30px; color: #5f6259; font-size: 17px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.hero-facts { display: flex; gap: 0; margin: 48px 0 0; }
.hero-facts div { min-width: 120px; padding: 0 22px; border-left: 1px solid var(--line); }
.hero-facts div:first-child { padding-left: 0; border-left: 0; }
.hero-facts dt { font-family: var(--serif); font-size: 31px; color: var(--forest); line-height: 1; }
.hero-facts dd { max-width: 95px; margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.25; text-transform: uppercase; letter-spacing: .06em; }
.hero-visual { position: relative; transform-style: preserve-3d; transition: transform .25s var(--ease); }
.hero-visual::before { content: ''; position: absolute; inset: 12% 4% -9% 18%; border-radius: 50%; background: rgba(23,61,50,.13); filter: blur(50px); }
.hero-visual picture { position: relative; display: block; border-radius: 42% 42% 18px 18px; overflow: hidden; box-shadow: var(--shadow); background: #ead8bf; }
.hero-visual img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.hero-note { position: absolute; right: -18px; bottom: -24px; display: flex; align-items: flex-start; gap: 14px; width: 220px; padding: 16px 18px; border-radius: 13px; color: #fff; background: var(--forest); box-shadow: 0 15px 34px rgba(23,61,50,.25); transform: translateZ(30px); }
.hero-note span { color: var(--brass); font-family: var(--serif); font-size: 25px; }
.hero-note p { margin: 0; font-size: 12px; line-height: 1.35; }

.signal-strip { display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,60px); min-height: 72px; padding: 16px 26px; color: #f8ecd9; background: var(--forest); }
.signal-strip p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }

.section { padding: clamp(82px, 10vw, 150px) clamp(24px, 6vw, 108px); }
.section-heading { max-width: 900px; margin-bottom: 58px; }
.section-heading h2 { max-width: 850px; margin-bottom: 20px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { margin-left: auto; margin-right: auto; }

.story { background: #fbf7ef; }
.story-grid { display: grid; grid-template-columns: minmax(340px,.9fr) minmax(420px,1.1fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.reference-card { position: sticky; top: 112px; margin: 0; }
.reference-card picture { display: block; overflow: hidden; border-radius: 240px 240px 18px 18px; background: #decab1; }
.reference-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.reference-card figcaption { padding: 13px 4px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.story-copy { padding-top: 10px; }
.story-copy .lead { margin-bottom: 28px; color: var(--ink); font-family: var(--serif); font-size: clamp(26px,3vw,38px); line-height: 1.2; }
.story-copy > p:not(.lead) { color: var(--muted); }
.quote-block { margin: 42px 0; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-block p { margin-bottom: 5px; color: var(--forest); font-family: var(--serif); font-size: 30px; font-style: italic; }
.quote-block span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.feature-lines > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-lines span { color: var(--clay); font-family: var(--serif); font-size: 20px; }
.feature-lines p { margin: 0; color: var(--muted); }
.feature-lines b { color: var(--ink); }

.pack-section { background: #eee2d1; }
.pack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1250px; margin: auto; align-items: stretch; }
.pack-card { position: relative; min-height: 390px; padding: 34px 30px 28px; display: flex; flex-direction: column; border: 1px solid rgba(36,37,31,.16); border-radius: 18px; background: rgba(251,247,239,.66); cursor: pointer; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.pack-card:hover, .pack-card:focus-within { transform: translateY(-7px); box-shadow: 0 24px 46px rgba(43,43,35,.12); }
.pack-card.featured { color: #fff; background: var(--forest); border-color: var(--forest); }
.pack-card.is-selected { box-shadow: inset 0 0 0 3px var(--clay), 0 24px 52px rgba(23,61,50,.18); }
.pack-code { position: relative; z-index: 1; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.featured .pack-code { color: #c7d1c8; }
.pack-count { position: absolute; right: 18px; top: -28px; color: rgba(180,138,74,.25); font-family: var(--serif); font-size: 190px; line-height: 1; }
.pack-card h3 { position: relative; margin-top: auto; margin-bottom: 14px; font-family: var(--serif); font-size: 38px; font-weight: 500; }
.pack-card > p:not(.mini-label) { position: relative; min-height: 75px; margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.pack-card.featured > p:not(.mini-label) { color: #cfdbd5; }
.mini-label { position: relative; width: max-content; margin: 20px 0 auto; padding: 5px 9px; border-radius: 99px; color: #fff; background: var(--clay); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.pack-select { position: relative; display: flex; justify-content: space-between; align-items: center; min-height: 44px; padding: 0; border: 0; border-top: 1px solid currentColor; color: inherit; background: transparent; cursor: pointer; font-size: 12px; font-weight: 900; }
.selection-status { margin: 26px auto 0; text-align: center; color: var(--muted); font-size: 12px; }

.viewer-360 { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 18% 5%, rgba(200,108,58,.18), transparent 29%), linear-gradient(145deg, #102c25 0%, #173d32 52%, #0d251f 100%); }
.viewer-360::before { content: ''; position: absolute; inset: 0; opacity: .15; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.viewer-360-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(340px, .62fr); align-items: end; column-gap: 8vw; margin-bottom: 52px; }
.viewer-360-heading h2 { margin: 0; max-width: 760px; }
.viewer-360-heading > p:last-child { margin: 0 0 7px; color: #c1cec8; font-size: 14px; }
.viewer-360-heading .eyebrow { grid-column: 1/-1; }
.viewer-360-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(520px, 1.18fr) minmax(350px, .82fr); gap: clamp(30px, 5vw, 74px); align-items: start; }
.viewer-stage { position: sticky; top: 112px; min-width: 0; height: min(68vw, 690px); min-height: 570px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: radial-gradient(circle at 55% 42%, rgba(242,232,216,.18), transparent 42%), rgba(8,27,22,.64); box-shadow: 0 38px 95px rgba(0,0,0,.26); touch-action: none; isolation: isolate; }
.viewer-stage::after { content: ''; position: absolute; left: 13%; right: 13%; bottom: 13%; height: 12%; border-radius: 50%; background: rgba(0,0,0,.24); filter: blur(24px); transform: perspective(300px) rotateX(64deg); pointer-events: none; z-index: -1; }
.viewer-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: grab; }
.viewer-stage canvas:active { cursor: grabbing; }
.viewer-stage canvas:focus-visible { outline: 3px solid var(--clay); outline-offset: -7px; border-radius: 26px; }
.viewer-loading { position: absolute; inset: 0; z-index: 6; display: grid; place-content: center; justify-items: center; gap: 14px; color: #dbe4df; background: #102d26; transition: opacity .35s var(--ease), visibility .35s; }
.viewer-loading.is-ready { opacity: 0; visibility: hidden; }
.viewer-loading i { width: 42px; height: 42px; border: 2px solid rgba(255,255,255,.18); border-top-color: var(--clay); border-radius: 50%; animation: viewer-spin .9s linear infinite; }
.viewer-loading span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
@keyframes viewer-spin { to { transform: rotate(360deg); } }
.viewer-fallback { position: absolute; inset: 0; display: none; }
.viewer-fallback img { width: 100%; height: 100%; object-fit: cover; }
.viewer-stage.is-fallback canvas, .viewer-stage.is-fallback .model-wordmark, .viewer-stage.is-fallback .viewer-hint { display: none; }
.viewer-stage.is-fallback .viewer-fallback { display: block; }
.model-wordmark { position: absolute; left: 50%; top: 40%; z-index: 2; display: flex; flex-direction: column; align-items: center; color: #d6ae62; line-height: 1.15; pointer-events: none; text-shadow: 0 2px 8px rgba(0,0,0,.35); transform: translate(-50%,-50%); transform-origin: center; transition: opacity .15s linear; }
.model-wordmark b { font-family: var(--serif); font-size: clamp(14px, 1.8vw, 23px); font-weight: 500; letter-spacing: .12em; white-space: nowrap; }
.model-wordmark small { margin-top: 5px; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.viewer-hint { position: absolute; left: 20px; top: 20px; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d5ded9; background: rgba(10,34,28,.63); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.viewer-hint span { color: var(--brass); font-size: 16px; }
.viewer-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.viewer-toolbar { position: absolute; z-index: 4; left: 20px; right: 20px; bottom: 20px; display: flex; justify-content: center; gap: 7px; pointer-events: none; }
.viewer-toolbar button { min-width: 45px; min-height: 45px; padding: 0 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 11px; color: #fff; background: rgba(9,33,27,.78); font-size: 10px; font-weight: 900; cursor: pointer; backdrop-filter: blur(15px); pointer-events: auto; transition: background .2s var(--ease), transform .2s var(--ease); }
.viewer-toolbar button:hover { background: var(--clay); transform: translateY(-2px); }
.viewer-toolbar button[aria-pressed="true"] { color: var(--forest-dark); background: var(--ivory); }
.viewer-details { min-width: 0; }
.viewer-variants { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; padding: 6px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.055); }
.viewer-variants button { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 11px; color: #adbbb4; background: transparent; font-size: 11px; font-weight: 900; cursor: pointer; }
.viewer-variants button span { color: var(--brass); font-family: var(--serif); font-size: 17px; }
.viewer-variants button[aria-pressed="true"] { color: var(--forest-dark); background: var(--ivory); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.viewer-variants button[aria-pressed="true"] span { color: var(--clay); }
.viewer-product-copy { padding: 38px 0 28px; border-bottom: 1px solid rgba(255,255,255,.16); }
.viewer-product-copy .mini-label { margin: 0 0 16px; }
.viewer-product-copy h3 { margin-bottom: 17px; font-family: var(--serif); font-size: clamp(43px, 5vw, 66px); font-weight: 500; }
.viewer-product-copy > p:last-child { color: #c1cec8; font-size: 13px; }
.viewer-specs { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.viewer-specs div { padding: 18px 12px 18px 0; }
.viewer-specs dt { color: #869a91; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.viewer-specs dd { margin: 5px 0 0; font-size: 11px; }
.viewer-part-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 28px 0 18px; }
.viewer-part-picker button { min-height: 67px; display: grid; grid-template-columns: 12px 1fr; align-items: center; gap: 11px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; color: #fff; background: rgba(255,255,255,.035); text-align: left; cursor: pointer; }
.viewer-part-picker button i { width: 8px; height: 8px; border: 2px solid var(--brass); border-radius: 50%; }
.viewer-part-picker button span { display: flex; flex-direction: column; line-height: 1.22; }
.viewer-part-picker button b { font-size: 11px; }
.viewer-part-picker button small { margin-top: 4px; color: #879b92; font-size: 8px; }
.viewer-part-picker button[aria-pressed="true"] { border-color: var(--clay); background: rgba(200,108,58,.14); }
.viewer-part-picker button[aria-pressed="true"] i { border-color: var(--clay); background: var(--clay); box-shadow: 0 0 0 4px rgba(200,108,58,.16); }
.part-description { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; border-left: 3px solid var(--clay); border-radius: 0 12px 12px 0; color: var(--ink); background: var(--ivory); }
.part-description > span { color: var(--clay); font-family: var(--serif); font-size: 24px; }
.part-description h4 { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.part-description p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.viewer-disclosure { margin: 16px 0 0; color: #84988f; font-size: 8px; line-height: 1.55; }

.exploded { display: grid; grid-template-columns: minmax(330px,.74fr) minmax(520px,1.26fr); gap: clamp(36px,6vw,90px); align-items: center; color: #fff; background: var(--forest-dark); }
.exploded-copy h2 { margin-bottom: 24px; }
.exploded-copy > p:not(.eyebrow) { max-width: 520px; color: #becbc5; }
.component-list { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.17); }
.component { width: 100%; display: grid; grid-template-columns: 42px 1fr; padding: 16px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.17); color: #9fb1aa; background: transparent; text-align: left; cursor: pointer; }
.component > span { grid-row: span 2; color: var(--brass); font-family: var(--serif); font-size: 18px; }
.component b { color: #fff; }
.component small { font-size: 11px; }
.component.is-active { padding-left: 14px; color: #d9e1dc; background: linear-gradient(90deg, rgba(200,108,58,.2), transparent 72%); }
.exploded-stage { --fx: 15%; --fy: 18%; position: relative; min-width: 0; }
.exploded-stage picture { display: block; border-radius: 22px; overflow: hidden; background: #efe3d2; box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.exploded-stage img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.focus-ring { position: absolute; left: var(--fx); top: var(--fy); width: 88px; height: 88px; transform: translate(-50%,-50%); border: 2px solid var(--clay); border-radius: 50%; box-shadow: 0 0 0 10px rgba(200,108,58,.16); transition: left .45s var(--ease), top .45s var(--ease); pointer-events: none; }
.stage-label { position: absolute; left: 22px; bottom: 22px; display: flex; gap: 13px; align-items: flex-start; max-width: 290px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.4); border-radius: 12px; color: var(--ink); background: rgba(251,247,239,.92); backdrop-filter: blur(14px); }
.stage-label span { color: var(--clay); font-family: var(--serif); font-size: 24px; }
.stage-label p { margin: 0; line-height: 1.2; }
.stage-label small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }

.how { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { min-height: 280px; padding: 30px 28px 20px; border-right: 1px solid var(--line); }
.steps li:last-child { border-right: 0; }
.steps span { color: var(--clay); font-family: var(--serif); font-size: 22px; }
.steps h3 { margin-top: 70px; margin-bottom: 12px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.steps p { color: var(--muted); font-size: 13px; }
.care-note { margin-top: 34px; display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 24px 28px; border-radius: 12px; background: #ece3d5; }
.care-note b { color: var(--forest); }
.care-note p { margin: 0; color: var(--muted); font-size: 13px; }

.botanicals { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px,8vw,130px); color: #fff; background: #202921; }
.botanical-intro h2 { margin-bottom: 25px; }
.botanical-intro > p:last-child { color: #b7c0b8; }
.botanical-tabs { min-width: 0; }
.tab-list { display: flex; gap: 6px; margin-bottom: 28px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.08); }
.tab-list button { flex: 1; min-height: 46px; padding: 0 16px; border: 0; border-radius: 999px; color: #bfc8bf; background: transparent; font-size: 11px; font-weight: 900; cursor: pointer; }
.tab-list button[aria-selected="true"] { color: var(--forest-dark); background: var(--ivory); }
.tab-panel { min-height: 400px; padding: clamp(28px,4vw,50px); border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: rgba(255,255,255,.045); }
.tab-panel .latin { margin-bottom: 10px; color: var(--brass); font-style: italic; }
.tab-panel h3 { margin-bottom: 18px; font-family: var(--serif); font-size: 44px; font-weight: 500; }
.tab-panel > div > p:last-child { color: #c0c8c1; }
.tab-panel dl { margin: 40px 0 0; }
.tab-panel dl div { display: grid; grid-template-columns: 130px 1fr; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.14); }
.tab-panel dt { color: #849087; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.tab-panel dd { margin: 0; font-size: 12px; }

.standards { background: #f4eadb; }
.standards-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.standards-grid article { min-height: 260px; padding: 30px 26px; border-right: 1px solid var(--line); }
.standards-grid article:last-child { border-right: 0; }
.standards-grid span { color: var(--clay); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.standards-grid h3 { margin-top: 50px; margin-bottom: 14px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.standards-grid p { color: var(--muted); font-size: 13px; }
.evidence-bar { margin-top: 34px; padding: 30px; border-left: 5px solid var(--clay); background: rgba(255,255,255,.53); }
.evidence-bar p { margin-bottom: 18px; color: #5d5f57; font-size: 13px; }
.evidence-bar div { display: flex; flex-wrap: wrap; gap: 16px; }
.evidence-bar a { color: var(--forest); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.identity { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px,8vw,120px); align-items: center; background: var(--paper); }
.identity-logo { padding: 50px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.identity-copy h2 { margin-bottom: 22px; }
.identity-copy > p:not(.eyebrow,.copy-note) { color: var(--muted); }
.palette { display: grid; gap: 7px; margin-top: 30px; }
.palette button { display: flex; align-items: center; gap: 14px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.palette i { width: 54px; height: 42px; border-radius: 7px; background: var(--swatch); border: 1px solid rgba(0,0,0,.09); }
.palette span { display: flex; justify-content: space-between; flex: 1; padding-bottom: 7px; border-bottom: 1px solid var(--line); font-size: 12px; }
.palette b { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }
.copy-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; }

.inquiry { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px,8vw,130px); color: #fff; background: #17251f; }
.inquiry-intro { align-self: start; }
.inquiry-intro h2 { margin-bottom: 24px; }
.inquiry-intro > p:last-of-type { color: #b8c4bc; }
.inquiry-intro dl { margin: 44px 0 0; }
.inquiry-intro dl div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); }
.inquiry-intro dt { color: var(--brass); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.inquiry-intro dd { margin: 0; color: #d5ddd7; font-size: 12px; }
.inquiry-form { padding: clamp(24px,4vw,46px); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.045); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label, .dialog-fields label { display: grid; gap: 8px; }
.form-grid label > span, .dialog-fields label > span { color: #cbd5ce; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.form-grid small, .dialog-fields small { color: #89968e; font-size: 9px; }
.form-wide { grid-column: 1/-1; }
.form-grid input, .form-grid select, .form-grid textarea, .dialog-fields input { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; color: #fff; background: rgba(255,255,255,.06); font: inherit; font-size: 14px; outline: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.form-grid textarea { resize: vertical; }
.form-grid select { color-scheme: dark; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(180,138,74,.18); }
.form-grid [aria-invalid="true"], .dialog-fields [aria-invalid="true"] { border-color: #ef9b83; box-shadow: 0 0 0 3px rgba(239,155,131,.14); }
.field-error { color: #ffc2b1 !important; font-size: 10px !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: #c5d0c8; font-size: 11px; line-height: 1.55; }
.consent-row input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--clay); }
.consent-row.is-invalid { color: #ffc2b1; }
.form-action { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; }
.form-action .button { min-width: 170px; }
.form-status { margin: 0; color: #9eadA4; font-size: 10px; line-height: 1.45; }
.form-status.is-error { color: #ffc2b1; }
.form-status.is-success { color: #d6e5c0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.closing { min-height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; background: radial-gradient(circle at 50% 30%, rgba(200,108,58,.28), transparent 30%), var(--forest); }
.closing h2 { max-width: 1050px; margin: 0 auto 42px; }
footer { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 42px clamp(24px,6vw,108px); color: #c8d0ca; background: #0d211c; }
.brand-footer b { color: #fff; }
.brand-footer small { color: #9aaca4; }
footer > p { margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
footer .legal { grid-column: 1/-1; max-width: 900px; color: #7f928a; text-transform: none; letter-spacing: 0; }

.mobile-rail { display: none; }
.ritual-dialog { width: min(590px, calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; border: 0; border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 40px 130px rgba(0,0,0,.35); }
.ritual-dialog::backdrop { background: rgba(8,24,20,.72); backdrop-filter: blur(5px); }
.dialog-shell { position: relative; max-height: calc(100vh - 30px); padding: 46px; overflow-y: auto; }
.dialog-close { position: absolute; right: 18px; top: 16px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: #fff; font-size: 27px; cursor: pointer; }
.dialog-shell h2 { margin-bottom: 18px; font-size: 51px; }
.dialog-shell p { color: var(--muted); }
.dialog-options { display: grid; gap: 8px; margin: 28px 0; }
.dialog-options label { cursor: pointer; }
.dialog-options input { position: absolute; opacity: 0; pointer-events: none; }
.dialog-options span { display: flex; justify-content: space-between; align-items: center; padding: 17px 18px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.dialog-options small { color: var(--muted); }
.dialog-options input:checked + span { border-color: var(--forest); box-shadow: inset 0 0 0 2px var(--forest); }
.dialog-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 0 0 18px; }
.dialog-fields label:nth-child(3) { grid-column: 1/-1; }
.dialog-fields label > span { color: var(--muted); }
.dialog-fields input { min-height: 48px; color: var(--ink); border-color: var(--line); background: #fff; }
.dialog-fields input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(23,61,50,.12); }
.dialog-consent { margin: 4px 0 14px; color: var(--muted); }
.dialog-shell .form-status { min-height: 16px; margin-bottom: 10px; }
.dialog-submit { width: 100%; }
.dialog-submit[disabled], .inquiry-form button[disabled] { cursor: wait; opacity: .62; }
.dialog-success { padding: 50px 0 20px; text-align: center; }
.dialog-success > span { display: grid; place-items: center; width: 72px; height: 72px; margin: auto auto 22px; border-radius: 50%; color: #fff; background: var(--forest); font-size: 31px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 0; z-index: -1; padding: 130px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; background: var(--paper); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 44px; font-weight: 500; }
  .header-cta { display: none; }
  .menu-button { justify-self: end; display: grid; place-content: center; gap: 6px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--forest); cursor: pointer; }
  .menu-button i { display: block; width: 18px; height: 1px; background: #fff; transition: transform .2s var(--ease); }
  .menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(900px, 92%); margin: 20px auto 0; }
  .story-grid, .botanicals, .identity, .inquiry { grid-template-columns: 1fr; }
  .reference-card { position: relative; top: auto; width: min(650px, 100%); }
  .exploded { grid-template-columns: 1fr; }
  .exploded-copy { max-width: 780px; }
  .component-list { display: grid; grid-template-columns: repeat(5,1fr); border-top: 0; gap: 6px; }
  .component { grid-template-columns: 1fr; padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; }
  .component > span { grid-row: auto; }
  .component small { display: none; }
  .component.is-active { padding-left: 12px; }
  .viewer-360-heading { grid-template-columns: 1fr; }
  .viewer-360-heading > p:last-child { max-width: 720px; margin-top: 18px; }
  .viewer-360-layout { grid-template-columns: 1fr; }
  .viewer-stage { position: relative; top: auto; height: 660px; }
  .viewer-details { max-width: 850px; }
  .steps, .standards-grid { grid-template-columns: repeat(2,1fr); }
  .steps li:nth-child(2), .standards-grid article:nth-child(2) { border-right: 0; }
  .steps li, .standards-grid article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .site-header { left: 12px; right: 12px; top: 10px; min-height: 62px; border-radius: 15px; }
  .brand img { width: 40px; height: 40px; }
  .brand b { font-size: 14px; }
  .brand small { font-size: 7px; }
  .site-nav { padding-top: 112px; }
  .site-nav a { font-size: 36px; }
  .hero { min-height: auto; padding: 116px 20px 60px; gap: 46px; }
  h1 { font-size: clamp(49px, 15vw, 72px); }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .hero-lede { font-size: 15px; }
  .launch-badge { max-width: 100%; white-space: normal; line-height: 1.35; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-facts { justify-content: space-between; }
  .hero-facts div { min-width: 0; padding: 0 14px; }
  .hero-visual { width: 100%; margin: 0; }
  .hero-visual picture { border-radius: 110px 110px 15px 15px; }
  .hero-note { right: 8px; bottom: -28px; width: 204px; }
  .signal-strip { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .signal-strip p { flex: 0 0 auto; }
  .section { padding: 80px 20px; }
  .section-heading { margin-bottom: 38px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .reference-card picture { border-radius: 150px 150px 14px 14px; }
  .story-copy .lead { font-size: 29px; }
  .pack-grid { grid-template-columns: 1fr; }
  .pack-card { min-height: 330px; }
  .component-list { grid-template-columns: 1fr 1fr; }
  .component:last-child { grid-column: 1/-1; }
  .viewer-360-heading { margin-bottom: 34px; }
  .viewer-stage { height: min(132vw, 570px); min-height: 470px; border-radius: 17px; }
  .viewer-stage canvas:focus-visible { border-radius: 17px; }
  .viewer-hint { left: 12px; top: 12px; }
  .viewer-toolbar { left: 10px; right: 10px; bottom: 10px; gap: 5px; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .viewer-toolbar button { flex: 0 0 auto; min-height: 44px; padding: 0 13px; }
  .viewer-product-copy { padding-top: 30px; }
  .viewer-product-copy h3 { font-size: 46px; }
  .viewer-specs { grid-template-columns: 1fr; }
  .viewer-specs div { display: grid; grid-template-columns: 100px 1fr; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.11); }
  .viewer-specs dd { margin: 0; }
  .viewer-part-picker { grid-template-columns: 1fr; }
  .viewer-part-picker button { min-height: 62px; }
  .exploded-stage picture { border-radius: 14px; }
  .focus-ring { width: 60px; height: 60px; }
  .stage-label { position: relative; left: auto; bottom: auto; margin-top: 10px; max-width: none; }
  .steps, .standards-grid { grid-template-columns: 1fr; }
  .steps li, .steps li:nth-child(2), .standards-grid article, .standards-grid article:nth-child(2) { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps h3, .standards-grid h3 { margin-top: 24px; }
  .care-note { grid-template-columns: 1fr; }
  .tab-list { overflow-x: auto; border-radius: 12px; }
  .tab-list button { flex: 0 0 auto; }
  .tab-panel { min-height: 0; }
  .tab-panel h3 { font-size: 35px; }
  .tab-panel dl div { grid-template-columns: 110px 1fr; }
  .identity-logo { padding: 20px; }
  .closing { min-height: 530px; }
  footer { grid-template-columns: 1fr; padding-bottom: 115px; }
  .mobile-rail { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 16px; color: #fff; background: rgba(15,43,36,.94); box-shadow: 0 18px 60px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
  .mobile-rail span { display: flex; flex-direction: column; line-height: 1.2; }
  .mobile-rail small { color: #b8c8c1; font-size: 9px; }
  .mobile-rail button { min-height: 44px; padding: 0 17px; border: 0; border-radius: 10px; color: var(--forest); background: var(--ivory); font-size: 11px; font-weight: 900; }
  .dialog-shell { padding: 42px 20px 24px; }
  .dialog-shell h2 { font-size: 42px; }
  .dialog-options span { align-items: flex-start; flex-direction: column; }
  .form-grid, .dialog-fields { grid-template-columns: 1fr; }
  .dialog-fields label:nth-child(3) { grid-column: auto; }
  .form-action { grid-template-columns: 1fr; }
  .form-action .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-rail, .ritual-dialog, .hero-actions { display: none !important; }
  .hero { min-height: auto; padding-top: 40px; }
  .section { break-inside: avoid; padding: 55px 40px; }
  .reveal { opacity: 1; transform: none; }
}
