:root {
  --bone: #f7f4ee;
  --paper: #fffdf9;
  --ink: #171514;
  --muted: #77716b;
  --line: rgba(23, 21, 20, 0.16);
  --wine: #741d34;
  --wine-deep: #4b1021;
  --candle: #c69a52;
  --sage: #687166;
  --black: #11100f;
  --error: #9f3d38;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-configuring { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

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

.prototype-bar {
  position: relative;
  z-index: 80;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: var(--wine);
  color: #fff7f8;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 70;
  top: 30px;
  left: 0;
  width: 100%;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(23, 21, 20, 0.2);
  transition: background .28s ease, color .28s ease, transform .28s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(247, 244, 238, .93);
  backdrop-filter: blur(14px);
}

.wordmark {
  width: max-content;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .09em;
  line-height: 1;
}

.wordmark span { color: var(--candle); }

.micro-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 54px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.micro-nav a,
.header-action { transition: color .2s ease; }
.micro-nav a:hover,
.header-action:hover { color: var(--wine); }

.header-action {
  justify-self: end;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  min-height: calc(100svh - 30px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,244,238,.98) 0%, rgba(247,244,238,.88) 28%, rgba(247,244,238,.16) 58%, rgba(247,244,238,0) 74%),
    linear-gradient(0deg, rgba(247,244,238,.82) 0%, rgba(247,244,238,0) 30%);
}

.hero-light-ring {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 22.6%;
  width: clamp(220px, 25vw, 410px);
  aspect-ratio: 1;
  border: 1px solid rgba(198,154,82,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(198,154,82,.035), 0 0 90px rgba(198,154,82,.13);
  pointer-events: none;
  transform: translate(50%, -48%);
  animation: light-pulse 5.5s ease-in-out infinite;
}

.hero--projection .hero-image { object-position: center center; }
.hero--projection .hero-wash {
  background:
    linear-gradient(90deg, rgba(247,244,238,.94) 0%, rgba(247,244,238,.77) 31%, rgba(247,244,238,.16) 55%, rgba(247,244,238,0) 72%),
    linear-gradient(0deg, rgba(247,244,238,.68) 0%, rgba(247,244,238,0) 28%);
}
.hero--projection .hero-light-ring { display: none; }
.hero--projection .hero-memory-note { display: none; }

.hero-copy {
  position: absolute;
  z-index: 3;
  left: 6vw;
  top: 51%;
  width: min(590px, 44vw);
  transform: translateY(-42%);
  animation: hero-copy-in .9s cubic-bezier(.2,.75,.25,1) both;
}

.eyebrow,
.section-index {
  margin: 0 0 24px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.thesis-grid h2,
.real-product-intro h2,
.section-heading h2,
.config-intro h2,
.proof-intro h2,
.faq-section h2,
.final-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .93;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(50px, 6vw, 92px);
}

.hero-lede {
  max-width: 470px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.pill-action {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 46px;
  padding: 5px 7px 5px 20px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.pill-action b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.pill-action:hover { background: var(--wine); color: white; transform: translateY(-2px); }
.pill-action:hover b { background: white; color: var(--wine); }

.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 24px;
  max-width: 310px;
  margin: 0;
  color: rgba(23,21,20,.68);
  font-size: 9px;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}

.hero-memory-note {
  position: absolute;
  z-index: 4;
  top: 48%;
  right: 3.5vw;
  width: 170px;
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(116,29,52,.45);
  color: rgba(23,21,20,.72);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.18;
}

.hero-memory-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 4vw;
  bottom: 24px;
  display: flex;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-cue span { animation: cue 1.6s ease-in-out infinite; }

.thesis-section,
.real-product-section,
.collection-section,
.paths-section,
.faq-section {
  padding: 120px 5vw;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: 8vw;
  align-items: start;
}

.thesis-grid h2,
.real-product-intro h2,
.section-heading h2,
.config-intro h2,
.faq-section h2 {
  font-size: clamp(52px, 6.2vw, 96px);
}

.large-copy {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.08;
}

.proof-list {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.proof-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.proof-list li span { color: var(--wine); font-size: 10px; }

.meaning-stories {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.meaning-intro {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  grid-template-rows: auto 1fr auto;
  gap: 34px 7vw;
  align-items: end;
  padding: 110px 5vw 78px;
  background: var(--wine-deep);
  color: #fff9fa;
}

.meaning-intro .section-index {
  grid-column: 1 / -1;
  align-self: start;
  color: #debcc5;
}

.meaning-intro h2 {
  grid-column: 1 / -1;
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.5vw, 118px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.meaning-intro > p {
  max-width: 740px;
  margin: 20px 0 0;
  color: #e9d9dc;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 39px);
  line-height: 1.12;
}

.meaning-intro small {
  justify-self: end;
  color: #bd969f;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-chapter {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  border-bottom: 1px solid var(--line);
}

.story-chapter figure {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.story-chapter figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(.2,.75,.25,1);
}

.story-chapter.is-visible figure img { transform: scale(1.025); }

.story-chapter figure figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(247,244,238,.9);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 7vw;
}

.story-number {
  margin: 0 0 14vh;
  color: var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
}

.story-copy h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}

.story-copy > p:not(.story-number) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.story-copy a {
  width: max-content;
  display: flex;
  gap: 26px;
  margin-top: 42px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
}

.story-remembrance {
  grid-template-columns: minmax(400px, .95fr) minmax(0, 1.05fr);
  background: var(--black);
  color: var(--bone);
}

.story-remembrance figure { grid-column: 2; grid-row: 1; }
.story-remembrance figure img { object-fit: cover; object-position: center 25%; }
.story-remembrance .story-copy { grid-column: 1; grid-row: 1; }
.story-remembrance .story-number,
.story-remembrance .story-copy a { color: #d5aeb8; }
.story-remembrance .story-copy > p:not(.story-number) { color: #aaa39c; }

.story-words figure img { width: 86%; margin: 0 auto; }

.reveal-section {
  display: grid;
  grid-template-columns: minmax(390px, .76fr) minmax(0, 1.24fr);
  gap: 7vw;
  align-items: center;
  padding: 140px 5vw;
  background: #171514;
  color: var(--bone);
}

.reveal-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.5vw, 100px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.reveal-copy > p:not(.section-index) {
  max-width: 560px;
  margin: 30px 0 0;
  color: #b9b2ab;
  font-size: 14px;
  line-height: 1.65;
}

.reveal-copy ol {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}

.reveal-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #d8d3ce;
  font-size: 11px;
}

.reveal-copy li span { color: #d5aeb8; font-size: 9px; }

.reveal-film { margin: 0; }
.reveal-film video { width: 100%; display: block; aspect-ratio: 4 / 5; background: #080808; object-fit: cover; }
.reveal-film figcaption { margin-top: 12px; color: #8f8983; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }

.real-product-section {
  padding-left: 5vw;
  padding-right: 5vw;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.real-product-intro {
  display: grid;
  grid-template-columns: minmax(500px, 1.35fr) minmax(300px, .65fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}

.real-product-intro .section-index { grid-column: 1 / -1; margin-bottom: 0; }
.real-product-intro h2 { font-size: clamp(58px, 7vw, 108px); }
.real-product-intro > div { margin-bottom: 10px; }
.real-product-intro > div p { max-width: 510px; margin: 0; font-family: var(--serif); font-size: clamp(23px, 2.4vw, 36px); line-height: 1.12; }
.real-product-intro > div span { display: block; margin-top: 20px; color: var(--muted); font-size: 11px; }

.real-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: stretch;
}

.product-feature-frame {
  position: relative;
  min-height: min(72vw, 840px);
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.product-feature-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: opacity .22s ease, transform .6s cubic-bezier(.2,.75,.25,1);
}

.product-feature-frame.is-changing > img { opacity: .2; transform: scale(.985); }

.product-feature-frame figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 140px minmax(260px, 520px);
  gap: 26px;
  align-items: end;
  padding: 18px 20px;
  border: 1px solid rgba(23,21,20,.12);
  background: rgba(247,244,238,.9);
  backdrop-filter: blur(12px);
}

.product-feature-frame figcaption > span { color: var(--wine); font-size: 9px; font-weight: 600; letter-spacing: .14em; }
.product-feature-frame figcaption b { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.product-feature-frame figcaption p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.product-thumbnails { display: grid; grid-template-rows: repeat(5, minmax(0, 1fr)); gap: 8px; }
.product-thumb { position: relative; min-height: 120px; overflow: hidden; padding: 0; border: 1px solid transparent; background: #fff; cursor: pointer; }
.product-thumb::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; transition: border-color .2s ease; }
.product-thumb.is-selected::after { border-color: var(--wine); }
.product-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.product-thumb:hover img { transform: scale(1.04); }
.product-thumb span { position: absolute; left: 7px; right: 7px; bottom: 7px; padding: 5px 7px; background: rgba(247,244,238,.9); color: var(--wine); font-size: 8px; font-weight: 600; letter-spacing: .08em; text-align: left; text-transform: uppercase; }

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts div { min-height: 112px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 24px 20px 0; border-right: 1px solid var(--line); }
.product-facts div + div { padding-left: 24px; }
.product-facts div:last-child { border-right: 0; }
.product-facts span { color: var(--wine); font-size: 9px; font-weight: 600; letter-spacing: .13em; }
.product-facts b { font-family: var(--serif); font-size: 20px; font-weight: 400; }

.catalog-bridge {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  margin-top: 86px;
  padding: 54px 0 0;
  border-top: 1px solid var(--line);
}

.catalog-bridge h3 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.7vw, 72px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}

.catalog-bridge > div:last-child {
  max-width: 520px;
  justify-self: end;
}

.catalog-bridge > div:last-child > p {
  margin: 0 0 30px;
  color: var(--muted);
}

.real-product-motion {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(480px, 1.3fr);
  gap: 7vw;
  align-items: center;
  margin-top: 110px;
  padding: 64px;
  background: var(--black);
  color: var(--bone);
}

.real-product-motion .section-index { color: #d5aeb8; }
.real-product-motion h3 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 5vw, 76px); font-weight: 400; letter-spacing: -.04em; line-height: .94; }
.real-product-motion > div > p:last-child { max-width: 430px; margin: 24px 0 0; color: #aaa39c; font-size: 12px; }
.real-product-motion video { width: 100%; display: block; background: #080808; aspect-ratio: 16 / 9; object-fit: cover; }

.collection-section {
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(500px, 1.5fr) minmax(260px, .5fr);
  gap: 8vw;
  align-items: end;
  padding: 0 5vw 70px;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  overflow-x: auto;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}

.product-cell {
  position: relative;
  min-height: 475px;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
  background: var(--bone);
}

.product-cell.recommended { background: #f2eee7; }
.product-cell.heirloom { background: #efeae2; }

.product-role {
  display: inline-block;
  color: var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
}

.product-cell h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.product-cell p {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-cell strong {
  display: block;
  margin-top: 18px;
  font-size: 12px;
}

.product-photo {
  width: calc(100% + 48px);
  height: 270px;
  display: block;
  margin: 26px -24px 20px;
  object-fit: contain;
  background: #fff;
  transition: transform .4s cubic-bezier(.2,.75,.25,1);
}

.product-cell:hover .product-photo { transform: scale(1.018); }
.product-photo-worn { object-fit: cover; object-position: center 20%; }

.mini-product {
  position: relative;
  width: 130px;
  height: 230px;
  margin: 44px auto 16px;
}

.mini-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 145px;
  background: linear-gradient(#b7b7b2, #777);
}

.mini-product i {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 54px;
  height: 54px;
  border: 3px solid #a9aaa7;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px #e7e4dd, 0 9px 15px rgba(0,0,0,.08);
}

.mini-product.cross i { width: 24px; height: 70px; border-radius: 5px; }
.mini-product.cross i::before { content: ""; position: absolute; left: -17px; top: 18px; width: 52px; height: 16px; border: 3px solid #a9aaa7; border-radius: 4px; background: var(--bone); }
.mini-product.heart i { border-radius: 50% 50% 44% 44%; transform: translateX(-50%) rotate(45deg); }
.mini-product.halo i { border-color: var(--candle); box-shadow: 0 0 0 10px rgba(198,154,82,.12), 0 9px 15px rgba(0,0,0,.08); }
.mini-product.paw i::after { content: "•••"; position: absolute; left: 9px; top: -26px; color: #9a9b98; font-size: 24px; letter-spacing: 0; }
.mini-product.angel i { border-radius: 52% 52% 40% 40%; }
.mini-product.angel i::before,
.mini-product.angel i::after { content: ""; position: absolute; top: 8px; width: 38px; height: 48px; border: 2px solid #a9aaa7; border-radius: 70% 20%; }
.mini-product.angel i::before { right: 37px; transform: rotate(-28deg); }
.mini-product.angel i::after { left: 37px; transform: scaleX(-1) rotate(-28deg); }

.fine-print {
  margin: 18px 5vw 0;
  color: var(--muted);
  font-size: 10px;
}

.product-customize-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.product-customize-link > span { color: var(--muted); }
.product-customize-link a { display: flex; align-items: center; gap: 24px; }
.product-customize-link a:hover { color: var(--wine); }

.customize-portal {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(340px,.78fr) minmax(0,1.22fr);
  background: var(--black);
  color: var(--bone);
}
.customize-portal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 6vw 100px 5vw;
}
.customize-portal-copy h2 {
  max-width: 660px;
  margin: 42px 0 58px;
  font-family: var(--serif);
  font-size: clamp(52px,5.5vw,88px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}
.customize-portal-copy ol {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  list-style: none;
  counter-reset: studio-step;
}
.customize-portal-copy li {
  counter-increment: studio-step;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #c7c1ba;
  font-size: 11px;
}
.customize-portal-copy li::before {
  content: "0" counter(studio-step);
  color: #d5aeb8;
  font-size: 8px;
}
.customize-portal-copy .pill-action { align-self: flex-start; margin-top: 54px; }
.customize-portal-visual {
  position: relative;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  background: #ede9e1;
}
.customize-portal-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 60%,rgba(18,15,14,.48));
  pointer-events: none;
}
.customize-portal-visual img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.customize-portal-visual:hover img { transform: scale(1.018); }
.customize-portal-visual span {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: flex;
  gap: 16px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(24px,2.5vw,38px);
}
.customize-portal-visual span b {
  padding-top: 8px;
  color: #e5ccd2;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .12em;
}
.customize-portal-visual i {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  color: white;
  font-size: 8px;
  font-style: normal;
  letter-spacing: .12em;
  opacity: 0;
}

.configurator-section { padding: 140px 5vw; }

.config-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 78px;
}

.config-intro .section-index { grid-column: 1 / -1; margin-bottom: 0; }
.config-intro p:last-child { max-width: 430px; margin: 0 0 10px; color: var(--muted); }

.config-shell {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
  gap: 6vw;
  align-items: start;
}

.config-preview {
  position: sticky;
  top: 92px;
  border-top: 1px solid var(--line);
}

.preview-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 39%, rgba(198,154,82,.26), rgba(198,154,82,.04) 22%, transparent 44%),
    linear-gradient(155deg, #f0ede6, #fbfaf6 50%, #eae6de);
}

.config-real-product {
  position: absolute;
  z-index: 1;
  inset: 34px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 68px);
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .32s ease, transform .42s ease;
}

.preview-stage.uses-real-product .config-real-product { opacity: 1; transform: scale(1); }
.preview-stage.uses-real-product .chain,
.preview-stage.uses-real-product .pendant { opacity: 0; pointer-events: none; }
.preview-stage.uses-real-product .projection-scene { z-index: 3; top: 16%; right: 5%; width: 180px; height: 180px; }

.projection-scene {
  position: absolute;
  top: 22%;
  right: 8%;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,177,105,.75), rgba(218,177,105,.18) 62%, transparent 70%);
  color: rgba(75,16,33,.65);
  text-align: center;
  filter: blur(.15px);
}

.projection-scene::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 62%;
  width: 190px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(198,154,82,.26), rgba(198,154,82,.72));
  transform: rotate(-8deg);
  transform-origin: right center;
}

.projection-image {
  max-width: 120px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: .95;
}

.chain {
  position: absolute;
  top: -40px;
  left: 30%;
  width: 190px;
  height: 450px;
  border: 2px solid #9a9b99;
  border-top: 0;
  border-radius: 0 0 48% 48%;
  filter: drop-shadow(0 5px 3px rgba(0,0,0,.08));
}

.pendant {
  --metal: #b9bab8;
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 30%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  color: var(--metal);
  filter: drop-shadow(0 12px 12px rgba(0,0,0,.18));
  transition: width .3s ease, height .3s ease, color .3s ease, transform .3s ease, opacity .25s ease;
}

.pendant::before,
.pendant::after { content: ""; position: absolute; }

.pendant-heart::before {
  inset: 7px;
  border: 8px solid var(--metal);
  border-radius: 50% 50% 44% 44%;
  transform: rotate(45deg);
}

.pendant-cross { width: 58px; height: 126px; }
.pendant-cross::before { left: 18px; top: 0; width: 23px; height: 126px; border-radius: 7px; background: linear-gradient(90deg, #797a79, var(--metal) 36%, #f4f4f1 53%, #7b7c7b); }
.pendant-cross::after { left: -8px; top: 35px; width: 76px; height: 24px; border-radius: 7px; background: linear-gradient(#7d7e7c, #f3f3f0 43%, var(--metal)); }

.pendant-angel { width: 130px; height: 92px; }
.pendant-angel::before,
.pendant-angel::after { top: 7px; width: 68px; height: 78px; border: 8px solid var(--metal); border-radius: 80% 18%; }
.pendant-angel::before { right: 60px; transform: rotate(-24deg); }
.pendant-angel::after { left: 60px; transform: scaleX(-1) rotate(-24deg); }

.pendant-halo::before { inset: 3px; border: 9px solid var(--metal); border-radius: 50%; box-shadow: inset 0 0 0 4px rgba(255,255,255,.7); }

.pendant-paw::before { left: 22px; top: 35px; width: 48px; height: 45px; border: 8px solid var(--metal); border-radius: 54% 54% 44% 44%; }
.pendant-paw::after { content: "••••"; left: 2px; top: -21px; color: var(--metal); font-size: 38px; letter-spacing: -5px; }

.pendant-stone {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  border: 3px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #f6efe0 0 8%, #403d3c 35%, #090909 70%);
  box-shadow: 0 0 0 4px var(--metal), 0 2px 9px rgba(0,0,0,.45);
  transform: translate(-50%, -50%);
}

.finish-silver { --metal: #bbbdbb; }
.finish-gold { --metal: #b78a3b; }
.finish-rose { --metal: #b77972; }

.preview-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.preview-summary p { margin: 0; font-family: var(--serif); font-size: 24px; }
.preview-summary span { color: var(--muted); font-size: 11px; }
.preview-summary strong { align-self: center; font-family: var(--serif); font-size: 34px; font-weight: 400; }

.progress-track { height: 2px; margin-top: 18px; background: rgba(23,21,20,.12); }
.progress-track span { display: block; height: 100%; background: var(--wine); transition: width .3s ease; }
.progress-copy { display: flex; justify-content: space-between; margin: 8px 0 0; color: var(--muted); font-size: 10px; }
.progress-copy button { padding: 0; border: 0; background: none; color: var(--wine); cursor: pointer; }

.config-steps { border-top: 1px solid var(--line); }
.config-step { border-bottom: 1px solid var(--line); }

.step-heading {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(120px, .5fr) 1fr;
  align-items: center;
  gap: 12px;
  padding: 26px 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.step-heading > span { color: var(--wine); font-size: 10px; }
.step-heading b { font-size: 14px; }
.step-heading em { color: var(--muted); font-size: 12px; font-style: normal; text-align: right; }

.step-body { padding: 4px 0 42px 56px; animation: step-in .35s ease both; }
.step-question { margin: 0 0 20px; font-family: var(--serif); font-size: 28px; line-height: 1.1; }

.option-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.option-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.option {
  position: relative;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,249,.42);
  text-align: left;
  cursor: pointer;
  transition: border .2s ease, background .2s ease, transform .2s ease;
}

.option:hover { border-color: rgba(116,29,52,.55); transform: translateY(-1px); }
.option.is-selected { border: 2px solid var(--wine); background: var(--paper); padding: 15px 17px; }
.option.is-selected::after { content: "✓"; position: absolute; right: 13px; top: 11px; color: var(--wine); font-size: 12px; }
.option b { padding-right: 14px; font-size: 13px; }
.option span { color: var(--muted); font-size: 11px; }
.option small { margin-left: 7px; color: var(--wine); font-size: 8px; letter-spacing: .1em; }
.recommended-option { background: #f1ede6; }

.option.with-preview {
  min-height: 118px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
}
.option.with-preview.is-selected { padding: 9px; }
.option.with-preview > img { width: 86px; height: 96px; display: block; border-radius: 4px; object-fit: cover; background: #f1eee8; }
.option.with-preview > span { display: grid; gap: 7px; color: var(--ink); }
.option.with-preview > span b { font-size: 13px; }
.option.with-preview > span small { margin: 0; color: var(--muted); font-size: 10px; font-weight: 400; letter-spacing: 0; line-height: 1.35; }

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.step-actions > span { max-width: 360px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.step-actions button { min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; background: var(--wine); color: #fff; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.step-actions button:hover { background: #4d1021; }

.finish-question { margin-top: 32px; }
.finish-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.finish-choice { display: flex; align-items: center; gap: 9px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; cursor: pointer; }
.finish-choice.is-selected { border-color: var(--wine); color: var(--wine); }
.finish-choice i { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.finish-choice i.silver { background: linear-gradient(135deg,#f1f1ef,#949693); }
.finish-choice i.gold { background: linear-gradient(135deg,#f0d38d,#9b6b25); }
.finish-choice i.rose { background: linear-gradient(135deg,#e4bbb4,#9d5f58); }

.photo-check {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px dashed rgba(116,29,52,.4);
  background: rgba(255,253,249,.45);
}
.photo-check p { margin: 0; font-size: 12px; }
.photo-check span { color: var(--muted); font-size: 10px; }
.upload-button { padding: 10px 14px; border-radius: 999px; background: var(--wine); color: white; font-size: 10px; cursor: pointer; }
.upload-button input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.clarity-result { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--line); }
.clarity-result > span { color: var(--sage); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.clarity-result p { margin-top: 5px; }

.date-field { display: grid; grid-template-columns: 150px 1fr; gap: 10px 18px; align-items: center; margin-top: 22px; font-size: 11px; font-weight: 600; }
.date-field input { padding: 11px 12px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); }
.date-field span { grid-column: 2; color: var(--muted); font-size: 9px; font-weight: 400; }

.review-list { border-top: 1px solid var(--line); }
.review-row { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.review-row span:first-child { color: var(--muted); }
.review-row strong { font-weight: 500; }

.review-notice { margin: 22px 0; padding: 18px; background: #efe9df; }
.review-notice p { margin: 0; font-size: 11px; }
.review-notice p + p { margin-top: 5px; color: var(--muted); }

.approve-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  cursor: pointer;
}

.proof-section {
  padding: 140px 5vw 0;
  background: var(--black);
  color: var(--bone);
}

.section-index.light { color: #d5aeb8; }

.proof-intro {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 10vw;
  align-items: end;
  padding-bottom: 100px;
}

.proof-intro .section-index { grid-column: 1 / -1; margin-bottom: 0; }
.proof-intro h2 { font-size: clamp(60px, 7vw, 108px); }
.proof-intro > p:last-child { margin: 0 0 10px; color: #aaa39c; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}

.proof-item {
  min-height: 380px;
  padding: 28px 24px 34px 0;
  border-right: 1px solid rgba(255,255,255,.2);
}
.proof-item + .proof-item { padding-left: 24px; }
.proof-item:last-child { border-right: 0; }
.proof-item > span { color: #d5aeb8; font-size: 10px; }
.proof-item h3 { margin: 90px 0 18px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.proof-item p { min-height: 88px; margin: 0; color: #aaa39c; font-size: 13px; }
.proof-item a { display: inline-block; margin-top: 38px; border-bottom: 1px solid currentColor; color: #f7edf0; font-size: 11px; }

.paths-section { background: var(--paper); }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.paths-grid article { min-height: 340px; padding: 28px 5vw 30px 0; border-right: 1px solid var(--line); }
.paths-grid article + article { padding-left: 4vw; }
.paths-grid article:last-child { border-right: 0; }
.paths-grid span { color: var(--wine); font-size: 10px; }
.paths-grid h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.paths-grid p { min-height: 72px; color: var(--muted); font-size: 13px; }
.paths-grid b { font-size: 9px; letter-spacing: .13em; }

.faq-section { border-top: 1px solid var(--line); }
.faq-section h2 { max-width: 840px; margin-bottom: 70px; }
.faq-list { margin-left: 34%; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; font-size: 14px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--wine); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: 0; padding: 0 0 26px; color: var(--muted); font-size: 13px; }

.final-section {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 5vw;
  background: var(--wine-deep);
  color: white;
  text-align: center;
}
.final-section .eyebrow { color: #d5aeb8; }
.final-section h2 { font-size: clamp(60px, 7vw, 112px); }
.pill-action.dark { margin-top: 46px; border-color: #e9cbd2; color: #fff; }
.pill-action.dark b { background: #e9cbd2; color: var(--wine-deep); }
.pill-action.dark:hover { background: #e9cbd2; color: var(--wine-deep); }
.pill-action.dark:hover b { background: var(--wine-deep); color: white; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr .6fr 1.1fr;
  gap: 40px;
  padding: 58px 5vw 70px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--black);
  color: #c6c0ba;
  font-size: 10px;
}
.site-footer p { margin: 0; }
.site-footer p + p { margin-top: 8px; }
.site-footer div:nth-child(3) { display: flex; flex-direction: column; gap: 8px; }
.site-footer > p { max-width: 330px; justify-self: end; text-align: right; }

.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}
.reveal-on-scroll.is-visible { animation: section-in .75s cubic-bezier(.2,.75,.25,1) both; }

@keyframes hero-copy-in { from { opacity: 0; transform: translateY(-32%); } to { opacity: 1; transform: translateY(-42%); } }
@keyframes hero-breathe { from { transform: scale(1); } to { transform: scale(1.025); } }
@keyframes light-pulse { 0%,100% { opacity: .55; transform: translate(50%, -48%) scale(.96); } 50% { opacity: 1; transform: translate(50%, -48%) scale(1.04); } }
@keyframes cue { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes step-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes section-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .hero-copy { width: 54vw; }
  .hero-wash { background: linear-gradient(90deg, rgba(247,244,238,.96) 0%, rgba(247,244,238,.78) 43%, rgba(247,244,238,.05) 74%); }
  .hero-memory-note { display: none; }
  .hero--projection .hero-wash { background: linear-gradient(90deg, rgba(247,244,238,.93) 0%, rgba(247,244,238,.72) 42%, rgba(247,244,238,.04) 78%); }
  .meaning-intro { grid-template-columns: 1fr; }
  .meaning-intro small { justify-self: start; }
  .story-chapter, .story-remembrance { grid-template-columns: 1fr 1fr; }
  .story-copy { padding: 7vw 5vw; }
  .story-number { margin-bottom: 9vh; }
  .thesis-grid { grid-template-columns: 1fr 1fr; gap: 5vw; }
  .config-shell { grid-template-columns: minmax(320px, .8fr) minmax(430px, 1.2fr); gap: 4vw; }
  .preview-stage { min-height: 540px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .real-product-gallery { grid-template-columns: minmax(0, 1fr) 124px; }
  .product-feature-frame figcaption { grid-template-columns: 110px 1fr; }
  .real-product-motion { padding: 48px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
}

@media (max-width: 780px) {
  .prototype-bar { height: 34px; font-size: 8px; text-align: center; }
  .site-header { top: 34px; height: 58px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .site-header.is-fixed { top: 0; }
  .micro-nav { display: none; }
  .wordmark { font-size: 18px; }
  .hero { min-height: calc(100svh - 34px); }
  .hero-image { object-position: 58% center; }
  .hero-wash { background: linear-gradient(0deg, rgba(247,244,238,.99) 0%, rgba(247,244,238,.93) 39%, rgba(247,244,238,.18) 70%, transparent 100%); }
  .hero--projection .hero-image { object-position: 62% center; }
  .hero--projection .hero-wash { background: linear-gradient(0deg, rgba(247,244,238,.99) 0%, rgba(247,244,238,.94) 37%, rgba(247,244,238,.12) 66%, rgba(247,244,238,0) 100%); }
  .hero-light-ring { top: 28%; right: 50%; width: 52vw; transform: translate(50%, -50%); }
  .hero-copy { left: 20px; top: auto; bottom: 72px; width: calc(100% - 40px); animation: none; transform: none; }
  .hero h1 { max-width: 540px; font-size: clamp(44px, 13.2vw, 66px); }
  .hero-lede { max-width: 92%; margin-top: 18px; font-size: 14px; }
  .hero-actions { margin-top: 22px; }
  .hero-caption { display: none; }
  .hero-memory-note { display: none; }
  .scroll-cue { display: none; }
  .meaning-intro { min-height: 76svh; grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; gap: 22px; padding: 80px 20px 58px; }
  .meaning-intro .section-index { grid-column: auto; }
  .meaning-intro h2 { grid-column: auto; font-size: clamp(52px, 15vw, 72px); }
  .meaning-intro > p { margin-top: 8px; font-size: 25px; }
  .meaning-intro small { justify-self: start; }
  .story-chapter, .story-remembrance { min-height: auto; grid-template-columns: 1fr; }
  .story-chapter figure, .story-remembrance figure { min-height: 112vw; grid-column: 1; grid-row: 1; }
  .story-chapter .story-copy, .story-remembrance .story-copy { grid-column: 1; grid-row: 2; padding: 68px 20px 78px; }
  .story-number { margin-bottom: 48px; }
  .story-copy h3 { font-size: 52px; }
  .story-copy > p:not(.story-number) { margin-top: 22px; font-size: 13px; }
  .story-copy a { margin-top: 32px; }
  .story-remembrance figure img { object-position: center 22%; }
  .reveal-section { grid-template-columns: 1fr; gap: 62px; padding: 92px 20px; }
  .reveal-copy h2 { font-size: 60px; }
  .reveal-film video { aspect-ratio: 1 / 1; }
  .thesis-section, .real-product-section, .collection-section, .paths-section, .faq-section { padding-top: 84px; padding-bottom: 84px; }
  .thesis-grid, .real-product-intro, .section-heading, .config-intro, .proof-intro { grid-template-columns: 1fr; gap: 32px; }
  .real-product-intro .section-index { grid-column: auto; }
  .real-product-intro { margin-bottom: 48px; }
  .real-product-intro h2 { font-size: 58px; }
  .real-product-gallery { grid-template-columns: 1fr; }
  .product-feature-frame { min-height: 92vw; }
  .product-thumbnails { grid-template-columns: repeat(5, minmax(120px, 1fr)); grid-template-rows: none; overflow-x: auto; }
  .product-thumb { min-height: 126px; }
  .product-feature-frame figcaption { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 8px; }
  .product-facts { grid-template-columns: repeat(2, 1fr); }
  .product-facts div:nth-child(2) { border-right: 0; }
  .product-facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .catalog-bridge { grid-template-columns: 1fr; }
  .catalog-bridge > div:last-child { justify-self: start; }
  .customize-portal { grid-template-columns: 1fr; }
  .customize-portal-copy { min-height: 78svh; padding: 90px 20px 76px; }
  .customize-portal-copy h2 { margin: 34px 0 46px; font-size: 58px; }
  .customize-portal-copy .pill-action { margin-top: 44px; }
  .customize-portal-visual, .customize-portal-visual img { min-height: 112vw; }
  .customize-portal-visual span { right: 20px; bottom: 24px; left: 20px; font-size: 28px; }
  .real-product-motion { grid-template-columns: 1fr; margin-top: 76px; padding: 36px; }
  .section-heading { padding-bottom: 46px; }
  .section-heading > p { max-width: 100%; }
  .thesis-grid h2, .section-heading h2, .config-intro h2, .faq-section h2 { font-size: 52px; }
  .large-copy { font-size: 30px; }
  .product-rail { grid-template-columns: repeat(6, minmax(76vw, 1fr)); }
  .product-cell { min-height: 430px; }
  .configurator-section { padding: 96px 20px; }
  .config-intro .section-index { grid-column: auto; }
  .config-shell { grid-template-columns: 1fr; gap: 48px; }
  .config-preview { position: relative; top: auto; }
  .preview-stage { min-height: 480px; }
  .config-steps { border-top: 1px solid var(--line); }
  .step-body { padding-left: 0; }
  .step-heading { grid-template-columns: 34px 1fr; }
  .step-heading em { grid-column: 2; margin-top: -8px; text-align: left; }
  .option-grid.two-up { grid-template-columns: 1fr; }
  .step-actions { align-items: stretch; flex-direction: column; }
  .step-actions button { width: 100%; }
  .proof-section { padding: 96px 20px 0; }
  .proof-intro { padding-bottom: 68px; }
  .proof-intro h2 { font-size: 58px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item + .proof-item { min-height: 300px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .proof-item h3 { margin-top: 55px; }
  .paths-grid { grid-template-columns: 1fr; }
  .paths-grid article, .paths-grid article + article { min-height: 270px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .paths-grid h3 { margin-top: 44px; }
  .faq-list { margin-left: 0; }
  .final-section { min-height: 72vh; }
  .final-section h2 { font-size: 58px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { justify-self: start; text-align: left; }
}

@media (max-width: 480px) {
  .hero-image { height: 57%; object-position: center 46%; }
  .hero--projection .hero-image { height: 56%; object-position: 62% center; }
  .hero-light-ring { top: 29%; }
  .hero h1 { font-size: 43px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .pill-action { min-height: 44px; }
  .thesis-section, .paths-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .real-product-section { padding-left: 20px; padding-right: 20px; }
  .product-feature-frame { min-height: 118vw; }
  .product-feature-frame figcaption { position: relative; left: auto; right: auto; bottom: auto; border-width: 1px 0 0; }
  .product-feature-frame > img { height: 90vw; }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div, .product-facts div + div { min-height: 90px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-customize-link { align-items: flex-start; flex-direction: column; }
  .customize-portal-copy ol { grid-template-columns: 1fr; }
  .customize-portal-copy h2 { font-size: 48px; }
  .customize-portal-visual, .customize-portal-visual img { min-height: 132vw; }
  .real-product-motion { padding: 28px 20px; }
  .section-heading { padding-left: 20px; padding-right: 20px; }
  .product-cell { min-height: 410px; }
  .mini-product { height: 210px; margin-top: 34px; }
  .preview-stage { min-height: 430px; }
  .chain { left: 26%; height: 340px; }
  .pendant { left: 26%; }
  .projection-scene { right: -1%; width: 180px; height: 180px; }
  .photo-check { grid-template-columns: 1fr; }
  .upload-button { width: max-content; }
  .date-field { grid-template-columns: 1fr; }
  .date-field span { grid-column: 1; }
  .review-row { grid-template-columns: 1fr 1fr; }
  .review-row em { display: none; }
  .site-footer { grid-template-columns: 1fr; }
}

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