@import "tailwindcss";

:root {
  --brown-950: #21130e;
  --brown-900: #2d1a13;
  --brown-800: #42271d;
  --brown-700: #60402f;
  --gold: #c99a3c;
  --gold-light: #e9c875;
  --cream: #f7f0e3;
  --paper: #fffaf0;
  --sand: #e8d8bd;
  --sage: #aab09a;
  --red: #9f3f35;
  --ink: #2f251f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

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

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

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(222,184,101,.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-display), serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand__text small {
  margin-top: 5px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .25em;
  opacity: .65;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  opacity: .75;
  transition: opacity .2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 11px;
}

.button--outline {
  border-color: rgba(255,255,255,.36);
}

.button--outline:hover {
  border-color: var(--gold-light);
}

.button--gold {
  background: var(--gold);
  color: var(--brown-950);
  box-shadow: 0 14px 40px rgba(0,0,0,.17);
}

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

.button--full {
  width: 100%;
}

.hero {
  min-height: 880px;
  padding: 176px 0 0;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 43%, rgba(176,121,58,.22), transparent 25%),
    linear-gradient(122deg, #21130e 0%, #342016 53%, #21130e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(207,165,82,.12);
  border-radius: 50%;
  right: -140px;
  top: 80px;
  box-shadow: 0 0 100px rgba(191,139,56,.06);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--brown {
  color: var(--brown-700);
}

.eyebrow--red {
  color: #c85b4f;
}

h1,
h2 {
  font-family: var(--font-display), serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .94;
}

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

.hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(247,240,227,.72);
  font-size: 16px;
  line-height: 1.8;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 600;
}

.hero__trust {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  color: rgba(247,240,227,.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__trust span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 9px;
}

.hero__visual {
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-disc {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, #d8af60 0%, #a9752f 62%, rgba(118,73,28,.2) 63%, transparent 68%);
  opacity: .65;
  box-shadow: 0 0 100px rgba(206,158,70,.16);
}

.book-stack {
  width: 330px;
  height: 455px;
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}

.book {
  position: absolute;
  border-radius: 2px 10px 10px 2px;
  box-shadow: 25px 35px 70px rgba(0,0,0,.4);
}

.book--back {
  width: 285px;
  height: 400px;
  left: -28px;
  top: 35px;
  background: #9ca28e;
  transform: rotate(-9deg);
  border: 8px solid #ded5bf;
}

.book--back span {
  position: absolute;
  bottom: 26px;
  left: 25px;
  color: #fff;
  font-family: var(--font-display), serif;
  font-size: 21px;
}

.book--front {
  inset: 0;
  padding: 38px 40px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(rgba(255,255,255,.025), rgba(0,0,0,.12)),
    var(--brown-800);
  border-left: 10px solid #2b1710;
}

.book--front::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(219,178,91,.45);
}

.book__brand {
  position: relative;
  z-index: 1;
  font-family: var(--font-display), serif;
  font-size: 16px;
  letter-spacing: .08em;
  text-align: center;
  color: var(--gold-light);
}

.book__ornament {
  width: 72px;
  height: 72px;
  margin: 55px auto 26px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.book__ornament::before,
.book__ornament::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.book__ornament::before {
  width: 1px;
  height: 96px;
}

.book__ornament::after {
  width: 96px;
  height: 1px;
}

.book--front h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 43px;
  line-height: .95;
  text-align: center;
}

.book--front p {
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  max-width: 190px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: .11em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.book__footer {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 38px;
  color: rgba(234,202,127,.7);
  font-family: var(--font-display), serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  color: var(--brown-950);
  background: rgba(247,240,227,.92);
  box-shadow: 0 14px 35px rgba(0,0,0,.17);
}

.floating-note span {
  font-family: var(--font-display), serif;
  font-size: 22px;
  font-weight: 700;
}

.floating-note small {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.floating-note--one {
  left: 10px;
  bottom: 60px;
}

.floating-note--two {
  right: -5px;
  top: 95px;
}

.hero__scripture {
  height: 100px;
  margin-top: 82px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__scripture p {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(247,240,227,.75);
}

.hero__scripture span {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding: 118px 0;
}

.section--cream {
  background: var(--cream);
}

.section--sand {
  background: var(--sand);
}

.section--brown {
  color: var(--cream);
  background: var(--brown-900);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.encounter-copy h2,
.vigilantes-copy h2,
.offer-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
}

.section-heading--split > p {
  margin: 0 0 5px;
  color: #726358;
  font-size: 15px;
  line-height: 1.8;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

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

.feature-card {
  min-height: 300px;
  padding: 34px;
  position: relative;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(86,59,42,.13);
  transition: transform .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--paper);
}

.feature-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
}

.feature-card__top i {
  font-style: normal;
}

.feature-card h3 {
  margin: 75px 0 18px;
  font-family: var(--font-display), serif;
  font-size: 30px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: #74665c;
  font-size: 13px;
  line-height: 1.8;
}

.encounter-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 100px;
}

.encounter-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(247,240,227,.62);
  line-height: 1.8;
}

.timeline {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.timeline li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-light);
  border: 1px solid rgba(218,175,88,.4);
  border-radius: 50%;
  font-family: var(--font-display), serif;
}

.timeline div {
  display: flex;
  flex-direction: column;
}

.timeline strong {
  font-family: var(--font-display), serif;
  font-size: 20px;
  font-weight: 600;
}

.timeline small {
  margin-top: 4px;
  color: rgba(247,240,227,.5);
}

.study-sheet {
  padding: 52px 48px 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 32px 42px 0 rgba(155,132,96,.12), 0 30px 80px rgba(0,0,0,.24);
  transform: rotate(1.5deg);
}

.study-sheet__header,
.study-sheet__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.study-sheet__header {
  padding-bottom: 22px;
  border-bottom: 1px solid #d9cdb9;
}

.study-sheet__header small {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .15em;
}

.study-sheet__header span {
  color: #8b7a6e;
  font-family: var(--font-display), serif;
  font-size: 14px;
}

.study-sheet__label {
  margin: 58px 0 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.study-sheet h3 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 600;
}

.study-sheet__verse {
  color: var(--red);
  font-family: var(--font-display), serif;
  font-style: italic;
}

.study-sheet__question {
  margin-top: 42px;
  padding: 22px;
  background: #efe7d8;
}

.study-sheet__question span {
  color: var(--brown-700);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.study-sheet__question p {
  margin: 10px 0 0;
  font-family: var(--font-display), serif;
  font-size: 20px;
  line-height: 1.3;
}

.study-sheet__lines {
  margin: 38px 0;
}

.study-sheet__lines i {
  display: block;
  height: 1px;
  margin-top: 15px;
  background: #ded4c5;
}

.study-sheet__footer {
  padding-top: 20px;
  border-top: 1px solid #d9cdb9;
  font-size: 9px;
}

.study-sheet__footer span {
  color: #9a8c80;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.study-sheet__footer strong {
  color: var(--brown-700);
  font-weight: 600;
}

.topic-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(66,39,29,.18);
}

.topic {
  min-height: 76px;
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  border-bottom: 1px solid rgba(66,39,29,.18);
  transition: padding .2s ease, background .2s ease;
}

.topic:hover {
  padding-inline: 16px;
  background: rgba(255,255,255,.17);
}

.topic span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.topic strong {
  font-family: var(--font-display), serif;
  font-size: 28px;
  font-weight: 600;
}

.topic i {
  color: var(--brown-700);
  font-style: normal;
}

.topic-note {
  text-align: center;
  color: #776354;
  font-family: var(--font-display), serif;
  font-style: italic;
}

.section--vigilantes {
  padding: 0;
  background: #1f1a16;
  color: var(--cream);
}

.vigilantes-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.vigilantes-art {
  position: relative;
  min-height: 720px;
}

.vigilantes-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #1f1a16 100%);
}

.vigilantes-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vigilantes-copy {
  padding: 100px 60px 100px 90px;
  align-self: center;
}

.vigilantes-copy h2 {
  color: #d9b865;
  font-size: 78px;
}

.vigilantes-copy h3 {
  max-width: 580px;
  margin: 14px 0 25px;
  color: rgba(247,240,227,.92);
  font-family: var(--font-display), serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.vigilantes-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(247,240,227,.58);
  font-size: 14px;
  line-height: 1.8;
}

.vigilantes-copy ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.vigilantes-copy li {
  padding: 12px 0;
  color: rgba(247,240,227,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.vigilantes-copy li::before {
  content: "✦";
  color: var(--red);
  margin-right: 12px;
}

.included-badge {
  display: inline-block;
  padding: 10px 15px;
  color: #e5c476;
  border: 1px solid rgba(229,196,118,.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section--offer {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown-800);
}

.section--offer::before {
  content: "LV";
  position: absolute;
  right: -40px;
  bottom: -140px;
  color: rgba(255,255,255,.025);
  font-family: var(--font-display), serif;
  font-size: 500px;
  line-height: 1;
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 110px;
}

.offer-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(247,240,227,.65);
  line-height: 1.8;
}

.offer-checks {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  color: rgba(247,240,227,.8);
  font-size: 12px;
}

.offer-checks span::first-letter {
  color: var(--gold-light);
}

.price-card {
  padding: 40px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 25px 30px 0 rgba(0,0,0,.12);
}

.price-card > p {
  margin: 0;
  color: var(--brown-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.price-placeholder {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #dfd4c2;
}

.price-placeholder small {
  color: #89796d;
}

.price-placeholder strong {
  margin-top: 5px;
  font-family: var(--font-display), serif;
  font-size: 48px;
  font-weight: 600;
}

.price-card .button {
  margin-top: 28px;
}

.secure-note {
  display: block;
  margin: 16px 0 28px;
  color: #8f8075;
  font-size: 9px;
  text-align: center;
}

.price-card__footer {
  padding-top: 20px;
  color: #8f8075;
  border-top: 1px solid #dfd4c2;
  font-size: 10px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 110px;
}

.faq-intro h2 {
  font-size: 52px;
}

.faq-intro > p:last-child {
  color: #77695e;
  line-height: 1.7;
}

.faq-list details {
  border-bottom: 1px solid rgba(66,39,29,.17);
}

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display), serif;
  font-size: 23px;
  font-weight: 600;
}

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

.faq-list summary span {
  color: var(--gold);
  font-family: var(--font-sans), sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 50px 28px 0;
  color: #74675d;
  font-size: 13px;
  line-height: 1.8;
}

footer {
  color: rgba(247,240,227,.72);
  background: var(--brown-950);
}

.footer__main {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer__main > p {
  font-family: var(--font-display), serif;
  font-size: 22px;
  font-style: italic;
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 11px;
}

.footer__bottom {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(247,240,227,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 9px;
}

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

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

  .hero {
    padding-top: 150px;
  }

  .hero__grid,
  .encounter-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .eyebrow,
  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__visual {
    margin-top: 35px;
  }

  .hero__scripture {
    margin-top: 40px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .feature-card {
    min-height: 250px;
  }

  .feature-card h3 {
    margin-top: 45px;
  }

  .encounter-grid,
  .offer-grid,
  .faq-grid {
    gap: 70px;
  }

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

  .vigilantes-art {
    min-height: 560px;
  }

  .vigilantes-art::after {
    background: linear-gradient(180deg, transparent 65%, #1f1a16 100%);
  }

  .vigilantes-copy {
    padding: 30px 20px 90px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    padding-block: 55px;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .header__inner {
    height: 72px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .brand__text small {
    font-size: 7px;
  }

  .site-header .button {
    display: none;
  }

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

  h1 {
    font-size: clamp(48px, 14vw, 60px);
    line-height: .92;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
    letter-spacing: .17em;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__actions {
    margin-top: 30px;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero__visual {
    min-height: 430px;
    margin: 20px -16px 0;
    overflow: hidden;
  }

  .book-stack {
    width: 270px;
    height: 374px;
    transform: rotate(2deg) scale(.92);
  }

  .book--front {
    padding: 30px 32px;
  }

  .book--front h2 {
    font-size: 38px;
  }

  .book__ornament {
    margin-top: 38px;
  }

  .sun-disc {
    width: 300px;
    height: 300px;
  }

  .floating-note--one {
    left: 0;
    bottom: 35px;
  }

  .floating-note--two {
    right: 0;
    top: 55px;
  }

  .floating-note {
    padding: 11px 13px;
  }

  .floating-note span {
    font-size: 18px;
  }

  .hero__scripture {
    height: auto;
    padding-block: 28px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__scripture p {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .encounter-copy h2,
  .offer-copy h2 {
    font-size: 43px;
  }

  .section-heading--split {
    gap: 22px;
  }

  .feature-grid {
    margin-top: 45px;
  }

  .feature-card {
    min-height: 230px;
    padding: 28px;
  }

  .feature-card h3 {
    margin-top: 40px;
    font-size: 28px;
  }

  .encounter-grid {
    gap: 50px;
  }

  .timeline li {
    align-items: flex-start;
  }

  .timeline small {
    line-height: 1.5;
  }

  .study-sheet {
    padding: 36px 26px;
    box-shadow: 12px 16px 0 rgba(155,132,96,.12), 0 20px 55px rgba(0,0,0,.22);
    transform: none;
  }

  .study-sheet h3 {
    font-size: 32px;
  }

  .study-sheet__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .topic {
    min-height: 68px;
    grid-template-columns: 50px 1fr 20px;
  }

  .topic strong {
    font-size: 23px;
  }

  .vigilantes-art {
    min-height: 440px;
    margin-inline: -16px;
  }

  .vigilantes-copy {
    padding: 20px 0 72px;
  }

  .vigilantes-copy h2 {
    font-size: 58px;
  }

  .vigilantes-copy h3 {
    font-size: 25px;
  }

  .offer-checks {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 30px 24px;
    box-shadow: 12px 16px 0 rgba(0,0,0,.12);
  }

  .faq-intro h2 {
    font-size: 44px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 20px;
    line-height: 1.25;
  }

  .footer__main {
    min-height: auto;
    padding-block: 48px;
    gap: 22px;
  }

  .footer__bottom {
    padding-block: 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-purchase-bar {
    height: 76px;
    padding: 10px 14px 10px 18px;
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--cream);
    background: rgba(33,19,14,.97);
    border-top: 1px solid rgba(201,154,60,.42);
    box-shadow: 0 -10px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
  }

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

  .mobile-purchase-bar small {
    overflow: hidden;
    color: rgba(247,240,227,.62);
    font-size: 8px;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-purchase-bar strong {
    margin-top: 3px;
    color: var(--gold-light);
    font-family: var(--font-display), serif;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-purchase-bar a {
    min-width: 112px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-950);
    background: var(--gold);
    font-size: 11px;
    font-weight: 700;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
