:root {
  --wine: #780833;
  --wine-dark: #4d0626;
  --pink: #d94b86;
  --pink-soft: #fff1f6;
  --cream: #fffaf8;
  --ink: #25222a;
  --muted: #665f68;
  --line: #ead9df;
  --white: #fff;
  --shadow: 0 18px 50px rgba(90, 9, 48, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 248, .94);
  border-bottom: 1px solid rgba(120, 8, 51, .1);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--wine);
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .01em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine);
  font-weight: 900;
}
.header-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--wine);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero, .story, .closing, .order {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 54px 18px;
}
.hero {
  display: grid;
  gap: 30px;
  align-items: center;
  padding-top: 42px;
}
.eyebrow, .step {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, p { text-wrap: pretty; }
h1, h2 {
  margin: 0;
  color: var(--wine-dark);
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.55rem, 10vw, 5.6rem); }
h2 { font-size: clamp(2rem, 7vw, 4rem); }
.hero-lead, .section-copy > p:not(.step):not(.caution), .closing-copy > p:not(.step) {
  max-width: 620px;
  margin: 20px 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.6vw, 1.25rem);
}
.price-line {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 22px 0;
}
.price-line span { color: var(--muted); font-weight: 700; }
.price-line strong { color: var(--wine); font-size: clamp(2rem, 8vw, 3.4rem); line-height: 1; }
.price-line.dark strong { color: var(--wine-dark); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, a:focus-visible {
  outline: 3px solid #f4a3c6;
  outline-offset: 3px;
}
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), #b31f61);
  box-shadow: 0 12px 28px rgba(120, 8, 51, .24);
}
.button-light { color: var(--wine); background: var(--white); }
.microcopy { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }

.visual {
  margin: 0 auto;
  width: min(100%, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #f4e9ed;
  box-shadow: var(--shadow);
}
.visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}
.story, .closing {
  display: grid;
  gap: 30px;
  align-items: center;
}
.section-soft {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2 + 18px));
  background: var(--pink-soft);
}
.section-copy { max-width: 590px; }
.clean-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}
.clean-list li::before {
  position: absolute;
  left: 15px;
  color: var(--pink);
  content: "✓";
  font-weight: 900;
}
.caution {
  margin: 20px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--pink);
  border-radius: 0 12px 12px 0;
  color: #554d56;
  background: rgba(255,255,255,.76);
  font-size: .9rem;
}
.price-card.compact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.price-card strong { color: var(--wine); font-size: 2.2rem; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.trust-grid span {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--wine-dark);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.offer {
  padding: 68px 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--wine-dark), var(--wine) 55%, #b31f61);
  text-align: center;
}
.offer > * { max-width: 760px; margin-inline: auto; }
.offer h2 { color: var(--white); }
.step.light { color: #ffb9d5; }
.offer-copy { margin-block: 20px; font-size: clamp(1.15rem, 3vw, 1.5rem); }
.offer-price { display: grid; margin: 26px auto; }
.offer-price span { opacity: .8; font-weight: 700; }
.offer-price strong { font-size: clamp(2.6rem, 10vw, 5rem); line-height: 1; }
.offer-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.offer-notes span { padding: 10px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .87rem; }

.order { display: grid; gap: 28px; align-items: start; }
.order-intro p:last-child { color: var(--muted); }
.order-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.order-form label { display: grid; gap: 6px; color: var(--wine-dark); font-size: .88rem; font-weight: 800; }
.order-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #d8c6cd;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
}
.order-form input:invalid:not(:placeholder-shown) { border-color: #b42318; }
.button-submit { width: 100%; margin-top: 4px; }
.form-status { min-height: 1.4em; margin: 0; color: #a01743; font-size: .9rem; font-weight: 700; }
.medical-note {
  padding: 30px max(18px, calc((100vw - 900px) / 2));
  color: #514a52;
  background: #f1ecee;
  text-align: center;
}
.medical-note h2 { font-size: 1.35rem; letter-spacing: -.01em; }
.medical-note p { margin: 10px auto 0; font-size: .86rem; }
footer { padding: 28px 18px 104px; color: #eee2e8; background: #2e071a; text-align: center; font-size: .86rem; }
footer p { margin: 4px; }

.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), #b31f61);
  box-shadow: 0 12px 30px rgba(48, 4, 25, .38);
  font-weight: 950;
  text-decoration: none;
}

@media (min-width: 760px) {
  .hero, .story, .closing { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: clamp(42px, 7vw, 90px); padding-block: 82px; }
  .hero-copy, .section-copy, .closing-copy { order: 1; }
  .visual { order: 2; }
  .story:nth-of-type(even) .section-copy { order: 2; }
  .story:nth-of-type(even) .visual { order: 1; }
  .order { grid-template-columns: .8fr 1.2fr; padding-block: 80px; }
  .order-form { grid-template-columns: 1fr 1fr; padding: 30px; }
  .button-submit, .form-status { grid-column: 1 / -1; }
  footer { padding-bottom: 30px; }
  .sticky-cta { display: none; }
}

@media (max-width: 759px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .header-cta { display: none; }
  .hero-copy .button, .price-card .button, .closing-copy .button { width: 100%; }
  .hero .visual { margin-top: 4px; }
  .story .section-copy, .closing-copy { margin-bottom: 2px; }
  .visual { border-radius: 18px; }
}

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