/* ==========================================================================
   10 Steps to Love Your Body — Landing Page
   Palette pulled from the hibiscus cover: rose, magenta, warm cream, soft
   gold accents. Serif display + clean sans body.
   ========================================================================== */

:root {
  /* Brand palette */
  --rose-50:  #fdf6f8;
  --rose-100: #fbe9ef;
  --rose-200: #f5cdd8;
  --rose-300: #eea7bc;
  --rose-400: #e07ea0;
  --rose-500: #d65689;  /* primary */
  --rose-600: #b84072;
  --rose-700: #8d2e57;
  --rose-800: #5e1d3a;

  --gold-300: #f6d77a;  /* echoing the hibiscus pollen */
  --gold-500: #d8a843;

  --cream-50:  #fffbf6;
  --cream-100: #fdf4ea;
  --cream-200: #f6e9d7;

  --ink-900: #2a1c25;   /* deep plum-black for body */
  --ink-700: #4a3a45;
  --ink-500: #7a6a75;

  /* Type */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --max-w: 1180px;
  --max-w-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(94, 29, 58, 0.06);
  --shadow-md: 0 8px 28px rgba(94, 29, 58, 0.12);
  --shadow-lg: 0 30px 60px -20px rgba(94, 29, 58, 0.35);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-600); text-decoration: none; }
a:hover { color: var(--rose-700); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink-900); margin: 0 0 .6em; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--max-w-narrow); }
.centered { text-align: center; }

/* ---------- Reusable typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin: 0 0 18px;
}
.eyebrow.centered { text-align: center; }

.display {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.display em { font-style: italic; color: var(--rose-600); }

.display-sm {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  margin: 0 0 18px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: .35em;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-700);
  max-width: 560px;
  margin: 0 auto 48px;
}
.lede {
  font-size: 19px;
  color: var(--ink-700);
  margin: 0 0 28px;
  max-width: 520px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff;
  box-shadow: 0 6px 18px rgba(184, 64, 114, 0.3);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 64, 114, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--rose-700);
  border-color: var(--rose-200);
}
.btn-ghost:hover {
  background: var(--rose-50);
  border-color: var(--rose-300);
}
.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-disabled {
  background: #e7d9df;
  color: #8a7a82;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 246, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(214, 86, 137, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
}
.brand-mark {
  font-size: 22px;
  color: var(--rose-500);
  transform: translateY(-1px);
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--rose-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(238, 167, 188, 0.5), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(246, 215, 122, 0.25), transparent 55%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--rose-50) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 4px; }

.hero-cover {
  position: relative;
  display: flex;
  justify-content: center;
}
.cover-img {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.cover-img:hover { transform: rotate(0) translateY(-4px); }
.cover-shadow {
  position: absolute;
  inset: 12px 12px -16px 12px;
  background: radial-gradient(ellipse at center, rgba(184, 64, 114, 0.25), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* ---------- Intro pull ---------- */
.intro {
  padding: 70px 0;
  background: var(--cream-100);
  border-top: 1px solid rgba(214, 86, 137, 0.08);
  border-bottom: 1px solid rgba(214, 86, 137, 0.08);
}
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.45;
  color: var(--ink-900);
  text-align: center;
  margin: 0 0 16px;
}
.pull-attrib {
  text-align: center;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin: 0;
}

/* ---------- Who it's for ---------- */
.for-you { padding: 100px 0; }
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.for-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(214, 86, 137, 0.08);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.for-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.for-icon { font-size: 32px; margin-bottom: 14px; }
.for-card p { margin: 0; color: var(--ink-700); font-size: 16px; }

/* ---------- 10 Steps ---------- */
.steps {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-50), var(--rose-50));
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 86, 137, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 86, 137, 0.25);
}
.step-num {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--rose-500);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 48px;
}
.step h3 {
  font-size: 22px;
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}

/* ---------- Quote break ---------- */
.quote-break {
  padding: 90px 0;
  background: var(--rose-700);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-break::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 220px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}
.quote-break blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3;
  position: relative;
}
.quote-break cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-200);
}

/* ---------- Author ---------- */
.author { padding: 110px 0; background: var(--cream-50); }
.author-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.author-photo {
  position: relative;
}
.author-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}
.author-photo::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--rose-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.author-copy p { color: var(--ink-700); font-size: 17px; }
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-700);
  margin-top: 12px;
}

/* ---------- What you get ---------- */
.what-you-get {
  padding: 110px 0;
  background: var(--cream-100);
}
.get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.get-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(214, 86, 137, 0.1);
  box-shadow: var(--shadow-sm);
}
.get-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose-500), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.get-card h3 { font-size: 20px; margin-bottom: 8px; }
.get-card p { font-size: 15px; color: var(--ink-700); margin: 0; }

/* ---------- Buy section ---------- */
.buy { padding: 110px 0; background: var(--cream-50); }
.buy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(214, 86, 137, 0.1);
  background-image:
    radial-gradient(ellipse at top right, rgba(246, 215, 122, 0.1), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(238, 167, 188, 0.15), transparent 50%);
}
.buy-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 26px;
}
.price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--rose-700);
  line-height: 1;
}
.price-meta {
  font-size: 14px;
  color: var(--ink-500);
  letter-spacing: .04em;
}
.buy-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 8px;
}
.buy-list li {
  font-size: 15px;
  color: var(--ink-700);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream-50), var(--rose-50));
}
.faq .section-title { margin-bottom: 50px; }
.faq details {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 12px;
  border: 1px solid rgba(214, 86, 137, 0.1);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-md);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-900);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--rose-500);
  transition: transform .2s ease;
}
.faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.faq details p {
  margin: 14px 0 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- Closing ---------- */
.closing {
  padding: 130px 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 205, 216, 0.5), transparent 70%),
    var(--cream-50);
  text-align: center;
}
.closing .lede { margin-left: auto; margin-right: auto; max-width: 520px; }

/* ---------- Footer ---------- */
.footer {
  padding: 50px 0;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer .brand { color: #fff; }
.footer .brand-mark { color: var(--rose-300); }
.footer-tag { margin: 4px 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.footer-meta { font-size: 13px; text-align: right; line-height: 1.6; }
.footer-meta p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { order: 2; text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-cover { order: 1; }
  .cover-img { max-width: 280px; }

  .step-list { grid-template-columns: 1fr; }
  .author-inner { grid-template-columns: 1fr; gap: 40px; }
  .author-photo { max-width: 360px; margin: 0 auto; }
  .author-copy { text-align: center; }
  .author-photo::before { inset: 12px -12px -12px 12px; }

  .buy-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
    text-align: center;
  }
  .buy-cover { max-width: 220px; margin: 0 auto; }
  .price-row { justify-content: center; }
  .buy-list { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-links { gap: 16px; }
  .nav-links a:nth-child(1) { display: none; }
  .for-you, .steps, .author, .what-you-get, .buy, .faq, .closing { padding: 70px 0; }
  .step { padding: 22px; }
  .btn { padding: 13px 22px; font-size: 15px; }
  .btn-large { padding: 16px 28px; }
}

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