:root {
  --mauve: #9e6e84;
  --mauve-deep: #806b75;
  --mauve-dark: #3a3a3a;
  --mauve-pale: #eeebed;
  --charcoal: #3a3a3a;
  --ink: #272427;
  --ivory: #fbf9f7;
  --paper: #f5f0ed;
  --white: #ffffff;
  --line: rgba(58, 58, 58, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(58, 58, 58, 0.04) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

a[href*="amazon.com"] {
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
blockquote {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(100%, 1440px);
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: 62px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 60px;
  height: auto;
}

.header-cta {
  padding: 0.6rem 0;
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--mauve-deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 870px;
  padding: 9rem clamp(1.25rem, 6vw, 6rem) 6rem;
  overflow: hidden;
  background: linear-gradient(112deg, rgba(251, 249, 247, 0.98) 0%, rgba(251, 249, 247, 0.94) 57%, rgba(238, 235, 237, 0.82) 57%, rgba(238, 235, 237, 0.82) 100%);
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.hero::before {
  position: absolute;
  top: 8rem;
  right: clamp(1rem, 4vw, 4rem);
  width: 1px;
  height: calc(100% - 16rem);
  background: rgba(118, 80, 100, 0.24);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 735px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--mauve-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

h1 {
  max-width: 820px;
  margin-bottom: 1.75rem;
  color: var(--ink);
  font-size: clamp(3rem, 5.25vw, 5.5rem);
  letter-spacing: -0.046em;
}

h1 em,
h2 em {
  color: var(--mauve);
  font-weight: 500;
}

.hero-lede {
  max-width: 650px;
  margin: 0 0 2.25rem;
  color: #5d585b;
  font-size: clamp(1.05rem, 1.35vw, 1.23rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-actions p {
  margin: 0;
  color: #756f73;
  font-size: 0.8rem;
  line-height: 1.55;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 58px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.header-cta:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(157, 108, 130, 0.42);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--charcoal);
}

.button-primary:hover {
  background: var(--charcoal);
}

.button span {
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.authority-line {
  display: flex;
  max-width: 550px;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 1rem;
  color: #676164;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.authority-number {
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.journal-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  min-height: 610px;
  margin: 0 auto;
}

.book-shadow {
  display: none;
}

.book-cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  background: #f4f4f5;
  box-shadow: none;
  transform: none;
}

.book-cover::before {
  display: none;
}

.book-cover img {
  position: absolute;
  top: -58.8%;
  left: -44.7%;
  width: 189.5%;
  max-width: none;
  height: auto;
}

.stage-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 78%;
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--mauve);
  color: var(--mauve-dark);
  background: rgba(251, 249, 247, 0.92);
  box-shadow: 0 15px 35px rgba(59, 45, 52, 0.1);
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
}

.stage-note span {
  color: var(--mauve);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.reflection-section {
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  color: var(--white);
  background: var(--charcoal);
}

.reflection-intro,
.reflection-grid,
.difference-section,
.journey-section,
.pages-section,
.vault-layout,
.creator-section,
.faq-section {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.reflection-intro {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 3rem;
}

.reflection-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.45rem);
  letter-spacing: -0.035em;
}

.reflection-intro h2 em {
  color: #ffffff;
}

.reflection-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.reflection-card {
  min-height: 290px;
  padding: 2.2rem 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.reflection-card > span {
  display: block;
  margin-bottom: 3.2rem;
  color: #ded7da;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.reflection-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.reflection-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.difference-section {
  display: grid;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.difference-copy h2,
.section-heading h2,
.inside-copy h2,
.creator-copy h2,
.purchase-copy h2 {
  margin-bottom: 1.4rem;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.2vw, 4.2rem);
  letter-spacing: -0.035em;
}

.difference-copy > p:last-child,
.section-heading > p:last-child,
.creator-copy > p:not(.eyebrow):not(.creator-signature):not(.creator-title) {
  max-width: 660px;
  margin-bottom: 0;
  color: #625d60;
  font-size: 1.05rem;
  line-height: 1.8;
}

.difference-comparison {
  position: relative;
  display: grid;
  padding: 2.4rem;
  border: 1px solid rgba(157, 108, 130, 0.24);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(59, 44, 52, 0.08);
  grid-template-columns: 1fr 52px 1fr;
  gap: 1.5rem;
}

.comparison-label {
  margin: 0 0 1.25rem;
  color: var(--mauve-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.difference-comparison ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-comparison li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}

.difference-comparison li::before {
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mauve);
  content: "";
}

.comparison-mark {
  display: flex;
  width: 46px;
  height: 46px;
  margin-top: 2.5rem;
  border: 1px solid var(--mauve);
  border-radius: 50%;
  color: var(--mauve-deep);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.journey-section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 4rem;
}

.journey-line {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
}

.journey-line li {
  position: relative;
  min-height: 260px;
  padding: 2.1rem 1.4rem 1rem;
  border-top: 1px solid var(--mauve);
}

.journey-line li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mauve);
  content: "";
}

.journey-line span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--mauve);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.journey-line strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.journey-line p {
  margin: 0;
  color: #6e686b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pages-section {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 4rem);
  background: var(--paper);
}

.section-heading-centered {
  margin-bottom: 2.5rem;
  margin-inline: auto;
  text-align: center;
}

.page-gallery {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 300px));
  align-items: start;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.page-card {
  margin: 0;
}

.page-card-two {
  margin-top: 0;
}

.page-card img {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border: 1px solid rgba(58, 58, 58, 0.12);
  background: var(--white);
  box-shadow: 0 28px 54px rgba(49, 39, 44, 0.13);
  object-fit: contain;
}

.page-card figcaption {
  margin-top: 1.35rem;
  color: #5f595c;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
}

.page-card figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--mauve-deep);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.inside-section {
  display: grid;
  color: var(--white);
  background: var(--charcoal);
  grid-template-columns: 0.78fr 1.22fr;
}

.inside-quote,
.inside-copy {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.inside-quote {
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: #4a4749;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  color: #ded7da;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.7;
}

.inside-quote blockquote {
  max-width: 480px;
  margin: 1.5rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.25;
}

.inside-quote p {
  margin: 0;
  color: #ded7da;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inside-copy h2,
.inside-copy h2 em {
  color: var(--white);
}

.inside-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.inside-list li {
  display: grid;
  padding: 1.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 52px 1fr;
  gap: 1rem;
}

.inside-list li > span {
  padding-top: 0.2rem;
  color: #ded7da;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.inside-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.inside-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.vault-section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  background: linear-gradient(90deg, var(--mauve-pale) 0%, var(--mauve-pale) 36%, var(--ivory) 36%, var(--ivory) 100%);
}

.vault-section::after {
  position: absolute;
  top: 0;
  right: clamp(1.25rem, 6vw, 6rem);
  width: 1px;
  height: 5rem;
  background: rgba(157, 108, 130, 0.4);
  content: "";
}

.vault-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.vault-visual {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.vault-page-frame {
  position: relative;
  width: min(100%, 430px);
  padding: 0.65rem;
  border: 1px solid rgba(157, 108, 130, 0.25);
  background: var(--white);
  box-shadow: 0 34px 75px rgba(63, 47, 55, 0.17);
  transform: rotate(-1.1deg);
}

.vault-page-frame::before {
  position: absolute;
  top: 2rem;
  right: -1.2rem;
  bottom: 2rem;
  width: 3px;
  background: var(--mauve);
  content: "";
}

.vault-page-frame img {
  width: 100%;
  height: auto;
}

.vault-visual-note {
  display: flex;
  width: min(100%, 430px);
  margin: 2rem 0 0;
  align-items: center;
  gap: 0.85rem;
  color: #5f595c;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
}

.vault-visual-note span {
  padding: 0.42rem 0.6rem;
  color: var(--white);
  background: var(--mauve);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vault-copy h2 {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  letter-spacing: -0.04em;
}

.vault-copy h2 em {
  color: var(--mauve);
}

.vault-lede {
  max-width: 780px;
  margin: 0 0 1rem;
  color: #5f595c;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.8;
}

.vault-summary {
  max-width: 750px;
  margin: 0 0 2.5rem;
  color: var(--mauve-deep);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.55vw, 1.4rem);
  line-height: 1.55;
}

.vault-pair {
  display: grid;
  margin-bottom: 2.4rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(157, 108, 130, 0.3);
  border-bottom: 1px solid rgba(157, 108, 130, 0.3);
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 1.2rem;
}

.vault-pair div > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--mauve-deep);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.vault-pair strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.vault-pair p {
  margin: 0;
  color: #6a6467;
  font-size: 0.94rem;
  line-height: 1.65;
}

.vault-plus {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid var(--mauve);
  border-radius: 50%;
  color: var(--mauve-deep);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.vault-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vault-benefits li {
  display: grid;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
}

.vault-benefits li > span {
  padding-top: 0.15rem;
  color: var(--mauve);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vault-benefits strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
}

.vault-benefits p {
  margin: 0;
  color: #6a6467;
  line-height: 1.65;
}

.vault-access-note {
  display: grid;
  margin-top: 2.4rem;
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--mauve);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(63, 47, 55, 0.08);
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 1rem;
}

.vault-access-note > span {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(157, 108, 130, 0.45);
  border-radius: 50%;
  color: var(--mauve-deep);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.72rem;
}

.vault-access-note p {
  margin: 0;
  color: #5f595c;
  line-height: 1.65;
}

.vault-access-note strong {
  color: var(--ink);
}

.creator-section {
  display: grid;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.creator-signature {
  margin: 2rem 0 0;
  color: var(--mauve-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
}

.creator-title {
  margin: 0.15rem 0 0;
  color: #777073;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.creator-review {
  margin: 0;
  padding: 3rem;
  border-left: 4px solid var(--mauve);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(58, 43, 50, 0.09);
}

.creator-review blockquote {
  margin: 0 0 1.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

.creator-review figcaption {
  display: flex;
  margin-bottom: 1.2rem;
  flex-direction: column;
}

.creator-review strong {
  color: var(--mauve-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-review figcaption span,
.creator-review small {
  color: #777174;
  font-size: 0.78rem;
}

.creator-review small {
  display: block;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.purchase-section {
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem);
  background: var(--paper);
}

.purchase-panel {
  display: grid;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 5rem);
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 35px 80px rgba(55, 39, 47, 0.16);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.purchase-copy h2,
.purchase-copy h2 em {
  color: var(--white);
}

.purchase-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.purchase-card {
  padding: 2.2rem;
  color: var(--charcoal);
  background: var(--white);
}

.purchase-format {
  margin: 0 0 0.55rem;
  color: var(--mauve-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.purchase-price {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
}

.purchase-card > p:not(.purchase-format):not(.purchase-price) {
  margin-bottom: 1.6rem;
  color: #686164;
}

.purchase-card .purchase-bonus {
  margin: -0.35rem 0 1.65rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--mauve);
  color: #5e575a;
  background: var(--mauve-pale);
  font-size: 0.9rem;
  line-height: 1.55;
}

.purchase-bonus strong {
  color: var(--mauve-deep);
}

.button-light {
  width: 100%;
  color: var(--white);
  background: var(--charcoal);
}

.button-light:hover {
  background: var(--charcoal);
}

.purchase-card small {
  display: block;
  margin-top: 1rem;
  color: #797275;
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: center;
}

.faq-section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  color: var(--mauve);
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 760px;
  margin: -0.4rem 0 1.6rem;
  color: #655f62;
  line-height: 1.75;
}

footer {
  display: flex;
  min-height: 170px;
  padding: 2.5rem clamp(1.25rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.brand-footer img {
  width: 54px;
}

footer p {
  margin: 0;
  color: #777174;
  font-size: 0.78rem;
}

footer a {
  text-underline-offset: 3px;
}

.mobile-purchase-bar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 790px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .journal-stage {
    min-height: 570px;
  }

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

  .journey-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-line li:nth-child(n + 4) {
    border-top-color: rgba(157, 108, 130, 0.45);
  }
}

@media (max-width: 850px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding-top: 1.3rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 8rem;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory) 59%, var(--mauve-pale) 59%, var(--mauve-pale) 100%);
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 720px;
  }

  .journal-stage {
    width: min(100%, 500px);
    min-height: 590px;
  }

  .reflection-intro,
  .difference-section,
  .inside-section,
  .vault-layout,
  .creator-section,
  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .reflection-intro {
    gap: 1rem;
  }

  .difference-section,
  .creator-section {
    gap: 3rem;
  }

  .inside-quote {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .vault-section {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory) 64%, var(--mauve-pale) 64%, var(--mauve-pale) 100%);
  }

  .vault-copy {
    order: -1;
  }

  .vault-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .page-gallery {
    gap: 1rem;
  }

  .page-card-two {
    margin-top: 2rem;
  }

  .mobile-purchase-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    min-height: 74px;
    padding: 0.8rem 1rem;
    color: var(--white);
    background: rgba(58, 58, 58, 0.97);
    box-shadow: 0 -8px 24px rgba(35, 24, 29, 0.18);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    backdrop-filter: blur(10px);
  }

  .mobile-purchase-bar div {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-purchase-bar strong {
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-purchase-bar span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.72rem;
  }

  .mobile-purchase-bar > a {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 0.72rem 0.9rem;
    color: var(--mauve-dark);
    background: var(--white);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
  }
}

@media (max-width: 620px) {
  .brand,
  .brand img {
    width: 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-actions p {
    text-align: center;
  }

  .button-primary {
    width: 100%;
  }

  .journal-stage {
    min-height: 500px;
  }

  .book-cover {
    right: 0;
    width: min(100%, 430px);
  }

  .stage-note {
    width: 88%;
  }

  .reflection-grid,
  .journey-line,
  .page-gallery {
    grid-template-columns: 1fr;
  }

  .reflection-card {
    min-height: 0;
  }

  .reflection-card > span {
    margin-bottom: 1.5rem;
  }

  .difference-comparison {
    grid-template-columns: 1fr;
  }

  .comparison-mark {
    margin: 0 auto;
  }

  .journey-line li {
    min-height: 0;
    padding-bottom: 2.3rem;
  }

  .journey-line li:nth-child(n + 2) {
    border-top-color: rgba(157, 108, 130, 0.45);
  }

  .journey-line span {
    margin-bottom: 1.25rem;
  }

  .page-gallery {
    max-width: 380px;
    gap: 1.75rem;
  }

  .page-card-two {
    margin-top: 0;
  }

  .inside-quote,
  .inside-copy {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .inside-list li {
    grid-template-columns: 40px 1fr;
  }

  .vault-pair {
    grid-template-columns: 1fr;
  }

  .vault-plus {
    margin-inline: auto;
  }

  .vault-page-frame {
    transform: none;
  }

  .creator-review,
  .purchase-card {
    padding: 1.65rem;
  }

  .purchase-panel {
    padding: 2rem 1.25rem;
  }

  footer {
    padding-bottom: 2rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  footer p {
    line-height: 1.6;
  }

  .mobile-purchase-bar strong {
    max-width: 175px;
  }
}
