:root {
  --cream: #fbf6ee;
  --paper: #fffdf9;
  --ink: #45372f;
  --rose: #ead7d1;
  --sage: #899383;
  --rust: #a45f49;
  --line: rgba(69, 55, 47, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
a {
  color: inherit;
}
.journal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(35rem, 1fr);
  align-items: center;
  padding: 1.15rem max(3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}
.journal-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 1.7vw, 2.2rem);
}
.brand {
  font: 600 1.35rem var(--serif);
  text-decoration: none;
}
.brand span {
  color: var(--rust);
  margin-left: 0.25rem;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.5rem;
}
.journal-header nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.journal-header nav a:hover,
.journal-header nav a[aria-current="page"] {
  color: var(--rust);
}
.header-quiz,
.member-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.header-quiz {
  min-height: 3rem;
  padding: 0.5rem 0.95rem;
  background: var(--ink);
  color: #fff;
}
.quiz-copy,
.member-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.quiz-copy strong {
  font-size: 0.8rem;
}
.quiz-copy small,
.member-copy small {
  margin-bottom: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.quiz-copy small {
  color: rgba(255, 255, 255, 0.72);
}
.member-link {
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.8rem;
}
.member-link > span:first-child {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--rust);
}
.member-copy small {
  color: #8d7a70;
}
.member-link b {
  margin-left: 0.15rem;
  font-size: 1.05rem;
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding: 5rem max(7vw, 1rem) 7rem;
  min-height: 82vh;
}
.product-gallery {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 1.5rem;
  background: var(--rose);
  box-shadow: 0 28px 70px rgba(69, 55, 47, 0.12);
}
.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--paper);
}
.gallery-stage > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: opacity 180ms ease;
}
.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(69, 55, 47, 0.15);
}
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }
.gallery-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(69, 55, 47, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.3vw, 1.1rem);
  padding: 0 0.15rem;
}
.gallery-thumb {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  background: var(--paper);
  cursor: pointer;
}
.gallery-thumb.active {
  border-color: var(--rust);
}
.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-gallery > p {
  margin: 0;
  padding: 0.45rem 0.5rem 0.15rem;
  line-height: 1.5;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.product-copy {
  max-width: 720px;
}
.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  margin: 0;
}
h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin: 0;
}
h3 {
  font-size: 1.7rem;
  margin: 0.8rem 0;
}
em {
  color: var(--rust);
  font-weight: 500;
}
.lead {
  max-width: 680px;
  margin: 2rem 0;
  font-size: 1.12rem;
}
.rating {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.5rem 0;
}
.rating span {
  letter-spacing: 0.15em;
  color: var(--rust);
}
.rating b {
  font-size: 0.82rem;
}
.investment {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0;
}
.investment strong {
  font: 600 2.6rem var(--serif);
}
.investment s {
  color: #8d7a70;
  font: 500 1.25rem var(--serif);
}
.investment span {
  font-size: 0.75rem;
}
.buy-button {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.buy-button:hover {
  background: var(--rust);
}
.microcopy {
  font-size: 0.74rem;
  color: #7a6b64;
}
.why,
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 8rem max(7vw, 1rem);
}
.why {
  background: var(--paper);
}
.why > div:last-child,
.how > ol {
  max-width: 650px;
}
.why p {
  font-size: 1.08rem;
}
.why ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
}
.included {
  padding: 8rem max(7vw, 1rem);
  background: var(--sage);
  color: #fff;
}
.included .eyebrow {
  color: #fff;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.included article {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 1rem;
}
.included article > span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.included article p {
  margin-bottom: 0;
}
.how ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.how li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.how li b {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.reviews {
  padding: 8rem max(5vw, 1rem);
  background: var(--rose);
}
.shop-path {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: center;
  padding: 8rem max(7vw, 1rem);
  background: var(--paper);
}
.shop-path > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.5rem 0 2rem;
}
.shop-preview {
  display: grid;
  gap: 0.8rem;
}
.shop-preview article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--cream);
}
.shop-preview span {
  color: var(--rust);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.shop-preview b {
  font: 600 1.35rem var(--serif);
}
.reviews-heading {
  max-width: 900px;
  margin-bottom: 3rem;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-grid blockquote {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  margin: 0;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--paper);
}
.review-grid blockquote div {
  color: var(--rust);
  letter-spacing: 0.12em;
}
.review-grid blockquote p {
  font: 500 1.25rem/1.55 var(--serif);
}
.review-grid cite {
  margin-top: auto;
  font-style: normal;
  font-weight: 600;
}
.final-cta {
  padding: 8rem max(7vw, 1rem);
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.final-cta .eyebrow,
.final-cta em {
  color: #e4bd82;
}
.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.5rem auto 2rem;
}
.light {
  background: #fff;
  color: var(--ink);
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding: 2rem max(5vw, 1rem);
  background: #302821;
  color: #fff;
  font-size: 0.8rem;
}
footer p {
  margin: 0;
}
@media (max-width: 800px) {
  .journal-header {
    grid-template-columns: 1fr auto;
  }
  .journal-header nav {
    display: none;
  }
  .product-hero,
  .why,
  .how,
  .shop-path {
    grid-template-columns: 1fr;
  }
  .product-hero {
    padding-top: 3rem;
  }
  .product-gallery {
    max-width: 520px;
  }
  .gallery-thumbs {
    gap: 0.55rem;
  }
  .included-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-grid blockquote {
    min-height: 0;
  }
  .how li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .header-quiz {
    display: none;
  }
  .member-link {
    padding-left: 0.75rem;
  }
  .member-copy small,
  .member-link b {
    display: none;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 800px) {
  html, body { overflow-x: hidden; }
  .journal-header { gap: 0.65rem; }
  .product-hero, .why, .how, .shop-path { overflow: hidden; }
  .gallery-thumbs { overflow-x: auto; padding-bottom: 0.25rem; }
  .gallery-thumbs button { flex: 0 0 auto; }
}
 .detail-library{display:inline-block;margin:1rem 0 0;color:inherit;font-size:.88rem;font-weight:700;text-decoration:underline;text-underline-offset:4px}.detail-library-light{color:#fffdf9}
