:root {
  --ink: #050505;
  --ink-soft: #111111;
  --surface: #f5f2ee;
  --surface-warm: #ffffff;
  --text: #f9f7f3;
  --text-dark: #151515;
  --muted: #6f6861;
  --amber: #f6a340;
  --amber-bright: #ffb84d;
  --copper: #c8794a;
  --trust-green: #23734b;
  --trust-green-soft: #eef8f1;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(20, 20, 20, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, .16);
  --container: 1240px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--surface-warm);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface-warm); color: var(--text-dark); }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-150%); background: var(--amber); color: var(--ink);
  padding: 10px 14px; border-radius: 999px; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 15px; color: var(--amber); font-size: .76rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-title { max-width: 760px; margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.section-copy { max-width: 640px; margin: 18px 0 0; color: #6c665f; font-size: 1.05rem; line-height: 1.65; }
.dark .section-copy, .section-dark .section-copy { color: var(--muted); }
.text-link { display: inline-flex; gap: 8px; align-items: center; text-decoration: none; font-weight: 800; }
.text-link::after { content: "→"; color: var(--amber); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: sticky; top: 0; z-index: 40; height: var(--header-height);
  display: flex; align-items: center; color: var(--text);
  background: rgba(5, 5, 5, .94); border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}
.site-header-light { color: var(--text-dark); background: rgba(255, 255, 255, .96); border-bottom-color: var(--line-light); }
.site-header-light .main-nav a { color: var(--text-dark); }
.site-header-light .main-nav a:hover, .site-header-light .main-nav a:focus-visible { color: var(--copper); }
.site-header-light .icon-button, .site-header-light .cart-button { color: var(--text-dark); border-color: var(--line-light); }
.site-header-light .cart-button { color: var(--copper); border-color: var(--copper); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: min(var(--container), calc(100% - 40px)); margin: auto; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 116px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.7vw, 34px); margin-left: auto; }
.main-nav a { color: #f5f2ed; font-size: .82rem; font-weight: 700; text-decoration: none; opacity: .82; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--amber-bright); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .cart-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 44px; min-height: 44px; border: 1px solid var(--line-dark);
  border-radius: 999px; color: var(--text); background: transparent; font-weight: 800;
}
.cart-button { padding: 0 15px; border-color: var(--amber); color: var(--amber-bright); }
.cart-count { min-width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--amber); color: var(--ink); font-size: .72rem; }
.menu-button { display: none; }

.hero { overflow: hidden; color: var(--text); background: var(--ink); }
.hero-light { color: var(--text-dark); background: #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; min-height: min(760px, calc(100vh - var(--header-height))); gap: 32px; padding: 48px 0 64px; }
.hero-copy { position: relative; z-index: 2; padding-block: 36px; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(3.3rem, 7.4vw, 7.2rem); line-height: .88; letter-spacing: -.075em; }
.hero h1 em { color: var(--amber-bright); font-style: normal; }
.hero-light h1 em { color: var(--amber); }
.hero-lede { max-width: 535px; margin: 28px 0 0; color: #c9c2bb; font-size: clamp(1rem, 1.6vw, 1.24rem); line-height: 1.55; }
.hero-light .hero-lede { color: #655e57; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; padding: 0 22px; font-weight: 850; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--amber); }
.btn-primary:hover { background: var(--amber-bright); }
.btn-ghost { color: var(--text); border-color: rgba(255, 255, 255, .25); background: transparent; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-bright); }
.btn-ghost-dark { color: var(--text-dark); border-color: var(--line-light); }
.btn-ghost-dark:hover { color: var(--copper); border-color: var(--copper); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 25px; color: #aaa39b; font-size: .8rem; }
.hero-light .hero-trust { color: #706960; }
.hero-trust span::before { content: "✦"; margin-right: 7px; color: var(--amber); }
.hero-proof { display: flex; align-items: center; gap: 14px; width: fit-content; margin-top: 27px; padding: 14px 18px; border: 1px solid #ead9c9; border-radius: 18px; color: #5f5851; background: #fffaf5; font-size: 1rem; }
.hero-proof .stars { color: var(--amber); letter-spacing: 3px; font-size: 1.18rem; }
.hero-proof strong { color: var(--text-dark); font-size: 1.35rem; letter-spacing: -.03em; }
.hero-proof span:last-child { font-weight: 800; }
.hero-specs { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; margin-top: 17px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.hero-specs > div { display: grid; gap: 4px; min-height: 68px; align-content: center; padding: 12px 16px 12px 0; border-right: 1px solid var(--line-light); }
.hero-specs > div + div { padding-left: 16px; }
.hero-specs > div:last-child { border-right: 0; }
.hero-specs strong { color: var(--text-dark); font-size: .94rem; }
.hero-specs span { color: #706960; font-size: .72rem; line-height: 1.3; }
.hero-media { position: relative; min-height: 580px; display: grid; place-items: center; }
.hero-media::before { content: ""; position: absolute; width: min(68vw, 700px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(246, 163, 64, .2), transparent 64%); filter: blur(12px); }
.hero-media img { position: relative; z-index: 1; width: min(100%, 700px); filter: drop-shadow(0 35px 35px rgba(0, 0, 0, .55)); }
.hero-light .hero-media::before { background: radial-gradient(circle, rgba(246, 163, 64, .18), transparent 64%); }
.hero-light .hero-media img { filter: drop-shadow(0 28px 30px rgba(71, 51, 35, .18)); }
.hero-product-media::before { display: none; }
.hero-product-media { background: #fff; }
.hero-product-media img { width: min(100%, 650px); filter: none; }
.hero-cutaway-media { min-height: 620px; }
.hero-cutaway-media img { width: min(100%, 575px); }
.hero-orbit { position: absolute; border: 1px solid rgba(200, 121, 74, .22); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: min(32vw, 360px); aspect-ratio: 1; }
.hero-orbit-two { width: min(49vw, 540px); aspect-ratio: 1; border-color: rgba(246, 163, 64, .12); }
.hero-note { position: absolute; right: 3%; bottom: 5%; z-index: 2; max-width: 185px; padding: 14px 16px; border: 1px solid rgba(246, 163, 64, .55); border-radius: 16px; color: #eee9e1; background: rgba(5, 5, 5, .74); font-size: .78rem; line-height: 1.45; backdrop-filter: blur(12px); }
.hero-note strong { display: block; margin-bottom: 3px; color: var(--amber-bright); }
.hero-light .hero-note { color: var(--text-dark); background: rgba(255,255,255,.92); border-color: rgba(200,121,74,.35); box-shadow: 0 15px 40px rgba(69,48,32,.12); }

.purchase-panel { color: var(--text-dark); background: #fff; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.purchase-inner { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 22px 0; }
.purchase-title { margin: 0; font-size: 1.15rem; }
.purchase-subtitle { margin: 5px 0 0; color: var(--muted); font-size: .88rem; }
.purchase-right { display: flex; align-items: center; gap: 20px; }
.price-stack { display: flex; align-items: baseline; gap: 9px; white-space: nowrap; }
.price { color: var(--amber-bright); font-size: 1.7rem; font-weight: 900; letter-spacing: -.04em; }
.purchase-panel .price, .variants .price { color: var(--copper); }
.old-price { color: #817b75; font-size: .95rem; text-decoration: line-through; }

.trust-strip { border-bottom: 1px solid #cfe6d5; background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 24px; border-right: 1px solid #cfe6d5; }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { color: var(--trust-green); font-size: 1.3rem; }
.trust-item strong { margin-top: 8px; color: #164b32; font-size: .9rem; }
.trust-item span { margin-top: 4px; color: #4d725d; font-size: .77rem; }

.section { padding: clamp(76px, 11vw, 150px) 0; }
.section-light { background: var(--surface-warm); }
.section-gray { background: #fff; }
.section-dark { color: var(--text); background: var(--ink); }
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 44px; }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.use-card { min-height: 260px; display: flex; flex-direction: column; justify-content: end; padding: 26px; border-radius: var(--radius-md); background: #fff; box-shadow: 0 10px 35px rgba(16, 14, 12, .07); }
.use-card:nth-child(2) { background: #e9e2d9; }
.use-card:nth-child(3) { background: #e8f0ea; }
.use-number { margin-bottom: auto; color: var(--amber); font-weight: 900; }
.use-card h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.04em; }
.use-card p { margin: 9px 0 0; color: #6a635c; line-height: 1.5; }
.use-card:nth-child(3) p { color: #5f6e64; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-card { min-height: 300px; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #fff; box-shadow: 0 12px 30px rgba(32,24,18,.06); }
.process-card:nth-child(2) { background: #fffaf4; }
.process-card:nth-child(3) { background: #f7fbf8; }
.process-index { color: var(--amber); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.process-card h3 { margin: 46px 0 12px; font-size: 2.25rem; letter-spacing: -.05em; }
.process-card p { max-width: 280px; margin: 0; color: #6f6861; line-height: 1.6; }
.process-media { margin-top: 44px; overflow: hidden; border-radius: var(--radius-lg); }
.process-media img { width: 100%; }
.process-media-light { display: grid; place-items: center; min-height: 420px; border: 1px solid var(--line-light); background: #f8f5f1; box-shadow: 0 15px 45px rgba(34,26,19,.08); }
.process-media-light img { width: min(100%, 470px); }

.product-selector { background: #fff; }
.product-selector-head { align-items: start; margin-bottom: 34px; }
.product-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-choice { overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 16px 44px rgba(34, 26, 19, .07); }
.product-choice-available { border-color: rgba(35, 115, 75, .45); box-shadow: 0 18px 48px rgba(35, 115, 75, .12); }
.product-choice-sold-out { opacity: .72; background: #faf9f7; }
.product-choice-visual { min-height: 190px; display: grid; place-items: center; position: relative; overflow: hidden; background: #fff; }
.product-choice-visual::before { content: ""; position: absolute; inset: 16% 20%; border-radius: 46% 46% 40% 40%; background: rgba(246,163,64,.08); filter: blur(20px); }
.product-choice-visual-white, .product-choice-visual-green, .product-choice-visual-blue { background: #fff; }
.product-choice-visual img { position: relative; z-index: 1; width: 100%; height: 190px; padding: 12px 24px; object-fit: contain; }
.product-choice-sold-out .product-choice-visual img { opacity: .72; filter: saturate(.82); }
.choice-badge { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(16, 54, 35, .86); font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.product-choice-sold-out .choice-badge { background: rgba(5, 5, 5, .68); }
.product-choice-body { padding: 24px; }
.choice-kicker { margin: 0 0 8px; color: var(--copper); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.product-choice-body h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.04em; }
.product-choice-body p:not(.choice-kicker) { min-height: 52px; margin: 10px 0 17px; color: #6f6861; font-size: .88rem; line-height: 1.5; }
.choice-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 18px; }
.choice-price strong { color: var(--copper); font-size: 1.45rem; letter-spacing: -.04em; }
.choice-price del { color: #817b75; font-size: .88rem; }
.product-choice .btn { width: 100%; }
.btn-disabled { color: #78726c; border-color: #d5d0ca; background: #e8e4df; cursor: not-allowed; }

.product-story { background: #fff; border-top: 1px solid var(--line-light); }
.product-story-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr); align-items: center; gap: clamp(36px, 8vw, 112px); }
.product-story-media { max-width: 590px; justify-self: center; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: none; }
.product-story-media img { width: 100%; aspect-ratio: auto; object-fit: contain; }
.product-story-copy { padding-right: clamp(0px, 3vw, 30px); }
.story-points { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line-light); }
.story-points > div { display: grid; grid-template-columns: minmax(140px, .75fr) 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.story-points strong { color: var(--copper); font-size: .86rem; }
.story-points span { color: #6f6861; font-size: .86rem; }

.finish-showcase { background: #fff; }
.finish-showcase-copy { max-width: 760px; margin-bottom: 34px; }
.finish-showcase-media { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: none; }
.finish-showcase-media img { display: block; width: 76%; max-width: 760px; margin: 0 auto; aspect-ratio: auto; object-fit: contain; object-position: center; }
.keyword-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 22px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.keyword-row span { padding: 17px 18px; color: var(--text-dark); font-size: .84rem; font-weight: 850; text-align: center; }
.keyword-row span + span { border-left: 1px solid var(--line-light); }

.material-section { background: #fff; border-top: 1px solid var(--line-light); }
.material-grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(35px, 8vw, 110px); }
.material-copy { order: 1; }
.material-media { order: 2; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: none; }
.material-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.material-facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.material-facts span { padding: 9px 12px; border: 1px solid rgba(200, 121, 74, .35); border-radius: 999px; color: var(--copper); font-size: .76rem; font-weight: 800; }

.technology-steps { display: grid; gap: 18px; }
.technology-step { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr); align-items: center; gap: clamp(28px, 7vw, 100px); padding: 18px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 16px 46px rgba(34, 26, 19, .06); }
.technology-step-reverse { background: #fffaf4; }
.technology-step-reverse .technology-step-media { order: 2; }
.technology-step-reverse .technology-step-copy { order: 1; }
.technology-step-media { overflow: hidden; border-radius: calc(var(--radius-lg) - 8px); background: #111; }
.technology-step-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.technology-step-copy { padding: 28px clamp(12px, 3vw, 34px); }
.technology-step-copy h3 { max-width: 440px; margin: 18px 0 12px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; letter-spacing: -.06em; }
.technology-step-copy p { max-width: 460px; margin: 0; color: #6f6861; font-size: 1rem; line-height: 1.65; }

.feature-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(300px, .97fr); align-items: center; gap: clamp(40px, 8vw, 110px); }
.feature-media { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.feature-media img { width: 100%; }
.feature-list { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line-light); }
.feature-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.feature-item b { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper); }
.feature-item strong { display: block; }
.feature-item span { display: block; margin-top: 5px; color: #6c665f; font-size: .9rem; line-height: 1.5; }

.cutaway { color: var(--text); background: var(--ink); }
.cutaway-light { color: var(--text-dark); background: #fff; }
.cutaway-light .section-copy { color: #6c665f; }
.cutaway-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: center; gap: clamp(35px, 8vw, 120px); }
.cutaway-media { order: 2; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 20px 80px rgba(246, 163, 64, .12); }
.cutaway-media img { width: 100%; }
.cutaway-media-transparent { display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 45%, rgba(246,163,64,.16), transparent 55%), #f8f5f1; box-shadow: 0 20px 60px rgba(34,26,19,.09); }
.cutaway-media-transparent img { width: min(100%, 520px); }
.spec-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.spec-pill { padding: 9px 12px; border: 1px solid var(--line-dark); border-radius: 999px; color: #dad4cb; font-size: .78rem; }

.comparison { background: #0c0c0c; color: var(--text); }
.comparison-card { display: grid; place-items: center; overflow: hidden; min-height: 360px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); background: #f8f5f1; }
.comparison-card img { width: 100%; }
.comparison-warning { margin: 18px 0 0; color: #b8afa5; font-size: .8rem; }

.variants { color: var(--text-dark); background: #f5f2ee; }
.variant-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); gap: clamp(35px, 8vw, 100px); align-items: center; }
.variant-media { overflow: hidden; border-radius: var(--radius-lg); background: #f5f3f0; }
.variant-media img { width: 100%; }
.variant-picker { display: grid; gap: 10px; margin: 26px 0; }
.variant-chip { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; align-items: center; gap: 12px; width: 100%; min-height: 72px; padding: 12px 15px; border: 1px solid var(--line-light); border-radius: 15px; color: var(--text-dark); background: #fff; text-align: left; }
.variant-chip[aria-checked="true"] { border-color: var(--copper); box-shadow: 0 0 0 2px rgba(200,121,74,.12); }
.variant-chip:disabled { cursor: not-allowed; opacity: .62; background: #ece9e5; }
.swatch { width: 24px; height: 24px; border: 1px solid rgba(20,20,20,.22); border-radius: 50%; }
.swatch-white { background: #f5f4ef; }
.swatch-blue { background: #0b3856; }
.swatch-green { background: #1f3a2d; }
.color-card-copy { display: grid; gap: 3px; min-width: 0; }
.color-card-copy strong { font-size: .95rem; }
.color-card-copy small { color: #736c64; font-size: .78rem; }
.color-card-price { color: var(--copper); font-size: .9rem; font-weight: 900; white-space: nowrap; }
.stock-status { color: #837a72; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.variant-meta { min-height: 24px; margin-bottom: 20px; color: #6f6861; font-size: .86rem; }
.variant-meta strong { color: var(--copper); }

.reassurance { background: var(--surface); }
.reassurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reassurance-card { min-height: 185px; padding: 24px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: rgba(255,255,255,.45); }
.reassurance-card b { color: var(--copper); font-size: 1.4rem; }
.reassurance-card h3 { margin: 25px 0 8px; font-size: 1.05rem; }
.reassurance-card p { margin: 0; color: #6e675f; font-size: .88rem; line-height: 1.5; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line-dark); }
.section-light .faq-list { border-color: var(--line-light); }
.section-light .faq-list details { border-color: var(--line-light); }
.section-light .faq-list details p { color: #6f6861; }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--amber); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: -4px 0 22px; color: var(--muted); line-height: 1.65; }

.site-footer { padding: 42px 0 30px; color: #6f6861; background: #fff; border-top: 1px solid var(--line-light); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
.footer-brand img { width: 112px; }
.footer-brand p { max-width: 270px; color: #807970; font-size: .84rem; line-height: 1.5; }
.footer-col strong { display: block; margin-bottom: 14px; color: var(--text-dark); font-size: .8rem; }
.footer-col a { display: block; width: fit-content; margin: 8px 0; color: #6f6861; font-size: .82rem; text-decoration: none; }
.footer-col a:hover { color: var(--amber-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line-light); color: #77716a; font-size: .74rem; }
.footer-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.footer-trust > div { display: flex; align-items: center; gap: 9px; color: #6f6861; font-size: .78rem; }
.footer-trust b { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper); }
.footer-payment-row { flex-wrap: wrap; }
.footer-payment-row small { width: 100%; color: #8a8178; font-size: .7rem; }
.footer-payment-row img { width: 48px; height: 26px; object-fit: contain; padding: 3px; border: 1px solid var(--line-light); border-radius: 5px; background: #fff; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 50; visibility: hidden; background: rgba(0,0,0,.62); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.drawer-backdrop.is-open { visibility: visible; opacity: 1; }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 51; width: min(430px, 100%); height: 100dvh; display: flex; flex-direction: column; transform: translateX(102%); color: var(--text-dark); background: var(--surface-warm); transition: transform .3s ease; box-shadow: -20px 0 70px rgba(0,0,0,.22); }
.cart-drawer.is-open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line-light); }
.drawer-header h2 { margin: 0; font-size: 1.15rem; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; }
.drawer-content { flex: 1; overflow-y: auto; padding: 20px 22px; }
.drawer-empty { padding: 65px 0; color: #716b64; text-align: center; }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; background: #e7e3df; }
.cart-line h3 { margin: 0; font-size: .88rem; }
.cart-line p { margin: 5px 0 0; color: #777069; font-size: .78rem; }
.cart-line-price { font-weight: 850; white-space: nowrap; }
.qty-controls { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.qty-controls button { width: 28px; height: 28px; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; }
.drawer-footer { padding: 20px 22px; border-top: 1px solid var(--line-light); background: #fff; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; margin: 9px 0; font-size: .88rem; }
.summary-row.total { margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line-light); font-size: 1.08rem; font-weight: 900; }
.drawer-footer .btn { width: 100%; margin-top: 12px; }
.drawer-footer .btn-ghost { color: var(--text-dark); border-color: var(--line-light); }
.shipping-message { margin: 11px 0 0; color: #716a63; font-size: .78rem; line-height: 1.4; }
.cart-trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid #cfe6d5; color: #164b32; }
.cart-payment-label { color: #164b32; font-size: .88rem; font-weight: 900; }
.cart-payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cart-payment-icons img { width: 52px; height: 30px; object-fit: contain; padding: 3px; border: 1px solid #cfe6d5; border-radius: 6px; background: #fff; }
.cart-reassurance { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 20px; }
.cart-reassurance-card { display: grid; grid-template-columns: 27px 1fr; column-gap: 8px; align-items: start; padding: 14px; border: 1px solid #cfe6d5; border-radius: 14px; background: #eef8f1; }
.cart-reassurance-card b { grid-row: span 2; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #fff; background: #23844d; font-size: .72rem; }
.cart-reassurance-card strong { color: #164b32; font-size: .8rem; line-height: 1.2; }
.cart-reassurance-card span { grid-column: 2; margin-top: 4px; color: #397154; font-size: .7rem; line-height: 1.35; }

.page-hero { padding: 80px 0 55px; color: var(--text-dark); background: #fff; border-bottom: 1px solid var(--line-light); }
.page-hero h1 { margin: 0; font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: -.065em; }
.checkout-product-visual { background: #fff; border-bottom: 1px solid var(--line-light); }
.checkout-product-visual .container { display: grid; place-items: center; }
.checkout-product-visual-featured { padding: 42px 0 28px; text-align: center; }
.checkout-product-visual-featured h1 { max-width: 760px; margin: 0 auto 20px; color: var(--text-dark); font-size: clamp(2rem, 5vw, 4.2rem); letter-spacing: -.06em; }
.checkout-product-visual img { width: min(100%, 760px); height: 300px; object-fit: cover; object-position: center; }
.checkout-color-labels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 760px); margin-top: 14px; }
.checkout-color-labels span { display: grid; gap: 4px; padding: 11px 8px; border-right: 1px solid var(--line-light); }
.checkout-color-labels span:last-child { border-right: 0; }
.checkout-color-labels strong { color: var(--text-dark); font-size: .82rem; }
.checkout-color-labels small { color: #23844d; font-size: .7rem; font-weight: 800; }
.checkout-color-labels span:not(:first-child) small { color: #8a2d1c; }
.page-main { min-height: 65vh; padding: 54px 0 110px; background: var(--surface-warm); }
.policy-page { background: #fff; }
.policy-hero { padding: 70px 0 42px; border-bottom: 1px solid var(--line-light); background: #fff; }
.policy-hero h1 { max-width: 860px; margin: 0; color: var(--text-dark); font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .94; letter-spacing: -.07em; }
.policy-hero .section-copy { max-width: 720px; }
.policy-content { padding: 52px 0 110px; }
.policy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 34px; align-items: start; }
.policy-article { max-width: 820px; }
.policy-article h2 { margin: 40px 0 12px; color: var(--text-dark); font-size: clamp(1.45rem, 3vw, 2.3rem); letter-spacing: -.045em; }
.policy-article h3 { margin: 26px 0 8px; color: var(--text-dark); font-size: 1.05rem; }
.policy-article p, .policy-article li { color: #5f5952; font-size: .98rem; line-height: 1.72; }
.policy-article ul, .policy-article ol { padding-left: 1.3rem; }
.policy-card { position: sticky; top: calc(var(--header-height) + 24px); padding: 22px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft); }
.policy-card strong { display: block; margin-bottom: 12px; color: var(--text-dark); }
.policy-card a { display: block; margin-top: 9px; color: #6d4a2e; font-size: .86rem; font-weight: 800; text-decoration: none; }
.policy-card a:hover { color: var(--copper); }
.policy-alert { margin: 0 0 28px; padding: 17px 19px; border: 1px solid #e7c78f; border-radius: 14px; color: #674c21; background: #fff8e8; font-size: .88rem; line-height: 1.55; }
.policy-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.policy-fact { padding: 16px; border: 1px solid var(--line-light); border-radius: 14px; background: #faf9f7; }
.policy-fact strong { display: block; margin-bottom: 5px; color: var(--text-dark); }
.policy-fact span { color: #6f6861; font-size: .82rem; line-height: 1.4; }
.policy-contact { display: inline-flex; margin-top: 10px; color: #6d4a2e; font-size: 1.05rem; font-weight: 900; }
.policy-updated { margin: 0 0 24px; color: #847c73; font-size: .78rem; }
.cart-page-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 28px; align-items: start; }
.cart-page-list, .order-card { padding: 24px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #fff; }
.cart-page-list .cart-line { grid-template-columns: 96px 1fr auto; }
.cart-page-list .cart-line img { width: 96px; height: 96px; }
.order-card { position: sticky; top: calc(var(--header-height) + 24px); }
.order-card h2 { margin: 0 0 20px; font-size: 1.1rem; }
.empty-state { padding: 60px 15px; color: #6c665f; text-align: center; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .62fr); gap: 32px; align-items: start; }
.checkout-card, .checkout-summary { padding: 28px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #fff; }
.checkout-summary { position: sticky; top: calc(var(--header-height) + 22px); }
.checkout-card h2, .checkout-summary h2 { margin: 0 0 23px; font-size: 1.2rem; }
.checkout-step { display: none; }
.checkout-step.is-active { display: block; }
.checkout-step-label { margin: 0 0 8px; color: #23844d; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.checkout-step-actions { display: flex; gap: 12px; margin-top: 26px; }
.checkout-step-actions .btn { flex: 1; }
.checkout-next { margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 800; }
.field input, .field select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #d2cec9; border-radius: 10px; color: var(--text-dark); background: #fff; }
.field input:focus, .field select:focus { outline: 3px solid rgba(246,163,64,.3); border-color: var(--amber); }
.checkout-note { margin: 24px 0; padding: 15px; border-radius: 12px; color: #655e56; background: #f1ede7; font-size: .84rem; line-height: 1.5; }
.checkout-note strong { color: var(--text-dark); }
.payment-section { margin: 28px 0 24px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.payment-section h2 { margin: 0 0 8px; font-size: 1.2rem; }
.payment-intro { margin: 0 0 18px; color: #6f6861; font-size: .84rem; line-height: 1.55; }
#payment-element { min-height: 96px; }
.payment-status { margin: 12px 0 0; color: #6f6861; font-size: .78rem; line-height: 1.45; }
.payment-status.is-error { color: #8a2d1c; }
.checkout-error { display: none; margin-top: 15px; padding: 13px; border: 1px solid #c85d42; border-radius: 10px; color: #8a2d1c; background: #fff1ed; font-size: .84rem; }
.checkout-error.is-visible { display: block; }
.payment-icons { display: flex; flex-wrap: nowrap; gap: 7px; align-items: center; margin-top: 18px; overflow: hidden; }
.payment-icons img { width: 46px; height: 25px; object-fit: contain; padding: 3px; border: 1px solid #ddd8d2; border-radius: 5px; background: #fff; }
.checkout-trust-grid { display: grid; gap: 10px; margin-top: 24px; color: #164b32; }
.checkout-trust-card { display: grid; grid-template-columns: 30px 1fr; column-gap: 9px; align-items: start; padding: 14px; border: 1px solid #cfe6d5; border-radius: 14px; background: #eef8f1; }
.checkout-trust-card b { grid-row: span 2; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: #23844d; font-size: .72rem; }
.checkout-trust-card strong { color: #164b32; font-size: .82rem; line-height: 1.2; }
.checkout-trust-card span { grid-column: 2; margin-top: 4px; color: #397154; font-size: .72rem; line-height: 1.35; }
.confirmation { max-width: 700px; margin: auto; text-align: center; }
.confirmation-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; color: var(--ink); background: var(--amber); font-size: 2rem; }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 70; max-width: 330px; padding: 14px 17px; border: 1px solid var(--copper); border-radius: 12px; color: var(--text); background: #19130e; box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: var(--header-height); left: 0; right: 0; display: grid; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid var(--line-dark); background: rgba(5,5,5,.98); transform: translateY(-150%); transition: transform .25s ease; }
  .main-nav.is-open { transform: translateY(0); }
  .site-header-light .main-nav { background: rgba(255,255,255,.98); border-bottom-color: var(--line-light); }
  .site-header-light .main-nav a { border-bottom-color: var(--line-light); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
  .menu-button { display: inline-flex; }
  .hero-grid, .feature-layout, .cutaway-grid, .variant-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 25px; }
  .hero-media { min-height: 390px; order: -1; }
  .hero-media img { width: min(100%, 560px); }
  .hero-cutaway-media { min-height: 430px; }
  .hero-product-media { min-height: 390px; }
  .hero-copy { padding-top: 0; }
  .purchase-inner { grid-template-columns: 1fr; }
  .purchase-right { justify-content: space-between; }
  .cutaway-media { order: 0; }
  .checkout-summary { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-card { position: static; order: -1; }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
  .product-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .product-choice-body { padding: 18px; }
  .product-choice-body h3 { font-size: 1.15rem; }
  .product-choice-body p:not(.choice-kicker) { min-height: 76px; font-size: .8rem; }
  .choice-price { display: block; }
  .choice-price del { display: block; margin-top: 4px; }
  .technology-step { gap: 24px; }
  .product-story-grid, .material-grid { grid-template-columns: 1fr; }
  .product-story-copy { padding-right: 0; }
}

@media (max-width: 620px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { width: calc(100% - 28px); gap: 10px; }
  .brand img { width: 94px; }
  .cart-button { padding: 0 11px; font-size: .78rem; }
  .hero-grid { min-height: auto; padding: 24px 0 50px; }
  .hero-media { min-height: 270px; }
  .hero-cutaway-media { min-height: 325px; }
  .hero-product-media { min-height: 290px; }
  .hero-cutaway-media img { width: min(100%, 340px); }
  .hero-orbit-one { width: 230px; }
  .hero-orbit-two { width: 300px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-lede { font-size: .98rem; }
  .hero-proof { width: 100%; gap: 8px 11px; padding: 13px 14px; font-size: .82rem; }
  .hero-proof .stars { font-size: 1rem; letter-spacing: 2px; }
  .hero-proof strong { font-size: 1.18rem; }
  .hero-specs { grid-template-columns: 1fr 1fr; }
  .hero-specs > div { min-height: 64px; padding-right: 11px; }
  .hero-specs > div + div { padding-left: 11px; }
  .hero-specs > div:last-child { grid-column: auto; padding-left: 11px; border-top: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-note { right: 1%; bottom: 0; max-width: 145px; padding: 10px 11px; font-size: .7rem; }
  .hero-product-media img { width: min(100%, 360px); }
  .trust-grid, .use-case-grid, .process-grid, .reassurance-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 0; padding: 18px 0; border-right: 0; border-bottom: 1px solid #cfe6d5; }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head .text-link { margin-top: 18px; }
  .section { padding: 70px 0; }
  .process-card { min-height: 230px; }
  .process-card h3 { margin-top: 32px; }
  .product-choice-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-choice { display: grid; grid-template-columns: 112px minmax(0, 1fr); }
  .product-choice-visual { min-height: 100%; }
  .product-choice-visual img { width: 100%; height: 100%; min-height: 150px; padding: 8px; }
  .choice-badge { left: 8px; top: 8px; padding: 5px 7px; font-size: .58rem; }
  .product-choice-body { padding: 18px 16px; }
  .product-choice-body p:not(.choice-kicker) { min-height: 0; margin: 7px 0 12px; }
  .choice-price { display: flex; margin-bottom: 12px; }
  .choice-price del { margin-top: 0; }
  .product-choice .btn { min-height: 44px; }
  .technology-step, .technology-step-reverse { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; }
  .technology-step-reverse .technology-step-media, .technology-step-reverse .technology-step-copy { order: initial; }
  .technology-step-copy { padding: 22px 12px 18px; }
  .technology-step-copy h3 { margin-top: 14px; font-size: 2rem; }
  .technology-step-copy p { font-size: .94rem; }
  .product-story-media { max-width: 360px; padding: 8px; }
  .story-points > div { grid-template-columns: 1fr; gap: 5px; }
  .finish-showcase-media img { aspect-ratio: auto; }
  .keyword-row { grid-template-columns: repeat(2, 1fr); }
  .keyword-row span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .keyword-row span:nth-child(4) { border-top: 1px solid var(--line-light); }
  .material-copy, .material-media { order: initial; }
  .feature-layout, .cutaway-grid, .variant-layout { gap: 28px; }
  .variant-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .footer-trust { grid-template-columns: 1fr; }
  .purchase-right { align-items: stretch; flex-direction: column; gap: 11px; }
  .purchase-right .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .checkout-card, .checkout-summary, .cart-page-list, .order-card { padding: 20px; }
  .policy-hero { padding: 50px 0 32px; }
  .policy-content { padding: 36px 0 75px; }
  .policy-facts { grid-template-columns: 1fr; }
  .checkout-product-visual-featured { padding: 30px 0 20px; }
  .checkout-product-visual-featured h1 { margin-bottom: 14px; font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .checkout-product-visual img { height: 160px; }
  .checkout-color-labels { margin-top: 10px; }
  .checkout-color-labels span { padding: 9px 4px; }
  .checkout-color-labels strong { font-size: .68rem; }
  .checkout-color-labels small { font-size: .61rem; }
  .checkout-step-actions { flex-direction: column-reverse; }
  .checkout-step-actions .btn { width: 100%; }
  .cart-reassurance { grid-template-columns: 1fr; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .cart-page-list .cart-line { grid-template-columns: 70px 1fr; }
  .cart-page-list .cart-line > .cart-line-price { grid-column: 2; }
  .cart-page-list .cart-line img { width: 70px; height: 70px; }
}

/* Compact purchasing UI: keep product and payment controls reachable on small screens. */
.cart-drawer { overflow-y: auto; background: #fff; }
.cart-line img { object-fit: contain; background: #fff; }
.drawer-header { flex-shrink: 0; padding: 16px 20px; }
.drawer-content { flex: 0 0 auto; overflow: visible; padding: 16px 20px; }
.drawer-footer { flex: 0 0 auto; margin-top: auto; padding: 14px 20px; }
.drawer-footer .btn-primary, .cart-summary .btn-primary { background: #f6a340; color: #191919; }
.cart-trust { margin-top: 16px; padding-top: 12px; }
.cart-reassurance, .checkout-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 8px; margin-bottom: 12px; }
.cart-reassurance-card, .checkout-trust-card { padding: 0; border: 0; border-radius: 0; background: transparent; align-items: center; grid-template-columns: 22px 1fr; gap: 6px; }
.cart-reassurance-card b, .checkout-trust-card b { width: 22px; height: 22px; background: transparent; color: #23844d; grid-row: auto; }
.cart-reassurance-card strong, .checkout-trust-card strong { font-size: .76rem; line-height: 1.35; color: #164b32; text-decoration: none; }
.cart-reassurance-card:last-child, .checkout-trust-card:last-child { grid-column: 1 / -1; }
.cart-payment-icons { margin-top: 6px; gap: 6px; }
.cart-payment-icons img { width: 44px; height: 28px; object-fit: contain; }
.payment-status:empty { display: none; }
.checkout-summary-product { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.checkout-summary-product img { width: 70px; height: 80px; object-fit: contain; }
.checkout-summary-product small { display: block; color: #666; }
[hidden] { display: none !important; }

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

.delivery-announcement { padding: 18px 20px; background: #fff; color: #164b32; text-align: center; border-bottom: 1px solid #e8eee9; }
.delivery-announcement strong { display: block; font-size: clamp(1.15rem, 3.5vw, 1.7rem); font-weight: 850; line-height: 1.3; }
.delivery-announcement span { display: block; margin-top: 4px; font-size: .8rem; }
.summary-row.shipping-free { color: #164b32; font-size: 1.05rem; font-weight: 800; }
