:root{
  --bg:#faf8f6;
  --paper:#ffffff;
  --ink:#1f1f1f;
  --muted:#6b6b6b;
  --brand:#2e7d32;
  --brand-2:#a66a3f;
  --line:#e8e5e2;
  --radius:16px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color:var(--ink);
  background:var(--bg);
}
.section{scroll-margin-top:72px}
.container{width:min(1120px, 92%);margin-inline:auto}
.muted{color:var(--muted)}
.mt-24{margin-top:24px}

/* Minimal error styles */
input.error{border-color:#d14343; box-shadow:0 0 0 2px rgba(209,67,67,.08)}
small.error{color:#d14343; font-size:12px}
/* Inline form notices */
.notice{margin-top:12px; font-size:14px}
.notice.success{color:#2e7d32}
.notice.error{color:#d14343}
/* Honeypot hidden field */
.hp{position:absolute !important;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
