:root {
  --bg: #fff7f2;
  --paper: #ffffff;
  --text: #322934;
  --muted: #746472;
  --pink: #d83384;
  --rose: #b72b68;
  --mint: #7fd7c2;
  --lemon: #ffd86d;
  --line: rgba(183, 43, 104, 0.18);
  --shadow: 0 20px 54px rgba(122, 67, 101, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.68;
  background: linear-gradient(180deg, var(--bg), #fffdf9 54%, #fff4f8);
}

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

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.container {
  width: min(100% - 38px, var(--max));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 242, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #f1839c);
  font-size: 0.78rem;
}

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

.nav {
  display: flex;
  gap: 16px;
  color: #665764;
  font-size: 0.92rem;
  font-weight: 850;
}

.top-cta,
.primary,
.mobile-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 22px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 14px 30px rgba(184, 43, 104, 0.24);
}

.mobile-cta {
  display: none;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mobile-cta a {
  width: 100%;
}

.hero {
  padding: 56px 0 30px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 38px;
}

.kicker {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-image,
.content-image {
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-image img,
.content-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quick-info {
  padding: 18px 0 34px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.info-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.info-grid strong {
  color: var(--rose);
  font-size: 1.1rem;
}

.section {
  padding: 56px 0;
}

.variations {
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(127, 215, 194, 0.16), rgba(255, 216, 109, 0.18));
}

.text-wrap {
  max-width: 860px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(122, 67, 101, 0.08);
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.faq details p {
  padding: 0 18px 18px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer strong {
  color: var(--rose);
}

@media (max-width: 900px) {
  .top-cta {
    display: none;
  }

  .mobile-cta {
    position: sticky;
    top: 72px;
    z-index: 25;
    display: block;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span {
    width: 38px;
    height: 38px;
  }

  .nav {
    display: none;
  }

  .mobile-cta {
    top: 66px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
  }

  .primary {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: block;
  }
}
