:root {
  --bg: #f2f0eb;
  --text: #0d1420;
  --muted: #596174;
  --line: #b89f62;
  --surface: #f8f6f2;
  --focus: #1f3a67;
  --header-h: 3.9rem;
  --radius: 0.75rem;
  --shadow: 0 3px 14px rgba(13, 20, 32, 0.04);
  --space-1: clamp(0.7rem, 1.3vw, 0.9rem);
  --space-2: clamp(1rem, 2vw, 1.3rem);
  --space-3: clamp(1.5rem, 2.8vw, 2rem);
  --container-gutter: 1.5rem;
  --indicator-bottom: calc(env(safe-area-inset-bottom, 0px) + 10vh);
  --viewport-h: 100dvh;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--header-h);
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  .panel {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 0.5rem 0.8rem;
  z-index: 1001;
}

.skip-link:focus-visible {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 91%, white 9%);
  border-top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 30%, transparent);
  backdrop-filter: blur(4px);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

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

.brand img {
  height: 34px;
  width: auto;
  max-width: none;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.primary-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  background: var(--bg);
  border-bottom: 0;
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s linear 0.22s;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 24%, transparent);
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.95rem 1.25rem 1.3rem;
  display: grid;
  gap: 0.35rem;
}

.primary-nav a {
  display: block;
  width: 100%;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.primary-nav a.active {
  color: var(--text);
  border-bottom-color: color-mix(in srgb, var(--line) 80%, transparent);
}

.nav-shop-link {
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0.45rem 0;
}

.nav-shop-link.active {
  background: transparent;
  color: var(--text);
  border-bottom-color: color-mix(in srgb, var(--line) 80%, transparent);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid color-mix(in srgb, var(--line) 38%, transparent);
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 0.24rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.39rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.39rem) rotate(-45deg);
}

.panel {
  min-height: var(--viewport-h);
  padding: calc(var(--header-h) + clamp(1.8rem, 4vw, 2.8rem)) 0 clamp(2.4rem, 5vw, 4rem);
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  opacity: 0.46;
  transform: translateY(0.9rem);
  transition: opacity 360ms ease, transform 360ms ease;
}

.panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.panel-with-indicator {
  position: relative;
  min-height: var(--viewport-h);
  height: auto;
  padding-top: calc(var(--header-h) + clamp(1.2rem, 4.5vw, 1.8rem));
  padding-bottom: 0;
}

.panel-with-indicator > .scroll-indicator {
  bottom: var(--indicator-bottom);
}

.panel-inner {
  width: min(100%, 62rem);
  display: grid;
  gap: var(--space-2);
}

.panel-inner.narrow {
  width: min(100%, 42rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.015em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 7.2vw, 5rem);
  max-width: 16ch;
}

.hero .panel-inner {
  justify-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 8.5vw, 5rem);
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.hero-title-base {
  font-weight: 500;
  color: #0d1420;
}

.hero-title-accent {
  font-weight: 500;
  color: #0d1420;
}

.hero .lede {
  max-width: 34ch;
  font-size: clamp(1.06rem, 1.7vw, 1.16rem);
  margin-top: 2.35rem;
  margin-inline: auto;
  text-align: center;
}

h2 {
  font-size: clamp(1.8rem, 5.2vw, 3.4rem);
  max-width: 19ch;
}

#why-title {
  white-space: nowrap;
  max-width: none;
  margin-bottom: 0.55rem;
}

#why h3 {
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
}

#why p {
  font-size: clamp(0.74rem, 1.35vw, 0.9rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

#brand-statement .panel-inner {
  width: 100%;
  justify-items: center;
  text-align: center;
}

#brand-statement {
  position: relative;
}

#brand-definition .panel-inner {
  width: 100%;
  justify-items: center;
  text-align: center;
}

#moment .panel-inner {
  width: 100%;
  justify-items: center;
  text-align: center;
}

.moment-title {
  margin: 0;
  max-width: min(92vw, 42rem);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.25rem, 5.4vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
}

.moment-divider {
  width: min(13.5rem, 58vw);
  height: 1px;
  margin: clamp(1.7rem, 3.8vw, 2.5rem) 0 clamp(1.2rem, 3vw, 1.8rem);
  background: color-mix(in srgb, var(--text) 24%, transparent);
}

.moment-subline {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.06rem, 3.2vw, 1.16rem);
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
  color: #7f8893;
}

.brand-def-title {
  margin: 0;
  max-width: min(92vw, 40rem);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.32;
}

.brand-def-title span {
  display: block;
}

.brand-def-l1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: clamp(1.1rem, 2.3vw, 1.5rem);
}

.brand-def-l2 {
  font-size: clamp(1.6rem, 5.2vw, 2rem);
  line-height: 1.22;
}

.brand-def-l3 {
  font-size: clamp(1.6rem, 5.2vw, 2rem);
  line-height: 1.22;
  margin-top: clamp(0.5rem, 1.2vw, 0.7rem);
}

.brand-def-note {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--indicator-bottom) + 4.6rem);
  margin: 0;
  width: min(92vw, 32rem);
  text-align: center;
  color: var(--text);
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.35;
  color: var(--muted);
}

.statement-title {
  width: fit-content;
  max-width: min(94vw, 42rem);
  margin: 0 auto;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.35;
}

.statement-title .l1,
.statement-title .l2 {
  display: block;
}

.statement-title .l2 {
  font-size: clamp(2rem, 4.1vw, 2.55rem);
  font-weight: 400;
}

.statement-title .l1 {
  font-size: clamp(1.75rem, 3.4vw, 2.15rem);
  font-weight: 400;
  white-space: nowrap;
}

.statement-title .l1 + .l2 {
  margin-top: clamp(1.8rem, 4vw, 2.7rem);
}

.section-indicator {
  z-index: 4;
  width: 2.2rem;
  height: 2.2rem;
  background: color-mix(in srgb, var(--bg) 90%, white 10%);
  border-color: color-mix(in srgb, var(--line) 78%, transparent);
}

.section-indicator span {
  border-right-color: var(--text);
  border-bottom-color: var(--text);
}

p,
li,
th,
td {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  line-height: 1.68;
}

.lede,
.note {
  color: var(--muted);
  max-width: 58ch;
}

.prompt-block {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--line) 45%, transparent);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.choice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-1);
}

.choice-list li {
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, white 12%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid color-mix(in srgb, var(--line) 36%, transparent);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.moment-fillin {
  margin: -0.15rem 0 0.35rem;
  text-align: left;
  justify-self: start;
  color: #b19357;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.moment-fillin span {
  display: inline-block;
  width: clamp(4.2rem, 12vw, 7rem);
  vertical-align: baseline;
  border-bottom: 1px solid #b19357;
  transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
}

th,
td {
  text-align: left;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 18%, transparent);
}

thead th {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--surface) 82%, white 18%);
}

#investment .panel-inner {
  width: min(100%, 58rem);
  gap: 0.95rem;
}

#investment h2 {
  text-align: left;
  justify-self: start;
  white-space: nowrap;
  max-width: none;
}

.investment-intro p {
  margin: 0;
}

.investment-meta {
  margin-top: 0.35rem;
}

.investment-meta p {
  margin: 0;
}

.investment-meta p:first-child {
  margin-bottom: 0.22rem;
}

.investment-meta p:nth-child(2),
.investment-meta p:nth-child(3) {
  color: var(--muted);
  font-style: italic;
}

.investment-closing {
  margin: 0.85rem 0 1.9rem;
  text-align: center;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  line-height: 1.2;
  font-weight: 400;
}

#investment th,
#investment td {
  text-align: center;
}

.materials-brief-inner {
  justify-items: center;
  text-align: center;
  gap: 0;
}

.materials-brief-inner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4.7vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: none;
  white-space: nowrap;
}

.materials-brief-copy {
  margin-top: clamp(2.2rem, 5vw, 3rem);
  display: grid;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.materials-brief-copy p {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.materials-brief-note {
  margin: clamp(2.4rem, 5.4vw, 3.4rem) 0 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.4;
  font-weight: 400;
}

.title-screen {
  text-align: center;
}

.title-screen .panel-inner {
  justify-items: center;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

[id^="product-"] .panel-inner {
  width: 100%;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
}

.product-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

#product-love-on-my-terms-title {
  white-space: nowrap;
  max-width: none;
}

.product-divider {
  width: min(100%, 18rem);
  height: 1px;
  background: color-mix(in srgb, var(--line) 82%, transparent);
  margin: 0.35rem 0 0.4rem;
}

.product-cut {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.2;
}

[id^="product-"] .product-grid {
  width: min(100%, 36rem);
  gap: 1.25rem;
}

[id^="product-"] .product-image-main,
[id^="product-"] .product-image-side {
  margin: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

[id^="product-"] .product-image-main img,
[id^="product-"] .product-image-side img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.product-note {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.2;
}

.product-image-main,
.product-image-side {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 26%, transparent);
  box-shadow: var(--shadow);
}

.product-image-main img,
.product-image-side img {
  width: 100%;
  min-height: 12rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.product-image-side figcaption {
  padding: 0.8rem 0.95rem;
  color: var(--muted);
}

.copy-grid {
  display: grid;
  gap: var(--space-1);
  max-width: 72ch;
}

.principles {
  display: grid;
  gap: var(--space-1);
}

.principles article {
  border: 1px solid color-mix(in srgb, var(--line) 30%, transparent);
  border-radius: var(--radius);
  padding: 1.05rem;
  background: var(--surface);
}

.final .panel-inner {
  justify-items: start;
}

.cta-button {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 20, 32, 0.12);
}

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

footer p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

#final-cta .panel-inner {
  width: min(100%, 46rem);
  height: 100%;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

#final-cta {
  min-height: var(--viewport-h);
  height: auto;
  padding-top: clamp(1.6rem, 3.6vw, 2.4rem);
  padding-bottom: max(3.6rem, calc(env(safe-area-inset-bottom) + 2.2rem));
}

#final-cta .final-main {
  display: grid;
  justify-items: center;
  gap: clamp(2rem, 4.6vw, 3.2rem);
  transform: translateY(-15%);
}

#final-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.05rem, 6.8vw, 3.15rem);
  font-weight: 400;
  line-height: 1.18;
  max-width: none;
}

#final-cta .cta-button {
  margin-top: 0;
  min-height: 0;
  padding: 0.8rem 1.45rem;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  background: transparent;
  color: var(--text);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: none;
}

#final-cta .cta-button:hover {
  opacity: 1;
  transform: translateY(0);
  box-shadow: none;
  background: color-mix(in srgb, var(--line) 10%, transparent);
}

#final-cta footer {
  position: absolute;
  left: 50%;
  bottom: max(0.2rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  margin-top: 0;
  padding-bottom: 0;
  width: 100%;
  text-align: center;
}

#final-cta footer p {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
}

.site-toast {
  position: fixed;
  left: 50%;
  top: calc(var(--header-h) + 1rem);
  transform: translateX(-50%);
  z-index: 2000;
  padding: 0.62rem 0.9rem;
  border: 1px solid #c4382a;
  background: color-mix(in srgb, var(--bg) 94%, white 6%);
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.4;
  width: min(36rem, calc(100vw - 1.5rem));
  white-space: normal;
  text-align: center;
  word-break: break-word;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 52%, transparent);
  display: grid;
  place-content: center;
}

.scroll-indicator span {
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: rotate(45deg) translateY(-0.08rem);
  animation: drift 1.8s infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: rotate(45deg) translate(-0.08rem, -0.08rem);
  }

  50% {
    transform: rotate(45deg) translate(0.08rem, 0.08rem);
  }
}

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

@media (max-width: 47.99rem) {
  .hero {
    overflow: visible;
  }

  .site-header {
    backdrop-filter: none;
  }

  .scroll-indicator {
    display: inline-grid;
    width: 2.2rem;
    height: 2.2rem;
    background: color-mix(in srgb, var(--bg) 92%, white 8%);
    border-color: color-mix(in srgb, var(--line) 62%, transparent);
  }

}

@media (max-width: 600px) {
  #brand-statement .statement-title {
    white-space: normal;
  }

  #brand-statement .statement-title .l1 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 1.35rem;
    font-weight: 500;
    white-space: normal;
  }

  #brand-statement .statement-title .l2 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
  }

  #brand-statement .statement-title .l1 + .l2 {
    margin-top: 0.2rem;
  }

  .moment-title {
    font-size: 1.1rem;
    line-height: 1.18;
    max-width: min(92vw, 20rem);
  }

  .moment-divider {
    width: min(11.3rem, 66vw);
    margin: 1.9rem 0 1.2rem;
  }

  .moment-subline {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .brand-def-title {
    max-width: min(92vw, 21rem);
  }

  .brand-def-l1 {
    font-size: 2.9rem;
    margin-bottom: 0.95rem;
  }

  .brand-def-l2,
  .brand-def-l3 {
    font-size: 1.35rem;
    line-height: 1.22;
  }

  .brand-def-note {
    width: min(90vw, 19.5rem);
    font-size: 0.75rem;
    line-height: 1.35;
    bottom: calc(var(--indicator-bottom) + 4.5rem);
  }

  #first-choices .choice-list li {
    padding-left: 0.95rem;
    padding-right: 0.9rem;
  }

  #bold-choices .choice-list li {
    padding-left: 0.95rem;
    padding-right: 0.9rem;
  }

  /* Mobile-only: restore horizontal table scroll and make scroll affordance obvious */
  #choose-moment .table-wrap {
    overflow-x: auto;
    position: relative;
    padding-bottom: 0.1rem;
  }

  #choose-moment table {
    width: auto;
    min-width: 35rem;
    table-layout: auto;
  }

  #choose-moment th,
  #choose-moment td {
    padding: 0.72rem 0.7rem;
    vertical-align: top;
    word-break: normal;
    overflow-wrap: break-word;
  }

  #choose-moment .table-wrap::before {
    content: "Swipe →";
    position: absolute;
    right: 0.6rem;
    top: 0.45rem;
    color: color-mix(in srgb, var(--text) 55%, transparent);
    background: color-mix(in srgb, var(--surface) 88%, white 12%);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.12rem 0.35rem;
    border-radius: 999px;
    pointer-events: none;
    z-index: 2;
  }

  #choose-moment .table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1.35rem;
    height: 3rem;
    background: linear-gradient(to left, var(--surface), rgba(242, 240, 235, 0));
    border-top-right-radius: var(--radius);
    pointer-events: none;
  }

  [id^="product-"] .panel-inner {
    width: 100%;
    transform: translateY(-1.2rem);
  }

  .product-title {
    font-size: 2.2rem;
  }

  #product-love-on-my-terms-title {
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
  }

  .product-divider {
    width: min(100%, 16.5rem);
    margin: 0.35rem 0 0.45rem;
  }

  .product-cut {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  [id^="product-"] .product-grid {
    width: min(100%, 19.5rem);
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  [id^="product-"] .product-image-main img,
  [id^="product-"] .product-image-side img {
    aspect-ratio: 1 / 1;
    height: clamp(10.5rem, 40vw, 12.8rem);
    object-fit: cover;
    object-position: center;
  }

  .product-note {
    margin-top: 0.95rem;
    margin-bottom: 1.9rem;
    font-size: 0.95rem;
  }

  #investment .panel-inner {
    gap: 0.8rem;
  }

  #investment .table-wrap {
    overflow-x: hidden;
  }

  #investment table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  #investment th,
  #investment td {
    padding: 0.46rem 0.28rem;
    font-size: 0.8rem;
  }

  #investment th {
    white-space: nowrap;
    letter-spacing: 0.06em;
    font-size: 0.66rem;
  }

  #investment thead th:first-child {
    width: 22%;
    white-space: normal;
    line-height: 1.15;
  }

  #investment thead th:nth-child(2),
  #investment thead th:nth-child(3),
  #investment thead th:nth-child(4) {
    width: 26%;
  }

  .investment-intro p {
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .investment-meta p:first-child {
    margin-bottom: 0.3rem;
  }

  .investment-meta p:nth-child(2),
  .investment-meta p:nth-child(3) {
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .investment-closing {
    margin: 0.65rem 0 2.1rem;
    font-size: 1rem;
  }

  .materials-brief-inner {
    justify-items: center;
    text-align: center;
  }

  .materials-brief-inner h2 {
    max-width: none;
    white-space: nowrap;
    font-size: 1.35rem;
    line-height: 1.22;
  }

  .materials-brief-copy {
    margin-top: 2.25rem;
    gap: 0.7rem;
  }

  .materials-brief-copy p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .materials-brief-note {
    margin-top: 2.2rem;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  #why .principles article p {
    margin: 0;
  }

  #final-cta .panel-inner {
    height: 100%;
  }

  #final-cta {
    min-height: var(--viewport-h);
    height: auto;
    padding-bottom: max(4.6rem, calc(env(safe-area-inset-bottom) + 3.2rem));
  }

  #final-cta .final-main {
    gap: 2.15rem;
    transform: translateY(-12%);
  }

  #final-title {
    font-size: clamp(1.52rem, 7.2vw, 1.95rem);
    line-height: 1.22;
    white-space: nowrap;
  }

  #final-cta .cta-button {
    padding: 0.72rem 1.32rem;
    font-size: 1.03rem;
    font-weight: 500;
  }

  #final-cta footer p {
    font-size: 0.72rem;
  }
}

@media (min-width: 80rem) {
  :root {
    --container-gutter: 2.5rem;
  }
}

@media (min-width: 48rem) {
  .site-header {
    --header-h: 4.2rem;
  }

  .panel-with-indicator {
    min-height: var(--viewport-h);
    height: auto;
    padding-top: calc(var(--header-h) + clamp(1.2rem, 3.2vw, 2rem));
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    inset: auto;
    background: transparent;
    border-bottom: 0;
    max-height: none;
    overflow: visible;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .primary-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.05rem;
    padding: 0;
  }

  .nav-shop-link {
    padding: 0.2rem 0;
  }

  .primary-nav a {
    display: inline-block;
    width: auto;
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }

  .brand img {
    height: 40px;
  }

  .panel {
    padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
  }

  .product-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  [id^="product-"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    width: min(100%, 48rem);
    gap: 1rem;
  }

  [id^="product-"] .product-cut {
    font-size: 1rem;
    font-weight: 400;
  }

  [id^="product-"] .product-note {
    font-size: 1.1rem;
    font-weight: 400;
  }

  [id^="product-"] .product-image-main img,
  [id^="product-"] .product-image-side img {
    aspect-ratio: 4 / 5;
    height: clamp(18rem, 26vw, 24rem);
    object-fit: cover;
    object-position: center;
  }

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

  .scroll-indicator {
    display: inline-grid;
  }

  .materials-brief-copy p,
  .materials-brief-note {
    font-size: clamp(0.88rem, 1.7vw, 1.05rem);
    font-weight: 400;
  }

  #final-cta .cta-button {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }
}
