:root {
  --cream: #faf8f3;
  --paper: #fefcf7;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --olive: #6b8e23;
  --olive-dark: #556b16;
  --burgundy: #722f37;
  --border: #e8e3d8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--cream); color: var(--ink); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
.container { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 980px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--olive-dark); font-weight: 600; margin-bottom: 1rem; }
header { padding: 2rem 0 1rem; border-bottom: 1px solid var(--border); }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; }
.brand a { color: var(--ink); text-decoration: none; }
.hero { padding: 4rem 0 3rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 1.5rem; }
.hero .lede { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--muted); margin-bottom: 2rem; max-width: 32rem; }
.hero blockquote { border-left: 3px solid var(--olive); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2rem 0; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.hero blockquote cite { display: block; font-style: normal; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.form-card { background: var(--paper); border: 1px solid var(--border); padding: 2.5rem 2rem; margin: 2rem 0; border-radius: 4px; }
.form-card h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-card p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-row { display: flex; gap: 0.5rem; }
input[type="email"] { flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--border); background: white; font: inherit; font-size: 1rem; border-radius: 3px; outline: none; }
input[type="email"]:focus { border-color: var(--olive); }
button { background: var(--olive); color: white; border: none; padding: 0.85rem 1.5rem; font: inherit; font-size: 0.95rem; font-weight: 500; border-radius: 3px; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
button:hover { background: var(--olive-dark); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.section { padding: 3rem 0; border-top: 1px solid var(--border); }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 2rem; }
.learn-list { display: grid; gap: 1.5rem; }
.learn-item { padding-left: 2rem; position: relative; }
.learn-item::before { content: "—"; position: absolute; left: 0; color: var(--olive); font-weight: 700; }
.learn-item h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.learn-item p { color: var(--muted); font-size: 0.95rem; }
.about { background: var(--paper); padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about p { color: var(--muted); margin-bottom: 1rem; }
.about p:first-of-type { color: var(--ink); font-size: 1.1rem; }
footer { padding: 2rem 0; text-align: center; color: var(--muted); font-size: 0.85rem; }
footer a { color: var(--muted); text-decoration: underline; }
@media (max-width: 640px) { .form-row { flex-direction: column; } }
