:root {
  --cream: #FBF6F0;
  --cream-deep: #F5EDE2;
  --blush: #F5E1DC;
  --blush-soft: #FAEDE8;
  --dusty-rose: #D08A88;
  --dusty-rose-deep: #B97370;
  --rose-tint: #E5A5A2;
  --lilac: #D8C8E8;
  --butter: #FFEDB3;
  --ink: #3D2E2E;
  --ink-soft: #6B5757;
  --ink-mute: #9B8888;
  --mist: #E8DCD5;
  --hairline: rgba(61, 46, 46, 0.08);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 8px 32px rgba(176, 124, 122, 0.12);
  --shadow-lift: 0 16px 48px rgba(176, 124, 122, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--dusty-rose-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */

.nav {
  padding: 28px 0 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-brand .star {
  color: var(--dusty-rose);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--dusty-rose-deep);
}

@media (max-width: 640px) {
  .nav-links { gap: 18px; font-size: 13px; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 120px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 65%);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-flourish {
  font-size: 24px;
  color: var(--dusty-rose);
  letter-spacing: 12px;
  margin-bottom: 24px;
  text-indent: 12px;
}

.hero h1 {
  font-size: clamp(56px, 11vw, 124px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--dusty-rose-deep);
}

.hero-tag {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 14px;
  line-height: 1.5;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 480px;
  margin: 0 auto 44px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--dusty-rose-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--mist);
}

.btn-ghost:hover {
  border-color: var(--dusty-rose);
  color: var(--dusty-rose-deep);
}

/* ---------- Bow divider ---------- */

.bow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 14px;
  color: var(--dusty-rose);
  font-size: 14px;
  opacity: 0.7;
}

.bow-divider::before,
.bow-divider::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-tint), transparent);
}

/* ---------- Features ---------- */

.features {
  padding: 80px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dusty-rose-deep);
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(34px, 5vw, 52px);
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .italic {
  font-style: italic;
  color: var(--dusty-rose-deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
}

.feature-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 36px 32px;
  border: 1px solid var(--hairline);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.feature-icon.rose { background: var(--blush); color: var(--dusty-rose-deep); }
.feature-icon.lilac { background: var(--lilac); color: #6B4E8A; }
.feature-icon.butter { background: var(--butter); color: #8A6B1F; }

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Story section ---------- */

.story {
  padding: 120px 0;
  text-align: center;
}

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 32px;
}

.story-quote::before { content: "“"; color: var(--dusty-rose); margin-right: 4px; }
.story-quote::after { content: "”"; color: var(--dusty-rose); margin-left: 4px; }

.story-attribution {
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

/* ---------- Pricing teaser ---------- */

.pricing {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-soft) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--hairline);
  position: relative;
}

.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

@media (max-width: 820px) {
  .price-card.featured { transform: none; }
}

.price-card.featured h3,
.price-card.featured .price-amount { color: var(--cream); }

.price-card.featured .price-note { color: var(--blush); }

.price-tag {
  display: inline-block;
  background: var(--dusty-rose);
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount .period {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-mute);
}

.price-card.featured .price-amount .period { color: var(--blush); }

.price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}

.pricing-fine-print {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Final CTA ---------- */

.final-cta {
  padding: 120px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 0 56px;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-mute);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
}

.footer-brand .star { color: var(--dusty-rose); }

/* ---------- Inner page (legal / support) ---------- */

.page {
  padding: 80px 0 96px;
}

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

.page h1 {
  font-size: clamp(40px, 6vw, 60px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page .last-updated {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.page h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 14px;
  font-weight: 500;
}

.page h3 {
  font-size: 19px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
}

.page p, .page li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.page p { margin-bottom: 16px; }

.page ul, .page ol {
  margin: 0 0 20px 24px;
}

.page li { margin-bottom: 6px; }

.page strong { color: var(--ink); font-weight: 600; }

.page hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-tint), transparent);
  margin: 48px 0;
}

.page a {
  border-bottom: 1px solid var(--rose-tint);
  padding-bottom: 1px;
}
