@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

.tviah-quiz {
    --ivory:     #F8F7F3;
    --charcoal:  #333333;
    --gold:      #C8A951;
    --gold-tint: #FBF5E6;
    --gold-dark: #A8893A;
    --mid:       #888880;
    --border:    #E2E0D8;
    --white:     #FFFFFF;
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 80px;
    line-height: 1.6;
}

/* ── SHARED ── */
.tviah-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.tviah-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
    opacity: 0.5;
}
.tviah-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 48px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.tviah-btn-primary:hover  { background: var(--gold-dark); }
.tviah-btn-primary:disabled { background: #ccc; cursor: not-allowed; }
.tviah-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.tviah-btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── INTRO ── */
#tviah-intro {
    text-align: center;
    padding: 60px 24px 40px;
}
.tviah-intro-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 6vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}
.tviah-intro-headline em { font-style: italic; color: var(--gold); }
.tviah-intro-body {
    font-size: 16px;
    line-height: 1.75;
    color: #555550;
    max-width: 520px;
    margin: 0 auto 14px;
}
.tviah-intro-details {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}

/* ── PROGRESS ── */
.tviah-progress-wrap { padding: 32px 24px 0; }
.tviah-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.tviah-progress-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); }
.tviah-progress-count { font-size: 11px; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.tviah-progress-track { width: 100%; height: 2px; background: var(--border); }
.tviah-progress-fill  { height: 100%; background: var(--gold); transition: width 0.4s ease; }

/* ── QUESTION ── */
.tviah-question-wrap { padding: 40px 24px 60px; }
.tviah-q-number {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.tviah-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 36px;
}
.tviah-options {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tviah-option {
    padding: 18px 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.18s, background 0.18s;
}
.tviah-option:hover  { border-color: var(--gold); background: var(--gold-tint); }
.tviah-option.selected { border-color: var(--gold); background: var(--gold-tint); font-weight: 500; }
.tviah-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tviah-btn-back {
    background: none;
    border: none;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    padding: 8px 0;
}
.tviah-btn-back:hover    { color: var(--charcoal); }
.tviah-btn-back:disabled { opacity: 0; cursor: default; }

/* ── GATE ── */
#tviah-gate { padding: 60px 24px; text-align: center; }
.tviah-gate-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}
.tviah-gate-body { font-size: 15px; line-height: 1.7; color: #555550; max-width: 440px; margin: 0 auto 32px; }
#tviah-gate-form { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto 14px; }
.tviah-input {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
}
.tviah-input:focus { border-color: var(--gold); }
.tviah-input::placeholder { color: var(--mid); }
.tviah-fine-print { font-size: 12px; color: var(--mid); line-height: 1.6; max-width: 360px; margin: 0 auto; }
.tviah-error { color: #c0392b; font-size: 13px; margin-top: 8px; }

/* ── RESULT ── */
.tviah-result-wrap { padding: 60px 24px 40px; }
.tviah-result-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    text-align: center;
    margin-bottom: 12px;
}
.tviah-result-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0;
}

/* Score bars */
.tviah-score-section { background: var(--white); border: 1px solid var(--border); padding: 28px; margin-bottom: 44px; }
.tviah-score-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 20px; }
.tviah-score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.tviah-score-row:last-child { margin-bottom: 0; }
.tviah-score-name { font-size: 13px; color: var(--charcoal); width: 90px; flex-shrink: 0; }
.tviah-score-track { flex: 1; height: 4px; background: var(--border); }
.tviah-score-bar { height: 100%; background: var(--gold); opacity: 0.25; }
.tviah-score-bar.primary { opacity: 1; }
.tviah-score-pct { font-size: 12px; color: var(--mid); width: 36px; text-align: right; flex-shrink: 0; }

/* Result body */
.tviah-result-section-label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tviah-result-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}
.tviah-result-greeting { font-weight: 500; margin-bottom: 16px; font-size: 16px; }
.tviah-result-para { font-size: 16px; line-height: 1.8; color: #444440; margin-bottom: 16px; }
.tviah-result-truth {
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    background: var(--gold-tint);
    margin: 32px 0 48px;
}
.tviah-result-truth p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.55;
    margin: 0;
}

/* CTA block */
.tviah-result-cta {
    background: var(--charcoal);
    padding: 40px;
    text-align: center;
}
.tviah-cta-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tviah-cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.tviah-cta-body { font-size: 14px; color: #aaaaaa; line-height: 1.6; max-width: 380px; margin: 0 auto 28px; }

/* ── MOBILE ── */
@media (max-width: 480px) {
    .tviah-intro-headline { font-size: 32px; }
    .tviah-result-cta { padding: 32px 20px; }
    .tviah-score-name { width: 70px; font-size: 12px; }
    .tviah-btn-primary { padding: 14px 32px; }
}
