:root {
  --ink: #181818;
  --muted: #5f5f5f;
  --accent: #ff466f;
  --accent-dark: #f22f5d;
  --blush: #ffe1e8;
  --paper: #ffffff;
  --footer: #f8f6f3;
  --line: #ece7e3;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.48;
}

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

a {
  color: inherit;
}

.topbar {
  border-top: 3px solid #222;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topbar__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar__inner::before {
  content: "";
  flex: 1;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
}

.brand img {
  width: 100px;
  object-fit: contain;
}

.ad-label {
  flex: 1;
  text-align: right;
  font-size: 16px;
  color: #555;
  letter-spacing: 0.02em;
}

.page-shell {
  padding: 34px 24px 26px;
}

.article {
  max-width: 1040px;
  margin: 0 auto;
}

h1 {
  margin: 0 0 30px;
  color: var(--accent);
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 600;
}

p {
  margin: 0 0 13px;
}

.accent {
  color: var(--accent-dark);
}

.small {
  font-size: 14px;
}

.split {
  display: flex;
  gap: 34px;
  align-items: stretch;
  margin: 0 0 34px;
}

.split__copy {
  flex: 7 1 0;
  min-width: 0;
}

.text-section > .split {
  margin-bottom: 0;
}

.split__body > :last-child {
  margin-bottom: 0;
}

/* The text sets the row height; the photo cannot make it taller. */
.split__media {
  position: relative;
  flex: 5 1 0;
  min-width: 0;
}

.split__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.split--compact {
  align-items: flex-start;
}

.split--compact .split__image {
  position: static;
  height: auto;
  object-fit: contain;
}
.card {
  margin: 22px 0 34px;
  padding: 26px 28px;
  border-radius: var(--radius);
}

.card--pink {
  background: var(--blush);
}

.card h2 {
  font-size: 22px;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
}

.check-grid > ul {
  flex: 1 1 0;
  min-width: 0;
}

.check-grid ul,
.plain-list {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.check-grid li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 9px;
}

.check-grid--pink li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.check-grid--pinks li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3L9.41425 6.58575L13 8L9.41425 9.41425L8 13L6.58575 9.41425L3 8L6.58575 6.58575L8 3ZM14 11L14.8485 13.1515L17 14L14.8485 14.8485L14 17L13.1515 14.8485L11 14L13.1515 13.1515L14 11Z' fill='%23FE4978' stroke='%23FE4978' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.plain-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
}

.text-section {
  margin: 0 0 34px;
}

.signup {
  margin: 30px 0 22px;
  padding: 34px 34px 30px;
  border-radius: var(--radius);
  background: var(--blush);
  text-align: center;
}

.signup h2 {
  max-width: 500px;
  margin-inline: auto;
  color: var(--accent-dark);
  font-size: 28px;
}

.signup>p {
  max-width: 500px;
  margin: 0 auto 18px;
  font-size: 18px;
}

.lead-form {
  width: min(100%, 500px);
  margin: 0 auto;
}

.form-row {
  margin-bottom: 10px;
}

.form-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select {
  width: 100%;
  height: 46px;
  border: 1px solid #f0c8d2;
  border-radius: 2px;
  background: #fff;
  padding: 0 13px;
  color: #222;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 70, 111, 0.12);
}

.phone-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.cta {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

.cta:active {
  transform: translateY(1px);
}

.form-note {
  margin: 10px 0 0;
  min-height: 20px;
  font-size: 13px;
}

.footer {
  margin-top: 8px;
  background: var(--footer);
  border-top: 1px solid var(--line);
}

.footer__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 24px 44px;
}

.footer__intro {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer__intro h2 {
  width: min(100%, 460px);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.04;
}

.footer__cols {
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
}

.footer h3 {
  margin: 0 0 9px;
  font-size: 16px;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 5px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.floating-badge {
  position: absolute;
  left: 58%;
  bottom: 57px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc72c;
  border: 4px solid #1d1d1d;
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.25);
  font: 700 30px/1 "Playfair Display", serif;
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .topbar__inner {
    padding: 0 16px;
  }

  .brand img {
    width: 100px;
  }

  .page-shell {
    padding: 24px 18px 18px;
  }

  h1 {
    margin-bottom: 24px;
  }

  h1,
  h2,
  .card h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  li {
    font-size: 16px;
  }

  .split {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .split__copy {
    display: contents;
  }

  .split__copy > h2 {
    order: 0;
    margin: 0;
  }

  .split__media {
    order: 1;
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .split--compact .split__media {
    width: 100%;
    aspect-ratio: 4096 / 2731;
  }

  .split--hero .split__media {
    order: -1;
    aspect-ratio: 9 / 10;
  }

  .split--hero .split__image {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .split__body {
    order: 2;
    min-width: 0;
  }

  .card {
    padding: 22px 20px;
    margin-bottom: 28px;
  }

  .check-grid {
    flex-direction: column;
    gap: 0;
  }

  .signup {
    padding: 26px 18px 22px;
  }

  .footer__intro {
    justify-content: center;
  }

  .footer__intro h2 {
    font-size: 28px;
  }

  .footer__cols {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .floating-badge {
    position: static;
    margin: 28px auto 0;
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .page-shell {
    padding-inline: 14px;
  }

  li {
    font-size: 16px;
  }

}

/* Success modal */
body.modal-open {
  overflow: hidden;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.success-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 16, 0.58);
  backdrop-filter: blur(2px);
}

.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 28px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s ease;
}

.success-modal.is-open .success-modal__dialog {
  transform: translateY(0) scale(1);
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #777;
  font: 400 30px/1 "Playfair Display", serif;
  cursor: pointer;
}

.success-modal__close:hover {
  background: #fff1f4;
  color: var(--accent);
}

.success-modal__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font: 700 34px/1 "Playfair Display", serif;
}

.success-modal__dialog h2 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 27px;
}

.success-modal__dialog p {
  margin: 0 auto 9px;
  max-width: 370px;
  line-height: 1.5;
}

.success-modal__button {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.success-modal__button:hover {
  background: var(--accent-dark);
}

@media (max-width: 430px) {
  .success-modal {
    padding: 14px;
  }

  .success-modal__dialog {
    padding: 30px 20px 22px;
    border-radius: 14px;
  }

  .success-modal__dialog h2 {
    font-size: 23px;
  }
}
.check-grid--pinks li{
  display: flex;
  padding: 0;
}
.legal-copy {
  display: flex;
  flex-direction: column;
}
