@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --mauve: #604549;
  --mauve-dark: #4a3437;
  --sage: #556254;
  --terracotta: #e27b6e;
  --cream: #faf7f2;
  --ink: #1c1917;
  --muted: #8c6068;
  --border: #e2d5c8;
  --card: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  color: var(--mauve);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--mauve); }

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

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(96, 69, 73, 0.15);
}

.brand span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.8;
}

.nav-links a:hover { opacity: 1; color: var(--mauve); }

.nav-links a.active { color: var(--mauve); opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--mauve);
  color: white;
  box-shadow: 0 6px 18px rgba(96, 69, 73, 0.25);
}

.btn-primary:hover { background: var(--mauve-dark); }

.btn-outline {
  background: white;
  color: var(--mauve);
  border-color: var(--border);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}

.hero::before { top: -180px; left: -180px; background: radial-gradient(circle, var(--terracotta), transparent 70%); }
.hero::after { bottom: -220px; right: -180px; background: radial-gradient(circle, var(--sage), transparent 70%); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lead {
  max-width: 560px;
  margin: 20px auto 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head .kicker {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-head p { color: var(--muted); }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px -12px rgba(96, 69, 73, 0.12);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f5eee6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.card h3 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Privacy strip ---------- */
.privacy-strip {
  background: linear-gradient(135deg, #f5eee6, #faf7f2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.privacy-strip h3 { margin-bottom: 6px; font-size: 1.3rem; }
.privacy-strip p { color: var(--muted); margin: 0; max-width: 480px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--mauve);
  border-radius: 32px;
  padding: 56px 24px;
  color: white;
}

.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 12px auto 28px; }
.cta-band .btn-primary { background: white; color: var(--mauve); }
.cta-band .btn-primary:hover { background: #f5eee6; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links a:hover { color: var(--mauve); }

.copyright { color: var(--muted); font-size: 0.82rem; }

/* ---------- Legal / content pages ---------- */
.legal {
  padding: 64px 0 96px;
}

.legal .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal h1 { font-size: 2.1rem; margin-bottom: 8px; }

.legal h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.legal p, .legal li { color: #3a2f2f; font-size: 0.96rem; }

.legal ul { padding-left: 20px; }

.legal strong { color: var(--ink); }

.callout {
  background: #f5eee6;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 24px 0;
}

/* ---------- Pricing ---------- */
.pricing-note {
  background: #fdf2f0;
  border: 1px solid #f5c0ac;
  color: #8c4038;
  border-radius: 16px;
  padding: 16px 22px;
  font-size: 0.9rem;
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  border-color: var(--mauve);
  box-shadow: 0 16px 40px -16px rgba(96, 69, 73, 0.35);
  position: relative;
}

.plan .badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--terracotta);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.plan h3 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ink); }
.plan .price { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--mauve); margin: 6px 0 4px; }
.plan .price span { font-size: 0.95rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.plan .desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 12px; color: #3a2f2f; }
.plan li::before { content: '✓'; color: var(--sage); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  background: var(--card);
  margin-bottom: 14px;
}

.faq-item h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.faq-item p { color: var(--muted); margin: 0; font-size: 0.92rem; }

.contact-card {
  background: linear-gradient(135deg, #f5eee6, #faf7f2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
}

.contact-card p { color: var(--muted); max-width: 460px; margin: 10px auto 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid, .plans { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .privacy-strip { flex-direction: column; text-align: center; }
  .footer-row { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 48px; }
}
