:root {
  --ink: #201915;
  --espresso: #4b382b;
  --taupe: #b69575;
  --bronze: #9d764c;
  --champagne: #ead9c5;
  --ivory: #fffaf4;
  --pearl: #f6eee5;
  --plum: #4c2f38;
  --line: rgba(75, 56, 43, 0.18);
  --shadow: 0 24px 70px rgba(32, 25, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--taupe);
  color: var(--ivory);
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 55%, rgba(75, 56, 43, 0.16) 0 1px, transparent 1px);
  background-size: 38px 38px, 54px 54px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-word {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 10px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  transform: translateX(-8px);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.header-action {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after,
.header-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-links a:hover::after,
.header-action:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.bag-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bag-count {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  padding: 110px clamp(22px, 7vw, 96px) 96px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 67% center;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(32, 25, 21, 0.78), rgba(32, 25, 21, 0.34) 48%, rgba(32, 25, 21, 0.08)),
    linear-gradient(0deg, rgba(32, 25, 21, 0.46), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-top: 8vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--champagne);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 18vw, 15rem);
  line-height: 0.78;
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.03;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 250, 244, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 244, 0.46);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ivory);
  color: var(--ink);
}

.button.ghost {
  color: var(--ivory);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 250, 244, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ivory);
  transform: translateX(-50%);
  animation: scrollPulse 1.7s ease-in-out infinite;
}

.intro-band {
  min-height: 26vh;
  display: grid;
  place-items: center;
  padding: clamp(54px, 9vw, 110px) clamp(22px, 8vw, 120px);
  background: var(--ink);
  color: var(--pearl);
}

.intro-band p {
  max-width: 1040px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 4.25rem);
  line-height: 1.05;
  text-align: center;
}

.section,
.private-list {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 70px);
}

.section-heading h2 {
  grid-column: 2;
}

.section-heading .eyebrow {
  align-self: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: #fffdf9;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(32, 25, 21, 0.05);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(157, 118, 76, 0.62);
  box-shadow: 0 16px 38px rgba(32, 25, 21, 0.12);
  outline: 0;
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: rgba(157, 118, 76, 0.34);
}

.product-visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 238, 229, 0.88), rgba(204, 177, 149, 0.7)),
    radial-gradient(circle at 70% 30%, rgba(76, 47, 56, 0.2), transparent 40%);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: -28%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.72) 48%, transparent 60%);
  transform: translateX(-42%) rotate(8deg);
  animation: satinSheen 5.8s ease-in-out infinite;
}

.product-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62%, 260px);
  aspect-ratio: 1.08;
  transform: translate(-50%, -50%) rotate(-10deg);
  box-shadow: var(--shadow);
}

.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.pillow span {
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 253, 249, 0.9), rgba(185, 149, 112, 0.78) 48%, rgba(255, 250, 244, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 10px, transparent 10px 22px);
}

.bonnet span {
  width: min(68%, 300px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 250, 244, 0.85), transparent 24%),
    conic-gradient(from 120deg, #755943, #d6bea4, #f8eee2, #9d764c, #4c2f38, #755943);
}

.scrunchie span {
  width: min(54%, 220px);
  border: 42px solid #c2a27e;
  border-radius: 50%;
  background: transparent;
}

.scrunchie span::after {
  content: "";
  position: absolute;
  inset: -38px;
  border-radius: inherit;
  background: repeating-conic-gradient(from 15deg, rgba(255, 255, 255, 0.26) 0 7deg, transparent 7deg 18deg);
}

.eyemask span {
  width: min(66%, 280px);
  aspect-ratio: 2.25;
  border-radius: 999px 999px 38px 38px;
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 250, 244, 0.58) 0 15%, transparent 16%),
    radial-gradient(circle at 68% 48%, rgba(255, 250, 244, 0.5) 0 15%, transparent 16%),
    linear-gradient(135deg, #4c2f38, #b69575 46%, #f1dfcd);
}

.bedding span {
  width: min(72%, 300px);
  aspect-ratio: 1.35;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.88), rgba(183, 149, 115, 0.82)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.16) 22px 24px);
}

.bedding span::after,
.blanket span::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 10px;
  border: 1px solid rgba(75, 56, 43, 0.15);
}

.blanket span {
  width: min(74%, 310px);
  aspect-ratio: 1.5;
  border-radius: 18px;
  background:
    linear-gradient(120deg, #ead9c5, #a98763 52%, #f8eee2),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 18px, transparent 18px 36px);
  transform: translate(-50%, -50%) rotate(4deg);
}

.slippers span {
  width: min(68%, 285px);
  aspect-ratio: 1.9;
  box-shadow: none;
}

.slippers span::before,
.slippers span::after {
  content: "";
  position: absolute;
  top: 20%;
  width: 46%;
  height: 64%;
  border-radius: 48% 48% 58% 58%;
  background: linear-gradient(145deg, #f6eee5, #b69575 58%, #6d4d35);
  box-shadow: var(--shadow);
}

.slippers span::before {
  left: 4%;
  transform: rotate(-14deg);
}

.slippers span::after {
  right: 4%;
  transform: rotate(14deg);
}

.product-copy {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.product-copy p {
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-copy span {
  display: block;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.6;
}

.product-copy strong {
  display: block;
  margin-top: 22px;
  color: var(--espresso);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.colorway-names {
  margin-top: 10px;
  color: rgba(32, 25, 21, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.colorway-line {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: var(--pearl);
}

.colorway-line span {
  display: block;
  min-width: 0;
}

.swatch-champagne {
  background: #c49a72;
}

.swatch-black {
  background: #0b0a0a;
}

.swatch-blush {
  background: #e6b8b2;
}

.swatch-rose {
  background: #b85b62;
}

.swatch-ivory {
  background: #f1dfc8;
}

.swatch-mocha {
  background: #8a6547;
}

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow-y: auto;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(32, 25, 21, 0.64);
  backdrop-filter: blur(14px);
}

.product-detail[hidden] {
  display: none;
}

.product-detail-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  width: min(1420px, 100%);
  min-height: min(850px, calc(100vh - 72px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: #fffdf9;
  box-shadow: 0 32px 90px rgba(32, 25, 21, 0.28);
}

.product-detail-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--pearl);
}

.product-detail-thumbnails {
  display: grid;
  align-content: start;
  gap: 10px;
}

.product-detail-thumb {
  width: 82px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--ivory);
  cursor: pointer;
}

.product-detail-thumb.is-active {
  border-color: var(--espresso);
}

.product-detail-thumb img,
.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-image-wrap {
  min-height: 620px;
  overflow: hidden;
  background: #ead9c5;
}

.product-detail-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 86px);
}

.product-detail-kicker,
.product-detail-purchase span {
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-title {
  margin: 12px 0 16px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.product-detail-description {
  max-width: 580px;
  color: rgba(32, 25, 21, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.product-detail-divider {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.product-detail-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-detail-options legend {
  margin-bottom: 14px;
  color: var(--espresso);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-swatch {
  width: 38px;
  height: 38px;
  border: 6px solid #fffdf9;
  outline: 1px solid rgba(75, 56, 43, 0.24);
  cursor: pointer;
}

.product-detail-swatch.is-active {
  outline: 2px solid var(--espresso);
}

.product-detail-selection {
  margin: 14px 0 0;
  color: rgba(32, 25, 21, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-purchase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
}

.product-detail-purchase strong {
  display: block;
  margin-top: 8px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-detail-purchase label {
  display: grid;
  gap: 8px;
}

.product-detail-quantity {
  width: 84px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--espresso);
  padding: 0 12px;
}

.product-detail-add {
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-detail-add:hover {
  background: var(--ivory);
  color: var(--espresso);
}

.product-detail-note {
  margin: 14px 0 0;
  color: rgba(32, 25, 21, 0.56);
  font-size: 0.78rem;
  line-height: 1.6;
}

.product-detail-promises {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.product-detail-promises div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-promises dt,
.product-detail-promises dd {
  margin: 0;
  font-size: 0.8rem;
}

.product-detail-promises dt {
  color: var(--bronze);
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-promises dd {
  color: rgba(32, 25, 21, 0.66);
}

body.has-product-detail {
  overflow: hidden;
}

.bag-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.bag-panel[hidden] {
  display: none;
}

.bag-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 25, 21, 0.56);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.bag-drawer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(520px, 100%);
  height: 100%;
  padding: 26px;
  background: #fffdf9;
  box-shadow: -24px 0 70px rgba(32, 25, 21, 0.2);
}

.bag-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.bag-heading .eyebrow {
  margin-bottom: 8px;
}

.bag-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.bag-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.bag-items {
  overflow-y: auto;
}

.bag-item {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bag-item img {
  width: 94px;
  height: 94px;
  object-fit: cover;
}

.bag-item-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.bag-item-copy h3 {
  margin: 0;
  font-size: 1.3rem;
}

.bag-item-meta {
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bag-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bag-item-quantity {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  border: 1px solid var(--line);
}

.bag-item-quantity button,
.bag-item-remove {
  border: 0;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}

.bag-item-quantity button {
  height: 30px;
  font-size: 1rem;
}

.bag-item-quantity span {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.bag-item-remove {
  padding: 0;
  color: rgba(32, 25, 21, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-empty {
  align-self: center;
  padding: 34px 0;
  color: rgba(32, 25, 21, 0.62);
}

.bag-empty[hidden] {
  display: none;
}

.bag-empty p {
  margin-bottom: 8px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.bag-empty span {
  line-height: 1.6;
}

.bag-summary {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bag-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bag-summary span,
.bag-summary strong {
  color: var(--espresso);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-summary p {
  margin: 10px 0 0;
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.bag-checkout {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.bag-checkout-note {
  min-height: 18px;
}

body.has-bag {
  overflow: hidden;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pearl);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 58px);
  border-right: 1px solid var(--line);
}

.proof article:last-child {
  border-right: 0;
}

.proof span {
  margin-bottom: auto;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.7rem);
}

.proof p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.7;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
  background: #2a211d;
  color: var(--ivory);
}

.craft-media {
  min-height: 620px;
  overflow: hidden;
}

.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.88) contrast(1.03);
}

.craft-copy {
  align-self: center;
}

.craft-copy h2 {
  color: var(--pearl);
}

.craft-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 244, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.spec-list {
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 250, 244, 0.22);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
}

.spec-list dt {
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  color: rgba(255, 250, 244, 0.82);
}

.ritual {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
  background:
    linear-gradient(180deg, #fffaf4 0%, #f1e4d5 100%);
}

.ritual-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.ritual-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.ritual-steps {
  display: grid;
  gap: 12px;
}

.ritual-steps article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.ritual-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.ritual-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.ritual-steps p {
  margin: 0;
  color: rgba(32, 25, 21, 0.7);
  line-height: 1.65;
}

.care,
.faq {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
}

.section-heading.compact {
  margin-bottom: clamp(26px, 4vw, 54px);
}

.care {
  background: var(--ivory);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.care-grid article {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-grid h3 {
  font-size: clamp(1.4rem, 1.8vw, 2rem);
}

.care-grid p {
  margin-bottom: 0;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.72;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  background: #fbf3ea;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 700;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--bronze);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.72;
}

.private-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  color: var(--ivory);
  background: var(--espresso);
}

.private-list h2 {
  margin-bottom: 0;
}

.signup-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(255, 250, 244, 0.54);
}

.input-row input,
.input-row button {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.input-row input {
  width: 100%;
  min-width: 0;
  color: var(--ivory);
  background: transparent;
  outline: none;
}

.input-row input::placeholder {
  color: rgba(255, 250, 244, 0.46);
}

.input-row button {
  padding: 0 18px;
  color: var(--ink);
  background: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(255, 250, 244, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 250, 244, 0.7);
}

.site-footer span {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.reveal-ready [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

body.reveal-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, 21px);
    opacity: 0;
  }
}

@keyframes satinSheen {
  0%,
  42% {
    transform: translateX(-52%) rotate(8deg);
  }
  78%,
  100% {
    transform: translateX(56%) rotate(8deg);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .craft,
  .ritual-inner,
  .private-list,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-image-wrap {
    min-height: 520px;
  }

  .proof,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .proof article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof article:last-child {
    border-bottom: 0;
  }

  .product-card,
  .product-card.featured {
    min-height: 500px;
    transform: none;
  }

  .craft-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-word {
    gap: 7px;
    font-size: 1.55rem;
    transform: translateX(-4px);
  }

  .header-action {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 90vh;
    padding: 92px 18px 82px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(32, 25, 21, 0.82), rgba(32, 25, 21, 0.38)),
      linear-gradient(0deg, rgba(32, 25, 21, 0.56), transparent 46%);
  }

  h1 {
    font-size: clamp(4.9rem, 24vw, 8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .button {
    width: 100%;
  }

  .intro-band p {
    text-align: left;
  }

  .product-card {
    min-height: 470px;
  }

  .product-visual {
    min-height: 320px;
  }

  .product-detail {
    padding: 0;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .product-detail-thumbnails {
    grid-auto-flow: column;
    grid-auto-columns: 70px;
    overflow-x: auto;
  }

  .product-detail-thumb {
    width: 70px;
  }

  .product-detail-image-wrap {
    min-height: 0;
    aspect-ratio: 1;
  }

  .product-detail-copy {
    padding: 30px 20px 42px;
  }

  .product-detail-title {
    padding-right: 42px;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 12px;
    border-bottom: 0;
  }

  .input-row input {
    border-bottom: 1px solid rgba(255, 250, 244, 0.54);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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