/* ==============================
   I. TOKENS (Brand Cohesion, Muted)
============================== */

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e5e5e5;
  --accent: #000000;
  --error: #b3261e;

  --max-width: 760px;
}

/* ==============================
   II. BASE
============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.intake {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.intake-shell {
  min-height: 100vh;
  padding: 96px 24px;
}

.intake-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ==============================
   III. TYPOGRAPHY
============================== */

h1 {
  font-family: 'Michroma', sans-serif;
  font-size: 38px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 680px;
}

h2 {
  font-family: 'Michroma', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.subtext {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 40px;
}

.intake-signals {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 48px;
}

.intake-signals li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ==============================
   IV. STEP SYSTEM
============================== */

.step-meta {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.7;
  margin-bottom: 16px;
}

section {
  transition: opacity 150ms ease;
}

/* ==============================
   V. FORM SYSTEM
============================== */

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
select,
textarea {
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #fff;
  transition: border 150ms ease;
}

textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.error {
  font-size: 13px;
  color: var(--error);
  margin-top: 6px;
  min-height: 16px;
}

.char-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  text-align: right;
}

.invalid {
  border-color: var(--error) !important;
}

/* ==============================
   VI. CTA SYSTEM
============================== */

button,
.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  height: 56px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 150ms ease;
}

button:hover {
  opacity: 0.9;
}

.full {
  width: 100%;
}

.form-cta {
  margin-top: 40px;
}

/* ==============================
   VII. DIVIDERS & FOOTNOTE
============================== */

.intake-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.intake-footnote {
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
  margin-top: 48px;
  line-height: 1.6;
}

/* ==============================
   VIII. SUCCESS STATE
============================== */

#success {
  text-align: left;
}

/* ==============================
   IX. MOBILE PRIORITY
============================== */

@media (max-width: 768px) {
  .intake-shell {
    padding: 64px 24px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}