:root {
  --ink: #141310;
  --ink-soft: #3f3b35;
  --ivory: #f6f2ea;
  --paper: #fffdf9;
  --stone: #d8d1c5;
  --stone-light: #e9e3da;
  --oxblood: #6f2430;
  --cream: #eee5d7;
  --success: #225b43;
  --error: #8f2635;
  --display: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(100% - 48px, 1440px);
  --radius: 2px;
  --shadow: 0 28px 80px rgba(20, 19, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.drawer-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
figure { margin: 0; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 10px 16px;
}
.skip-link:focus { transform: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.page-shell { width: var(--page); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.display-xl,
.display-lg,
.display-md {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .92;
}
.display-xl { font-size: clamp(66px, 11vw, 168px); }
.display-lg { font-size: clamp(48px, 7vw, 106px); }
.display-md { font-size: clamp(38px, 5vw, 72px); }
.body-lg { font-size: clamp(19px, 2vw, 28px); line-height: 1.28; letter-spacing: -.02em; }
.muted { color: #6d675f; }
.center { text-align: center; }
.content-narrow-980 { max-width: 980px; }
.content-narrow-780 { max-width: 780px; }
.space-top-34 { margin-top: 34px; }
.not-found-page { min-height: 70vh; }
.button-outline-light { border-color: #fff; color: #fff; }
.section { padding: clamp(88px, 11vw, 168px) 0; }
.section-tight { padding: clamp(64px, 8vw, 112px) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-ivory { background: var(--ivory); }
.section-oxblood { background: var(--oxblood); color: #fff8f0; }
.rule-top { border-top: 1px solid var(--stone); }
.rule-bottom { border-bottom: 1px solid var(--stone); }

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 13px 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { background: var(--oxblood); border-color: var(--oxblood); }
.button:active { transform: scale(.98); }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: transparent; border-color: var(--paper); color: var(--paper); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.button[disabled] { cursor: not-allowed; opacity: .42; }
.button[disabled]:hover { background: var(--ink); border-color: var(--ink); }
.text-link {
  min-height: auto;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 2px 0 5px;
}
.text-link:hover { background: transparent; color: var(--oxblood); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price { font-size: 21px; font-weight: 600; }
.compare-price { color: #746e65; font-size: 15px; text-decoration: line-through; }
.sale-label {
  border: 1px solid currentColor;
  margin-left: 4px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.announcement {
  position: relative;
  z-index: 110;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 48px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(20, 19, 16, .16);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-nav,
.header-utilities { display: flex; align-items: center; gap: 26px; }
.header-nav a,
.header-utilities a,
.header-utilities button,
.menu-toggle {
  border: 0;
  background: transparent;
  padding: 8px 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-nav a,
.header-utilities a { position: relative; }
.header-nav a::after,
.header-utilities a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.header-nav a:hover::after,
.header-utilities a:hover::after { right: 0; }
.header-logo { display: block; width: clamp(128px, 13vw, 184px); }
.header-logo img { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; }
.header-utilities { justify-content: flex-end; }
.bag-count {
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
}
.menu-toggle { display: none; }

.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(-102%);
  background: var(--ink);
  color: var(--paper);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.mobile-menu.open { transform: none; }
.mobile-menu-head {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 12px 20px;
}
.mobile-menu-head img { width: 142px; }
.mobile-menu-close { border: 0; background: transparent; color: inherit; padding: 12px 0; cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.mobile-menu-links { display: flex; flex-direction: column; justify-content: center; padding: 36px 20px; }
.mobile-menu-links a { font-family: var(--display); font-size: clamp(42px, 13vw, 76px); line-height: 1.02; }
.mobile-menu-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.2); padding: 24px 20px 32px; font-size: 12px; }

.hero-scroll { position: relative; height: 420vh; background: #ddd; }
.hero-sticky { position: sticky; top: 76px; height: calc(100vh - 76px); overflow: hidden; background: #ddd; }
.hero-video,
.secondary-video { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,9,.54), rgba(10,10,9,.04) 58%, rgba(10,10,9,.08)); }
.hero-copy {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - min(100% - 48px, 1440px)) / 2));
  bottom: clamp(42px, 8vh, 90px);
  max-width: min(760px, calc(100vw - 48px));
  color: #fff;
}
.hero-brand { width: clamp(180px, 18vw, 280px); margin-bottom: 34px; }
.hero-copy h1 { max-width: 720px; margin: 0 0 22px; font-family: var(--display); font-size: clamp(58px, 8vw, 126px); font-weight: 400; letter-spacing: -.04em; line-height: .86; }
.hero-copy p { max-width: 550px; margin-bottom: 22px; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.35; }
.hero-copy .price-row { margin-bottom: 28px; }
.hero-copy .compare-price { color: rgba(255,255,255,.68); }
.hero-progress { position: absolute; z-index: 4; right: 24px; bottom: 24px; width: 92px; color: white; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-progress-track { height: 1px; margin-top: 8px; background: rgba(255,255,255,.3); }
.hero-progress-fill { width: 0%; height: 100%; background: white; }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 8vw, 120px); align-items: end; }
.intro-grid .body-lg { max-width: 590px; margin-left: auto; }
.section-heading { max-width: 940px; margin-bottom: clamp(42px, 7vw, 90px); }

.craft-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.craft-media { position: relative; min-height: 640px; overflow: hidden; background: #d7d1c8; }
.craft-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.craft-grid:hover .craft-media img { transform: scale(1.025); }
.craft-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(44px, 6vw, 96px); background: var(--ivory); }
.craft-details { display: grid; gap: 18px; }
.detail-line { display: grid; grid-template-columns: 110px 1fr; gap: 24px; border-top: 1px solid var(--stone); padding-top: 15px; font-size: 14px; }
.detail-line strong { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.color-rail { display: grid; grid-template-columns: repeat(5, minmax(210px, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); overflow-x: auto; scroll-snap-type: x mandatory; }
.color-card { min-width: 240px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); scroll-snap-align: start; }
.color-card-media { aspect-ratio: 1 / 1.1; overflow: hidden; background: #171717; }
.color-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, opacity .3s ease; }
.color-card:hover img { transform: scale(1.035); opacity: .92; }
.color-card-copy { display: flex; justify-content: space-between; align-items: center; min-height: 82px; padding: 18px; }
.color-card-copy strong { font-family: var(--display); font-size: 26px; font-weight: 400; }
.color-card-copy span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.swatch { width: 18px; height: 18px; flex: 0 0 auto; border: 1px solid rgba(20,19,16,.35); border-radius: 50%; box-shadow: inset 0 0 0 3px var(--paper); }
.swatch-pink { background: #efb6c4; }
.swatch-green { background: #0b7f55; }
.swatch-dark-blue { background: #142e66; }
.swatch-red { background: #ae1e2a; }
.swatch-platinum { background: #dedede; }

.editorial-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink); }
.editorial-panel { position: relative; min-height: min(80vw, 900px); overflow: hidden; background: #a39a8b; color: white; }
.editorial-panel video,
.editorial-panel img { width: 100%; height: 100%; object-fit: cover; }
.editorial-panel::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(10,10,10,.65)); }
.editorial-label { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.editorial-label h3 { margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 62px); font-weight: 400; line-height: .96; }
.editorial-label span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--stone); border-left: 1px solid var(--stone); }
.benefit { min-height: 230px; border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); padding: 28px; }
.benefit-number { display: block; margin-bottom: 62px; font-family: var(--display); font-size: 54px; line-height: 1; }
.benefit h3 { margin-bottom: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.benefit p { color: #6b655d; font-size: 14px; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-feature-media { min-height: 640px; overflow: hidden; }
.split-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.split-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px); }
.split-feature-copy p { max-width: 520px; }

.secondary-scroll { position: relative; height: 240vh; background: var(--ink); }
.secondary-sticky { position: sticky; top: 76px; height: calc(100vh - 76px); display: grid; place-items: center; overflow: hidden; }
.secondary-frame { position: absolute; inset-block: 0; left: 50%; width: 12%; transform: translateX(-50%); overflow: hidden; will-change: width; }
.secondary-video { position: absolute; width: 100vw; max-width: none; left: 50%; transform: translateX(-50%); }
.secondary-copy { position: relative; z-index: 3; width: var(--page); align-self: end; margin-bottom: clamp(36px, 7vh, 80px); color: white; pointer-events: none; }
.secondary-copy h2 { max-width: 800px; margin-bottom: 12px; }
.secondary-copy p { max-width: 500px; }

.faq-list { border-top: 1px solid var(--stone); }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-question { width: 100%; min-height: 78px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border: 0; background: transparent; padding: 20px 0; text-align: left; cursor: pointer; font-size: 18px; }
.faq-question span:last-child { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.faq-answer { max-width: 800px; padding: 0 0 28px; color: #5f5a53; }
.faq-answer[hidden] { display: none; }

.final-cta { position: relative; min-height: 78vh; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: white; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: url("/assets/editorial/female-red-editorial.jpg") center 47% / cover; opacity: .36; }
.final-cta-copy { position: relative; z-index: 2; width: var(--page); max-width: 950px; padding: 100px 0; text-align: center; }
.final-cta-copy .button-row { justify-content: center; margin-top: 30px; }

.product-page { padding: 56px 0 120px; }
.breadcrumbs { margin-bottom: 34px; color: #746f67; font-size: 12px; }
.breadcrumbs a { border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { border-color: currentColor; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: clamp(42px, 6vw, 92px); align-items: start; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-media { position: relative; overflow: hidden; background: #1a1a1a; }
.product-media img,
.product-media video { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.product-media:first-child { grid-column: 1 / -1; }
.product-media:first-child img { aspect-ratio: 1.3 / 1; object-fit: contain; padding: 5%; }
.product-media-caption { position: absolute; left: 14px; bottom: 12px; background: rgba(255,253,249,.9); padding: 6px 9px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.product-summary { position: sticky; top: 124px; }
.product-summary h1 { margin-bottom: 12px; font-family: var(--display); font-size: clamp(48px, 5vw, 76px); font-weight: 400; line-height: .94; letter-spacing: -.035em; }
.product-kicker { margin-bottom: 22px; color: #5d5750; font-size: 17px; }
.product-summary .price-row { margin-bottom: 32px; }
.selector-group { margin: 0 0 28px; padding: 0; border: 0; }
.selector-head { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; margin-bottom: 12px; }
.selector-head legend,
.selector-head strong { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.selector-value { color: #625c54; font-size: 13px; }
.variant-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.variant-option { position: relative; }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option label { min-height: 58px; display: grid; place-items: center; gap: 4px; border: 1px solid var(--stone); cursor: pointer; font-size: 10px; text-align: center; transition: border-color .2s ease, background .2s ease; }
.variant-option input:checked + label { border-color: var(--ink); background: var(--ivory); box-shadow: inset 0 0 0 1px var(--ink); }
.variant-option input:focus-visible + label { outline: 2px solid var(--oxblood); outline-offset: 3px; }
.variant-option label .swatch { width: 20px; height: 20px; }
.length-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.length-option { position: relative; }
.length-option input { position: absolute; opacity: 0; }
.length-option label { min-height: 54px; display: grid; place-items: center; border: 1px solid var(--stone); cursor: pointer; font-size: 13px; }
.length-option input:checked + label { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.length-option input:focus-visible + label { outline: 2px solid var(--oxblood); outline-offset: 3px; }
.quantity-row { display: grid; grid-template-columns: 124px 1fr; gap: 10px; margin-bottom: 14px; }
.quantity-control { display: grid; grid-template-columns: 38px 1fr 38px; min-height: 54px; border: 1px solid var(--ink); }
.quantity-control button { border: 0; background: transparent; cursor: pointer; }
.quantity-control input { width: 100%; border: 0; background: transparent; text-align: center; }
.add-to-cart { width: 100%; }
.purchase-note { margin: 12px 0 30px; color: #716b62; font-size: 12px; }
.product-accordions { border-top: 1px solid var(--stone); }
.product-accordion { border-bottom: 1px solid var(--stone); }
.product-accordion button { width: 100%; min-height: 60px; display: flex; justify-content: space-between; border: 0; background: transparent; padding: 16px 0; cursor: pointer; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.product-accordion-content { padding: 0 0 22px; color: #5c574f; font-size: 14px; }
.product-accordion-content[hidden] { display: none; }
.product-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-story-card { background: var(--ivory); }
.product-story-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-story-card div { padding: 24px; }

.sticky-mobile-cart { display: none; }

.cart-drawer-backdrop { position: fixed; z-index: 390; inset: 0; background: rgba(20,19,16,.48); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.cart-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; z-index: 400; top: 0; right: 0; bottom: 0; width: min(480px, 100%); display: grid; grid-template-rows: auto 1fr auto; transform: translateX(102%); background: var(--paper); transition: transform .4s cubic-bezier(.22,1,.36,1); }
.cart-drawer.open { transform: none; }
.drawer-head { min-height: 80px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--stone); padding: 20px 24px; }
.drawer-head h2 { margin: 0; font-family: var(--display); font-size: 32px; font-weight: 400; }
.drawer-close { border: 0; background: transparent; cursor: pointer; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.drawer-lines { overflow: auto; padding: 0 24px; }
.cart-line { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; border-bottom: 1px solid var(--stone); padding: 22px 0; }
.cart-line img { width: 96px; height: 116px; object-fit: cover; background: #171717; }
.cart-line h3 { margin-bottom: 4px; font-family: var(--display); font-size: 22px; font-weight: 400; }
.cart-line-meta { color: #6e685f; font-size: 12px; }
.cart-line-actions { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.cart-line-actions button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 0; cursor: pointer; font-size: 11px; }
.cart-line-price { font-size: 13px; font-weight: 600; }
.drawer-empty { display: grid; place-items: center; min-height: 100%; padding: 40px 20px; text-align: center; }
.drawer-empty h3 { margin-bottom: 8px; font-family: var(--display); font-size: 38px; font-weight: 400; }
.drawer-footer { border-top: 1px solid var(--stone); padding: 22px 24px 28px; }
.drawer-subtotal { display: flex; justify-content: space-between; margin-bottom: 18px; }
.drawer-footer .button { width: 100%; }
.checkout-message { margin-top: 12px; color: var(--error); font-size: 12px; }

.cart-page { min-height: 65vh; padding: 80px 0 130px; }
.cart-page-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; border-bottom: 1px solid var(--stone); padding-bottom: 30px; }
.cart-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 80px; padding-top: 24px; }
.cart-page-lines .cart-line { grid-template-columns: 126px 1fr auto; }
.cart-page-lines .cart-line img { width: 126px; height: 150px; }
.cart-summary { align-self: start; border: 1px solid var(--stone); padding: 28px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.summary-total { border-top: 1px solid var(--stone); margin-top: 20px; padding-top: 20px; font-size: 19px; font-weight: 600; }
.cart-summary .button { width: 100%; margin-top: 20px; }

.content-hero { padding: clamp(80px, 11vw, 152px) 0 62px; background: var(--ivory); }
.content-hero h1 { max-width: 1050px; margin-bottom: 18px; }
.content-hero p { max-width: 740px; }
.content-layout { display: grid; grid-template-columns: 250px minmax(0, 820px); gap: clamp(50px, 10vw, 160px); padding: 72px 0 130px; }
.content-nav { position: sticky; top: 116px; align-self: start; display: grid; gap: 10px; font-size: 12px; }
.content-nav strong { margin-bottom: 8px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.content-nav a { color: #676158; }
.content-nav a:hover { color: var(--ink); }
.prose h2 { margin: 56px 0 18px; font-family: var(--display); font-size: clamp(32px, 4vw, 50px); font-weight: 400; line-height: 1; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 10px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.prose p,
.prose li { color: #4f4a43; line-height: 1.72; }
.prose ul,
.prose ol { padding-left: 20px; }
.prose li + li { margin-top: 8px; }
.launch-note { border: 1px solid #b2905c; background: #fff8e9; margin: 28px 0; padding: 20px; color: #5f4a2a; font-size: 14px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.support-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); padding: 28px; }
.support-card h2 { font-family: var(--display); font-size: 36px; font-weight: 400; line-height: 1; }
.support-card p { color: #655f56; font-size: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; border: 1px solid var(--stone); border-radius: 0; background: var(--paper); padding: 15px; color: var(--ink); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 24px; margin-top: 14px; color: var(--error); font-size: 13px; }
.form-help { color: #69635a; font-size: 12px; }

.size-table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.size-table th,
.size-table td { border: 1px solid var(--stone); padding: 16px; text-align: left; }
.size-table th { background: var(--ivory); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { background: var(--ink); color: var(--paper); padding: 74px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(28px, 5vw, 72px); }
.footer-brand img { width: min(270px, 100%); margin-bottom: 26px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column strong { margin-bottom: 8px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { width: fit-content; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-column a:hover { color: white; }
.footer-newsletter { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255,255,255,.5); margin-top: 18px; }
.footer-newsletter input { min-width: 0; border: 0; background: transparent; color: white; padding: 12px 0; outline: 0; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter button { border: 0; background: transparent; color: white; padding: 12px 0 12px 12px; cursor: pointer; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.18); margin-top: 72px; padding-top: 22px; color: rgba(255,255,255,.54); font-size: 11px; }

.cookie-banner { position: fixed; z-index: 350; left: 18px; right: 18px; bottom: 18px; display: none; grid-template-columns: 1fr auto; gap: 30px; align-items: center; max-width: 980px; margin: 0 auto; background: var(--paper); border: 1px solid var(--ink); box-shadow: var(--shadow); padding: 22px; }
.cookie-banner.open { display: grid; }
.cookie-banner p { margin: 0; font-size: 13px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding: 10px 14px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --page: min(100% - 36px, 1120px); }
  .header-nav { gap: 16px; }
  .header-nav a:nth-child(n+4) { display: none; }
  .product-layout { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 38px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.6fr repeat(2, 1fr); }
  .footer-column:nth-child(4), .footer-column:nth-child(5) { margin-top: 28px; }
  .support-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  :root { --page: min(100% - 28px, 760px); }
  .announcement { padding-inline: 14px; }
  .header-inner { min-height: 66px; grid-template-columns: 1fr auto 1fr; }
  .site-header { top: 0; }
  .hero-sticky,
  .secondary-sticky { top: 66px; height: calc(100vh - 66px); }
  .header-nav { display: none; }
  .menu-toggle { display: inline-flex; justify-self: start; }
  .header-logo { width: 142px; }
  .header-utilities a:not(.bag-link) { display: none; }
  .header-utilities { gap: 0; }
  .hero-scroll { height: 300vh; }
  .hero-copy { left: 18px; right: 18px; max-width: none; bottom: 40px; }
  .hero-brand { width: 180px; margin-bottom: 22px; }
  .hero-copy h1 { font-size: clamp(54px, 17vw, 88px); }
  .hero-copy p { max-width: 420px; font-size: 16px; }
  .hero-progress { display: none; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,10,9,.72), rgba(10,10,9,.02) 65%); }
  .intro-grid,
  .craft-grid,
  .split-feature,
  .product-layout,
  .cart-page-grid,
  .content-layout { grid-template-columns: 1fr; }
  .intro-grid .body-lg { margin-left: 0; }
  .craft-grid { min-height: 0; }
  .craft-media,
  .split-feature-media { min-height: 70vw; }
  .craft-copy { gap: 70px; }
  .color-rail { grid-template-columns: repeat(5, 74vw); }
  .color-card { min-width: 0; }
  .editorial-pair { grid-template-columns: 1fr; }
  .editorial-panel { min-height: 125vw; }
  .secondary-scroll { height: 180vh; }
  .secondary-frame { width: 18%; }
  .product-page { padding-top: 28px; }
  .product-gallery { gap: 6px; }
  .product-summary { position: relative; top: auto; }
  .variant-options { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .variant-option label { min-height: 62px; font-size: 9px; }
  .product-story-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cart { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; border-top: 1px solid var(--stone); background: rgba(255,253,249,.96); backdrop-filter: blur(12px); padding: 10px 14px; }
  .sticky-mobile-cart { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(100%); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .sticky-mobile-cart.visible { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .sticky-mobile-cart .button { min-height: 46px; }
  .cart-page-grid { gap: 34px; }
  .cart-summary { order: -1; }
  .content-nav { position: relative; top: auto; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--stone); padding-bottom: 28px; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:nth-child(4), .footer-column:nth-child(5) { margin-top: 0; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .section { padding: 78px 0; }
  .section-tight { padding: 58px 0; }
  .display-xl { font-size: 62px; }
  .display-lg { font-size: 50px; }
  .display-md { font-size: 40px; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .hero-copy .button-row .button { flex-basis: auto; }
  .hero-scroll { height: 260vh; }
  .hero-video { object-position: 60% center; }
  .hero-copy h1 { font-size: 58px; }
  .hero-copy p { display: none; }
  .hero-brand { width: 150px; }
  .detail-line { grid-template-columns: 1fr; gap: 7px; }
  .color-rail { grid-template-columns: repeat(5, 84vw); }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 190px; }
  .benefit-number { margin-bottom: 34px; }
  .editorial-label { left: 18px; right: 18px; bottom: 18px; }
  .secondary-frame { width: 24%; }
  .secondary-copy { margin-bottom: 30px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-media:first-child { grid-column: auto; }
  .product-media:first-child img { aspect-ratio: 1 / 1.08; }
  .product-media:nth-child(n+4) { display: none; }
  .variant-options { grid-template-columns: repeat(3, 1fr); }
  .quantity-row { grid-template-columns: 110px 1fr; }
  .cart-line { grid-template-columns: 82px 1fr; }
  .cart-line img { width: 82px; height: 100px; }
  .cart-line-price { grid-column: 2; }
  .cart-page-lines .cart-line { grid-template-columns: 92px 1fr; }
  .cart-page-lines .cart-line img { width: 92px; height: 112px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cookie-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-scroll { height: auto; }
  .hero-sticky { position: relative; top: auto; height: min(900px, 90vh); }
  .hero-video { display: none; }
  .hero-sticky { background: url("/assets/posters/jacros-hero-poster.jpg") center / cover; }
  .secondary-scroll { height: min(800px, 88vh); }
  .secondary-sticky { position: relative; top: auto; height: 100%; }
  .secondary-frame { width: 100% !important; }
  .secondary-video { display: none; }
  .secondary-frame { background: url("/assets/posters/jacros-secondary-poster.jpg") center / cover; }
  .reveal { opacity: 1; transform: none; }
}

/* Stripe sandbox checkout */
.checkout-page,
.order-status-page { min-height: 68vh; padding: clamp(72px, 8vw, 124px) 0; background: var(--paper); }
.checkout-heading { max-width: 760px; margin-bottom: clamp(38px, 5vw, 72px); }
.checkout-heading p { max-width: 650px; margin-top: 18px; color: var(--muted); line-height: 1.7; }
.checkout-layout { display: grid; grid-template-columns: minmax(250px, .55fr) minmax(0, 1.45fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.checkout-selection { position: sticky; top: 118px; padding: 28px; border: 1px solid var(--line); background: #fff; }
.checkout-selection h2 { margin-bottom: 20px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.checkout-selection .text-link { display: inline-flex; margin-top: 24px; }
.checkout-selection-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.checkout-selection-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.checkout-selection-list strong { color: var(--ink); font-weight: 500; }
.checkout-provider { min-height: 540px; }
.checkout-loading,
.checkout-error { padding: 20px 22px; border: 1px solid var(--line); background: #fff; line-height: 1.6; }
.checkout-error { border-color: #a25b4c; color: #7b2f24; }
.order-status-shell { max-width: 820px; }
.order-status-shell .display-md { max-width: 760px; margin: 12px 0 20px; }
.order-status-card { margin: 38px 0 30px; padding: 28px; border: 1px solid var(--line); background: #fff; }
.order-status-total { margin: 24px 0 0; font-family: var(--display); font-size: 28px; }

@media (max-width: 800px) {
  .checkout-page,
  .order-status-page { padding: 54px 0 82px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-selection { position: static; }
  .checkout-provider { min-height: 480px; }
}

/* 2026 refinement: persistent chrome, editorial commerce, and calmer product detail */
:root { --chrome-height: 110px; }
body { background: #fff; }
[data-site-header] { position: sticky; z-index: 200; top: 0; }
.site-chrome { position: relative; z-index: 200; }
.site-chrome .announcement { position: relative; min-height: 34px; }
.site-chrome .site-header { position: relative; top: auto; background: #fff; backdrop-filter: none; }
.header-logo img { aspect-ratio: auto; height: 42px; }
.hero-sticky,
.secondary-sticky { top: var(--chrome-height); height: calc(100vh - var(--chrome-height)); }
.hero-scroll { height: 360vh; background: #111; }
.hero-copy { max-width: min(850px, calc(100vw - 48px)); }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { max-width: 820px; line-height: .88; }
.hero-copy p { max-width: 510px; color: rgba(255,255,255,.88); }
.hero-text-link { min-height: 50px; border: 0; border-bottom: 1px solid rgba(255,255,255,.75); background: transparent; color: white; padding-inline: 4px; }
.hero-text-link:hover { border-color: white; background: transparent; }
.hero-shade { background: linear-gradient(90deg, rgba(8,8,8,.58), rgba(8,8,8,.06) 64%), linear-gradient(0deg, rgba(8,8,8,.32), transparent 45%); }

.brand-intro { padding: clamp(46px, 5vw, 76px) 0; background: #fff; }
.brand-intro-inner { display: grid; grid-template-columns: .65fr 1.4fr auto; gap: clamp(28px, 5vw, 86px); align-items: center; }
.brand-intro-inner p { max-width: 740px; margin: 0; font-family: var(--display); font-size: clamp(27px, 3.2vw, 48px); letter-spacing: -.025em; line-height: 1.06; }

.craft-grid { min-height: min(860px, 90vh); background: #fff; }
.craft-copy { background: #fff; }
.craft-copy .body-lg { max-width: 640px; }
.craft-media { background: #ddd; }

.color-showcase { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr); min-height: min(900px, 92vh); background: #f3f3f1; border-bottom: 1px solid var(--stone); }
.color-stage { position: relative; min-height: 700px; overflow: hidden; background: #111; }
.color-stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.color-stage.is-changing img { opacity: .25; transform: scale(.985); }
.color-stage-index { position: absolute; left: 24px; bottom: 22px; color: rgba(255,255,255,.74); font-size: 10px; letter-spacing: .15em; }
.color-selector-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 92px); background: #fff; }
.color-selector-panel > div:first-child p { max-width: 480px; color: #625d56; }
.home-color-options { display: grid; border-top: 1px solid var(--stone); margin: clamp(36px, 5vw, 62px) 0 28px; }
.home-color-options button { display: grid; grid-template-columns: 28px 1fr auto; gap: 14px; align-items: center; min-height: 58px; border: 0; border-bottom: 1px solid var(--stone); background: transparent; padding: 10px 0; cursor: pointer; text-align: left; }
.home-color-options button > span:nth-child(2) { font-family: var(--display); font-size: 24px; }
.home-color-options button > span:last-child { color: #8a847b; font-size: 10px; letter-spacing: .12em; }
.home-color-options button[aria-pressed="true"] > span:nth-child(2) { font-style: italic; }
.home-color-options button[aria-pressed="true"] .swatch { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ink); }
.color-shop-link { align-self: flex-start; min-width: 220px; }

.styling-heading { display: grid; grid-template-columns: .65fr 1.6fr .75fr; gap: 36px; align-items: end; padding: clamp(70px, 9vw, 132px) 0 clamp(46px, 5vw, 72px); }
.styling-heading h2 { margin: 0; }
.styling-heading p { margin: 0; color: rgba(255,255,255,.68); }
.editorial-stills .editorial-panel { min-height: min(74vw, 920px); }
.editorial-stills .editorial-panel img { object-position: center 58%; }
.editorial-stills .editorial-panel:first-child img { object-position: center 60%; }

.fit-feature { background: #fff; }
.fit-feature .split-feature-copy { background: #fff; }
.fit-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 30px; }
.fit-options span { border: 1px solid var(--stone); padding: 9px 12px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.secondary-scroll { height: 210vh; }
.secondary-frame { width: 14%; will-change: clip-path; }
.secondary-copy-card { position: absolute; z-index: 3; left: max(24px, calc((100vw - min(100% - 48px, 1440px)) / 2)); bottom: clamp(28px, 6vh, 64px); max-width: 560px; background: rgba(16,15,13,.9); color: #fff; padding: clamp(28px, 4vw, 50px); pointer-events: none; backdrop-filter: blur(8px); }
.secondary-copy-card h2 { margin: 16px 0 14px; }
.secondary-copy-card p { max-width: 440px; color: rgba(255,255,255,.78); }

.care-edit { padding: clamp(80px, 10vw, 144px) 0; background: #fff; }
.care-heading { display: grid; grid-template-columns: .55fr 1.5fr auto; gap: 30px; align-items: end; margin-bottom: clamp(46px, 6vw, 78px); }
.care-heading h2 { margin: 0; }
.care-rules { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.care-rules article { min-height: 220px; padding: 26px 28px 22px 0; border-right: 1px solid var(--stone); }
.care-rules article + article { padding-left: 28px; }
.care-rules article:last-child { border-right: 0; }
.care-rules article > span { display: block; margin-bottom: 68px; color: #8a847c; font-size: 10px; letter-spacing: .12em; }
.care-rules h3 { margin-bottom: 8px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.care-rules p { max-width: 330px; color: #655f57; font-size: 14px; }

.home-reviews { padding: clamp(84px, 10vw, 148px) 0; }
.home-reviews-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(46px, 9vw, 130px); align-items: center; }
.home-review-image { position: relative; }
.home-review-image img { width: 100%; max-height: 760px; object-fit: cover; }
.home-review-image > span { position: absolute; left: 14px; bottom: 14px; background: white; color: var(--ink); padding: 7px 10px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.home-review-copy h2 { margin: 24px 0 16px; }
.home-review-copy blockquote { border-top: 1px solid rgba(255,255,255,.28); margin: 46px 0 12px; padding-top: 34px; font-family: var(--display); font-size: clamp(26px, 3vw, 42px); line-height: 1.08; }
.review-attribution { margin-bottom: 30px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.gift-feature { background: #fff; }
.faq-shell { max-width: 1100px; }
.faq-more { margin-top: 30px; }
.final-cta .price-row { justify-content: center; margin-top: 22px; }
.final-cta .compare-price { color: rgba(255,255,255,.62); }

/* Product page */
.product-page { padding: 42px 0 0; background: #fff; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); grid-template-areas: "primary summary" "secondary summary"; gap: 16px clamp(46px, 6vw, 92px); align-items: start; }
.product-primary-gallery { grid-area: primary; background: #111; overflow: hidden; }
.product-primary-gallery img { width: 100%; aspect-ratio: 1.06 / 1; object-fit: cover; transition: opacity .2s ease; }
.product-primary-gallery.is-changing img { opacity: .22; }
.product-secondary-gallery { grid-area: secondary; display: grid; gap: 16px; }
.product-secondary-gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #eee; }
.product-secondary-gallery img:first-child { object-position: center 18%; }
.product-secondary-gallery img:nth-child(2) { object-position: center 20%; }
.product-summary { grid-area: summary; position: sticky; top: calc(var(--chrome-height) + 24px); padding: 24px 0 48px; }
.product-summary h1 { max-width: 620px; margin-bottom: 14px; font-size: clamp(52px, 5.4vw, 82px); line-height: .98; }
.product-kicker { max-width: 470px; margin-bottom: 20px; font-size: 18px; }
.product-summary .price-row { margin-bottom: 36px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 14px 20px; }
.variant-option label { min-height: 52px; min-width: 46px; display: flex; flex-direction: column; gap: 7px; border: 0; background: transparent; padding: 3px 0; }
.variant-option input:checked + label { border: 0; background: transparent; box-shadow: none; font-weight: 600; }
.variant-option input:checked + label .swatch { box-shadow: 0 0 0 2px white, 0 0 0 3px var(--ink); }
.variant-option label .swatch { width: 24px; height: 24px; box-shadow: none; }
.variant-option input { pointer-events: auto; }
.length-option label { min-height: 62px; gap: 1px; }
.length-option label strong { font-size: 13px; }
.length-option label span { font-size: 10px; opacity: .68; }
.extension-note { margin: 11px 0 0; color: #6a645c; font-size: 12px; }
.purchase-assurances { display: grid; gap: 6px; margin: 18px 0 30px; padding: 0; list-style: none; color: #645f57; font-size: 12px; }
.purchase-assurances li::before { content: "—"; margin-right: 9px; color: var(--ink); }
.product-accordions { margin-top: 8px; }

.product-reviews { margin-top: clamp(84px, 11vw, 160px); padding: clamp(84px, 10vw, 148px) 0; background: #f2f1ee; }
.reviews-heading { display: grid; grid-template-columns: .45fr 1.2fr .75fr; gap: 34px; align-items: end; margin-bottom: clamp(46px, 7vw, 86px); }
.reviews-heading h2,
.reviews-heading p { margin: 0; }
.reviews-heading p { color: #645f57; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.review-card { min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid var(--stone); padding: 30px 38px 28px 0; }
.review-card:nth-child(odd) { border-right: 1px solid var(--stone); }
.review-card:nth-child(even) { padding-left: 38px; }
.review-card blockquote { margin: auto 0; font-family: var(--display); font-size: clamp(28px, 3.2vw, 46px); line-height: 1.08; }
.review-card footer { display: grid; gap: 4px; margin-top: 34px; }
.review-card footer span { color: #746e66; font-size: 11px; }
.verified-label { align-self: flex-start; border: 1px solid #8a847b; padding: 5px 7px; color: #5e5952; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.customer-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(60px, 8vw, 110px); }
.customer-photo-grid figure { position: relative; overflow: hidden; }
.customer-photo-grid img { width: 100%; height: min(68vw, 780px); object-fit: cover; }
.customer-photo-grid figcaption { position: absolute; left: 14px; bottom: 14px; background: white; padding: 7px 10px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.product-care-split { display: grid; grid-template-columns: 1fr 1fr; background: #141310; color: #fff; }
.product-care-image img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.product-care-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px); }
.product-care-copy p { max-width: 590px; color: rgba(255,255,255,.72); font-size: 18px; }
.product-care-copy .button-row { gap: 28px; margin-top: 20px; }

@media (max-width: 1100px) {
  .brand-intro-inner { grid-template-columns: .55fr 1.4fr; }
  .brand-intro-inner .text-link { grid-column: 2; justify-self: start; }
  .styling-heading { grid-template-columns: .45fr 1.55fr; }
  .styling-heading p { grid-column: 2; }
  .care-heading { grid-template-columns: .45fr 1.55fr; }
  .care-heading .text-link { grid-column: 2; justify-self: start; }
}

@media (max-width: 800px) {
  :root { --chrome-height: 100px; }
  .site-chrome .announcement { min-height: 34px; }
  .hero-sticky,
  .secondary-sticky { top: var(--chrome-height); height: calc(100vh - var(--chrome-height)); }
  .hero-scroll { height: 285vh; }
  .hero-copy { bottom: 32px; }
  .hero-copy .eyebrow { margin-bottom: 16px; }
  .hero-copy h1 { font-size: clamp(54px, 16vw, 82px); }
  .hero-copy p { display: block; font-size: 15px; }
  .brand-intro-inner,
  .styling-heading,
  .care-heading,
  .home-reviews-grid,
  .reviews-heading { grid-template-columns: 1fr; }
  .brand-intro-inner .text-link,
  .styling-heading p,
  .care-heading .text-link { grid-column: auto; }
  .color-showcase { grid-template-columns: 1fr; }
  .color-stage { min-height: 78vw; }
  .color-selector-panel { padding: 64px 18px 72px; }
  .editorial-stills .editorial-panel { min-height: 128vw; }
  .fit-feature .split-feature-copy { padding-bottom: 82px; }
  .secondary-copy-card { left: 18px; right: 18px; bottom: 22px; max-width: 540px; }
  .care-rules { grid-template-columns: 1fr; }
  .care-rules article,
  .care-rules article + article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--stone); padding: 24px 0; }
  .care-rules article > span { margin-bottom: 32px; }
  .home-review-image { max-width: 580px; }
  .gift-feature .split-feature-media { min-height: 88vw; }
  .product-layout { grid-template-columns: 1fr; grid-template-areas: "primary" "summary" "secondary"; gap: 0; }
  .product-primary-gallery { margin-inline: -14px; }
  .product-primary-gallery img { aspect-ratio: 1 / 1.04; }
  .product-summary { position: relative; top: auto; padding: 42px 0 68px; }
  .product-secondary-gallery { gap: 12px; }
  .product-secondary-gallery img { aspect-ratio: 4 / 5; }
  .reviews-heading { gap: 18px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card,
  .review-card:nth-child(even) { min-height: 260px; border-right: 0; padding: 26px 0; }
  .customer-photo-grid { gap: 8px; }
  .customer-photo-grid img { height: 78vw; }
  .product-care-split { grid-template-columns: 1fr; }
  .product-care-image img { min-height: 88vw; }
  .product-care-copy { padding: 72px 18px 94px; }
  .sticky-mobile-cart > div { display: grid; line-height: 1.2; }
  .sticky-mobile-cart > div span { color: #6b655d; font-size: 11px; }
}

@media (max-width: 520px) {
  .hero-copy p { display: block; max-width: 320px; }
  .hero-copy .button-row { flex-wrap: nowrap; }
  .hero-copy .button { min-height: 46px; padding-inline: 14px; font-size: 10px; }
  .brand-intro { padding-block: 54px; }
  .color-stage { min-height: 100vw; }
  .color-selector-panel h2 { font-size: 45px; }
  .home-color-options button { min-height: 55px; }
  .secondary-frame { width: 20%; }
  .secondary-copy-card { padding: 24px; }
  .secondary-copy-card h2 { font-size: 38px; }
  .home-reviews { padding-block: 78px; }
  .home-review-copy h2 { font-size: 39px; }
  .variant-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .variant-option label { min-width: 0; font-size: 8px; }
  .quantity-row { grid-template-columns: 104px 1fr; }
  .customer-photo-grid { grid-template-columns: 1fr; }
  .customer-photo-grid img { height: 122vw; }
}

@media (prefers-reduced-motion: reduce) {
  .color-stage img,
  .product-primary-gallery img { transition: none; }
}

/* 2026 third-pass refinement: contained color edit, cinematic motion, and review carousel */
.header-logo { width: clamp(134px, 13.5vw, 192px); }
.header-logo img { height: 46px; }

@media (min-width: 801px) {
  .hero-sticky { background: #0b0b0a; }
  .hero-video { object-fit: cover; object-position: center center; }
}

.brand-intro-inner {
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: clamp(36px, 8vw, 120px);
}
.brand-intro-inner .text-link { justify-self: end; white-space: nowrap; }

.craft-grid { min-height: min(820px, 88vh); }
.craft-copy { padding-block: clamp(52px, 6vw, 88px); }

.color-showcase {
  grid-template-columns: minmax(420px, .92fr) minmax(420px, 1.08fr);
  min-height: 680px;
  background: #f7f5f1;
  padding: clamp(24px, 3.5vw, 54px);
  gap: clamp(32px, 5vw, 76px);
}
.color-stage {
  align-self: center;
  justify-self: center;
  width: min(100%, 560px);
  min-height: 0;
  height: auto;
  max-height: none;
  aspect-ratio: 1;
  isolation: isolate;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(145deg, #eceae6, #d8d6d1);
  box-shadow: 0 24px 58px rgba(25,22,18,.1);
  transition: background .55s ease, box-shadow .55s ease;
}
.color-stage[data-color="pink"] { background: linear-gradient(145deg, #f1e2e6, #d8bec7); }
.color-stage[data-color="green"] { background: linear-gradient(145deg, #e4ebe5, #bdcec3); }
.color-stage[data-color="dark-blue"] { background: linear-gradient(145deg, #e1e6ef, #b8c2d5); }
.color-stage[data-color="red"] { background: linear-gradient(145deg, #efe0e2, #d4b8bd); }
.color-stage[data-color="platinum"] { background: linear-gradient(145deg, #eeece8, #d4d2cd); }
.color-stage-glow { display: none; }
.color-stage img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}
.color-stage.is-changing img { opacity: 0; transform: scale(.99); }
.color-stage-index { left: 28px; bottom: 24px; }
.color-selector-panel { padding: clamp(24px, 2vw, 42px) clamp(4px, 1.5vw, 24px); background: transparent; }
.home-color-options { margin-block: clamp(28px, 3.5vw, 44px) 24px; }
.home-color-options button {
  min-height: 56px;
  margin-inline: -12px;
  border-radius: 2px;
  padding-inline: 12px;
  transition: background .25s ease, padding .25s ease;
}
.home-color-options button:hover { background: rgba(255,255,255,.7); }
.home-color-options button[aria-pressed="true"] { background: #fff; padding-inline: 16px; }
.color-shop-link { min-width: 228px; white-space: nowrap; }
.color-shop-link [data-home-color-cta] { display: inline-block; word-spacing: normal; }

.secondary-scroll { height: 230vh; background: #0a0a09; }
.secondary-sticky { isolation: isolate; }
.secondary-frame {
  --motion-progress: 0;
  inset: auto;
  top: 50%;
  left: 50%;
  width: calc(82vw + (18vw * var(--motion-progress)));
  height: calc(72vh + (28vh * var(--motion-progress)));
  transform: translate(-50%, -50%) scale(calc(.96 + (.04 * var(--motion-progress))));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: calc(22px * (1 - var(--motion-progress)));
  box-shadow: 0 42px 120px rgba(0,0,0,.48);
  will-change: width, height, transform, border-radius;
}
.secondary-video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
}
.secondary-frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,4,.48), transparent 64%), linear-gradient(0deg, rgba(4,4,3,.45), transparent 48%);
  pointer-events: none;
}
.secondary-copy-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: rgba(10,10,9,.74);
  box-shadow: 0 22px 68px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(24px);
  transition: none;
}

.care-edit { padding: clamp(76px, 8vw, 118px) 0; }
.care-heading { margin-bottom: clamp(38px, 5vw, 62px); }
.care-rules article { min-height: 190px; }
.care-rules article > span { margin-bottom: 46px; }
.care-rules h3 { font-size: 28px; }

.home-reviews { overflow: hidden; padding: clamp(78px, 9vw, 128px) 0; }
.home-reviews-grid { grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); }
.home-review-image { overflow: hidden; background: #262522; }
.home-review-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 660px;
  object-fit: cover;
  transition: opacity .35s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.home-review-image.is-changing img { opacity: .22; transform: scale(1.025); }
.home-review-viewport { position: relative; min-height: clamp(300px, 29vw, 430px); margin-top: 28px; overflow: hidden; }
.home-review-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(58%);
  transition: opacity .48s ease, transform .62s cubic-bezier(.22,1,.36,1), visibility .62s;
}
.home-review-slide.is-active { opacity: 1; visibility: visible; transform: none; }
.home-review-slide.is-leaving-up { opacity: 0; visibility: visible; transform: translateY(-58%); }
.home-review-slide.is-leaving-down { opacity: 0; visibility: visible; transform: translateY(58%); }
.home-review-slide.is-entering-up { transform: translateY(58%); }
.home-review-slide.is-entering-down { transform: translateY(-58%); }
.home-review-slide .review-stars { color: #e9d39f; font-size: 13px; letter-spacing: .18em; }
.home-review-copy blockquote {
  border: 0;
  margin: 24px 0 22px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.home-review-controls { display: grid; grid-template-columns: 50px auto 50px; gap: 13px; align-items: center; width: max-content; margin: 12px 0 28px; }
.home-review-controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.home-review-controls button:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.home-review-controls > span { min-width: 58px; color: rgba(255,255,255,.58); text-align: center; font-size: 10px; letter-spacing: .14em; }
.home-review-copy > .text-link { color: #fff; }

.gift-feature { grid-template-columns: 1.08fr .92fr; }
.gift-feature .split-feature-media { min-height: 600px; }
.gift-feature .split-feature-media img { object-position: center; }
.gift-supporting-copy { margin: -4px 0 30px; color: #6a645c; font-size: 14px; }

.final-cta { min-height: clamp(400px, 46vh, 540px); }
.final-cta::before { inset: -18px; opacity: .34; filter: blur(7px); transform: scale(1.035); }
.final-cta::after { content: ""; position: absolute; inset: 0; background: rgba(9,9,8,.18); }
.final-cta-copy { z-index: 2; padding-block: clamp(46px, 5vw, 68px); }
.final-cta .eyebrow { margin-bottom: 16px; }
.final-cta .display-xl { margin-bottom: 16px; font-size: clamp(58px, 7.5vw, 104px); }
.final-cta .body-lg { margin-bottom: 0; }
.final-cta .price-row { margin-top: 16px; }
.final-cta-copy .button-row { margin-top: 22px; }

.cookie-banner {
  left: 18px;
  right: auto;
  bottom: 18px;
  width: min(680px, calc(100% - 36px));
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin: 0;
  padding: 18px;
}
.cookie-banner > div:first-child { min-width: 0; }
.cookie-banner > div:first-child > strong { font-family: var(--display); font-size: 18px; font-weight: 400; }
.cookie-banner p { margin-top: 3px; color: #5f5951; font-size: 11px; line-height: 1.5; }
.cookie-actions { align-items: stretch; }
.cookie-actions .button { min-width: 132px; min-height: 40px; padding: 9px 12px; font-size: 9px; }

@media (max-width: 1100px) {
  .brand-intro-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .brand-intro-inner .text-link { grid-column: auto; }
  .color-showcase { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); padding: 24px; gap: 28px; }
  .color-stage { min-height: 0; }
}

@media (max-width: 800px) {
  .header-logo { width: clamp(132px, 36vw, 154px); }
  .header-logo img { height: 42px; }
  .hero-video { object-fit: cover; object-position: 60% center; }
  .brand-intro-inner { grid-template-columns: 1fr; gap: 28px; }
  .brand-intro-inner .text-link { justify-self: start; }
  .color-showcase { grid-template-columns: 1fr; min-height: 0; padding: 14px 14px 0; gap: 0; }
  .color-stage { width: min(100%, 520px); min-height: 0; max-height: none; aspect-ratio: 1; }
  .color-stage img { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); }
  .color-selector-panel { padding: 58px 4px 72px; }
  .secondary-frame { width: calc(92vw + (8vw * var(--motion-progress))); height: calc(70vh + (30vh * var(--motion-progress))); }
  .secondary-copy-card { left: 18px; right: 18px; bottom: 18px; }
  .home-reviews-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-review-image { width: min(100%, 600px); }
  .home-review-image img { aspect-ratio: 16 / 11; max-height: 460px; }
  .home-review-viewport { min-height: 310px; }
  .gift-feature { grid-template-columns: 1fr; }
  .gift-feature .split-feature-media { min-height: 72vw; }
  .final-cta { min-height: 410px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 13px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { min-width: 0; }
}

@media (max-width: 520px) {
  .announcement { font-size: 9px; letter-spacing: .075em; }
  .header-logo { width: 158px; }
  .header-logo img { height: 45px; }
  .hero-copy h1 { max-width: 350px; font-size: clamp(48px, 13vw, 54px); line-height: .9; }
  .color-stage { min-height: 0; }
  .color-stage-index { left: 14px; bottom: 12px; }
  .home-review-image img { aspect-ratio: 4 / 3; }
  .home-review-viewport { min-height: 300px; }
  .home-review-copy blockquote { font-size: clamp(34px, 10.2vw, 46px); }
  .home-review-controls { grid-template-columns: 46px auto 46px; }
  .home-review-controls button { width: 46px; height: 46px; }
  .gift-feature .split-feature-media { min-height: 86vw; }
  .gift-feature .split-feature-copy { padding-block: 64px 78px; }
  .final-cta { min-height: 380px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; width: auto; padding: 15px; }
  .cookie-banner > div:first-child > strong { font-size: 17px; }
  .cookie-banner p { font-size: 11px; }
  .cookie-actions { gap: 7px; }
  .cookie-actions .button { padding-inline: 8px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .secondary-frame { width: 100% !important; height: 100% !important; transform: translate(-50%, -50%) !important; border-radius: 0 !important; }
  .secondary-copy-card { opacity: 1 !important; transform: none !important; }
  .home-review-slide { transition: none; }
  .home-review-image img { transition: none; }
}
