/* ============================================================
   DÔR & CO — ASSESSMENT LANDING PAGE STYLESHEET
   assessment.css — linked from assessment.html
   ============================================================ */

:root {
    --faithful-night: #324158;
    --founders-ember: #B69057;
    --renewal-tide: #58B4AC;
    --saithful-soil: #635B4B;
    --sanctuary-linen: #EFEDE7;
    --ancestral-hearth: #C6C5BD;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    background: var(--faithful-night);
    color: var(--white);
    overflow-x: hidden;
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark gradient overlay — lightens slightly toward bottom
   so content is always readable without fully losing the photo */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(50, 65, 88, 0.72) 0%,
        rgba(50, 65, 88, 0.68) 50%,
        rgba(50, 65, 88, 0.82) 100%
    );
    z-index: 1;
}

/* ===========================
   NAV
=========================== */
.assessment-nav {
    position: relative;
    z-index: 10;
    padding: 1.75rem 5%;
    display: flex;
    align-items: center;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    /* Logo is gold on black — invert to white for overlay */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--founders-ember);
}

/* ===========================
   HERO CONTENT
=========================== */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 5% 5rem;
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--renewal-tide);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.75rem;
}

h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.hero-body {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    max-width: 580px;
    margin-bottom: 2.5rem;
}

/* ===========================
   STATS ROW
=========================== */
.stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    padding: 1.25rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--founders-ember);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===========================
   WHAT YOU'LL RECEIVE
=========================== */
.receive-block {
    width: 100%;
    max-width: 520px;
    margin-bottom: 2.75rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1.75rem;
    border-radius: 2px;
    backdrop-filter: blur(6px);
}

.receive-heading {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--renewal-tide);
    font-weight: 700;
    margin-bottom: 1rem;
}

.receive-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.receive-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

.receive-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--founders-ember);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ===========================
   CTA BUTTON
=========================== */
.btn-begin {
    display: inline-block;
    background: var(--founders-ember);
    color: var(--white);
    text-decoration: none;
    padding: 1.1rem 2.75rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease;
    margin-bottom: 1.5rem;
}

.btn-begin:hover {
    background: #9a7840;
    transform: translateY(-1px);
}

.hero-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

/* ===========================
   FOOTER
=========================== */
.assessment-footer {
    position: relative;
    z-index: 10;
    background: rgba(30, 42, 58, 0.95);
    padding: 1.25rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--founders-ember);
}

.footer-links {
    display: flex;
    gap: 1.75rem;
}

.footer-links a {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--renewal-tide); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
    .hero-content {
        padding: 2rem 6% 4rem;
    }

    h1 { font-size: 2.5rem; }

    .stats-row {
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    .stat-number { font-size: 1.5rem; }

    .receive-block {
        padding: 1.25rem;
    }

    .btn-begin {
        width: 100%;
        text-align: center;
    }

    .assessment-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
}
