/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .contact-aside { position: static; }
}
.contact-aside-block .mono { color: var(--fg-mute); margin-bottom: 8px; }
.contact-aside-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  display: block;
  transition: color 0.15s;
}
a.contact-aside-value:hover { color: var(--accent); }
.contact-promise {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: var(--radius);
}
.contact-promise p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.55;
}

/* ============================================
   INTAKE FORM
   ============================================ */
.intake {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.intake-inline { padding: 48px; }
@media (max-width: 600px) { .intake, .intake-inline { padding: 24px; } }

.intake-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.intake-step-mono { color: var(--accent); white-space: nowrap; }
.intake-progress {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.intake-progress-bar {
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6);
  transition: width 0.3s ease;
}

.intake-q {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.intake-hint {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 32px;
}

.form-block {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row .form-block { margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--fg-mute);
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}
.form-input::placeholder { color: var(--fg-mute); }
.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* Chips */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg);
  font-size: 14px;
  color: var(--fg-dim);
  transition: all 0.15s;
  cursor: pointer;
}
@media (max-width: 600px) {
  .chip-large { padding: 10px 14px; font-size: 13px; }
}
.chip-large:hover {
  color: var(--fg);
  border-color: var(--fg-dim);
}
.chip-large.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 500;
}
.chip-check {
  font-family: var(--font-mono);
  font-size: 13px;
  width: 16px;
  text-align: center;
  font-weight: 700;
}

.intake-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
@media (max-width: 480px) {
  .intake-footer { gap: 8px; }
  .intake-footer .btn { flex: 1; justify-content: center; padding: 14px 12px; font-size: 12px; }
}

/* Success state */
.intake-success {
  text-align: center;
  padding: 40px 20px;
}
.success-mark {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.2);
}
.intake-success-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.intake-success-meta {
  color: var(--fg-mute);
  font-size: 11px;
}

/* Intake modal */
.intake-modal { padding: 0; }
.intake-modal-head {
  padding: 40px 40px 0;
  background:
    radial-gradient(ellipse at top right, rgba(var(--accent-rgb), 0.08), transparent 60%),
    transparent;
}
.intake-modal .intake {
  border: none;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 600px) { .intake-modal-head { padding: 24px 24px 0; } }
