/* ─── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@400;500;600&display=swap');

/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --bg:         #faf9f7;
  --bg-alt:     #f2ede6;
  --ink:        #1a1714;
  --ink-muted:  #6b6157;
  --accent:     #c8922a;
  --accent-dk:  #9e7218;
  --white:      #ffffff;
  --radius:     12px;
  --radius-sm:  6px;
  --shadow:     0 2px 16px rgba(26,23,20,0.08);
  --shadow-lg:  0 8px 40px rgba(26,23,20,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* ─── Navigation ────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid #d5cfc7;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-secondary:hover { border-color: var(--ink); background: rgba(26,23,20,0.03); }

/* ─── Divider ───────────────────────────────────────────── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ─── How It Works ──────────────────────────────────────── */
.how {
  padding: 4rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how-header { text-align: center; margin-bottom: 3.5rem; }

.how-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.how-header p {
  color: var(--ink-muted);
  max-width: 420px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.step h3 {
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ─── Email Capture ──────────────────────────────────────── */
.capture {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.capture-inner { max-width: 540px; margin: 0 auto; }

.capture h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.capture p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.capture-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.capture-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.capture-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.capture-form input[type="email"]:focus { border-color: var(--accent); }

.capture-form button {
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.capture-form button:hover { background: var(--accent-dk); transform: translateY(-1px); }

.capture-success {
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: var(--radius);
  color: #f5c96a;
  font-size: 0.9375rem;
}

.capture-error {
  display: none;
  margin-top: 0.75rem;
  color: #f87171;
  font-size: 0.875rem;
}

/* ─── Social Proof Bar ──────────────────────────────────── */
.proof {
  padding: 2rem 2rem;
  text-align: center;
  border-top: 1px solid #ece8e1;
  border-bottom: 1px solid #ece8e1;
  background: var(--bg-alt);
}

.proof p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  border-top: 1px solid #ece8e1;
}

footer strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}

footer a { color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
footer p { margin-top: 0.5rem; }

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge  { animation: fadeUp 0.6s ease both; }
.hero h1     { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub    { animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions{ animation: fadeUp 0.6s ease 0.3s both; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
  nav { padding: 1rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .steps { grid-template-columns: 1fr; }
  .capture-form { flex-direction: column; }
  .capture-form button { width: 100%; }
}