/* Claude: customer-wizard project. Minimal layout for /strata/quote (and
   future /commercial/quote) — one question at a time, with Previous/Next
   bar + thin progress bar at the bottom. Uses the existing OHD design
   tokens from site.css (--graphite, --red, --concrete, etc.). */

.wizard-page {
    padding: 48px 0 96px;
    min-height: 80vh;
    background: var(--concrete);
}

.wizard-shell {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}

.wizard-header {
    padding: 24px 32px 0;
}

.wizard-body {
    padding: 16px 32px 32px;
    flex: 1 1 auto;
}

.wizard-footer {
    border-top: 1px solid var(--line);
    background: var(--concrete);
    padding: 16px 32px 0;
    position: relative;
}

.wizard-footer-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.wizard-empty {
    padding: 48px 32px;
    text-align: center;
    color: var(--steel);
}

/* Questions */

.wizard-question {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wizard-question-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--graphite);
    margin: 0;
}

.wizard-question-text {
    color: var(--graphite);
    margin: 0;
    line-height: 1.55;
}

.wizard-question-prompt {
    font-size: 20px;
    font-weight: 600;
    color: var(--graphite);
    margin: 0 0 8px;
    line-height: 1.35;
}

.wizard-question-unsupported {
    color: var(--red);
    font-size: 14px;
}

/* Answer buttons (Check / Custom) */

.wizard-answer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wizard-answer-button {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--graphite);
    transition: border-color 120ms ease, background-color 120ms ease;
}

.wizard-answer-button:hover {
    border-color: var(--steel-2);
}

.wizard-answer-button.is-selected {
    border-color: var(--red);
    background: rgba(217, 55, 42, 0.04);
}

.wizard-answer-status {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--concrete);
    color: var(--steel);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.wizard-answer-status-pass     { background: #DCFCE7; color: #166534; }
.wizard-answer-status-marginal { background: #FEF3C7; color: #92400E; }
.wizard-answer-status-fail     { background: #FEE2E2; color: #991B1B; }
.wizard-answer-status-na       { background: var(--concrete); color: var(--steel); }

.wizard-answer-text {
    flex: 1 1 auto;
}

.wizard-answer-check {
    color: var(--red);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Fields (Comment / Address / Contact) */

.wizard-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wizard-field-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wizard-field-input,
.wizard-field-textarea {
    width: 100%;
    font: inherit;
    color: var(--graphite);
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 120ms ease;
}

.wizard-field-input:focus,
.wizard-field-textarea:focus {
    outline: none;
    border-color: var(--red);
}

.wizard-field-textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.45;
}

.wizard-contact-input,
.wizard-address-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wizard-contact-hint {
    font-size: 13px;
    color: var(--red);
    margin: 0;
}

/* Photo upload */

.wizard-photo-upload {
    margin-top: 12px;
    padding: 12px;
    border: 1px dashed var(--line-strong);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.02);
}

.wizard-photo-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: var(--graphite);
}

.wizard-photo-upload-label:hover {
    border-color: var(--steel-2);
}

.wizard-photo-upload-icon { font-size: 16px; }

.wizard-photo-upload-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wizard-photo-upload-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 12px;
    color: var(--steel);
}

.wizard-photo-upload-item.is-uploading {
    color: var(--steel-2);
    font-style: italic;
}

.wizard-photo-upload-error { color: var(--red); }

.wizard-photo-upload-remove {
    border: none;
    background: transparent;
    color: var(--steel);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
}

.wizard-photo-upload-remove:hover { color: var(--red); }

/* Footer buttons */

.wizard-btn {
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 120ms ease, opacity 120ms ease;
}

.wizard-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.wizard-btn-primary {
    background: var(--red);
    color: var(--white);
}

.wizard-btn-primary:hover:not(:disabled) {
    background: var(--red-deep);
}

.wizard-btn-secondary {
    background: var(--white);
    color: var(--graphite);
    border: 1px solid var(--line-strong);
}

.wizard-btn-secondary:hover:not(:disabled) {
    border-color: var(--steel-2);
}

.wizard-error {
    color: var(--red);
    font-size: 14px;
    margin: 0 0 16px;
}

/* Progress bar */

.wizard-progress-bar {
    height: 4px;
    width: 100%;
    background: var(--line);
    margin: 0 -32px;
    width: calc(100% + 64px);
}

.wizard-progress-bar-fill {
    height: 100%;
    background: var(--red);
    transition: width 240ms ease;
}

/* Claude: customer-wizard Phase 2 — AI report streaming surface on
   /thank-you?wizard=1. Lives inside the existing .legal-contact-card-ish
   container; only its inner pieces are scoped here. */

.ai-report-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.ai-report-header h2 {
    color: var(--graphite);
}

.ai-report-text {
    margin-top: 16px;
    line-height: 1.55;
    color: var(--graphite);
    min-height: 80px;
}

.ai-report-text h1,
.ai-report-text h2 {
    font-weight: 700;
    color: var(--graphite);
    margin: 20px 0 8px;
}

.ai-report-text h1 { font-size: 22px; }
.ai-report-text h2 { font-size: 18px; }

.ai-report-text p {
    margin: 0 0 12px;
}

.ai-report-text strong { font-weight: 700; }
.ai-report-text em     { font-style: italic; }

.ai-report-error {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(217, 55, 42, 0.06);
    border: 1px solid var(--red);
    border-radius: 4px;
    color: var(--red);
}

.ai-report-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-report-actions .btn-outline {
    background: var(--white);
    color: var(--graphite);
    border: 1px solid var(--line-strong);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
}
