:root {
  --bg: #F4EEE4;
  --card: #FDFAF4;
  --ink: #2C2418;
  --muted: #8A7A66;
  --faint: #B5A78F;
  --border: #E6DCCB;
  --clay: #A85D3A;
  --clay-dark: #8A4A2E;
  --green: #3E7C59;
  --shadow: 0 8px 32px rgba(44, 36, 24, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.02em; }

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

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 238, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { width: 36px; height: 36px; }
.brand span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.15rem; }
.brand b { color: var(--green); font-weight: 800; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.nav-links a:hover { color: var(--clay); }

/* Hero */
.hero { text-align: center; padding: 72px 0 40px; }
.hero img.hero-logo { width: 110px; height: 110px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero p.lede { color: var(--muted); font-size: 1.15rem; max-width: 560px; margin: 16px auto 0; }
.cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 0.98rem;
}
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-dark); }
.btn-ghost { border: 1.5px solid var(--border); color: var(--ink); background: var(--card); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.pill {
  display: inline-block; background: var(--green); color: #fff; border-radius: 999px;
  padding: 6px 16px; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}

/* Feature sections */
.feature { display: flex; align-items: center; gap: 56px; padding: 64px 0; }
.feature:nth-child(even) { flex-direction: row-reverse; }
.feature .shot { flex: 0 0 340px; }
.feature .shot img {
  width: 100%; border-radius: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow); display: block;
}
.feature .copy h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; }
.feature .copy h3 { font-size: 1.08rem; color: var(--clay); font-weight: 700; margin-bottom: 12px; }
.feature .copy p { color: var(--muted); max-width: 480px; }
.feature .copy ul { color: var(--muted); margin: 12px 0 0 20px; }
.feature .copy li { margin: 6px 0; }

/* How it works */
.how { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; text-align: center; }
.how h2 { font-size: 2rem; font-weight: 800; margin-bottom: 40px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { padding: 28px 20px; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--clay); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
  margin: 0 auto 14px; font-size: 1.1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Page (legal etc.) */
.page { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.page h1 { font-size: 2.1rem; margin-bottom: 8px; }
.page .updated { color: var(--faint); font-size: 0.9rem; margin-bottom: 32px; }
.page h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.page p, .page li { color: var(--muted); }
.page ul { margin: 10px 0 10px 22px; }
.page a { color: var(--clay); }
.card-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin: 20px 0; box-shadow: var(--shadow);
}
.card-box h3 { margin-bottom: 8px; }
.card-box p { color: var(--muted); }

/* Forms */
form label { display: block; font-weight: 600; margin: 16px 0 6px; font-size: 0.95rem; }
form input, form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--card); font-family: inherit; font-size: 1rem; color: var(--ink);
}
form input:focus, form textarea:focus { outline: none; border-color: var(--clay); }
form button {
  margin-top: 20px; background: var(--clay); color: #fff; border: none; cursor: pointer;
  padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem; font-family: inherit;
}
form button:hover { background: var(--clay-dark); }
form button:disabled { opacity: 0.6; cursor: default; }
.form-note { margin-top: 14px; font-weight: 600; }
.form-note.ok { color: var(--green); }
.form-note.err { color: #C0392B; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 36px 0; margin-top: 40px; }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: var(--faint); font-size: 0.9rem; }
footer a { color: var(--muted); text-decoration: none; margin-left: 18px; }
footer a:hover { color: var(--clay); }

@media (max-width: 800px) {
  .feature { flex-direction: column !important; gap: 28px; padding: 44px 0; }
  .feature .shot { flex: none; max-width: 300px; }
  .nav-links a.hide-sm { display: none; }
}
