:root {
  color-scheme: light;
  --forest: #163b34;
  --forest-deep: #0c2b26;
  --mint: #d8eadf;
  --cream: #f3efe5;
  --paper: #fffdf8;
  --ink: #16221f;
  --muted: #5f6c68;
  --line: #d9ddd7;
  --accent: #ef7d4b;
  --accent-dark: #c95227;
  --danger: #a32920;
  --success: #276f4b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 18%, rgba(216, 234, 223, 0.18), transparent 26%),
    var(--forest);
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding: 56px 0;
}

.intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--cream);
  border-radius: 10px 10px 10px 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.intro-copy {
  max-width: 570px;
  margin: auto 0;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
  line-height: 0.96;
}

.lede {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
}

.response-note p {
  margin: 0;
}

.response-note strong {
  color: var(--paper);
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: #86d09e;
  border: 2px solid rgba(134, 208, 158, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(134, 208, 158, 0.12);
}

.form-panel {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  border-radius: 28px 28px 28px 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.form-heading h2 {
  margin-bottom: 32px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

label,
.label-row span {
  display: block;
  margin-bottom: 8px;
  color: #35433f;
  font-size: 0.8rem;
  font-weight: 750;
}

.label-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.label-row span {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #faf9f4;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 142px;
  padding: 13px;
  line-height: 1.55;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(22, 59, 52, 0.11);
}

.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile {
  min-height: 65px;
  margin: 4px 0 18px;
}

.form-status {
  min-height: 22px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 650;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

button[type="submit"] {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #fff;
  background: var(--forest);
  border: 0;
  border-radius: 10px 10px 10px 3px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 150ms ease,
    background 150ms ease,
    opacity 150ms ease;
}

button[type="submit"]:not(:disabled):hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

button[type="submit"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .shell {
    width: min(680px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 0 48px;
  }

  .intro {
    min-height: auto;
  }

  .intro-copy {
    padding: 72px 0 42px;
  }

  h1 {
    font-size: clamp(3.25rem, 12vw, 5.6rem);
  }

  .form-panel {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 20px, 680px);
    padding-top: 22px;
  }

  .intro-copy {
    padding: 54px 0 30px;
  }

  .response-note {
    align-items: flex-start;
  }

  .form-panel {
    padding: 28px 20px;
    border-radius: 20px 20px 20px 5px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
