/* ==========================================================================
   Contact page — unique page-specific components.
   ========================================================================== */
.crumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); padding-top: 1.5rem; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--white); text-decoration: none; }
.crumb span[aria-current] { color: var(--orange); }

/* ---- Hero ---- */
.contact-hero { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem); text-align: center; }
.contact-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 20ch; margin-inline: auto; }
.contact-hero__lede { margin-top: 1.25rem; font-size: 1.1rem; color: var(--muted); max-width: 52ch; margin-inline: auto; }
.contact-hero__note { margin-top: 1.25rem; font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); }

/* ---- Conversational wizard ---- */
.wizard { max-width: 640px; margin-inline: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-solid); padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; }
.wizard__progress { display: flex; gap: 0.4rem; margin-bottom: 2.25rem; }
.wizard__progress span { height: 4px; flex: 1; border-radius: 2px; background: var(--border); transition: background 0.3s ease; }
.wizard__progress span.is-done, .wizard__progress span.is-active { background: var(--orange); }

.wizard__step { display: none; animation: wizardIn 0.4s ease; }
.wizard__step.is-active { display: block; }
@keyframes wizardIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wizard__step { animation: none; } }

.wizard__eyebrow { font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }
.wizard__question { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; margin-top: 0.6rem; margin-bottom: 1.75rem; }

.wizard__choices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.wizard__choice { all: unset; cursor: pointer; padding: 1.1rem 1.2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 0.95rem; transition: border-color 0.2s ease, background 0.2s ease; }
.wizard__choice.is-selected { border-color: var(--orange); background: rgba(250,184,44,0.08); }
@media (max-width: 560px) { .wizard__choices { grid-template-columns: 1fr; } }

.wizard__field { width: 100%; padding: 1rem 1.1rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--bg); color: var(--white); font-size: 1.05rem; font-family: var(--font-sans); }
.wizard__field:focus { outline: none; border-color: var(--orange); }
textarea.wizard__field { min-height: 130px; resize: vertical; }

.wizard__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.wizard__back { all: unset; cursor: pointer; color: var(--muted); font-family: var(--font-mono); font-size: 0.85rem; }
.wizard__back:hover { color: var(--white); }
.wizard__back[hidden] { visibility: hidden; }
.wizard__hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; }

.wizard__review { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.75rem; }
.wizard__review-row { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.wizard__review-row dt { color: var(--muted); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.wizard__review-row dd { color: var(--white); text-align: right; max-width: 60%; }

.wizard__done { text-align: center; padding-block: 1rem; }
.wizard__done svg { width: 52px; height: 52px; color: var(--success); margin-bottom: 1.25rem; }
.wizard__done h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.wizard__done p { color: var(--muted); }

.other-svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.other-svc a { display: block; padding: 1.25rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); transition: border-color 0.2s ease, transform 0.2s ease; }
.other-svc a:hover { border-color: var(--border-strong); transform: translateY(-3px); text-decoration: none; }
.other-svc strong { display: block; color: var(--white); font-size: 0.98rem; margin-bottom: 0.25rem; }
.other-svc span { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 780px) { .other-svc { grid-template-columns: 1fr; } }
