/* ==========================================================================
   Ingressible Consultation Intake
   Multi-stage guided consultation with AI-assisted scoping.
   ========================================================================== */

/* ---------- Intake shell ---------- */
.intake-root { padding: var(--space-5) 0 var(--space-6); min-height: 60vh; }
.intake-noscript { padding: var(--space-5) 0; }
.intake-noscript h1 { margin-bottom: var(--space-2); }

/* ---------- Progress bar ---------- */
.intake-progress {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  margin-bottom: var(--space-4);
}
.intake-progress__inner {
  display: flex; align-items: center; gap: 0.75rem;
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--space-1);
}
.intake-progress__label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 500;
  color: var(--text-soft); white-space: nowrap;
  min-width: 5rem;
}
.intake-progress__bar {
  flex: 1; height: 4px; background: var(--mist);
  border-radius: 2px; overflow: hidden;
}
.intake-progress__fill {
  height: 100%; background: var(--berry);
  border-radius: 2px; transition: width 0.4s var(--ease);
  width: 0%;
}
.intake-progress__step {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  color: var(--plum); white-space: nowrap;
}

/* ---------- Stage container ---------- */
.intake-stage {
  max-width: 780px; margin: 0 auto;
  padding: 0 var(--space-1);
  animation: intake-fade-in 0.35s var(--ease) both;
}
@keyframes intake-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
html[data-motion="reduced"] .intake-stage { animation: none; }

/* ---------- Welcome stage ---------- */
.intake-welcome {
  text-align: center; padding: var(--space-4) 0 var(--space-3);
}
.intake-welcome__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: var(--space-1);
}
.intake-welcome__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-xl); font-style: italic;
  color: var(--text-soft); margin-bottom: var(--space-3);
}
.intake-welcome h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-3xl); font-weight: 600;
  line-height: 1.15; color: var(--heading);
  margin-bottom: var(--space-2);
  max-width: 16ch; margin-left: auto; margin-right: auto;
}
.intake-welcome__desc {
  font-size: var(--text-md); color: var(--text-soft);
  max-width: 52ch; margin: 0 auto var(--space-1);
  line-height: 1.65;
}
.intake-welcome__notes {
  font-size: var(--text-sm); color: var(--text-soft);
  max-width: 48ch; margin: 0 auto var(--space-3);
  line-height: 1.6;
}
.intake-welcome__notes li {
  margin-bottom: 0.35rem; list-style: none;
  padding-left: 1.2rem; position: relative;
}
.intake-welcome__notes li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush);
}

/* ---------- Stage headings ---------- */
.intake-stage__header { margin-bottom: var(--space-3); }
.intake-stage__eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 0.4rem;
}
.intake-stage__header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-2xl); font-weight: 600;
  line-height: 1.2; color: var(--heading);
  margin-bottom: 0.5rem;
}
.intake-stage__header p {
  font-size: var(--text-md); color: var(--text-soft);
  max-width: 52ch; line-height: 1.6;
}

/* ---------- Form fields ---------- */
.intake-field { margin-bottom: var(--space-2); }
.intake-field--half {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2);
}
.intake-field label,
.intake-field .intake-label {
  display: block; font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--plum); margin-bottom: 0.35rem;
}
.intake-field label .intake-required {
  color: var(--berry); margin-left: 0.15em;
}
.intake-field label .intake-optional {
  color: var(--text-soft); font-weight: 400; margin-left: 0.3em;
  font-size: var(--text-xs);
}
.intake-field input[type="text"],
.intake-field input[type="email"],
.intake-field input[type="url"],
.intake-field select,
.intake-field textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(145, 61, 102, 0.15);
}
.intake-field input[aria-invalid="true"],
.intake-field select[aria-invalid="true"],
.intake-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
}
.intake-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.intake-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A1F32' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
  padding-right: 2.2rem;
}
.intake-field .intake-hint {
  font-size: var(--text-xs); color: var(--text-soft);
  margin-top: 0.25rem; line-height: 1.5;
}
.intake-field .intake-error {
  font-size: var(--text-xs); color: #c0392b;
  margin-top: 0.25rem; display: none;
}
.intake-field--error .intake-error { display: block; }
.intake-field--error input,
.intake-field--error select,
.intake-field--error textarea { border-color: #c0392b; }

/* ---------- Error summary ---------- */
.intake-error-summary {
  background: #fdf2f2; border: 2px solid #c0392b;
  border-left-width: 6px;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin-bottom: var(--space-2);
}
.intake-error-summary h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 700;
  color: #922b21; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.intake-error-summary h3::before {
  content: "!"; display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #c0392b; color: #fff;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.intake-error-summary ul { list-style: none; padding: 0; margin: 0; }
.intake-error-summary li { margin-bottom: 0.5rem; }
.intake-error-summary li:last-child { margin-bottom: 0; }
.intake-error-summary a {
  font-size: var(--text-sm); color: #922b21;
  text-decoration: underline; text-underline-offset: 2px;
  line-height: 1.55; display: block;
  padding: 0.25rem; border-radius: 4px;
}
.intake-error-summary a:hover { color: #641e16; background: rgba(192, 57, 43, 0.06); }
.intake-error-summary a:focus-visible {
  outline: 3px solid #c0392b; outline-offset: 2px;
}
.intake-error-summary a strong { font-weight: 700; }
.intake-error-summary a span { font-weight: 400; }

/* ---------- Inline field errors ---------- */
.intake-inline-error {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: var(--text-xs); color: #922b21;
  margin-top: 0.4rem; line-height: 1.5;
  background: #fdf2f2; border-left: 3px solid #c0392b;
  padding: 0.45rem 0.65rem; border-radius: 0 6px 6px 0;
}
.intake-inline-error__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: #c0392b; color: #fff;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
  margin-top: 0.1rem;
}
.intake-field--error input,
.intake-field--error select,
.intake-field--error textarea {
  border-color: #c0392b !important;
  border-width: 2px;
  background-color: #fef9f9;
}
.intake-field--error input:focus,
.intake-field--error select:focus,
.intake-field--error textarea:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
  outline: none;
}
.intake-field--error .service-card[aria-pressed="false"] {
  border-style: dashed; border-color: #c0392b;
}

/* ---------- Service cards (multi-select) ---------- */
.service-groups { margin-bottom: var(--space-2); }
.service-group { margin-bottom: var(--space-2); }
.service-group__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}
.service-card {
  position: relative; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  text-align: left; width: 100%;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--plum); line-height: 1.4;
}
.service-card:hover {
  border-color: var(--mauve); background: var(--ivory);
}
.service-card:focus-visible {
  outline: 3px solid var(--berry); outline-offset: 2px;
}
.service-card[aria-pressed="true"] {
  border-color: var(--berry); background: rgba(145, 61, 102, 0.06);
  box-shadow: 0 0 0 1px var(--berry);
}
.service-card[aria-pressed="true"]::after {
  content: ""; position: absolute; top: 0.55rem; right: 0.65rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--berry);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.service-card__desc {
  display: block; font-size: var(--text-xs);
  font-weight: 400; color: var(--text-soft);
  margin-top: 0.25rem; line-height: 1.45;
}
.service-actions {
  display: flex; gap: 0.75rem; margin-top: 0.75rem;
  padding-top: 0.65rem; border-top: 1px solid var(--line);
}
.service-actions button {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 500;
  color: var(--berry); background: none; border: none;
  cursor: pointer; padding: 0.2rem 0;
  text-decoration: underline; text-underline-offset: 2px;
}
.service-actions button:hover { color: var(--plum); }
.service-actions button:focus-visible {
  outline: 2px solid var(--berry); outline-offset: 2px;
}

/* ---------- Checkbox / radio groups ---------- */
.intake-check-group { margin-bottom: var(--space-2); }
.intake-check-group__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--plum); margin-bottom: 0.5rem;
}
.intake-check-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.45rem 0; cursor: pointer;
}
.intake-check-item input[type="checkbox"],
.intake-check-item input[type="radio"] {
  width: 18px; height: 18px; margin-top: 0.1rem;
  accent-color: var(--berry); cursor: pointer; flex-shrink: 0;
}
.intake-check-item label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); color: var(--text);
  cursor: pointer; line-height: 1.5;
}

/* ---------- Radio card group ---------- */
.intake-radio-group { margin-bottom: var(--space-2); }
.intake-radio-card {
  display: block; width: 100%; text-align: left;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  margin-bottom: 0.5rem; cursor: pointer;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); color: var(--plum);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.intake-radio-card:hover { border-color: var(--mauve); }
.intake-radio-card:focus-visible {
  outline: 3px solid var(--berry); outline-offset: 2px;
}
.intake-radio-card[aria-checked="true"] {
  border-color: var(--berry); background: rgba(145, 61, 102, 0.06);
  box-shadow: 0 0 0 1px var(--berry);
}
.intake-radio-card input { position: absolute; opacity: 0; pointer-events: none; }

/* ---------- Scope sections ---------- */
.scope-section {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-2);
  margin-bottom: var(--space-2);
}
.scope-section__head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--space-1);
}
.scope-section__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lavender); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.scope-section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-lg); font-weight: 600;
  color: var(--heading);
}
.scope-section__desc {
  font-size: var(--text-sm); color: var(--text-soft);
  margin-bottom: var(--space-1); line-height: 1.6;
}
.scope-divider {
  height: 1px; background: var(--line);
  margin: var(--space-1) 0;
}

/* ---------- File upload ---------- */
.file-upload-zone {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: var(--space-2); text-align: center;
  cursor: pointer; transition: border-color var(--dur) var(--ease),
                              background var(--dur) var(--ease);
}
.file-upload-zone:hover,
.file-upload-zone:focus-within {
  border-color: var(--mauve); background: rgba(181, 132, 169, 0.04);
}
.file-upload-zone__icon {
  font-size: 2rem; margin-bottom: 0.5rem; color: var(--mauve);
}
.file-upload-zone__text {
  font-size: var(--text-sm); color: var(--text-soft);
}
.file-upload-zone__text strong { color: var(--plum); }
.file-upload-zone input[type="file"] {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.file-list { margin-top: var(--space-1); }
.file-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}
.file-item__name { flex: 1; color: var(--plum); word-break: break-all; }
.file-item__size { color: var(--text-soft); font-size: var(--text-xs); white-space: nowrap; }
.file-item__remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-soft); font-size: var(--text-sm);
  padding: 0.2rem; border-radius: 4px;
}
.file-item__remove:hover { color: #c0392b; }
.file-item__remove:focus-visible {
  outline: 2px solid var(--berry); outline-offset: 2px;
}

/* ---------- AI Assistant panel ---------- */
.ai-panel {
  background: linear-gradient(135deg, rgba(221, 208, 224, 0.2), rgba(240, 184, 202, 0.1));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-2); margin-top: var(--space-2);
}
.ai-panel__head {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: var(--space-1);
}
.ai-panel__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orchid); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
}
.ai-panel__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--plum);
}
.ai-panel__body {
  font-size: var(--text-sm); color: var(--text-soft);
  line-height: 1.65;
}
.ai-panel__body p { margin-bottom: 0.5rem; }
.ai-panel__suggestion {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.ai-panel__suggestion p {
  font-size: var(--text-sm); color: var(--plum);
  margin-bottom: 0.6rem;
}
.ai-panel__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ai-panel__actions button {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 20px;
  cursor: pointer; transition: all var(--dur) var(--ease);
}
.ai-btn--yes {
  background: var(--berry); color: white; border: 1.5px solid var(--berry);
}
.ai-btn--yes:hover { background: var(--plum); border-color: var(--plum); }
.ai-btn--no {
  background: transparent; color: var(--plum);
  border: 1.5px solid var(--line);
}
.ai-btn--no:hover { border-color: var(--plum); }
.ai-btn--discuss {
  background: transparent; color: var(--orchid);
  border: 1.5px solid var(--mauve);
}
.ai-btn--discuss:hover { background: rgba(122, 61, 114, 0.06); }
.ai-panel__actions button:focus-visible {
  outline: 3px solid var(--berry); outline-offset: 2px;
}

/* ---------- Review screen ---------- */
.review-section {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.review-section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.6rem;
}
.review-section__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--plum);
}
.review-edit-btn {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 500;
  color: var(--berry); background: none; border: none;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 2px;
}
.review-edit-btn:hover { color: var(--plum); }
.review-edit-btn:focus-visible {
  outline: 2px solid var(--berry); outline-offset: 2px;
}
.review-section__body {
  font-size: var(--text-sm); color: var(--text-soft);
  line-height: 1.6;
}
.review-section__body dt {
  font-weight: 500; color: var(--plum);
  margin-top: 0.4rem;
}
.review-section__body dd { margin: 0 0 0.3rem 0; }
.review-services {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.review-service-tag {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 500;
  background: var(--lavender); color: var(--plum);
  padding: 0.25rem 0.65rem; border-radius: 12px;
}

/* ---------- Experience map visual ---------- */
.experience-map {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-2);
  margin: var(--space-2) 0;
}
.experience-map__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: var(--space-1);
  text-align: center;
}
.experience-map__flow {
  display: flex; flex-direction: column; gap: 0;
  align-items: center;
}
.experience-map__step {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%; max-width: 400px;
}
.experience-map__node {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; background: var(--lavender);
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  color: var(--plum);
}
.experience-map__label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--plum);
}
.experience-map__platforms {
  font-size: var(--text-xs); color: var(--text-soft);
}
.experience-map__arrow {
  width: 2px; height: 24px; background: var(--mauve);
  margin-left: 19px;
}

/* ---------- Navigation buttons ---------- */
.intake-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line);
}
.intake-nav--center { justify-content: center; }
.intake-nav__back {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-soft); background: none; border: none;
  cursor: pointer; padding: 0.5rem 0;
  display: flex; align-items: center; gap: 0.3rem;
}
.intake-nav__back:hover { color: var(--plum); }
.intake-nav__back:focus-visible {
  outline: 2px solid var(--berry); outline-offset: 2px;
}
.intake-nav__back svg { width: 16px; height: 16px; }
.btn--primary {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  background: var(--plum); color: white;
  border: none; border-radius: var(--radius);
  padding: 0.75rem 1.75rem; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.btn--primary:hover { background: var(--aubergine); }
.btn--primary:focus-visible {
  outline: 3px solid var(--berry); outline-offset: 2px;
}
.btn--primary:disabled {
  opacity: 0.5; cursor: not-allowed;
}
.btn--secondary {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  background: transparent; color: var(--plum);
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0.65rem 1.5rem; cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.btn--secondary:hover { border-color: var(--plum); }
.btn--secondary:focus-visible {
  outline: 3px solid var(--berry); outline-offset: 2px;
}

/* ---------- Consent ---------- */
.intake-consent {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  margin-bottom: var(--space-2);
}
.intake-consent label {
  font-size: var(--text-sm); color: var(--plum);
  line-height: 1.6; cursor: pointer;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.intake-consent input {
  width: 18px; height: 18px; margin-top: 0.15rem;
  accent-color: var(--berry); flex-shrink: 0;
}

/* ---------- Success state ---------- */
.intake-success {
  text-align: center; padding: var(--space-4) 0;
  animation: intake-fade-in 0.5s var(--ease) both;
}
.intake-success__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--petal));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-2); font-size: 2rem;
}
.intake-success h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--text-2xl); font-weight: 600;
  color: var(--heading); margin-bottom: var(--space-1);
}
.intake-success__id {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); color: var(--text-soft);
  margin-bottom: var(--space-2);
}
.intake-success__details {
  max-width: 52ch; margin: 0 auto var(--space-2);
  text-align: left; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.intake-success__details dt {
  font-weight: 500; color: var(--plum); font-size: var(--text-sm);
  margin-top: 0.4rem;
}
.intake-success__details dd {
  font-size: var(--text-sm); color: var(--text-soft);
  margin-bottom: 0.25rem;
}
.intake-success__next {
  max-width: 48ch; margin: 0 auto var(--space-2);
  font-size: var(--text-sm); color: var(--text-soft);
  line-height: 1.65; text-align: left;
}
.intake-success__next ol {
  padding-left: 1.2rem; margin-top: 0.5rem;
}
.intake-success__next li { margin-bottom: 0.35rem; }
.intake-success__booking {
  margin-top: var(--space-2);
}

/* ---------- Misc ---------- */
.intake-section-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 0.6rem;
  margin-top: var(--space-1);
}
.intake-divider {
  height: 1px; background: var(--line);
  margin: var(--space-1) 0;
}
.intake-status {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--text-xs); color: var(--text-soft);
  padding: 0.4rem 0.75rem; border-radius: 8px;
  background: var(--mist); display: inline-block;
  margin-top: 0.5rem;
}
.intake-status--success { background: #d4edda; color: #155724; }
.intake-status--error { background: #f8d7da; color: #721c24; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .intake-stage { padding: 0 0.5rem; }
  .intake-field--half { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .intake-welcome h1 { font-size: var(--text-2xl); }
  .experience-map__step { max-width: 100%; }
  .intake-nav { flex-direction: column-reverse; gap: 0.75rem; }
  .intake-nav .btn--primary { width: 100%; text-align: center; }
  .intake-nav__back { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .intake-progress__label { display: none; }
  .scope-section { padding: var(--space-1); }
}
