@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --navy: #0A1628;
    --navy-soft: #122036;
    --gold: #C9A84C;
    --gold-light: #E8CE85;
    --ivory: #EDE9DF;
    --text: #2A2E35;
    --muted: #5C6470;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background-color: #FBFAF7;
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.hero {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: .05em;
    color: var(--navy);
    max-width: 800px;
    margin: auto;
}

p {
    font-size: 20px;
    color: var(--muted);
    max-width: 700px;
    margin: 30px auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--navy);
    color: var(--gold-light);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--gold);
    font-family: 'Cinzel', serif;
    letter-spacing: .05em;
    font-size: 16px;
    transition: background .2s ease, color .2s ease;
}

.btn:hover {
    background: var(--navy-soft);
    color: var(--gold);
}

input,
select {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Source Serif 4', Georgia, serif;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    background: var(--navy);
    padding: 20px 40px;
    border-bottom: 4px solid var(--gold);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .18em;
}

.recommendation {
    background: #fff;
    padding: 25px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.08);
}

.recommendation h3 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--navy);
}

label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text);
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.challenge-group {
    width: 300px;
    text-align: left;
}

.challenge-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

#scoreDisplay {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: .1em;
    color: var(--gold);
    margin: 24px auto 8px;
}

.tier-badge {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--navy);
    text-transform: uppercase;
    margin: 0 auto 20px;
}
