:root {
  --bg: #ffffff;
  --text: #1f2430;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #0EA5A6;
  --primary-600: #0D9488;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --container: 680px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

.section { padding: 18px; border: 0; border-radius: var(--radius); background: #fff; box-shadow: none; }

.contact-panel { display: grid; gap: 10px; margin-top: 10px; }

.field { display: grid; gap: 6px; }
.field input, .field textarea { width: 100%; padding: 12px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff; }
.field textarea { min-height: 90px; resize: vertical; }

.btn { border: 1px solid var(--border); padding: 12px 18px; border-radius: 10px; font-weight: 600; background: #fff; color: var(--text); text-decoration: none; transition: transform .04s ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-600); border-color: var(--primary-600); }
.btn.block { width: 100%; text-align: center; }

.muted-small { color: var(--muted); font-size: 12px; }

/* Spacing for Turnstile widget container */
.cf-turnstile { margin: 4px 0 8px; }

/* Honeypot field: visually hidden but present in DOM for simple bots */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 640px) {
  .container { padding-left: 12px; padding-right: 12px; }
}
