:root {
  --sun: #ffc400;
  --sun-soft: #fff2a8;
  --ink: #1f1d18;
  --muted: #655f55;
  --paper: #fffdf6;
  --surface: #ffffff;
  --line: #ded7c7;
  --olive: #3d5b45;
  --rust: #a44622;
  --blue: #175aa6;
  --shadow: 0 22px 60px rgba(31, 29, 24, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir Next, Inter, Segoe UI, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-checkout-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 5vw;
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid rgba(222, 215, 199, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--sun);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.header-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a {
  text-decoration: none;
}

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

.header-cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.product-hero {
  padding: 28px 5vw 64px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.26) 0 31%, transparent 31%),
    var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1.58fr);
  column-gap: 34px;
  row-gap: 0;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.book-stage {
  width: min(100%, 330px);
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-stage img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 18px 30px rgba(31, 29, 24, 0.24);
}

.product-gallery {
  width: min(100%, 330px);
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 448px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: flex-start;
  margin-top: 12px;
  padding-left: 10px;
}

.gallery-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  min-height: 64px;
  padding: 2px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(23, 90, 166, 0.14);
}

.gallery-thumb img {
  width: 42px;
  height: 56px;
  object-fit: cover;
  border-radius: 5px;
}

.summary-column {
  min-width: 0;
  padding-top: 52px;
}

.format-line,
.author-line,
.section-kicker,
.price-note {
  margin: 0;
  color: var(--muted);
}

.format-line,
.section-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-column h1 {
  max-width: 760px;
  margin: 8px 0 2px;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.author-line {
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 690px;
  margin: 14px 0 0;
  color: #3b352b;
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.38;
}

.author-line a,
.rating-row a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.stars,
.review-meter span {
  color: #e87500;
  letter-spacing: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
}

.badge-hot {
  color: #ffffff;
  background: var(--rust);
  border-color: var(--rust);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.highlight-strip {
  max-width: 690px;
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--sun);
  border-left: 5px solid var(--ink);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  font-weight: 800;
}

.ranking-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 96px;
  margin-top: 96px;
  color: var(--ink);
  background: var(--sun);
}

.ranking-strip article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 24px 34px;
}

.ranking-strip article + article {
  border-left: 1px solid rgba(31, 29, 24, 0.16);
}

.ranking-strip svg {
  width: 28px;
  height: 28px;
}

.ranking-strip path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ranking-strip strong,
.ranking-strip span {
  display: block;
  line-height: 1.2;
}

.ranking-strip strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.ranking-strip span {
  margin-top: 2px;
  font-size: 0.8rem;
}

.buy-panel {
  grid-column: 1 / -1;
  position: static;
  padding: 46px 32px 28px;
  background: #eeedff;
}

.panel-title {
  position: relative;
  margin: 0;
  color: #2d2c40;
  font-size: 2.12rem;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}

.panel-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--sun);
}

.price-note {
  font-size: 0.86rem;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 30px 28px 24px;
  background: transparent;
  border: 1px solid #cbc7df;
  border-radius: 8px;
}

.offer-card-featured {
  border: 3px solid var(--sun);
  box-shadow: 0 10px 22px rgba(90, 76, 32, 0.1);
}

.offer-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 22px;
  padding: 5px 10px;
  color: #2d2c40;
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.offer-icon {
  width: 34px;
  height: 34px;
  color: #9a671a;
}

.offer-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-card h3 {
  margin: 18px 0 4px;
  color: #2d2c40;
  font-size: 1.26rem;
  line-height: 1.15;
}

.offer-description {
  min-height: 44px;
  margin: 0;
  color: #4b4961;
  font-size: 0.9rem;
  line-height: 1.35;
}

.offer-pricing {
  margin-top: 26px;
}

.offer-price {
  margin: 0;
  color: var(--ink) !important;
  font-size: 2.1rem !important;
  font-weight: 950;
  line-height: 1.08;
}

.offer-price span {
  display: inline-block;
  margin-left: 4px;
  color: #9a671a;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  vertical-align: middle;
}

.offer-card .old-price {
  display: inline-block;
  margin: 0 0 2px;
  color: #79758b;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.old-price {
  display: inline-block;
  margin-right: 8px;
  color: #8b8375;
  font-size: 0.72em;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  color: var(--ink);
  background: var(--sun);
  border: 1px solid #d69c00;
}

.secondary-action {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--ink);
}

.offer-card .primary-action,
.offer-card .secondary-action {
  min-height: 58px;
  margin-top: auto;
  border: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.offer-card .primary-action {
  background: var(--sun);
}

.offer-card .secondary-action {
  background: #f59a16;
}

.offer-footnote {
  margin: 12px 0 0;
  color: #4b4961;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.fast-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 44, 64, 0.12);
}

.ebook-urgency {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 20px;
  background: #fff8d6;
  border: 1px solid #e2b800;
  border-left: 5px solid var(--rust);
  border-radius: 8px;
}

.ebook-urgency p,
.ebook-urgency strong {
  margin: 0;
}

.ebook-urgency p {
  color: #8a4c1b;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ebook-urgency strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.ebook-urgency a {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--rust);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.fast-facts div,
.details-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.fast-facts div {
  display: grid;
  gap: 2px;
  justify-content: start;
}

.fast-facts dd {
  text-align: left;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 5vw;
}

.proof-band {
  padding: 38px 0;
  background: var(--ink);
}

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

.proof-grid article {
  min-height: 176px;
  padding: 22px;
  color: #ffffff;
  background: #2c2822;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.proof-grid span {
  display: inline-block;
  color: var(--sun);
  font-size: 1.6rem;
  font-weight: 900;
}

.proof-grid h2,
.social-proof-section h2,
.kit-section h2,
.story-section h2,
.press-section h2,
.author-section h2,
.details-section h2,
.reviews-section h2,
.guarantee-section h2 {
  margin: 8px 0 8px;
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.proof-grid p,
.social-proof-section p,
.why-section p,
.kit-section p,
.story-section p,
.press-section p,
.author-section p,
.details-section p,
.reviews-section p {
  margin: 0;
}

.why-section {
  padding: 68px 0;
  background: #fff8d6;
}

.why-section h2,
.faq-section h2,
.final-cta-section h2,
.article-page h1,
.article-page h2,
.blog-card h3 {
  letter-spacing: 0;
}

.why-section h2,
.faq-section h2,
.final-cta-section h2 {
  margin: 8px 0 0;
  font-size: 2rem;
  line-height: 1.16;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  min-height: 176px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid #e2b800;
  border-radius: 8px;
  font-size: 1rem;
}

.why-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 1.02rem;
}

.section-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid #d69c00;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.social-proof-section {
  padding: 58px 0 74px;
  color: var(--ink);
  background: #f7f7f5;
  overflow: hidden;
}

.proof-head {
  text-align: center;
}

.proof-head h2 {
  max-width: 760px;
  margin: 8px auto 0;
}

.review-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  text-align: left;
}

.review-highlight-grid article {
  min-height: 170px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(31, 29, 24, 0.08);
}

.review-highlight-grid p {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.42;
}

.review-highlight-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-sources {
  display: flex;
  justify-content: center;
  gap: clamp(56px, 12vw, 180px);
  color: #8d8a84;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 42px;
}

.testimonial-carousel {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll-left 54s linear infinite;
  animation-play-state: running;
}

.testimonial-track-right {
  animation-name: testimonial-scroll-right;
}

.testimonial-set {
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  padding-right: 34px;
}

.testimonial-card {
  display: grid;
  align-content: start;
  width: 372px;
  min-height: 184px;
  padding: 28px 32px;
  color: #5b5955;
  background: #f1f1f0;
  border-left: 4px solid #9a671a;
  border-radius: 8px;
}

.review-stars {
  color: #9a671a;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  margin-top: 20px;
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: #5b5955;
  font-size: 0.95rem;
  line-height: 1.2;
}

@keyframes testimonial-scroll-left {
  from {
    transform: translateX(0);
  }

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

@keyframes testimonial-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.kit-section {
  padding: 72px 0;
  background: var(--surface);
}

.kit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.kit-main-image {
  width: min(100%, 420px);
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.kit-purchase-panel {
  margin-top: 28px;
}

.kit-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.kit-option h3 {
  margin: 0;
  font-size: 1.58rem;
  line-height: 1.08;
}

.kit-option p {
  margin-top: 8px;
  color: #6d6a77;
  font-size: 0.98rem;
  line-height: 1.35;
}

.kit-option > strong {
  color: var(--ink);
  font-size: 1.58rem;
  line-height: 1.1;
  white-space: nowrap;
}

.kit-price span {
  display: block;
  margin-bottom: 4px;
  color: #7b756b;
  font-size: 0.72em;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.kit-option-digital {
  padding: 0 20px 26px;
  border-bottom: 1px solid rgba(31, 29, 24, 0.14);
}

.kit-option-featured {
  margin-top: 18px;
  padding: 26px 24px;
  background: var(--sun);
  border-radius: 8px;
}

.kit-option-featured h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.kit-option-featured h3 span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 8px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.kit-add-button,
.kit-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.kit-add-button {
  color: var(--ink);
  background: transparent;
  border: 1px solid #8e816b;
}

.kit-buy-button {
  min-width: 144px;
  color: #ffffff;
  background: #000000;
  border: 1px solid #000000;
  line-height: 1.25;
}

.kit-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 64px;
}

.kit-benefits article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 280px;
  padding: 16px 18px;
  background: #fff8d6;
  border: 1px solid #e2b800;
  border-radius: 8px;
}

.kit-benefits svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.kit-benefits path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.kit-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.kit-benefits p {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.story-section,
.author-section,
.reviews-section {
  padding: 72px 0;
  background: var(--surface);
}

.story-layout,
.kit-layout,
.author-layout,
.details-layout,
.reviews-layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.story-layout p + p {
  margin-top: 16px;
}

.saint-detail {
  justify-self: end;
  border: 1px solid rgba(31, 29, 24, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.press-section,
.details-section {
  padding: 72px 0;
  background: #f6efe1;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.press-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--sun);
  border-radius: 8px;
  border-left: 5px solid var(--ink);
}

.press-grid p {
  font-size: 1.05rem;
}

.press-grid span {
  display: block;
  margin-top: 24px;
  font-size: 0.86rem;
  font-weight: 900;
}

.author-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.author-layout img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
}

.details-layout {
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  align-items: start;
}

.details-list {
  display: grid;
  gap: 0;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.details-list div {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.details-list div:last-child {
  border-bottom: 0;
}

.reviews-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
}

.review-meter {
  display: grid;
  gap: 12px;
}

.review-meter span {
  font-size: 2rem;
  font-weight: 900;
}

.meter-track {
  height: 14px;
  overflow: hidden;
  background: #ede3d2;
  border-radius: 999px;
}

.meter-track span {
  display: block;
  width: 96%;
  height: 100%;
  background: var(--sun);
}

.guarantee-section {
  padding: 78px 0;
  background: #050505;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 56px 52px;
  color: #ffffff;
  text-align: center;
  background: #050505;
  border: 1px solid rgba(255, 174, 18, 0.42);
  border-radius: 8px;
  box-shadow: none;
}

.guarantee-seal {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(31, 29, 24, 0.28));
}

.guarantee-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 16px;
  color: var(--sun);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.guarantee-card h2 {
  position: relative;
  z-index: 1;
  margin: 16px 0 10px;
  font-size: 2.35rem;
  line-height: 1.08;
}

.guarantee-card > p:not(.guarantee-label) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.faq-section {
  padding: 72px 0;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}

.faq-layout > div:first-child p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta-section {
  padding: 72px 0 84px;
  background: var(--sun);
}

.final-cta-card {
  text-align: center;
}

.final-cta-card h2 {
  margin-top: 8px;
  font-size: 2.35rem;
}

.final-cta-card p:not(.section-kicker) {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 1.1rem;
  font-weight: 750;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 950;
  text-decoration: none;
}

.article-page {
  background: var(--paper);
}

.article-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 5vw 84px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: 44px;
  align-items: center;
  padding: 34px 0 44px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  margin: 10px 0 0;
  font-size: 2.85rem;
  line-height: 1.04;
}

.article-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #3b352b;
  font-size: 1.14rem;
  font-weight: 700;
}

.article-hero > img {
  width: min(100%, 260px);
  justify-self: end;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-hero-book {
  display: grid;
  justify-self: end;
  place-items: center;
  width: min(100%, 280px);
  margin: 0;
  padding: 18px;
  background: #fff8d6;
  border: 1px solid #e2b800;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-hero-book img {
  width: min(100%, 220px);
  height: auto !important;
  aspect-ratio: 264 / 397;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 30px rgba(31, 29, 24, 0.24);
}

.article-content {
  max-width: 820px;
  margin-top: 42px;
}

.article-content h2 {
  margin: 46px 0 14px;
  font-size: 1.82rem;
  line-height: 1.16;
}

.article-content h3 {
  margin: 24px 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.article-content p,
.article-content li,
.article-content dd,
.article-content td,
.article-content th {
  font-size: 1.03rem;
}

.article-content p {
  margin: 12px 0 0;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 1.35rem;
}

.article-content li::marker {
  color: var(--rust);
  font-weight: 900;
}

.book-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.blog-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: 8px;
}

.blog-card h3 {
  margin-top: 0;
}

.blog-card p {
  color: #423d34;
}

.blog-card .meta-line {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.cta-callout {
  margin: 26px 0;
  padding: 24px;
  background: #fff8d6;
  border: 1px solid #e2b800;
  border-left: 5px solid var(--rust);
  border-radius: 8px;
}

.cta-callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.article-button,
.article-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 950;
  text-decoration: none;
}

.article-button {
  color: var(--ink);
  background: var(--sun);
  border: 1px solid #d69c00;
}

.article-button-secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--ink);
}

.info-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 34%;
  color: var(--muted);
  font-weight: 900;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.quote-grid article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-grid p {
  margin: 0;
  font-style: italic;
  font-weight: 850;
}

.quote-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-footer-cta {
  margin-top: 44px;
  padding: 34px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
}

.article-footer-cta h2 {
  margin-top: 0;
  color: #ffffff;
}

.article-footer-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.article-footer-cta .article-button {
  margin-top: 18px;
}

.legal-footer {
  padding: 32px 0 110px;
  color: #d8d2c4;
  background: var(--ink);
  text-align: center;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 800;
}

.legal-footer a {
  color: #ffffff;
  text-decoration: none;
}

.legal-footer p {
  max-width: 860px;
  margin: 8px auto 0;
  font-size: 0.86rem;
}

.mobile-buy-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 12px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.mobile-buy-bar span {
  color: #ffffff;
  font-weight: 800;
}

.mobile-buy-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 40px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.purchase-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(360px, calc(100vw - 44px));
  padding: 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 29, 24, 0.2);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.purchase-toast[hidden] {
  display: none;
}

.purchase-toast-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--olive);
  border-radius: 50%;
  font-weight: 950;
}

.purchase-toast strong {
  display: block;
  font-size: 0.95rem;
}

.purchase-toast p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.checkout-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 24, 0.62);
  backdrop-filter: blur(8px);
}

.checkout-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 30px;
  overflow-y: auto;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(31, 29, 24, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(12px);
  transition: transform 0.18s ease;
}

.checkout-modal.is-visible .checkout-dialog {
  transform: translateY(0);
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: #f6f1e6;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-kicker {
  margin: 0 0 6px;
  color: #9a671a;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-dialog h2 {
  max-width: calc(100% - 46px);
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.12;
}

.checkout-dialog > p:not(.checkout-kicker) {
  margin: 8px 0 0;
  color: var(--muted);
}

.checkout-product {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 14px 16px;
  background: #fff8d6;
  border: 1px solid #e2b800;
  border-radius: 8px;
  font-weight: 800;
}

.checkout-product strong {
  white-space: nowrap;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #3d392f;
  font-size: 0.82rem;
  font-weight: 850;
}

.checkout-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfc7b6;
  border-radius: 6px;
  font: inherit;
  font-size: 0.95rem;
}

.checkout-form input:focus {
  border-color: #9a671a;
  outline: 3px solid rgba(255, 196, 0, 0.28);
}

.checkout-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
}

.checkout-row-compact {
  grid-template-columns: minmax(110px, 0.36fr) minmax(0, 1fr);
}

.checkout-location,
.checkout-message {
  min-height: 20px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
}

.checkout-location {
  color: #3d5b45;
  font-weight: 800;
}

.checkout-message {
  color: var(--muted);
}

.shipping-summary {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: #f7fbf8;
  border: 1px solid #c9dccf;
  border-radius: 8px;
}

.shipping-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 850;
}

.shipping-summary p {
  margin: -3px 0 2px;
  color: #3d5b45;
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 2px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid #d69c00;
  border-radius: 6px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.checkout-pay:disabled {
  color: #7f7a71;
  background: #eee8dc;
  border-color: #d8d0c2;
  cursor: not-allowed;
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .buy-panel {
    position: static;
    grid-column: 1 / -1;
  }

  .summary-column {
    padding-top: 44px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  .product-hero {
    padding: 18px 16px 36px;
    background: var(--paper);
  }

  .hero-layout,
  .proof-grid,
  .why-list,
  .review-highlight-grid,
  .kit-layout,
  .story-layout,
  .press-grid,
  .author-layout,
  .details-layout,
  .reviews-layout,
  .faq-layout,
  .article-hero,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 24px;
  }

  .product-gallery {
    width: min(100%, 288px);
    margin-inline: auto;
  }

  .article-shell {
    padding: 24px 18px 56px;
  }

  .article-hero {
    gap: 26px;
    padding: 28px 0 34px;
  }

  .article-hero h1 {
    font-size: 2rem;
  }

  .article-hero p:not(.section-kicker) {
    font-size: 1rem;
  }

  .article-hero > img,
  .article-hero-book {
    justify-self: center;
    width: min(100%, 240px);
  }

  .article-hero-book img {
    width: min(100%, 190px);
  }

  .article-content {
    margin-top: 30px;
  }

  .article-content h2 {
    font-size: 1.48rem;
  }

  .blog-card,
  .cta-callout,
  .article-footer-cta {
    padding: 20px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }

  .info-table th {
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 0;
  }

  .book-stage {
    width: 100%;
    min-height: auto;
    margin-inline: auto;
    padding: 14px;
  }

  .gallery-thumbs {
    justify-content: center;
    margin-top: 10px;
    padding-left: 0;
  }

  .summary-column {
    padding-top: 0;
  }

  .summary-column h1 {
    font-size: 2.18rem;
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .lead {
    font-size: 1rem;
  }

  .highlight-strip {
    padding: 16px;
  }

  .ranking-strip {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 62px;
  }

  .ranking-strip article {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 18px 20px;
  }

  .ranking-strip article + article {
    border-top: 1px solid rgba(31, 29, 24, 0.16);
    border-left: 0;
  }

  .buy-panel {
    padding: 34px 18px 22px;
  }

  .panel-title {
    font-size: 1.86rem;
  }

  .offer-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .offer-card {
    min-height: auto;
    padding: 24px 20px 20px;
  }

  .offer-description {
    min-height: auto;
  }

  .offer-pricing {
    margin-top: 22px;
  }

  .offer-price {
    font-size: 1.86rem !important;
  }

  .offer-card .old-price {
    margin: 0 0 2px;
  }

  .fast-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ebook-urgency {
    grid-template-columns: 1fr;
  }

  .ebook-urgency a {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

  .section-inner {
    padding-inline: 18px;
  }

  .proof-grid article,
  .press-grid article,
  .why-list li,
  .review-highlight-grid article {
    min-height: auto;
  }

  .review-sources {
    gap: 28px;
  }

  .testimonial-track {
    animation-duration: 48s;
  }

  .testimonial-set {
    gap: 18px;
    padding-right: 18px;
  }

  .testimonial-card {
    width: min(78vw, 320px);
    min-height: 196px;
  }

  .kit-main-image {
    justify-self: center;
    width: min(100%, 330px);
  }

  .kit-option {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .kit-option-digital .kit-add-button,
  .kit-option-featured .kit-buy-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .kit-benefits {
    gap: 18px;
    margin-top: 34px;
  }

  .guarantee-card {
    padding: 40px 20px 34px;
  }

  .guarantee-card h2 {
    font-size: 1.75rem;
  }

  .guarantee-card > p:not(.guarantee-label) {
    font-size: 1rem;
  }

  .story-section,
  .social-proof-section,
  .why-section,
  .kit-section,
  .press-section,
  .author-section,
  .details-section,
  .guarantee-section,
  .reviews-section,
  .faq-section,
  .final-cta-section {
    padding: 48px 0;
  }

  .proof-grid h2,
  .social-proof-section h2,
  .why-section h2,
  .kit-section h2,
  .story-section h2,
  .press-section h2,
  .author-section h2,
  .details-section h2,
  .reviews-section h2,
  .guarantee-section h2,
  .faq-section h2,
  .final-cta-section h2 {
    font-size: 1.55rem;
  }

  .saint-detail {
    justify-self: center;
    width: min(100%, 260px);
    height: auto;
  }

  .author-layout img {
    justify-self: center;
    width: min(100%, 260px);
    height: 260px;
  }

  .details-list div,
  .fast-facts div {
    display: grid;
    gap: 4px;
  }

  .legal-footer p {
    font-size: 0.78rem;
  }

  dd {
    text-align: left;
  }

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

  .purchase-toast {
    display: none !important;
  }

  .checkout-modal {
    align-items: end;
    padding: 12px;
  }

  .checkout-dialog {
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
  }

  .checkout-dialog h2 {
    font-size: 1.42rem;
  }

  .checkout-row,
  .checkout-row-compact {
    grid-template-columns: 1fr;
  }

  .checkout-product {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    white-space: normal;
  }

  .summary-column h1 {
    font-size: 2rem;
  }

  .review-highlight-grid {
    gap: 12px;
  }

  .format-line,
  .section-kicker {
    font-size: 0.76rem;
  }

  .rating-row,
  .badge-row {
    gap: 6px;
  }

  .badge {
    min-height: 28px;
    font-size: 0.78rem;
  }

  .testimonial-carousel {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .testimonial-card {
    width: min(82vw, 280px);
    padding: 20px;
  }

  .mobile-buy-bar {
    gap: 8px;
    min-height: 62px;
    padding: 9px 10px;
  }

  .mobile-buy-bar span {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .mobile-buy-bar a {
    min-width: 96px;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 92px;
    line-height: 1.1;
  }

  .product-hero {
    padding-inline: 14px;
  }

  .section-inner {
    padding-inline: 14px;
  }

  .summary-column h1 {
    font-size: 1.86rem;
  }

  .author-layout img {
    width: 220px;
    height: 220px;
  }

  .fast-facts {
    grid-template-columns: 1fr;
  }

  .why-list {
    gap: 12px;
  }

  .kit-option {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kit-option-digital,
  .kit-option-featured {
    padding-inline: 18px;
  }

  .kit-benefits {
    grid-template-columns: 1fr;
  }

  .guarantee-seal {
    width: 98px;
    height: 98px;
  }

  .mobile-buy-bar span {
    max-width: 190px;
  }
}
