/* ─── Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif;
    background-color: #000;
    color: #ccc;
    letter-spacing: 0.07em;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ─── Layout ─────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ─── Navbar ─────────────────────────────────────────────────────────── */
.heroHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    padding: 20px 24px;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, #000, transparent);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-badge {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #909090;
    border: 1px solid #2c2c2c;
    border-radius: 20px;
    padding: 4px 12px;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
    background-image: url(images/HeroImage.jpeg);
    background-image: -webkit-image-set(
	url(images/HeroImage.webp) 1x,
	url(images/HeroImage.jpeg) 1x
    );
    background-image: image-set(
	url(images/HeroImage.webp) type("image/webp"),
	url(images/HeroImage.jpeg) type("image/jpeg")
    );
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 60%, #000 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.sunset-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #909090;
    border: 1px solid #2c2c2c;
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 36px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 28px 0;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: #909090;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px auto;
}

.hero-contact {
    font-size: 14px;
    color: #555;
}

.hero-contact a {
    color: #909090;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 1px;
    transition: color 0.2s;
}

.hero-contact a:hover {
    color: #ccc;
}

/* ─── Stats ──────────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}

.stat-num {
    font-size: 38px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.stat-plus {
    color: #909090;
}

.stat-label {
    font-size: 13px;
    color: #909090;
    font-weight: 400;
}

/* ─── Story ──────────────────────────────────────────────────────────── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 16px 0;
}

.section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 28px 0;
    letter-spacing: 0.02em;
}

.section-body {
    font-size: 15px;
    color: #909090;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-weight: 300;
}

/* ─── Milestones ─────────────────────────────────────────────────────── */
.story-milestones {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.milestone {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
}

.milestone-last {
    border-bottom: none;
}

.milestone-year {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ccc;
    min-width: 40px;
    padding-top: 3px;
}

.milestone-title {
    font-size: 15px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 4px;
}

.milestone-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* ─── Letter ─────────────────────────────────────────────────────────── */
.letter-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 60px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.letter-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 36px 0;
    letter-spacing: 0.02em;
}

.letter-body {
    font-size: 16px;
    color: #909090;
    line-height: 1.85;
    margin: 0 0 20px 0;
    font-weight: 300;
    text-align: left;
}

.letter-sign {
    color: #ccc;
    font-style: italic;
}

.letter-author {
    font-size: 15px;
    color: #555;
    margin-top: 32px;
    text-align: right;
}

/* ─── Supported by ───────────────────────────────────────────────────── */
.supported-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer-wrap {
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-copy {
    font-size: 13px;
    color: #555;
    margin: 0 0 6px 0;
    font-weight: 300;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
}

.footer-link {
    font-size: 14px;
    color: #909090;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ccc;
}

/* ─── Responsive: tablet ─────────────────────────────────────────────── */
@media only screen and (max-width: 800px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .letter-card {
        padding: 36px 28px;
    }

    .letter-title {
        font-size: 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 36px;
    }

    .footer-right {
        text-align: left;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ─── Responsive: mobile ─────────────────────────────────────────────── */
@media only screen and (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .heroHeader {
        padding: 16px 20px;
    }

    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 15px;
    }

    .sunset-pill {
        font-size: 11px;
        margin-bottom: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-body {
        font-size: 14px;
    }

    .letter-card {
        padding: 28px 20px;
        border-radius: 8px;
    }

    .letter-body {
        font-size: 15px;
    }

    .footer-inner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .supported-logos {
        gap: 28px;
    }
}
