@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap");
:root {
    --navy: #195cb0;
    --navy-mid: #417dc7;
    /* --navy: #0f2044;
    --navy-mid: #1b3a6b; */

    --teal: #0e7490;
    --teal-light: #0ea5c9;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --cream: #faf8f3;
    --white: #ffffff;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-500: #6b7280;
    --grey-700: #374151;
    --text: #1a2332;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /* background: rgba(15, 32, 68, 0.97); */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}
.nav-logo .wordmark {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: #2196f3;
    letter-spacing: 0.02em;
}
.nav-logo .wordmark span {
    color: var(--gold);
}
.nav-logo .tagline {
    font-size: 9px;
    color: #2196f3;
    /* rgba(255, 255, 255, 0.4); */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 3px;
    font-family: "DM Mono", monospace;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: #2196f3;
    /* rgba(255, 255, 255, 0.7); */
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}
.nav-login {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-login:hover {
    background: var(--gold-light) !important;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 64px 48px 0;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .wordmark {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-brand .wordmark span {
    color: var(--gold);
}
.footer-brand .descriptor {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}
.footer-brand .tagline-f {
    font-size: 11px;
    color: var(--gold);
    font-family: "DM Mono", monospace;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    max-width: 240px;
}
.footer-col h5 {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 14px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gold-light);
}
.fa-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
}
.fa-label {
    font-size: 10px;
    color: var(--gold);
    font-family: "DM Mono", monospace;
    font-weight: 600;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
}
.fa-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}
.footer-bottom-links {
    display: flex;
    gap: 18px;
}
.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.45);
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
