:root {
    --navy: #0f2234;
    --navy-soft: #1b3348;
    --gold: #c89820;
    --text: #132536;
    --muted: #6f7a86;
    --line: #e6e8eb;
    --white: #ffffff;
    --background: #f8f8f7;
    --max-width: 1180px;
}

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

.container {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 720px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.85) 27%,
            rgba(255, 255, 255, 0.15) 58%,
            rgba(255, 255, 255, 0.02) 100%
        ),
        url("../assets/images/financial-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
}


/* HERO HEADER */

.hero-header {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding-top: 36px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


/* COMPANY INFO - LEFT */

.hero-company-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-company-line {
    width: 42px;
    height: 2px;
    flex-shrink: 0;

    background: var(--gold);
}

.hero-company-text {
    display: flex;
    flex-direction: column;
    gap: 5px;

    text-align: left;
}

.hero-company-name {
    color: var(--navy);

    font-size: 0.76rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.hero-company-description {
    color: #66727d;

    font-size: 0.58rem;
    font-weight: 400;

    line-height: 1.5;
    letter-spacing: 0.06em;
}


/* LOGO - RIGHT */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-image {
    display: block;

    width: 140px;
    height: auto;
}


/* HERO CONTENT */

.hero-content {
    width: min(var(--max-width), calc(100% - 48px));

    margin: auto auto 105px;
}

.hero-accent {
    width: 52px;
    height: 4px;

    margin-bottom: 28px;

    background: var(--gold);
}

.hero h1 {
    max-width: 600px;

    color: var(--navy);

    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

    font-size: clamp(3.6rem, 7vw, 6.5rem);
    font-weight: 400;

    line-height: 0.92;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    max-width: 430px;

    margin-top: 24px;

    color: var(--navy);

    font-size: 1rem;
    line-height: 1.55;
}


/* =========================
   DOCUMENTS
========================= */

.documents-section {
    padding: 72px 0 50px;

    background: var(--white);
}

.section-label {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    color: var(--navy);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.25em;
}

.section-label::before {
    content: "";

    width: 34px;
    height: 3px;

    background: var(--gold);
}

.documents-section h2 {
    color: var(--navy);

    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
}

.section-description {
    max-width: 760px;

    margin-top: 14px;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.65;
}


/* DOCUMENT GRID */

.documents-grid {
    margin-top: 38px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* DOCUMENT CARD */

.document-card {
    min-height: 250px;

    padding: 28px;

    border: 1px solid var(--line);

    display: flex;
    flex-direction: column;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.document-card:hover {
    transform: translateY(-4px);

    border-color: #cfd4d8;

    box-shadow:
        0 16px 36px rgba(20, 40, 60, 0.08);
}

.year {
    color: var(--navy);

    font-size: 2rem;
}

.year-line {
    width: 25px;
    height: 2px;

    margin: 12px 0 18px;

    background: var(--gold);
}

.document-title {
    color: var(--navy);

    font-size: 0.95rem;
    line-height: 1.55;
}

.document-spacer {
    flex: 1;
}


/* PDF ICON */

.pdf-icon {
    width: 28px;
    height: 35px;

    margin-top: 22px;
    margin-bottom: 12px;

    border: 2px solid #e94343;

    color: #e94343;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.58rem;
    font-weight: 800;
}


/* PDF LINK */

.pdf-link {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--navy);

    font-size: 0.88rem;
    font-weight: 700;
}

.pdf-link span {
    transition: transform 0.2s ease;
}

.document-card:hover .pdf-link span {
    transform: translateX(5px);
}


/* =========================
   WHITE SPACE
========================= */

.white-space {
    min-height: 230px;

    background: var(--white);
}


/* =========================
   FOOTER
========================= */

footer {
    background: var(--navy);
    color: var(--white);

    padding: 42px 0 24px;
}

.footer-inner {
    display: grid;

    grid-template-columns: 180px 1fr 120px;

    align-items: center;

    column-gap: 40px;
    row-gap: 32px;
}


/* LEFT COMPANY NAME */

.footer-logo {
    display: flex;
    align-items: center;

    gap: 26px;
}

.footer-logo-text {
    color: var(--white);

    font-size: 0.78rem;
    font-weight: 600;

    line-height: 1.5;
}


/* VERTICAL DIVIDER */

.footer-divider {
    width: 1px;
    height: 54px;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.28);
}


/* COMPANY INFORMATION */

.footer-message {
    color: #d3d9df;

    font-size: 0.72rem;
    line-height: 1.75;

    letter-spacing: 0.015em;
}

.footer-message a {
    color: #d3d9df;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-message a:hover {
    color: var(--white);
}


/* RIGHT FOOTER LOGO */

.footer-logo-right {
    display: flex;

    align-items: center;
    justify-content: flex-end;
}

.logo-footer {
    display: block;

    width: 105px;
    height: auto;
}


/* COPYRIGHT */

.footer-copy {
    grid-column: 1 / -1;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #9eabb6;

    font-size: 0.68rem;
    letter-spacing: 0.02em;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 170px 1fr 100px;

        column-gap: 28px;
    }

    .footer-message {
        font-size: 0.68rem;
    }

    .logo-footer {
        width: 90px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

    .container,
    .hero-header,
    .hero-content {
        width: min(100% - 32px, var(--max-width));
    }


    /* HERO */

    .hero {
        min-height: 620px;

        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.83) 58%,
                rgba(255, 255, 255, 0.35) 100%
            ),
            url("../assets/images/financial-hero.jpg");

        background-position: 65% center;
    }

    .hero-header {
        padding-top: 24px;

        align-items: flex-start;

        gap: 16px;
    }

    .hero-company-info {
        gap: 10px;
    }

    .hero-company-line {
        width: 20px;
    }

    .hero-company-text {
        max-width: 190px;
    }

    .hero-company-name {
        font-size: 0.58rem;
    }

    .hero-company-description {
        font-size: 0.46rem;

        line-height: 1.4;
    }

    .logo-image {
        width: 100px;
    }

    .hero-content {
        margin-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .hero-subtitle {
        max-width: 300px;

        font-size: 0.9rem;
    }


    /* DOCUMENTS */

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        min-height: 220px;
    }

    .white-space {
        min-height: 120px;
    }


    /* FOOTER */

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .footer-logo {
        display: block;
    }

    .footer-logo-text {
        font-size: 0.78rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-message {
        font-size: 0.70rem;

        line-height: 1.75;
    }

    .footer-logo-right {
        justify-content: flex-start;
    }

    .logo-footer {
        width: 90px;
    }

    .footer-copy {
        grid-column: auto;

        margin-top: 6px;
        padding-top: 18px;

        white-space: normal;
    }
}