:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #26351f;
  background: #fbf7ee;
  font-synthesis: none;
  --accent: #4f6d32;
  --accent-dark: #3c5724;
  --focus: rgb(226 129 42 / 20%);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; min-height: 100vh; }
button, input, textarea { font: inherit; }
.page-shell { display: grid; min-height: 100vh; place-items: center; padding: 32px 20px; }
.contact-card {
  width: min(100%, 620px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #e3d9c6;
  border-radius: 18px;
  background: #fffefb;
  box-shadow: 0 18px 55px rgb(75 88 50 / 10%);
}
.brand-logo { display: block; margin-bottom: 22px; }
.eyebrow { margin: 0 0 10px; color: #c76624; font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -.04em; line-height: 1.05; }
.intro { margin: 16px 0 30px; color: #66705f; line-height: 1.6; }
form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
label { font-size: .9rem; font-weight: 650; }
.optional { margin-left: 6px; color: #84877f; font-size: .78rem; font-weight: 500; }
input, textarea {
  width: 100%;
  border: 1px solid #d5cebf;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input { min-height: 46px; padding: 0 13px; }
textarea { min-height: 160px; padding: 12px 13px; line-height: 1.55; resize: vertical; }
input:focus, textarea:focus { border-color: #df7d28; box-shadow: 0 0 0 3px var(--focus); }
button {
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: background 150ms ease, transform 150ms ease;
}
button:hover { background: var(--accent-dark); }
button:active { transform: translateY(1px); }
button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 24px; color: var(--accent); font-size: .9rem; line-height: 1.5; }
.form-status[data-type="error"] { color: #a12b2b; }
.privacy-note { margin: 24px 0 0; color: #7d8079; font-size: .8rem; line-height: 1.5; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 520px) {
  .page-shell { padding: 0; }
  .contact-card { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
}
