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

:root {
  --bg: #faf6f0;
  --bg-alt: #f3ebe0;
  --ink: #2a2320;
  --muted: #7d7168;
  --accent: #b3572f;
  --accent-deep: #8f3f1e;
  --green: #3f5d46;
  --card: #ffffff;
  --line: #e8ddd0;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
em { font-style: italic; }
a { color: var(--accent-deep); }

/* --- nav --- */
nav {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); text-decoration: none; }
.brand .ml { color: var(--accent); font-size: 1rem; }
.nav-links { display: flex; gap: 1.25rem; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } .btn.small { margin-left: auto; } }

/* --- buttons --- */
.btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 0.8rem 1.6rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn.small { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

/* --- hero --- */
header {
  padding: clamp(3rem, 9vh, 6.5rem) clamp(1.25rem, 5vw, 4rem) 3.5rem;
  max-width: 60rem;
}
.eyebrow {
  color: var(--accent); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: 1.5rem; }
h1 em { color: var(--accent); }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 42rem; margin-bottom: 2rem; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.micro { font-size: 0.85rem; color: var(--muted); }
.micro.center { text-align: center; margin-top: 1.5rem; }

/* --- quote strip --- */
.strip {
  background: var(--green); color: #f2efe8;
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
}
.strip p {
  max-width: 46rem; margin: 0 auto;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.5vw, 1.5rem); line-height: 1.5;
}
.strip em { color: #f5c9a8; }

/* --- sections --- */
section { padding: clamp(3rem, 8vh, 5.5rem) clamp(1.25rem, 5vw, 4rem); }
section.alt { background: var(--bg-alt); }
section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.section-lede { color: var(--muted); max-width: 44rem; margin-bottom: 2.5rem; }

.cards { display: grid; gap: 1.25rem; margin-top: 2rem; }
.cards.three { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.cards.two { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.75rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.card p, .card li { color: var(--muted); font-size: 0.97rem; }
.step {
  color: var(--accent); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.you-side {
  margin-top: 2.5rem; padding: 2rem;
  background: var(--card); border-left: 4px solid var(--accent); border-radius: 0 14px 14px 0;
  max-width: 46rem;
}
.you-side h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.you-side p { color: var(--muted); }

/* --- pricing --- */
.pricing .tier ul { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: 0.55rem; }
.pricing .tier li { padding-left: 1.4rem; position: relative; }
.pricing .tier li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price { font-family: var(--serif); font-size: 2.1rem; color: var(--ink); margin-top: 0.25rem; }
.price span { font-size: 1rem; color: var(--muted); font-family: var(--sans); }
.tier.featured { border: 2px solid var(--accent); position: relative; box-shadow: 0 12px 32px rgb(179 87 47 / 0.12); }
.badge {
  position: absolute; top: -0.85rem; left: 1.5rem;
  background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.8rem; border-radius: 999px; letter-spacing: 0.05em;
}

/* --- promises --- */
.promise.wide { grid-column: 1 / -1; }

/* --- forms --- */
form { max-width: 44rem; display: grid; gap: 1.1rem; }
form .grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 0.92rem; }
.opt { color: var(--muted); font-weight: 400; }
input, select, textarea {
  font: inherit; padding: 0.65rem 0.8rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--card); color: var(--ink); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
form .btn { justify-self: start; }
.form-note { font-size: 0.95rem; min-height: 1.4rem; }
.form-note.ok { color: var(--green); font-weight: 600; }
.form-note.err { color: #a03535; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

/* --- founder + footer --- */
.founder { background: var(--bg-alt); }
.founder p {
  max-width: 44rem; font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6;
}
footer { padding: 2rem clamp(1.25rem, 5vw, 4rem); border-top: 1px solid var(--line); }
footer p { color: var(--muted); font-size: 0.85rem; }
