/* =========================
   Base Reset
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #f4f4f1;
    color: #1f1f1f;
    line-height: 1.5;
}

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

button {
    font-family: inherit;
}


/* =========================
   Colour Variables
========================= */

:root {
    --bg-main: #f4f4f1;
    --bg-soft: #eeeeea;
    --bg-card: #ffffff;

    --text-main: #101827;
    --text-muted: #686868;

    --navy: #071326;
    --navy-soft: #101c31;

    --gold: #d5ad28;
    --gold-dark: #a78318;
    --gold-soft: #f4ead0;

    --border-light: #deded8;

    --shadow-soft: 0 16px 40px rgba(31, 31, 31, 0.08);
}


/* =========================
   Header / Navbar
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 244, 241, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    margin: 0 auto;
    min-height: 78px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    display: block;
    object-fit: contain;
}

.nav-logo-full {
    width: 218px;
    height: auto;
}

.nav-logo-symbol {
    display: none;
    width: 46px;
    height: 46px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-login:hover {
    color: var(--navy);
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;

    background: var(--navy);
    color: #ffffff;

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

    box-shadow: 0 10px 24px rgba(7, 19, 38, 0.16);
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(167, 131, 24, 0.24);
}


/* =========================
   Mobile Nav Button
========================= */

.mobile-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================
   Page Hero
========================= */

.page-hero {
    background:
        radial-gradient(circle at top left, rgba(213, 173, 40, 0.16), transparent 34%),
        linear-gradient(180deg, #f8f8f5 0%, #f4f4f1 100%);

    border-bottom: 1px solid var(--border-light);
}

.page-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;
    margin-bottom: 18px;

    border-radius: 999px;
    background: var(--gold-soft);
    color: #7a6112;

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.page-hero h1 {
    max-width: 760px;
    color: var(--text-main);

    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.07em;
    font-weight: 850;
}

.hero-subtitle {
    max-width: 660px;
    margin-top: 20px;

    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}


/* =========================
   Main Content
========================= */

.main-content {
    margin: 0 auto;
}


/* =========================
   Footer
========================= */

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(213, 173, 40, 0.12), transparent 28%),
        linear-gradient(180deg, #101827 0%, #071326 100%);
    color: #ffffff;
}

.footer-inner {
    margin: 0 auto;
    padding: 56px 24px;

    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 56px;
}

.footer-brand {
    max-width: 460px;
}

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

.footer-logo-img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {

    margin: 0 auto;
    padding: 20px 24px;

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

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}


/* =========================
   Responsive
========================= */

@media (max-width: 1000px) {
    .nav-logo-full {
        width: 190px;
    }

    .nav-links {
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        min-height: auto;
        padding: 16px 24px;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
    }

    .nav-links.active,
    .nav-actions.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;

        padding-top: 18px;
        border-top: 1px solid var(--border-light);
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding-bottom: 8px;
    }

    .nav-login,
    .nav-cta {
        width: 100%;
        text-align: center;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .nav-logo-full {
        display: none;
    }

    .nav-logo-symbol {
        display: block;
    }
}

@media (max-width: 520px) {
    .navbar {
        padding: 14px 20px;
    }

    .page-hero-inner {
        padding: 54px 20px 48px;
    }


    .footer-inner {
        padding: 44px 20px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-logo-img {
        width: 210px;
    }
}