:root {
  color-scheme: light;
  --cream: #f8f1e7;
  --cream-light: #fff9f1;
  --text: #2d302f;
  --muted: #6d665d;
  --terracotta: #b95734;
  --terracotta-dark: #923e26;
  --sage: #536b46;
  --sage-dark: #384c31;
  --sage-light: #e7eada;
  --border: #e9d8c5;
  --gold-soft: #c6a76b;
  --white: #fffdf8;
  --shadow: 0 16px 40px rgba(88, 60, 35, 0.12);
  --space-1: 0.618rem;
  --space-2: 1rem;
  --space-3: 1.618rem;
  --space-4: 2.618rem;
  --space-5: 4.236rem;
  --space-6: 6.854rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  background: var(--cream-light);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  margin: 0;
  overflow-x: hidden;
}

body.has-sticky {
  padding-bottom: var(--space-5);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(185, 87, 52, 0.45);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 var(--space-3);
  width: 100%;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section {
  padding: var(--space-5) 0;
}

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

.section-green {
  background: linear-gradient(180deg, var(--sage-light), #f5f4e7);
}

.site-header {
  align-items: center;
  background: rgba(255, 249, 241, 0.92);
  border-bottom: 1px solid rgba(233, 216, 197, 0.75);
  display: flex;
  gap: var(--space-2);
  justify-content: space-between;
  left: 0;
  min-height: 68px;
  padding: var(--space-1) var(--space-3);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.header-cta {
  align-items: center;
  background: var(--sage);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  min-height: 46px;
  padding: 0 var(--space-3);
  text-decoration: none;
}

.hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(198, 167, 107, 0.16), transparent 30%),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  padding: var(--space-4) 0 var(--space-5);
}

.hero-grid {
  display: grid;
  gap: var(--space-4);
}

.eyebrow {
  color: var(--terracotta);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.35rem, 9.2vw, 4.85rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  max-width: 860px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.32;
}

p {
  color: var(--muted);
  margin: var(--space-2) 0 0;
}

.hero-lead {
  color: #4b4944;
  font-size: 1.08rem;
  max-width: 690px;
}

.visual-line {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
  margin-top: var(--space-3);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: var(--space-3);
}

.badge-row span {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  padding: var(--space-1) var(--space-2);
}

.cta-block {
  margin-top: var(--space-4);
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.18;
  min-height: 58px;
  padding: var(--space-1) var(--space-3);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.btn-primary {
  background: var(--terracotta);
  box-shadow: 0 10px 22px rgba(146, 62, 38, 0.22);
  color: #fff;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-wide {
  width: 100%;
}

.trust-line {
  color: #74685f;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: var(--space-2);
}

.mini-disclaimer {
  border-left: 3px solid var(--gold-soft);
  color: #746d65;
  font-size: 1rem;
  margin-top: var(--space-3);
  max-width: 680px;
  padding-left: var(--space-2);
}

.hero-media {
  margin: 0 auto;
  max-width: 380px;
  position: relative;
  width: min(86vw, 380px);
}

.hero-media img,
.cover {
  aspect-ratio: 651 / 920;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
  width: 100%;
}

.section-head {
  margin-bottom: var(--space-4);
  max-width: 820px;
}

.section-head.compact {
  margin-bottom: var(--space-3);
}

.section-note {
  color: var(--text);
  font-weight: 800;
  margin-top: var(--space-3);
}

.check-list {
  display: grid;
  gap: var(--space-2);
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}

.check-list li {
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #403c37;
  padding: var(--space-2) var(--space-3) var(--space-2) var(--space-4);
  position: relative;
}

.check-list li::before {
  color: var(--sage);
  content: "✓";
  font-weight: 900;
  left: var(--space-2);
  position: absolute;
}

.no-list li::before {
  color: var(--terracotta);
  content: "×";
}

.two-col,
.fit-grid,
.stack-grid,
.offer-wrap {
  display: grid;
  gap: var(--space-4);
}

.flow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-2);
  padding: var(--space-3);
}

.flow-card span {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-weight: 850;
  padding: var(--space-2) var(--space-3);
  position: relative;
}

.flow-card span + span::before {
  color: var(--terracotta);
  content: "↓";
  font-weight: 900;
  left: var(--space-3);
  position: absolute;
  top: -14px;
}

.card-grid,
.book-grid,
.bonus-grid {
  display: grid;
  gap: var(--space-3);
}

.card {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(233, 216, 197, 0.95);
  border-radius: 8px;
  padding: var(--space-3);
}

.card h3 {
  color: var(--text);
}

.card p {
  font-size: 1rem;
}

.material-card {
  display: grid;
  gap: var(--space-2);
}

.material-card img {
  aspect-ratio: 651 / 920;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(88, 60, 35, 0.11);
  justify-self: center;
  max-width: min(210px, 68vw);
  object-fit: contain;
  width: 100%;
}

.recipe-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.recipe-card {
  background: #fffaf2;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.recipe-card img {
  aspect-ratio: 651 / 360;
  object-fit: cover;
  width: 100%;
}

.recipe-card h3 {
  color: var(--sage-dark);
  padding: var(--space-3);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  counter-increment: step;
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-5);
  position: relative;
}

.steps li::before {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  color: #fff;
  content: counter(step);
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: var(--space-3);
  position: absolute;
  top: var(--space-3);
  width: 34px;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: var(--muted);
  margin-top: var(--space-1);
}

.category-card > span {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: var(--space-2);
  width: 34px;
}

.product-stack {
  min-height: 360px;
  position: relative;
}

.cover {
  max-width: 245px;
}

.cover-main {
  position: relative;
  z-index: 2;
}

.cover-back {
  position: absolute;
  right: 0;
  top: 64px;
  transform: rotate(4deg);
  z-index: 1;
}

.bonus-star {
  background: #fff7df;
  border-color: rgba(198, 167, 107, 0.8);
}

.quote-grid {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) auto;
  max-width: 760px;
}

.quote-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  padding: var(--space-3);
}

.testimonial-card p {
  color: #383632;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.testimonial-card span {
  color: var(--sage);
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-top: var(--space-2);
}

.offer-section {
  background:
    radial-gradient(circle at 50% 0, rgba(198, 167, 107, 0.2), transparent 34%),
    var(--text);
  color: #fff;
}

.offer-section .eyebrow,
.offer-section p {
  color: rgba(255, 249, 241, 0.78);
}

.offer-section h2 {
  color: #fff;
}

.offer-card {
  background: #fffaf2;
  border: 1px solid rgba(198, 167, 107, 0.8);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: var(--space-3);
}

.offer-badge {
  background: var(--sage-light);
  border-radius: 999px;
  color: var(--sage-dark);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  padding: var(--space-1) var(--space-2);
}

.offer-list {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  list-style: none;
  margin: var(--space-3) 0;
  padding: var(--space-2) 0;
}

.offer-list li {
  align-items: start;
  display: grid;
  gap: var(--space-1);
  grid-template-columns: 1fr;
  padding: var(--space-1) 0;
}

.offer-list span {
  color: #4a4640;
}

.offer-list strong {
  color: var(--terracotta-dark);
  white-space: nowrap;
}

.price-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  text-align: center;
}

.price-box p {
  color: var(--muted);
  margin: 0;
}

.price-box p + p {
  color: var(--text);
  font-weight: 850;
  margin-top: var(--space-1);
}

.price-box strong {
  color: var(--terracotta-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 12vw, 4.3rem);
  line-height: 1;
  margin-top: var(--space-1);
}

.guarantee-grid {
  display: grid;
  gap: var(--space-4);
}

.guarantee-copy {
  max-width: 760px;
}

.guarantee-seal {
  align-items: center;
  display: flex;
  justify-content: center;
}

.guarantee-seal img {
  aspect-ratio: 1;
  max-width: min(280px, 72vw);
  width: 100%;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 850;
  justify-content: space-between;
  min-height: 68px;
  padding: var(--space-3);
  text-align: left;
  width: 100%;
}

.faq-item button::after {
  color: var(--terracotta);
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: var(--space-2);
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  border-top: 1px solid var(--border);
  padding: 0 var(--space-3) var(--space-3);
}

.faq-panel p {
  margin-top: var(--space-2);
}

.site-footer {
  background: #242725;
  color: rgba(255, 249, 241, 0.86);
  padding: var(--space-4) 0 var(--space-6);
}

.site-footer strong {
  color: #fff;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.site-footer p {
  color: rgba(255, 249, 241, 0.72);
  max-width: 980px;
}

.site-footer span {
  color: rgba(255, 249, 241, 0.72);
  display: block;
  margin-top: var(--space-2);
}

.sticky-cta {
  background: rgba(255, 249, 241, 0.94);
  border-top: 1px solid var(--border);
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: var(--space-1) var(--space-2) calc(var(--space-1) + env(safe-area-inset-bottom));
  pointer-events: none;
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 30;
}

.sticky-cta .btn {
  min-height: 58px;
  width: 100%;
}

body.show-sticky .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .card-grid.three,
  .card-grid.four,
  .bonus-grid,
  .recipe-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps li:last-child {
    grid-column: 1 / -1;
  }

  .cover {
    max-width: 285px;
  }
}

@media (min-width: 860px) {
  body.has-sticky {
    padding-bottom: 0;
  }

  .site-header {
    padding: var(--space-2) var(--space-4);
  }

  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-6) 0;
  }

  .hero {
    min-height: calc(100svh - 64px);
    padding: var(--space-5) 0 var(--space-6);
  }

  .hero-grid {
    align-items: center;
    column-gap: var(--space-5);
    row-gap: var(--space-4);
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  }

  .hero-disclaimer {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }

  .hero-media {
    max-width: 420px;
    margin-top: 0;
    width: 100%;
  }

  .two-col,
  .fit-grid,
  .stack-grid,
  .guarantee-grid,
  .offer-wrap {
    align-items: start;
    gap: var(--space-5);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guarantee-grid {
    align-items: center;
  }

  .guarantee-seal {
    justify-content: end;
  }

  .guarantee-seal img {
    max-width: 340px;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recipe-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.four,
  .bonus-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bonus-star {
    grid-column: span 2;
  }

  .bonus-grid .material-card img {
    max-width: 170px;
  }

  .bonus-star img {
    max-width: 210px;
  }

  .book-grid {
    margin-top: var(--space-4);
  }

  .product-stack {
    min-height: 520px;
  }

  .cover {
    max-width: 330px;
  }

  .cover-back {
    right: var(--space-4);
    top: var(--space-5);
  }

  .offer-card {
    padding: var(--space-4);
  }

  .offer-list li {
    grid-template-columns: 1fr auto;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
