:root {
  color-scheme: light;
  --ink: #11261b;
  --muted: #5f6f65;
  --fairway: #2f8656;
  --cream: #f5f7f3;
  --line: #dce5de;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

header, main, footer {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 42px 0 18px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

a { color: var(--fairway); }

main {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 45px rgba(18, 51, 31, 0.08);
}

h1, h2 { line-height: 1.2; }
h1 { margin: 0; font-size: clamp(2rem, 7vw, 3.2rem); }
h2 { margin-top: 2rem; font-size: 1.25rem; }
p, li { color: var(--muted); }

form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

label {
  color: var(--ink);
  font-weight: 650;
}

label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

input:focus, textarea:focus {
  border-color: var(--fairway);
  outline: 3px solid rgba(47, 134, 86, 0.14);
}

button {
  width: fit-content;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: white;
  background: var(--fairway);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.honeypot { display: none; }

.eyebrow {
  color: var(--fairway);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice {
  border-left: 4px solid var(--fairway);
  background: #eff7f1;
  border-radius: 10px;
  padding: 14px 16px;
}

footer {
  padding: 24px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
}
