:root {
  --ink: #1c1915;
  --muted: #5c564c;
  --paper: #f6f1e7;
  --card: #fffdf8;
  --line: #e4d9c8;
  --green: #1f4d3a;
  --green-deep: #16382a;
  --amber: #c9842a;
  --shadow: 0 20px 50px rgba(28, 25, 21, 0.08);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% -10%, #efe2c6 0%, transparent 60%),
    var(--paper);
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mark {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

main { padding: 1rem 6vw 4rem; }

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 70vh;
}

h1 {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0.3rem 0 1rem;
}

h2 {
  font-family: Georgia, "Iowan Old Style", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 700;
  margin: 0;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.button {
  display: inline-block;
  background: var(--green);
  color: #f6f1e7;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button:hover { background: var(--green-deep); }
.button:disabled { opacity: 0.7; cursor: wait; }

.hero-card {
  background: var(--green);
  color: #f6f1e7;
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}

.card-kicker {
  margin: 0 0 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.75;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
  padding: 0.75rem 0;
}

.card-note { margin: 0.4rem 0 0; opacity: 0.85; }

.panel { padding: 3.5rem 0 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid article,
.contact form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.25rem 1.3rem 1.4rem;
}

.grid h3 { margin: 0 0 0.4rem; }
.grid p { margin: 0; color: var(--muted); }

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding-top: 0.4rem;
}

.steps li::before {
  content: counter(step);
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--green);
}

.steps span { display: block; color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

form { display: grid; gap: 0.85rem; }

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input, textarea {
  font: inherit;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.8rem;
}

input:focus, textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.optional { font-weight: 500; color: var(--muted); }

.honey {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.status { min-height: 1.4rem; margin: 0; color: var(--muted); }
.status.error { color: #8a2e1b; }
.status.ok { color: var(--green); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 6vw 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .hero, .grid, .steps ol, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 1rem; }
  nav { display: none; }
  footer { flex-direction: column; }
}
