:root {
  --green: #4f9e3f;
  --blue: #2597c7;
  --olive: #423d22;
  --ink: #22231a;
  --paper: #faf9f4;
  --line: #e3e0d2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: var(--ink);
  padding: 40px 20px;
}

.cs-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.cs-heading {
  margin: 40px 0 28px;
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-weight: 200;
  font-size: 2.6rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--blue);
}

.cs-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b4c37;
}

.cs-lead { color: var(--ink); font-weight: 600; }

.cs-cta-line { margin-top: 28px; font-size: 1rem; color: var(--ink); }

.cs-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 14px;
}

.cf-turnstile {
  max-width: 100%;
  overflow: hidden;
  flex-basis: 100%;
}

.cs-form input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
.cs-form input::placeholder { color: #9a9a86; }
.cs-form input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }

.cs-form button {
  flex: 0 0 auto;
  padding: 13px 34px;
  border: none;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cs-form button:hover { background: #1c7ba3; }
.cs-form button:disabled { opacity: 0.7; cursor: default; }

.cs-form input.cs-hp {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cs-statusEl {
  min-height: 1.2em;
  font-size: 0.9rem;
  margin: 4px 0 0;
}
.cs-statusEl-ok { color: var(--green); font-weight: 600; }
.cs-statusEl-error { color: #c0392b; font-weight: 600; }

@media (max-width: 480px) {
  .cs-heading { font-size: 1.7rem; letter-spacing: 0.35em; text-indent: 0.35em; }
  .cs-form { flex-direction: column; }
  .cs-form input, .cs-form button { flex: 1 1 auto; width: 100%; }
}
