:root {
  --red-600: #d32f44;
  --red-700: #B01C2E;
  --red-800: #9B1C31;
  --red-900: #7a1627;
  --red-50:  #fef2f3;
  --red-100: #fde6e8;

  --warm-50:  #FAFAF7;
  --warm-100: #F5F4EF;
  --warm-200: #ECEAE2;
  --warm-300: #D8D5CB;
  --warm-500: #8C8880;
  --warm-700: #3D3A34;
  --warm-900: #141210;

  --teal: #00A79D;
  --gold: #C8952C;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--warm-700);
  background: var(--warm-50);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--warm-900);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

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

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--warm-200);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { width: 36px; height: 36px; border-radius: 10px; display: block; }
.nav-brand span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--red-700);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.nav-link { font-size: 0.95rem; font-weight: 500; color: var(--warm-700); }
.nav-links a.nav-link:hover { color: var(--red-700); }
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-700) 0%, var(--red-900) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(176, 28, 46, 0.25);
}
.btn-primary:hover { box-shadow: 0 4px 14px rgba(176, 28, 46, 0.35); }
.btn-ghost { color: var(--red-700); font-weight: 600; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: 88px 24px 72px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--red-50) 0%, var(--warm-50) 70%);
}
.hero img.crest { width: 88px; height: 88px; border-radius: 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.12); margin-bottom: 28px; }
.hero h1 { font-size: 3.4rem; max-width: 780px; margin: 0 auto 18px; }
.hero p.lead { font-size: 1.2rem; color: var(--warm-500); max-width: 560px; margin: 0 auto 36px; }
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; border-radius: 12px; }

/* ── Features ────────────────────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2.3rem; }
.section-head p { color: var(--warm-500); font-size: 1.05rem; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--warm-200);
  border-radius: 16px;
  padding: 28px;
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-100);
  color: var(--red-700);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--warm-900); margin-bottom: 8px; }
.feature-card p { color: var(--warm-500); font-size: 0.95rem; margin: 0; }

/* ── How it works ────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step { text-align: center; }
.step .num {
  counter-increment: step;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step .num::before { content: counter(step); }
.step h3 { font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--warm-900); margin-bottom: 6px; }
.step p { color: var(--warm-500); font-size: 0.92rem; }

/* ── CTA banner ──────────────────────────────────────────────────────── */
.cta-banner {
  margin: 72px 24px;
  padding: 56px 24px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--red-700) 0%, var(--red-900) 100%);
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 2.1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 28px; }
.cta-banner .btn-primary { background: #fff; color: var(--red-700); box-shadow: none; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--warm-200);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
}
.pricing-card .price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--warm-900); margin: 12px 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 24px 0 32px; text-align: left; }
.pricing-card li { padding: 8px 0; color: var(--warm-700); font-size: 0.95rem; }
.pricing-card li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--warm-200);
  padding: 32px 24px;
  text-align: center;
  color: var(--warm-500);
  font-size: 0.85rem;
}
footer a { font-weight: 500; }
footer a:hover { color: var(--red-700); }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .nav-links .nav-link { display: none; }
  .hero h1 { font-size: 2.4rem; }
}
