:root {
  --ink: #111111;
  --ink-soft: rgba(17, 17, 17, 0.64);
  --paper: #ffffff;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.18);
  --panel: #ffffff;
  --accent: #171717;
  --success: #175f4a;
  --error: #9c2e1e;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Georgia", serif;
  color: var(--ink);
  background: var(--paper);
}

.page-shell {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0 3rem;
}

.intake {
  position: relative;
  backdrop-filter: blur(14px);
  animation: rise 520ms ease-out both;
}

.intake {
  padding: 0 0 3rem;
}

h1,
p {
  margin: 0;
}

.wordmark {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.request-form {
  margin-top: 1.5rem;
}

.request-label {
  display: block;
}

textarea,
.submit-button {
  font: inherit;
}

textarea {
  width: 100%;
  min-height: 15rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.45;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

textarea::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 0 4px rgba(17, 17, 17, 0.05);
  transform: translateY(-1px);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
}

.status-message {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.submit-button {
  width: 3.5rem;
  min-height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #f7f2e8;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.status-message {
  min-height: 1.5rem;
  margin-top: 0.9rem;
}

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

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

.honeypot,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1.25rem, 920px);
    padding-top: 4rem;
  }

  textarea {
    min-height: 12rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
  }
}
