*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #FFF8F0;
  --bg-alt: #F7E8DD;
  --text-primary: #2D2A26;
  --text-heading: #1A1714;
  --accent-cta: #6E1A27;
  --accent-hover: #8F3F49;
  --accent-gold: #D4A574;
  --accent-muted: #8B7355;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-text: 720px;
  --max-wide: 1080px;
  --section-pad: clamp(1.75rem, 4.5vw, 3rem);
  --block-gap: clamp(1rem, 2.5vw, 1.5rem);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

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

/* --- Typography --- */

.heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
}

.heading-lg {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.heading-md {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.heading-sm {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}

.italic-accent {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

/* --- Layout --- */

.section {
  padding: var(--section-pad) 1.25rem;
}

.container {
  max-width: var(--max-text);
  margin: 0 auto;
}

.container--wide {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.bg-primary { background-color: var(--bg-primary); }
.bg-alt { background-color: var(--bg-alt); }
.text-center { text-align: center; }
.text-muted { color: var(--accent-muted); }

/* --- Buttons --- */

.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--bg-primary);
  background-color: var(--accent-cta);
  border: none;
  border-radius: 8px;
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* --- Separator --- */

.sep-gold {
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  margin: var(--block-gap) auto;
  border: none;
}

/* --- Paper texture overlay --- */

.has-texture {
  position: relative;
}

.has-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- Fade-in animation --- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================
   HERO
   ================================ */

.hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-primary) 40%);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: var(--section-pad);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero__copy {
  text-align: center;
}

.hero__headline {
  margin-bottom: 1.25rem;
}

.hero__headline-sub {
  display: block;
  font-size: 0.85em;
  margin-top: 0.35rem;
}

.hero__subheadline {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-primary);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.hero__anchor {
  font-weight: 500;
  margin-bottom: 1.75rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.hero__cta {
  margin-bottom: 1.25rem;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--accent-muted);
}

.hero__checks li::before {
  content: '\2714\FE0E';
  margin-right: 0.35rem;
  color: var(--accent-gold);
}

/* --- Real images replacing placeholders --- */

.hero__mockup-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  transform: rotate(-1.5deg);
  filter: drop-shadow(0 12px 36px rgba(45, 42, 38, 0.15));
}

.desire__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(45, 42, 38, 0.12);
}

.product__img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(45, 42, 38, 0.18);
  transform: rotate(-1.5deg);
}

.interlude__image {
  margin-top: 1.75rem;
}

.interlude__image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(45, 42, 38, 0.15);
  transform: rotate(-1deg);
}

.closing__img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(45, 42, 38, 0.18);
}

@media (min-width: 768px) {
  .hero__mockup-img {
    max-width: 420px;
  }

  .product__img {
    max-width: 480px;
  }
}

.mockup-placeholder {
  width: 280px;
  height: 320px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px dashed var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-muted);
  font-size: 0.85rem;
  transform: rotate(-2deg);
  box-shadow: 0 8px 30px rgba(45, 42, 38, 0.08);
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }

  .hero__copy {
    text-align: left;
    flex: 1;
  }

  .hero__subheadline {
    margin-left: 0;
  }

  .hero__checks {
    justify-content: flex-start;
  }

  .hero__mockup {
    flex-shrink: 0;
  }

  .mockup-placeholder {
    width: 340px;
    height: 400px;
  }
}

/* ================================
   PAIN BLOCK
   ================================ */

.pain__title {
  margin-bottom: var(--block-gap);
}

.pain__verses {
  margin-bottom: var(--block-gap);
}

.pain__verses p {
  margin-bottom: 0.6rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.pain__pivot {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  margin: 1.25rem 0;
  color: var(--text-heading);
}

.pain__consequence {
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.pain__hope {
  margin-bottom: var(--block-gap);
}

.pain__hope p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

/* ================================
   QUOTE (shared style for all 3)
   ================================ */

.quote {
  padding: clamp(1.25rem, 3vw, 2rem) 1.25rem;
}

.quote__text {
  font-size: clamp(1.35rem, 4vw, 2rem);
  color: var(--text-heading);
  line-height: 1.35;
}

/* ================================
   DESIRE BLOCK
   ================================ */

.desire__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.desire__image {
  width: 100%;
  max-width: 500px;
}

.mockup-placeholder--landscape {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  transform: none;
}

.desire__title {
  margin-bottom: var(--block-gap);
}

.desire__verses {
  margin-bottom: var(--block-gap);
}

.desire__verses p {
  margin-bottom: 0.6rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.desire__continuation {
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  color: var(--accent-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .desire__inner {
    flex-direction: row;
    gap: 3.5rem;
  }

  .desire__image {
    flex-shrink: 0;
    width: 480px;
  }

  .mockup-placeholder--landscape {
    height: 340px;
  }

  .desire__copy {
    flex: 1;
  }
}

/* ================================
   FRICTION BLOCK
   ================================ */

.friction__title {
  margin-bottom: 1.5rem;
}

.friction__lead {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.friction__list {
  list-style: none;
  text-align: center;
  margin-bottom: 1.5rem;
}

.friction__list li {
  margin-bottom: 0.4rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.friction__list li::before {
  content: '—';
  margin-right: 0.5rem;
  color: var(--accent-gold);
}

.friction__bridge {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.friction__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.friction__card {
  background: #fff;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 1.5rem;
}

.friction__card--left  { transform: rotate(-1deg); }
.friction__card--right { transform: rotate(1deg); }

.friction__q {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.friction__a {
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  color: var(--text-primary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .friction__cards {
    max-width: 640px;
  }
}

/* ================================
   PRODUCT SHOWCASE
   ================================ */

.product__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.product__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.mockup-placeholder--sm {
  width: 160px;
  height: 200px;
  border-radius: 8px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product__title {
  margin-bottom: var(--block-gap);
}

.product__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product__list li {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.product__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.product__materials {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.product__material {
  padding-left: 1rem;
  border-left: 2px solid var(--accent-gold);
}

.product__material-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product__material-desc {
  font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  color: var(--accent-muted);
  line-height: 1.5;
}

.product__delivery {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  font-size: 0.85rem;
  color: var(--accent-muted);
}

.product__delivery li::before {
  content: '\2714\FE0E';
  margin-right: 0.35rem;
  color: var(--accent-gold);
}

@media (min-width: 768px) {
  .product__inner {
    flex-direction: row;
    gap: 3.5rem;
  }

  .product__gallery {
    flex-shrink: 0;
    padding: 2rem 0;
  }

  .mockup-placeholder--sm {
    width: 180px;
    height: 230px;
  }

  .product__info {
    flex: 1;
  }
}

/* ================================
   TRANSFORMATION (BEFORE → AFTER)
   ================================ */

.transform__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  text-align: center;
}

.transform__before,
.transform__after {
  background: #fff;
  border: 1px solid var(--accent-gold);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
}

.transform__before {
  background: rgba(255, 255, 255, 0.55);
}

.transform__label {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--accent-muted);
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

.transform__before ul,
.transform__after ul {
  list-style: none;
}

.transform__before li,
.transform__after li {
  margin-bottom: 0.35rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.transform__before li {
  opacity: 0.55;
}

.transform__after li {
  font-weight: 500;
  color: var(--accent-cta);
}

.transform__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0.1rem 0;
}

.transform__arrow {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-gold);
  line-height: 1;
}

@media (min-width: 768px) {
  .transform__inner {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
  }

  .transform__before,
  .transform__after {
    flex: 1;
    max-width: 320px;
    padding: 1.75rem 1.5rem;
  }

  .transform__divider {
    width: auto;
    padding: 0 0.25rem;
  }

  .transform__arrow {
    transform: rotate(-90deg);
    display: inline-block;
    font-size: 1.6rem;
  }
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 1.5rem;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.testimonial-card__author {
  font-size: 0.85rem;
  color: var(--accent-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .testimonials__grid {
    flex-direction: row;
    gap: 1.5rem;
  }

  .testimonial-card {
    flex: 1;
  }
}

/* ================================
   GUARANTEE
   ================================ */

.guarantee.section {
  padding: clamp(1rem, 3vw, 1.75rem) 1.25rem;
}

.guarantee__badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.guarantee__text {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================
   OFFER
   ================================ */

.offer__title {
  margin-bottom: 1rem;
}

.offer__emotion {
  margin-bottom: 1.25rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.offer__price {
  margin-bottom: 1.25rem;
}

.offer__label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.offer__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: var(--accent-cta);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.offer__sub {
  font-size: 0.85rem;
}

.offer__cta {
  margin-bottom: 1.25rem;
}

.offer__checks {
  margin-top: 0;
}

/* ================================
   CLOSING EMOTIONAL
   ================================ */

.closing__image {
  margin-bottom: 1.25rem;
}

.mockup-placeholder--closing {
  width: 100%;
  max-width: 480px;
  height: 200px;
  border-radius: 16px;
  margin: 0 auto;
  transform: none;
}

@media (min-width: 768px) {
  .mockup-placeholder--closing {
    height: 260px;
  }
}

.closing__text {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--accent-cta);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.closing__text:last-child {
  margin-bottom: 0;
}

/* ================================
   FINAL CTA
   ================================ */

.final-cta {
  padding-top: 0;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

/* ================================
   SIGNATURE
   ================================ */

.signature {
  padding: 1.5rem 1.25rem 1rem;
}

.signature__text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.signature__text strong {
  font-weight: 500;
  color: var(--text-primary);
}

/* ================================
   FOOTER
   ================================ */

.footer {
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid var(--accent-gold);
}

.footer__nav {
  font-size: 0.8rem;
  color: var(--accent-muted);
}

.footer__nav a {
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--text-primary);
}

.footer__dot {
  margin: 0 0.5rem;
}

/* ================================
   STICKY CTA (MOBILE)
   ================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  text-align: center;
}

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

.sticky-cta__btn {
  width: 100%;
  max-width: 400px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 5rem;
  }
}
