/* ─── New Client Intake Form ─────────────────────────────── */

.intake-wrap {
  padding-block: var(--space-lg);
  display: flex;
  justify-content: center;
}

.form-wrap {
  background: var(--clr-surface);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.form-header {
  padding: 24px 24px 16px;
  border-bottom: 0.5px solid #E8E6DF;
}

.form-brand {
  font-family: var(--ff-headline);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clr-accent);
  margin-bottom: 4px;
}

.form-title {
  font-size: 14px;
  color: #888780;
  font-family: var(--ff-body);
}

.progress-bar-bg {
  height: 3px;
  background: #E8E6DF;
  margin-top: 16px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.form-body { padding: 0 24px; }

.step { display: none; }
.step.active { display: block; }

.step-header { padding: 24px 0 4px; }

.step-num {
  font-size: 11px;
  color: var(--clr-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--ff-body);
}

.step-question {
  font-family: var(--ff-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C2C2A;
  line-height: 1.4;
  margin-bottom: 6px;
}

.step-sub {
  font-size: 14px;
  color: #888780;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: var(--ff-body);
}

.field-group { margin-bottom: 16px; }

.field-label {
  font-size: 13px;
  color: #5F5E5A;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
  font-family: var(--ff-body);
}

.field-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #E8E6DF;
  background: #F7F5F0;
  color: #2C2C2A;
  font-size: 16px;
  font-family: var(--ff-body);
  transition: border-color 0.15s;
}
.field-input:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: #fff;
}

.field-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #E8E6DF;
  background: #F7F5F0;
  color: #2C2C2A;
  font-size: 16px;
  font-family: var(--ff-body);
  min-height: 100px;
  resize: none;
  transition: border-color 0.15s;
}
.field-textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: #fff;
}

.referral-input { display: none; margin-top: 10px; }
.referral-input.visible { display: block; }

.option-grid { display: flex; flex-direction: column; gap: 10px; }

.option-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #E8E6DF;
  background: #fff;
  color: #2C2C2A;
  font-size: 15px;
  font-family: var(--ff-body);
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.option-btn:hover { border-color: var(--clr-accent); background: #FFF3EE; }
.option-btn.selected {
  border-color: var(--clr-accent);
  background: #FFF3EE;
  color: var(--clr-accent);
  font-weight: 500;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #D3D1C7;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.option-btn.selected .check {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.check-btn .check { border-radius: 4px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.henna-warning {
  display: none;
  background: #FAEEDA;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 14px;
  color: #854F0B;
  line-height: 1.5;
  font-family: var(--ff-body);
}
.henna-warning.visible { display: block; }

.nav-row { display: flex; gap: 10px; margin: 24px 0 32px; }

.btn-back {
  flex: 0 0 auto;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid #E8E6DF;
  background: transparent;
  color: #888780;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--ff-body);
}
.btn-back:hover { background: #F7F5F0; }

.btn-next {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--clr-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ff-body);
}
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-next:not(:disabled):hover { background: var(--clr-accent-dk); }

.upload-zone {
  border: 1px dashed #D3D1C7;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: #F7F5F0;
  transition: border-color 0.15s;
}
.upload-zone:hover { border-color: var(--clr-accent); }
.upload-icon { font-size: 28px; margin-bottom: 8px; }
.upload-text { font-size: 14px; color: #5F5E5A; }
.upload-sub { font-size: 12px; color: #888780; margin-top: 4px; }

.upload-preview { display: none; margin-top: 10px; }
.upload-preview img { width: 100%; border-radius: 10px; max-height: 200px; object-fit: cover; }

.photo-label {
  font-size: 13px;
  font-weight: 500;
  color: #5F5E5A;
  margin-bottom: 8px;
  display: block;
  font-family: var(--ff-body);
}

.section-divider { border: none; border-top: 0.5px solid #E8E6DF; margin: 20px 0; }

.cut-styling { display: none; }
.cut-styling.visible { display: flex; }

/* Stylist selection cards */
.stylist-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }

.stylist-card {
  width: 100%;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1.5px solid #E8E6DF;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stylist-card:hover { border-color: var(--clr-accent); background: #FFF3EE; }
.stylist-card.selected { border-color: var(--clr-accent); background: #FFF3EE; }

.stylist-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E8E6DF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #888780;
  font-family: var(--ff-headline);
}
.stylist-card.selected .stylist-avatar { background: var(--clr-accent); color: #fff; }

.stylist-info { flex: 1; }

.stylist-name {
  font-size: 16px;
  font-weight: 600;
  color: #2C2C2A;
  margin-bottom: 3px;
  font-family: var(--ff-body);
}
.stylist-specialty {
  font-size: 13px;
  color: #888780;
  line-height: 1.4;
}
.stylist-card.selected .stylist-name { color: var(--clr-accent); }

/* Success screens */
.success-view { display: none; padding: 48px 24px; text-align: center; }
.success-icon { font-size: 52px; margin-bottom: 16px; }

.success-title {
  font-family: var(--ff-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C2C2A;
  margin-bottom: 10px;
}

.success-sub {
  font-size: 15px;
  color: #5F5E5A;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--ff-body);
}

.success-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--ff-body);
  text-decoration: none;
}
.success-btn:hover { background: var(--clr-accent-dk); }

.success-note {
  margin-top: 16px;
  font-size: 13px;
  color: #888780;
  font-family: var(--ff-body);
}
