:root {
  color-scheme: dark;
  --black: #010101;
  --black-2: #050403;
  --black-3: #0b0804;
  --gold: #d9a12a;
  --gold-bright: #ffe08a;
  --gold-hot: #ffbd2f;
  --gold-deep: #9a681b;
  --gold-dark: #4a2b06;
  --gold-metal: linear-gradient(92deg, #7b4b08 0%, #f2a91b 18%, #fff1a8 34%, #c98612 52%, #ffe58c 72%, #a76508 100%);
  --cream: #f5efe3;
  --cream-2: #fff3d2;
  --silver: #d6d3ce;
  --muted: #b6aa96;
  --ink: #1b160f;
  --line: rgba(214, 163, 58, 0.34);
  --max: 1180px;
  --safe: 24px;
  --radius: 8px;
  --display: "Avenir Next Condensed", "Arial Narrow", Impact, sans-serif;
  --serif: "Bodoni 72", Georgia, serif;
  --body: "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 178, 44, 0.11), transparent 34rem),
    linear-gradient(180deg, #050403 0%, #010101 34%, #030201 100%);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold-bright);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(var(--safe), calc((100% - var(--max)) / 2));
  background: rgba(1, 1, 1, 0.72);
  border-bottom: 1px solid rgba(255, 210, 105, 0.18);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(1, 1, 1, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 224, 138, 0.82);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(255, 241, 168, 0.3), rgba(214, 163, 58, 0.04) 45%, rgba(0, 0, 0, 0.24));
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--silver);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  background: var(--gold-metal);
  color: var(--black);
  background-size: 220% 100%;
  box-shadow: 0 0 34px rgba(244, 199, 99, 0.34);
}

.btn {
  min-height: 58px;
  padding: 0 28px;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: var(--gold-metal);
  color: var(--black);
  border-color: rgba(255, 247, 232, 0.28);
  background-size: 240% 100%;
  box-shadow: 0 12px 40px rgba(214, 163, 58, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  opacity: 0;
  animation: button-glow-pulse 10.5s ease-in-out infinite;
  pointer-events: none;
}

.amazon-link {
  background-size: 280% 100%;
  animation: amazon-gold-pulse 10.5s ease-in-out infinite;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--line);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 132px var(--safe) 82px;
  background: #010101;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/promo.png");
  background-size: cover;
  background-position: right center;
  filter: saturate(1.22) contrast(1.14) brightness(0.9);
  transform: scale(1.035);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 184, 53, 0.16), transparent 25rem),
    linear-gradient(90deg, rgba(1, 1, 1, 0.99) 0%, rgba(1, 1, 1, 0.94) 35%, rgba(1, 1, 1, 0.58) 64%, rgba(1, 1, 1, 0.12) 100%),
    linear-gradient(180deg, rgba(1, 1, 1, 0.18), rgba(1, 1, 1, 0.92));
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1160px;
  margin: 0;
  font-family: var(--display);
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
  animation: fade-up 900ms ease both;
}

.hero-title-top {
  display: block;
  color: var(--silver);
  font-size: 54px;
  line-height: 0.9;
  font-weight: 900;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.68));
}

.hero-title-main {
  position: relative;
  display: block;
  color: #f4b62e;
  font-size: 124px;
  line-height: 0.78;
  white-space: nowrap;
}

.hero-title-main::after {
  content: "";
  display: block;
  width: min(620px, 100%);
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 224, 138, 0.72), transparent);
  box-shadow: 0 0 18px rgba(255, 189, 47, 0.24);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--silver);
  font-size: 25px;
  line-height: 1.25;
  animation: fade-up 900ms ease 140ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  animation: fade-up 900ms ease 260ms both;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  animation: fade-up 900ms ease 380ms both;
}

.hero-proof span {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.conversion-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 22px var(--safe);
  background: var(--gold-metal);
  background-size: 240% 100%;
  color: var(--black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 20px 65px rgba(0, 0, 0, 0.32);
  animation: gold-shine 10s linear infinite;
}

.conversion-strip div {
  width: min(100%, var(--max));
  display: flex;
  align-items: center;
  gap: 18px;
}

.conversion-strip p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.conversion-strip a {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: var(--black);
  color: var(--gold-bright);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

.strip-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 3px solid var(--black);
  border-radius: 50%;
  position: relative;
}

.strip-icon::before,
.strip-icon::after {
  content: "";
  position: absolute;
  background: var(--black);
}

.strip-icon::before {
  width: 19px;
  height: 14px;
  left: 9px;
  bottom: 9px;
  border-radius: 0 0 8px 8px;
}

.strip-icon::after {
  width: 23px;
  height: 3px;
  left: 8px;
  bottom: 7px;
}

.section,
.inside-section,
.bonus-section,
.ritual-section,
.collection-section,
.purchase-section,
.faq-section,
.final-cta {
  padding: 96px max(var(--safe), calc((100% - var(--max)) / 2));
}

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

.section-copy.centered {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.96;
  text-transform: uppercase;
  background: var(--gold-metal);
  background-size: 230% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 20px rgba(214, 163, 58, 0.12));
}

h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.section-copy p:not(.eyebrow),
.method-copy p,
.collection-copy p,
.purchase-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 21px;
}

.intro-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 189, 47, 0.1), transparent 26rem),
    linear-gradient(180deg, #030201, #010101);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: end;
}

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

.intro-grid article,
.bonus-list article,
.faq-list details {
  border: 1px solid rgba(255, 213, 122, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 55px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.intro-grid article:hover,
.bonus-list article:hover,
.faq-list details[open] {
  transform: translateY(-4px);
  border-color: rgba(255, 224, 138, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 70px rgba(0, 0, 0, 0.34);
}

.intro-grid article {
  min-height: 260px;
  padding: 26px;
}

.intro-grid span,
.bonus-list span {
  display: block;
  margin-bottom: 60px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 900;
}

.intro-grid p,
.bonus-list p,
.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
}

.method-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 72px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 189, 47, 0.12), transparent 28rem),
    linear-gradient(180deg, #060402, #010101);
  color: var(--cream);
}

.method-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.method-visual img {
  width: min(360px, 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.72), 0 0 80px rgba(214, 163, 58, 0.14);
  animation: book-float 6.5s ease-in-out infinite;
}

.method-copy .eyebrow,
.purchase-copy .eyebrow,
.collection-copy .eyebrow {
  color: var(--gold-bright);
}

.method-copy p {
  max-width: 700px;
  color: var(--muted);
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.method-timeline div {
  border-top: 4px solid var(--gold);
  padding-top: 22px;
}

.method-timeline strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.8;
}

.method-timeline span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.inside-section {
  background:
    linear-gradient(180deg, #010101, #080604 48%, #010101);
  color: var(--cream);
}

.inside-section .eyebrow {
  color: var(--gold-bright);
}

.inside-section .section-copy p {
  color: var(--muted);
}

.spread-frame {
  margin: 0;
  border: 1px solid rgba(255, 213, 122, 0.34);
  background: linear-gradient(180deg, #120d05, #010101);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.55);
}

.spread-frame img {
  width: 100%;
}

.bonus-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 189, 47, 0.09), transparent 27rem),
    var(--black);
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bonus-list article {
  min-height: 260px;
  padding: 24px;
}

.bonus-list span {
  margin-bottom: 42px;
}

.ritual-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 189, 47, 0.12), transparent 25rem),
    linear-gradient(180deg, #010101, #080604 48%, #010101);
}

.ritual-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.ritual-steps li {
  border-top: 4px solid var(--gold);
  padding-top: 20px;
  text-align: center;
}

.ritual-steps strong {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  text-transform: uppercase;
}

.ritual-steps span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.collection-section {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 189, 47, 0.14), transparent 30rem),
    linear-gradient(180deg, #030201, #010101);
  color: var(--cream);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.collection-copy p {
  color: var(--muted);
}

.collection-shelf {
  display: grid;
  grid-template-columns: 1.08fr 0.86fr 0.86fr;
  gap: 18px;
  align-items: end;
}

.book {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 18px;
}

.book.current img {
  max-height: 430px;
  filter: saturate(1.08) contrast(1.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 72px rgba(214, 163, 58, 0.14);
  animation: book-float 7.2s ease-in-out infinite;
}

.book strong {
  background: var(--gold-metal);
  background-size: 220% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: 31px;
  text-transform: uppercase;
}

.book.ghost {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 214, 122, 0.34);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 210, 105, 0.16), transparent 8rem),
    linear-gradient(180deg, #171007 0%, #070504 52%, #010101 100%);
  color: var(--gold-bright);
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 75px rgba(0, 0, 0, 0.44);
  isolation: isolate;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.book.ghost:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 224, 138, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 34px 90px rgba(0, 0, 0, 0.55), 0 0 62px rgba(214, 163, 58, 0.12);
}

.book.ghost::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 224, 138, 0.22);
  border-radius: 4px;
  z-index: 0;
}

.book.ghost::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.12) 48%, transparent 62%),
    radial-gradient(circle at 52% 18%, rgba(255, 224, 138, 0.2), transparent 18rem);
  transform: translateX(-28%);
  opacity: 0.55;
  animation: mystery-sweep 8s ease-in-out infinite;
  z-index: 0;
}

.book.ghost > * {
  position: relative;
  z-index: 1;
}

.book.ghost em,
.book.ghost small {
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.book.ghost em {
  justify-self: start;
  color: var(--muted);
  font-size: 13px;
}

.book.ghost span {
  margin-top: auto;
  background: var(--gold-metal);
  background-size: 220% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: 92px;
  font-weight: 900;
  line-height: 0.82;
  filter: drop-shadow(0 8px 22px rgba(214, 163, 58, 0.18));
}

.book.ghost small {
  color: var(--silver);
  font-size: 13px;
}

.purchase-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 189, 47, 0.12), transparent 26rem),
    linear-gradient(180deg, #010101 0%, #080604 52%, #010101 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.purchase-copy h2 {
  filter: drop-shadow(0 10px 28px rgba(255, 189, 47, 0.18));
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.purchase-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 213, 122, 0.3);
  box-shadow: 0 34px 105px rgba(0, 0, 0, 0.62), 0 0 85px rgba(214, 163, 58, 0.12);
}

.purchase-media img {
  filter: saturate(1.12) contrast(1.08);
}

.faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 189, 47, 0.09), transparent 26rem),
    #010101;
  color: var(--cream);
}

.faq-section .eyebrow {
  color: var(--gold-bright);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 213, 122, 0.28);
  color: var(--cream);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  font-size: 21px;
}

.faq-list summary::marker {
  color: var(--gold-bright);
}

.faq-list details p {
  padding: 0 24px 22px;
}

.final-cta {
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 189, 47, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(1, 1, 1, 0.78), rgba(1, 1, 1, 0.98)),
    url("assets/cover.png") center/420px auto no-repeat,
    var(--black);
}

.final-cta h2 {
  max-width: 820px;
  filter: drop-shadow(0 12px 34px rgba(255, 189, 47, 0.2));
}

.final-cta p {
  max-width: 650px;
  margin: 22px auto 32px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(var(--safe), calc((100% - var(--max)) / 2));
  background: #020201;
  color: var(--muted);
  border-top: 1px solid rgba(244, 199, 99, 0.14);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@keyframes gold-shine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes amazon-gold-pulse {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 12px 40px rgba(214, 163, 58, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    filter: brightness(1);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 18px 58px rgba(255, 189, 47, 0.5), 0 0 26px rgba(255, 224, 138, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    filter: brightness(1.12) saturate(1.08);
  }

  100% {
    background-position: 220% 50%;
    box-shadow: 0 12px 40px rgba(214, 163, 58, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    filter: brightness(1);
  }
}

@keyframes button-glow-pulse {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1.075);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes book-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes mystery-sweep {
  0%,
  42% {
    transform: translateX(-34%);
  }

  72%,
  100% {
    transform: translateX(34%);
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero-title-top {
    font-size: 42px;
  }

  .hero-title-main {
    font-size: 82px;
  }

  .intro-section,
  .method-section,
  .bonus-section,
  .collection-section,
  .purchase-section {
    grid-template-columns: 1fr;
  }

  .method-visual {
    min-height: 420px;
    order: 2;
  }

  .ritual-steps,
  .method-timeline,
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-shelf {
    grid-template-columns: 1fr 1fr;
  }

  .book.current {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --safe: 18px;
  }

  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.7), rgba(5, 4, 3, 0.94)),
      linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.7));
  }

  .hero-title-top {
    font-size: 31px;
  }

  .hero-title-main {
    font-size: 46px;
    white-space: normal;
  }

  .hero-title-main::after {
    margin-top: 14px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-actions,
  .purchase-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .conversion-strip,
  .conversion-strip div {
    display: grid;
    justify-items: start;
  }

  .conversion-strip a {
    width: 100%;
    justify-content: center;
  }

  .section,
  .inside-section,
  .bonus-section,
  .ritual-section,
  .collection-section,
  .purchase-section,
  .faq-section,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h2 {
    font-size: 43px;
  }

  .intro-grid,
  .bonus-list,
  .ritual-steps,
  .method-timeline,
  .collection-shelf {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .bonus-list article {
    min-height: 0;
  }

  .intro-grid span,
  .bonus-list span {
    margin-bottom: 22px;
  }

  .method-visual img {
    width: min(280px, 100%);
  }

  .spread-frame {
    padding: 8px;
  }

  .book,
  .book.ghost {
    min-height: 300px;
  }

  .book.current img {
    max-height: 340px;
  }

  .site-footer {
    display: grid;
  }
}

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

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