:root {
  --white: #fffcf7;
  --off-white: #f5ede2;
  --beige: #e7d3bd;
  --brown-light: #b78a63;
  --green: #7a4e32;
  --green-deep: #3b2418;
  --gold: #c49a5a;
  --gold-soft: rgba(196, 154, 90, 0.16);
  --cta-green: #1f5f2b;
  --cta-green-hover: #153f1e;
  --red: #b75c45;
  --ink: #2a2420;
  --muted: #75675d;
  --line: rgba(59, 36, 24, 0.14);
  --line-strong: rgba(59, 36, 24, 0.24);
  --surface: #fff8ef;
  --shadow: 0 18px 54px rgba(59, 36, 24, 0.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 154, 90, 0.11), transparent 28%),
    linear-gradient(180deg, var(--white), var(--off-white));
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(59, 36, 24, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 36, 24, 0.014) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

body.is-scrolled .site-header {
  border-color: var(--line);
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  max-width: 820px;
  font-size: clamp(1.95rem, 4.8vw, 3.75rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 252, 247, 0.78);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark strong {
  color: var(--green);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.header-nav a {
  transition: color 180ms ease;
}

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

.section-pad {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 56px);
}

.hero-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(46px, 6vw, 78px);
  background:
    radial-gradient(circle at 78% 28%, rgba(196, 154, 90, 0.2), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(183, 138, 99, 0.12), transparent 28%),
    linear-gradient(110deg, var(--white) 0%, #fff7ef 48%, #f1dfcc 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.99) 0%, rgba(255, 252, 247, 0.9) 30%, rgba(255, 252, 247, 0.24) 55%, rgba(255, 252, 247, 0) 100%);
  pointer-events: none;
}

.hero-grid,
.split-section,
.mechanism-grid,
.offer-intro,
.carol-section,
.price-section,
.guarantee-faq {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: clamp(34px, 6vw, 88px);
}

.hero-grid {
  position: relative;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  min-height: auto;
}

.hero-copy,
.text-column,
.narrow-copy,
.mechanism-copy,
.offer-copy,
.carol-copy,
.closing-copy {
  display: grid;
  gap: 22px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-highlight {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.16rem, 2.4vw, 1.56rem);
  font-weight: 700;
  line-height: 1.28;
}

.hero-highlight em {
  display: block;
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.hero-text {
  max-width: 570px;
  font-size: 1.08rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-note svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(59, 36, 24, 0.18);
  border-radius: 10px;
  background: var(--cta-green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(31, 95, 43, 0.24);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 36, 24, 0.22);
  background: var(--cta-green-hover);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(21, 63, 30, 0.28);
}

.button-small {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button-wide {
  width: 100%;
}

.visual-frame {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 450px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(122, 78, 50, 0.16);
  border-radius: 18px 18px 42px 18px;
  background:
    radial-gradient(circle at 70% 14%, rgba(196, 154, 90, 0.2), transparent 32%),
    linear-gradient(145deg, #fff8ef 0%, #f5ede2 52%, #e7d3bd 100%);
  box-shadow: var(--shadow);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 252, 247, 0.72);
  border-radius: 14px 14px 34px 14px;
}

.visual-frame span,
.visual-frame strong,
.visual-frame p {
  position: relative;
  z-index: 2;
}

.visual-frame span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(122, 78, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.68);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-frame strong {
  max-width: 360px;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  line-height: 1;
}

.visual-frame p {
  max-width: 360px;
  margin-top: 14px;
}

.hero-visual {
  min-height: 500px;
  padding: 0;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 18px 18px 42px 18px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0) 48%, rgba(59, 36, 24, 0.52) 100%),
    linear-gradient(90deg, rgba(255, 252, 247, 0.08), rgba(255, 252, 247, 0));
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.96) contrast(1.02) sepia(0.03);
}

.hero-photo-caption {
  position: absolute;
  right: auto;
  bottom: clamp(26px, 6vw, 64px);
  left: clamp(22px, 7vw, 82px);
  z-index: 4;
  display: grid;
  width: min(78%, 315px);
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 78, 50, 0.12);
  border-radius: 12px;
  background: rgba(255, 248, 239, 0.78);
  color: var(--green-deep);
  box-shadow: 0 18px 45px rgba(59, 36, 24, 0.13);
  backdrop-filter: blur(12px);
}

.hero-photo-caption span {
  width: auto;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: none;
}

.hero-photo-caption strong {
  max-width: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identify-section {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 237, 226, 0.86));
}

.identify-section .section-head,
.symptom-grid,
.not-you-panel {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.rhythm-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--ink);
  font-weight: 600;
}

.rhythm-line span {
  position: relative;
}

.rhythm-line span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.mini-strong {
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.35;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: clamp(28px, 4vw, 42px);
}

.symptom-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 158px;
  padding: 12px 18px;
  border-right: 1px solid rgba(122, 78, 50, 0.14);
  text-align: center;
}

.symptom-grid article:last-child {
  border-right: 0;
}

.symptom-grid svg {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--brown-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.symptom-grid p {
  max-width: 170px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.35;
}

.symptom-grid strong {
  color: var(--ink);
}

.not-you-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  margin-top: clamp(18px, 4vw, 34px);
  padding: 18px 26px;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.62);
  text-align: center;
}

.not-you-panel p {
  color: var(--ink);
  font-weight: 600;
}

.not-you-panel strong {
  color: var(--brown-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
}

.check-list li,
.for-grid article {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.for-grid article::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.muted-list li {
  color: var(--muted);
  line-height: 1.55;
}

.not-you {
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
}

.belief-section,
.receive-section,
.testimonials-section {
  background: var(--off-white);
}

.identity-section,
.offer-intro,
.price-section,
.final-offer-section {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 252, 247, 0.9)),
    var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.carol-section,
.closing-section {
  background:
    linear-gradient(180deg, rgba(245, 237, 226, 0.6), rgba(255, 252, 247, 0.88));
  box-shadow: 0 0 0 100vmax rgba(245, 237, 226, 0.5);
  clip-path: inset(0 -100vmax);
}

.split-section,
.mechanism-grid,
.offer-intro,
.for-section,
.price-section,
.guarantee-faq {
  position: relative;
}

.mechanism-grid,
.for-section,
.guarantee-faq {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(245, 237, 226, 0.72));
}

.narrow-copy,
.center-copy,
.section-head,
.closing-copy {
  width: min(100%, 860px);
  margin: 0 auto;
}

.center-copy,
.section-head,
.closing-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.stacked-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stacked-words span,
.contrast-list span,
.badge-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.68);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.statement {
  color: var(--ink);
  font-size: clamp(1.22rem, 2.2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.25;
}

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

.resistance-title,
.responsive-title,
.vigor-callout strong {
  display: block;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
}

.resistance-title {
  color: var(--red);
}

.responsive-title,
.vigor-callout strong {
  color: var(--green);
}

.flow-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.flow-card span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 14px;
  background: rgba(245, 237, 226, 0.78);
  font-weight: 800;
}

.resistance-flow span:nth-of-type(2) {
  border-color: rgba(198, 40, 40, 0.2);
  background: rgba(183, 92, 69, 0.09);
  color: var(--red);
}

.flow-card i {
  width: 1px;
  height: 28px;
  margin-left: 26px;
  background: var(--line-strong);
}

.responsive-mode {
  padding-top: 0;
}

.icon-grid,
.steps-grid,
.receive-grid,
.for-grid,
.testimonial-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(28px, 5vw, 52px) auto 0;
  gap: 14px;
}

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

.icon-grid article,
.steps-grid article,
.receive-grid article,
.for-grid article,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.82);
}

.icon-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 20px;
}

.icon-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196, 154, 90, 0.15);
  color: var(--green);
  font-weight: 800;
}

.vigor-callout {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(100%, 900px);
  margin: clamp(38px, 7vw, 78px) auto 0;
  text-align: center;
}

.vigor-callout span {
  color: var(--muted);
  font-weight: 700;
}

.offer-intro {
  align-items: center;
}

.contrast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-visual {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 18px 18px 42px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.offer-deliverables {
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 18px 18px 42px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-deliverables img {
  display: block;
  width: 100%;
  aspect-ratio: 2.05;
  object-fit: contain;
  object-position: center;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  left: 0;
  height: 42%;
  background:
    radial-gradient(circle at 18% 26%, rgba(183, 138, 99, 0.1), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(196, 154, 90, 0.14), transparent 30%);
  pointer-events: none;
}

.steps-grid {
  position: relative;
  align-items: stretch;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 9%;
  left: 9%;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(122, 78, 50, 0.55), rgba(196, 154, 90, 0.5)) 0 0 / 0% 100% no-repeat,
    rgba(122, 78, 50, 0.12);
  transition: background-size 900ms ease;
}

.steps-grid.is-visible::before {
  background-size: 100% 100%;
}

.step-card {
  position: relative;
  isolation: isolate;
  align-content: start;
  min-height: 178px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--step-delay);
}

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

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.9), rgba(245, 237, 226, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(196, 154, 90, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.step-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--green), rgba(196, 154, 90, 0.72)) 0 0 / 0% 100% no-repeat,
    rgba(122, 78, 50, 0.13);
  transition: background-size 700ms ease;
  transition-delay: calc(var(--step-delay) + 180ms);
}

.step-card.is-visible::after {
  background-size: 100% 100%;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 78, 50, 0.22);
  box-shadow: 0 20px 50px rgba(59, 36, 24, 0.1);
}

.step-card.is-visible:hover {
  transition-delay: 0ms;
}

.step-card:hover::before {
  opacity: 1;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.step-dot {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(122, 78, 50, 0.2);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    inset 0 0 0 7px rgba(196, 154, 90, 0.16),
    0 0 0 0 rgba(122, 78, 50, 0);
  transition:
    background 360ms ease,
    box-shadow 520ms ease,
    transform 520ms ease;
}

.step-card.is-visible .step-dot {
  background: var(--green);
  box-shadow:
    inset 0 0 0 7px rgba(255, 252, 247, 0.26),
    0 0 0 9px rgba(122, 78, 50, 0.08);
  transform: scale(1.04);
}

.step-phase {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-grid article {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.receive-grid {
  gap: 22px;
}

.receive-grid article {
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 18px 46px rgba(59, 36, 24, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.receive-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 78, 50, 0.2);
  box-shadow: 0 24px 60px rgba(59, 36, 24, 0.1);
}

.receive-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(59, 36, 24, 0.09);
}

.receive-grid article > div {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
}

.receive-grid span {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(183, 92, 69, 0.24);
  border-radius: 999px;
  background: rgba(183, 92, 69, 0.06);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.steps-grid h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  text-transform: uppercase;
}

.receive-grid h3 {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.12;
  text-transform: none;
}

.for-grid article {
  min-height: 84px;
  padding: 22px 22px 22px 52px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.for-grid article::before {
  top: 22px;
  left: 22px;
}

.carol-section {
  align-items: center;
}

.carol-visual {
  padding: 0;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 20%, rgba(183, 138, 99, 0.18), transparent 34%),
    linear-gradient(145deg, #fffcf7, #f5ede2 52%, #e7d3bd);
}

.carol-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0) 48%, rgba(59, 36, 24, 0.5) 100%),
    linear-gradient(90deg, rgba(59, 36, 24, 0.08), rgba(255, 252, 247, 0));
  pointer-events: none;
}

.carol-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02) sepia(0.03);
}

.bio-photo-caption {
  position: absolute;
  right: clamp(20px, 4vw, 32px);
  bottom: clamp(20px, 4vw, 32px);
  left: clamp(20px, 4vw, 32px);
  z-index: 2;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.bio-photo-caption span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 252, 247, 0.46);
  border-radius: 999px;
  background: rgba(59, 36, 24, 0.34);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.bio-photo-caption strong {
  max-width: 320px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.testimonial-grid article {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.testimonial-grid span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(122, 78, 50, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 1.08rem;
}

.proof-note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  font-size: 0.9rem;
  text-align: center;
}

.price-section {
  align-items: start;
}

.price-copy {
  display: grid;
  gap: 18px;
}

.price-panel,
.guarantee-card {
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.96), rgba(245, 237, 226, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.price-panel {
  text-align: center;
}

.value-list {
  display: grid;
  gap: 0;
}

.value-list div,
.price-total,
.today-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.value-list span {
  color: var(--muted);
  line-height: 1.45;
}

.value-list strong {
  white-space: nowrap;
}

.price-total {
  margin-top: 8px;
}

.price-panel .price-total,
.price-panel .today-price {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.price-total span,
.today-price span {
  color: var(--muted);
  font-weight: 700;
}

.price-total strong {
  color: var(--muted);
  font-size: 1.4rem;
  text-decoration: line-through;
}

.today-price {
  border-bottom: 0;
  padding-bottom: 24px;
}

.today-price strong {
  color: var(--green);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
}

.price-explanation {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  width: min(100%, 820px);
  margin: -18px auto 0;
  text-align: center;
}

.price-note {
  margin-top: 2px;
  color: var(--ink);
  font-weight: 700;
}

.price-note strong {
  color: var(--green);
}

.price-context {
  padding: 0;
  border-top: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.guarantee-faq {
  align-items: start;
}

.guarantee-card {
  display: grid;
  align-items: center;
  gap: clamp(22px, 5vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(255, 252, 247, 0.9)),
    var(--white);
}

.guarantee-seal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  border: 4px solid rgba(183, 92, 69, 0.78);
  border-radius: 50%;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
}

.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(183, 92, 69, 0.64);
  border-radius: 50%;
}

.guarantee-seal span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.guarantee-seal strong {
  position: relative;
  z-index: 1;
  margin: 4px 0;
  font-size: 4rem;
  line-height: 0.95;
}

.guarantee-copy {
  display: grid;
  gap: 14px;
}

.guarantee-copy h2 {
  max-width: none;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.08;
}

.guarantee-copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.guarantee-copy strong {
  color: var(--red);
  font-weight: 850;
}

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

.faq-list h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.86);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 20px 20px;
}

.final-offer-section {
  padding-top: clamp(54px, 7vw, 86px);
}

.final-offer-card {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(122, 78, 50, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(196, 154, 90, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(245, 237, 226, 0.88));
  box-shadow: var(--shadow);
}

.final-offer-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-offer-copy h2,
.final-offer-copy p {
  margin-right: auto;
  margin-left: auto;
}

.final-deliverables {
  overflow: hidden;
  width: min(100%, 820px);
  margin: 8px auto 2px;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 18px 18px 36px 18px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(59, 36, 24, 0.08);
}

.final-deliverables img {
  display: block;
  width: 100%;
  aspect-ratio: 2.05;
  object-fit: contain;
  object-position: center;
}

.final-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.final-products span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(122, 78, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.74);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.final-buy-box {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(122, 78, 50, 0.16);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.78);
}

.final-buy-box > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-buy-box > strong {
  color: var(--green);
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.92;
}

.final-buy-box p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(42, 36, 32, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
}

.final-buy-box svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.closing-section {
  padding-bottom: clamp(96px, 12vw, 138px);
}

.closing-copy p {
  max-width: 760px;
}

.payment-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 20px 34px;
  border-top: 1px solid var(--line);
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
}

.payment-footer span {
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-footer strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 252, 247, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.08);
  color: var(--white);
  font-size: 0.86rem;
}

@media (min-width: 720px) {
  .button-small {
    display: inline-flex;
  }

  .icon-grid,
  .for-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

}

@media (min-width: 920px) {
  .header-nav {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .mechanism-grid,
  .offer-intro,
  .carol-section,
  .price-section,
  .guarantee-faq {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  }

  .hero-grid {
    width: min(100%, 1280px);
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 0.9fr);
    align-items: center;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    min-height: clamp(430px, 44vw, 560px);
  }

  .hero-visual img {
    object-position: center bottom;
  }

  .hero-photo-caption {
    bottom: clamp(28px, 5vw, 56px);
    left: clamp(24px, 5vw, 54px);
  }

  .carol-section {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  }

  .guarantee-faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .guarantee-card {
    grid-template-columns: 200px minmax(0, 1fr);
    padding: clamp(34px, 5vw, 58px);
  }

  .final-offer-card {
    grid-template-columns: 1fr;
    max-width: 1120px;
  }
}

@media (max-width: 719px) {
  h1,
  h2 {
    text-wrap: balance;
  }

  p,
  .button,
  .final-products span,
  .receive-grid h3 {
    overflow-wrap: anywhere;
  }

  .hero-section {
    padding-bottom: 34px;
  }

  .hero-section::after {
    display: none;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

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

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

  .section-pad {
    padding-top: clamp(56px, 14vw, 82px);
    padding-bottom: clamp(56px, 14vw, 82px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .process-section {
    padding-top: 48px;
  }

  .process-section .section-head {
    justify-items: start;
    text-align: left;
  }

  .process-section .section-head h2 {
    font-size: clamp(1.95rem, 10.5vw, 2.82rem);
    line-height: 1;
  }

  .visual-frame {
    min-height: 390px;
  }

  .hero-visual {
    min-height: 430px;
    margin-right: 0;
    margin-left: 0;
    border-radius: 18px 18px 34px 18px;
    box-shadow: 0 18px 48px rgba(59, 36, 24, 0.08);
  }

  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0) 58%, rgba(59, 36, 24, 0.36) 100%);
  }

  .hero-visual img {
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-photo-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 14px 16px;
    text-align: left;
  }

  .hero-photo-caption strong {
    font-size: clamp(1.35rem, 7.6vw, 1.9rem);
  }

  .hero-photo-caption span {
    font-size: 0.78rem;
  }

  .hero-note {
    justify-content: center;
    margin-top: 0;
    text-align: center;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }

  .offer-deliverables img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .rhythm-line {
    justify-content: center;
    gap: 8px 14px;
    text-align: center;
  }

  .rhythm-line span {
    display: inline-flex;
    align-items: center;
    font-size: clamp(1rem, 5vw, 1.18rem);
  }

  .belief-section .section-head {
    justify-items: center;
    text-align: center;
  }

  .belief-section .section-head h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .belief-section .section-head > p:not(.section-kicker) {
    text-align: center;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .symptom-grid article {
    min-height: 150px;
    padding: 18px 14px;
    border: 1px solid rgba(122, 78, 50, 0.12);
    border-radius: 14px;
    background: rgba(255, 248, 239, 0.7);
  }

  .symptom-grid article:last-child {
    grid-column: 1 / -1;
  }

  .symptom-grid p {
    font-size: 0.94rem;
  }

  .not-you-panel {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 16px;
  }

  .steps-grid,
  .receive-grid,
  .for-grid,
  .testimonial-grid {
    gap: 12px;
  }

  .receive-grid article {
    border-radius: 16px;
  }

  .receive-grid img {
    aspect-ratio: 1.42;
    object-fit: cover;
  }

  .receive-grid article > div {
    gap: 8px;
    padding: 18px;
  }

  .receive-grid span {
    min-height: 28px;
    padding: 0 11px;
    font-size: 0.64rem;
  }

  .receive-grid h3 {
    font-size: clamp(1.12rem, 6.3vw, 1.38rem);
    line-height: 1.12;
  }

  .receive-grid p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .steps-grid {
    padding-left: 28px;
  }

  .steps-grid::before {
    top: 8px;
    bottom: 8px;
    left: 13px;
    right: auto;
    width: 2px;
    height: auto;
    background:
      linear-gradient(180deg, rgba(122, 78, 50, 0.55), rgba(196, 154, 90, 0.5)) 0 0 / 100% 0% no-repeat,
      rgba(122, 78, 50, 0.12);
  }

  .steps-grid.is-visible::before {
    background-size: 100% 100%;
  }

  .step-card {
    min-height: 148px;
    padding: 18px 18px 24px;
  }

  .step-card:hover {
    transform: translateY(0);
  }

  .step-head {
    margin-bottom: 16px;
  }

  .step-dot {
    position: absolute;
    top: 20px;
    left: -29px;
    width: 28px;
    height: 28px;
  }

  .step-phase {
    margin-left: 0;
  }

  .steps-grid h3 {
    margin-top: 0;
    font-size: 1.08rem;
  }

  .step-card p {
    line-height: 1.45;
  }

  .value-list div,
  .price-total,
  .today-price {
    align-items: flex-start;
  }

  .price-context {
    padding-top: 14px;
    font-size: 0.92rem;
  }

  .guarantee-card {
    justify-items: center;
    text-align: center;
  }

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

  .guarantee-seal strong {
    font-size: 3.35rem;
  }

  .final-offer-card {
    border-radius: 18px;
  }

  .final-deliverables img {
    aspect-ratio: auto;
  }

  .final-products {
    display: grid;
    gap: 8px;
  }

  .final-products span {
    justify-content: center;
    min-height: auto;
    padding: 10px 12px;
    line-height: 1.18;
    text-align: center;
  }

  .final-buy-box p {
    align-items: flex-start;
    text-align: left;
  }
}

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