/* ========== MEDINA — warm minimal sanctuary ========== */
:root {
  --ivory: #f6f1e7;
  --sand: #ede4d4;
  --sand-deep: #e3d6c0;
  --clay: #b3936c;
  --clay-deep: #96764d;
  --umber: #3d3225;
  --umber-soft: #5c4e3c;
  --ink: #2e2619;
  --line: rgba(61, 50, 37, 0.16);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ---------- type ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

.lede {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
  text-wrap: pretty;
}

/* ---------- nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ivory) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 76px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--umber-soft);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 22px;
  border-radius: 999px;
  color: var(--ink) !important;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover { background: var(--ink); color: var(--ivory) !important; }

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 96px;
  background:
    radial-gradient(1100px 520px at 85% -10%, var(--sand) 0%, transparent 65%),
    var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(54px, 6vw, 84px);
  margin: 26px 0 30px;
}

.hero h1 em { font-style: italic; font-weight: 400; }

.hero p.sub {
  font-size: 19px;
  max-width: 46ch;
  color: var(--umber-soft);
  text-wrap: pretty;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 34px;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: all 0.3s;
}

.btn-solid { background: var(--ink); color: var(--ivory); }
.btn-solid:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }

.arch {
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
}

.hero-img {
  position: relative;
}

.hero-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-img figcaption {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay-deep);
  text-align: center;
}

/* ---------- marquee strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
  overflow: hidden;
  padding: 18px 0;
}

.strip-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.strip span {
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--umber-soft);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 64px;
}

.strip span::after { content: '◦'; color: var(--clay); }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* ---------- manifesto ---------- */
.manifesto { padding: 120px 0; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
}

.manifesto .lede {
  max-width: 30ch;
  margin: 26px 0 0;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.45;
}

.manifesto .lede em { font-style: italic; color: var(--clay-deep); }

.manifesto-img img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

/* ---------- interlude (editorial band) ---------- */
.interlude { padding: 0 0 130px; }

.interlude-head { text-align: center; margin-bottom: 56px; }
.interlude-head h2 { font-size: clamp(38px, 4.2vw, 56px); margin-top: 18px; }
.interlude-head h2 em { font-style: italic; font-weight: 400; color: var(--clay-deep); }

.interlude-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.interlude-tall { height: 100%; }
.interlude-tall image-slot,
.interlude-tall img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.interlude-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 32px; }
.interlude-stack figure { overflow: hidden; }
.arch-soft { border-radius: 18px; overflow: hidden; }
.interlude-stack image-slot,
.interlude-stack img {
  width: 100%;
  height: 100%;
  min-height: 254px;
  object-fit: cover;
}

/* ---------- the edit (products) ---------- */
.edit {
  padding: 0 0 130px;
}

.edit-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.edit-head h2 { font-size: clamp(40px, 4.4vw, 58px); margin-top: 18px; }

.edit-head p {
  max-width: 38ch;
  color: var(--umber-soft);
  text-wrap: pretty;
  padding-bottom: 6px;
}

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

.product {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-media {
  position: relative;
  background: var(--sand);
  border-radius: 999px 999px 16px 16px;
  overflow: hidden;
}

.product-media image-slot,
.product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: color-mix(in oklab, var(--ivory) 92%, transparent);
  backdrop-filter: blur(6px);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--umber-soft);
  white-space: nowrap;
}

.product-body { padding: 22px 6px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.product h3 { font-size: 26px; font-weight: 500; }

.product p { font-size: 15.5px; color: var(--umber-soft); text-wrap: pretty; }

.product-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 6px;
  width: fit-content;
  transition: border-color 0.25s, color 0.25s;
}

.product-link:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

.disclosure {
  margin-top: 54px;
  font-size: 13px;
  color: var(--umber-soft);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- rituals (categories) ---------- */
.rituals {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0 130px;
}

.rituals-head { text-align: center; margin-bottom: 64px; }
.rituals-head h2 { font-size: clamp(40px, 4.4vw, 58px); margin-top: 18px; }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ritual {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ritual figure { overflow: hidden; border-radius: 999px 999px 16px 16px; }

.ritual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.ritual:hover img { transform: scale(1.045); }

.ritual-body { text-align: center; padding-top: 24px; display: flex; flex-direction: column; gap: 6px; }

.ritual h3 { font-size: 30px; }

.ritual p { font-size: 15px; color: var(--umber-soft); max-width: 30ch; margin: 0 auto; text-wrap: pretty; }

/* ---------- circle (membership) ---------- */
.circle {
  background: var(--umber);
  color: var(--ivory);
  padding: 130px 0;
}

.circle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: center;
}

.circle .eyebrow { color: var(--clay); }

.circle h2 { font-size: clamp(42px, 4.6vw, 62px); margin: 22px 0 26px; }
.circle h2 em { font-style: italic; font-weight: 400; }

.circle p.sub { color: rgba(246, 241, 231, 0.78); max-width: 50ch; text-wrap: pretty; }

.circle-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gift-list { list-style: none; margin: 40px 0 46px; display: flex; flex-direction: column; }

.gift-list li {
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
}

.gift-list li:last-child { border-bottom: 1px solid rgba(246, 241, 231, 0.18); }

.gift-num {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--clay);
  min-width: 34px;
}

.gift-list h4 { font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1.2; }
.gift-list p { font-size: 14.5px; color: rgba(246, 241, 231, 0.66); margin-top: 4px; text-wrap: pretty; }

.signup { display: flex; gap: 12px; max-width: 480px; }

.signup input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(246, 241, 231, 0.35);
  border-radius: 999px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.25s;
}

.signup input::placeholder { color: rgba(246, 241, 231, 0.5); }
.signup input:focus { border-color: var(--clay); }

.signup .btn { border-color: var(--clay); background: var(--clay); color: var(--umber); white-space: nowrap; }
.signup .btn:hover { background: var(--ivory); border-color: var(--ivory); }

.signup-note { font-size: 12.5px; color: rgba(246, 241, 231, 0.5); margin-top: 16px; letter-spacing: 0.05em; }

/* ---------- quote ---------- */
.quote {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 170px 0;
  color: var(--ivory);
  overflow: hidden;
}

.quote img.bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(46, 38, 25, 0.45), rgba(46, 38, 25, 0.55));
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.3;
  font-weight: 500;
  max-width: 22ch;
  margin: 26px auto 0;
}

.quote .eyebrow { color: var(--sand); }

/* ---------- about ---------- */
.about { padding: 130px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 84px;
  align-items: center;
}

.about h2 { font-size: clamp(38px, 4vw, 52px); margin: 20px 0 24px; }

.about p { color: var(--umber-soft); max-width: 54ch; text-wrap: pretty; }
.about p + p { margin-top: 18px; }

.about-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--clay-deep);
  margin-top: 34px;
}

/* ---------- footer ---------- */
footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 84px 0 48px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.foot-grid .wordmark { font-size: 32px; }

.foot-tag { margin-top: 18px; font-size: 14.5px; color: var(--umber-soft); max-width: 34ch; text-wrap: pretty; }

.foot-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--clay-deep);
  margin-bottom: 20px;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.foot-col a {
  font-size: 14.5px;
  color: var(--umber-soft);
  text-decoration: none;
  transition: color 0.25s;
}

.foot-col a:hover { color: var(--ink); }

.foot-legal {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  font-size: 12.5px;
  color: var(--umber-soft);
  letter-spacing: 0.04em;
}

/* ================= MEGA MENU ================= */
.nav-trigger { display: inline-flex; align-items: center; gap: 7px; }
.nav-trigger svg { width: 9px; height: 9px; transition: transform 0.3s ease; opacity: 0.7; }
header.mega-open .nav-trigger svg { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 34px 60px -34px rgba(46, 38, 25, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 45;
}
header.mega-open .mega { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 0.78fr) 1.25fr;
  gap: 52px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 48px 56px;
}

.mega-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay-deep);
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.mega-col ul { list-style: none; display: flex; flex-direction: column; }
.mega-link {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 11px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  transition: color 0.2s, padding-left 0.25s ease;
}
.mega-link span { display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: var(--umber-soft); margin-top: 2px; }
.mega-link:hover { color: var(--clay-deep); padding-left: 8px; }

.mega-pop { border-left: 1px solid var(--line); padding-left: 52px; }
.mega-pop .pop-list { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.pop-card {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 10px;
  border-radius: 14px;
  transition: background 0.22s;
}
.pop-card:hover { background: var(--sand); }
.pop-thumb { width: 62px; height: 62px; border-radius: 12px; overflow: hidden; flex: none; background: var(--sand); }
.pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pop-card .pt { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.1; }
.pop-card .pm { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay-deep); margin-top: 5px; }
.mega-promo {
  margin-top: 18px;
  display: block;
  text-decoration: none;
  background: var(--umber);
  color: var(--ivory);
  border-radius: 16px;
  padding: 22px 24px;
  transition: transform 0.25s ease;
}
.mega-promo:hover { transform: translateY(-2px); }
.mega-promo .mp-k { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--clay); }
.mega-promo .mp-t { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-top: 8px; line-height: 1.2; }
.mega-promo .mp-t em { font-style: italic; font-weight: 400; }

@media (max-width: 980px) {
  .mega { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-trigger svg { display: none; }
}

/* ================= MEMBER / CIRCLE PAGE ================= */
.mb-hero {
  padding: 76px 0 104px;
  background: radial-gradient(1100px 540px at 12% -12%, var(--sand) 0%, transparent 62%), var(--ivory);
}
.mb-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.mb-hero h1 { font-size: clamp(46px, 5.6vw, 80px); margin: 24px 0 26px; }
.mb-hero h1 em { font-style: italic; font-weight: 400; }
.mb-hero .sub { font-size: 19px; color: var(--umber-soft); max-width: 46ch; text-wrap: pretty; }
.mb-hero .hero-actions { margin-top: 38px; }
.mb-hero-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.mb-receive { padding: 120px 0; }
.mb-head { text-align: center; margin-bottom: 60px; }
.mb-head h2 { font-size: clamp(38px, 4.2vw, 56px); margin-top: 16px; }
.mb-head h2 em { font-style: italic; font-weight: 400; color: var(--clay-deep); }
.mb-head p { color: var(--umber-soft); max-width: 48ch; margin: 18px auto 0; text-wrap: pretty; }

.gift-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gift-card {
  display: flex;
  flex-direction: column;
  background: #fdfaf4;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.gift-card figure { overflow: hidden; }
.gift-card img, .gift-card image-slot { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gift-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gift-card .k { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--clay-deep); }
.gift-card h3 { font-family: var(--serif); font-size: 27px; font-weight: 500; }
.gift-card p { font-size: 15.5px; color: var(--umber-soft); text-wrap: pretty; }
.gift-card .dur {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--umber-soft);
  border-top: 1px solid var(--line);
}

/* values marquee variant */
.mb-values { background: var(--umber); border: none; padding: 22px 0; }
.mb-values span { color: var(--on-dark-soft, rgba(246,241,231,0.78)); }
.mb-values span::after { color: var(--clay); }

/* ================= SHOWCASE (full-bleed band) ================= */
.showcase {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.showcase .sc-media { position: absolute; inset: 0; z-index: -2; }
.showcase .sc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(46, 38, 25, 0.28), rgba(46, 38, 25, 0.46));
}
.showcase .sc-inner { max-width: 30ch; padding: 0 24px; }
.showcase .eyebrow { color: var(--sand); }
.showcase h2 { font-size: clamp(36px, 4.8vw, 62px); line-height: 1.16; font-weight: 500; margin-top: 22px; }
.showcase h2 em { font-style: italic; font-weight: 400; }
.showcase p { margin-top: 20px; color: rgba(246, 241, 231, 0.88); font-size: 18px; text-wrap: pretty; }

/* ================= FEED GALLERY ================= */
.feed { padding: 124px 0 130px; text-align: center; }
.feed-head h2 { font-size: clamp(34px, 3.8vw, 50px); margin-top: 14px; }
.feed-head p { color: var(--umber-soft); margin-top: 14px; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.feed-grid figure { overflow: hidden; border-radius: 12px; position: relative; }
.feed-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.feed-grid figure:hover img { transform: scale(1.06); }
.feed-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 6px;
  transition: color 0.25s, border-color 0.25s;
}
.feed-handle:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .product-grid, .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================= PRODUCT LANDING PAGE ================= */
.pdp { padding-top: 40px; }

.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--umber-soft);
  text-decoration: none;
  transition: color 0.25s;
}
.pdp-back:hover { color: var(--ink); }

.pdp-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
  padding: 36px 0 120px;
}

.pdp-gallery { display: flex; flex-direction: column; gap: 20px; }
.pdp-gallery .pdp-main { border-radius: 999px 999px 18px 18px; overflow: hidden; }
.pdp-gallery .pdp-main image-slot,
.pdp-gallery .pdp-main img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; }

.pdp-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pdp-thumbs figure { border-radius: 16px; overflow: hidden; }
.pdp-thumbs image-slot,
.pdp-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.pdp-info { display: flex; flex-direction: column; align-items: flex-start; }
.pdp-info h1 { font-size: clamp(42px, 4.6vw, 62px); margin: 14px 0 16px; }
.pdp-tagline {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--clay-deep);
  line-height: 1.4;
  max-width: 30ch;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--umber-soft);
}
.pdp-stars { color: var(--clay); letter-spacing: 0.18em; font-size: 15px; }

.pdp-desc { color: var(--umber-soft); margin: 26px 0 30px; max-width: 46ch; text-wrap: pretty; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--umber-soft);
  background: color-mix(in oklab, var(--sand) 50%, transparent);
}

.pdp-buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pdp-price { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.pdp-price small { font-size: 14px; color: var(--umber-soft); font-family: var(--sans); margin-left: 6px; }
.pdp-note { font-size: 12.5px; color: var(--umber-soft); margin-top: 18px; letter-spacing: 0.04em; }

/* what's in / what's not */
.pdp-clean {
  background: var(--umber);
  color: var(--ivory);
  padding: 120px 0;
}
.pdp-clean .eyebrow { color: var(--clay); }
.pdp-clean-head { text-align: center; margin-bottom: 64px; }
.pdp-clean-head h2 { font-size: clamp(36px, 4vw, 54px); margin-top: 16px; }
.pdp-clean-head h2 em { font-style: italic; font-weight: 400; }
.pdp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 900px; margin: 0 auto; }
.pdp-cols h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 241, 231, 0.2);
}
.pdp-cols ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pdp-cols li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16px;
  color: rgba(246, 241, 231, 0.86);
}
.pdp-cols .mark { color: var(--clay); font-size: 13px; }
.pdp-cols .no .mark { color: rgba(246, 241, 231, 0.4); }

/* ritual steps */
.pdp-ritual { padding: 120px 0; }
.pdp-ritual-head { text-align: center; margin-bottom: 64px; }
.pdp-ritual-head h2 { font-size: clamp(36px, 4vw, 54px); margin-top: 16px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--clay);
  line-height: 1;
}
.step h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.step p { font-size: 15px; color: var(--umber-soft); max-width: 28ch; text-wrap: pretty; }

/* founder note */
.pdp-founder { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 110px 0; }
.pdp-founder-grid { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: center; max-width: 880px; margin: 0 auto; }
.pdp-founder image-slot, .pdp-founder .pf-img { width: 220px; height: 220px; }
.pdp-founder blockquote { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px); line-height: 1.45; font-weight: 500; text-wrap: pretty; }
.pdp-founder cite { display: block; margin-top: 20px; font-style: normal; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay-deep); }

/* outbound buy band */
.pdp-out { padding: 120px 0; text-align: center; }
.pdp-out h2 { font-size: clamp(34px, 3.8vw, 50px); }
.pdp-out p { color: var(--umber-soft); max-width: 44ch; margin: 18px auto 36px; text-wrap: pretty; }
.pdp-out .btn { margin: 0 auto; }
.pdp-out .pdp-note { text-align: center; }

/* related */
.pdp-related { background: var(--sand); border-top: 1px solid var(--line); padding: 110px 0; }
.pdp-related-head { text-align: center; margin-bottom: 56px; }
.pdp-related-head h2 { font-size: clamp(32px, 3.4vw, 46px); margin-top: 14px; }

@media (max-width: 880px) {
  .pdp-hero, .pdp-cols, .steps, .pdp-founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-founder-grid { justify-items: center; text-align: center; }
  .steps { gap: 48px; }
}

@media (max-width: 880px) {
  .wrap { padding: 0 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .circle-grid, .about-grid, .manifesto-grid, .interlude-grid, .mb-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .interlude-tall image-slot, .interlude-tall img { min-height: 380px; }
  .hero { padding: 56px 0 72px; }
  .mb-hero, .mb-receive, .circle, .quote, .about, .rituals, .interlude, .manifesto,
  .pdp-clean, .pdp-ritual, .pdp-founder, .pdp-out, .pdp-related { padding-top: 80px; padding-bottom: 80px; }
  .quote { padding: 110px 0; }
  .edit-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-legal { flex-direction: column; gap: 10px; }
  .signup { flex-direction: column; }
  .about-grid { justify-items: start; }
  .pdp-hero { padding: 24px 0 72px; }
}

@media (max-width: 640px) {
  .product-grid, .ritual-grid { grid-template-columns: 1fr; }
  .display, .hero h1 { word-break: break-word; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { min-height: 58vh; }
}
