:root {
    --navy: #080f1a;
    --navy-2: #0f1a2b;
    --navy-3: #1a2a42;
    --gold: #d4af37;
    --gold-hover: #e5c048;
    --white: #ffffff;
    --gray: #b8c5d6;
    --smoke: #8a95a8;
    --border: #1a2a42;
}

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

body {
    font-family: 'Barlow', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

/* NAV */
.site-nav {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(8, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo img { width: 32px; height: 32px; border-radius: 6px; }

.nav-logo span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--smoke);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 800px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        border-bottom: 1px solid var(--border);
        padding: 1rem 2rem;
        gap: 1rem;
    }
}

/* SECTION BASE */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--navy-2); }
.section-inner { max-width: 800px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.25rem;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    display: inline-block;
    color: var(--gold);
    padding: 1rem 2.25rem;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* PULL QUOTE */
.pull-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin: 2rem 0;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover { border-color: var(--gold); }

/* FOOTER */
.site-footer {
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--navy);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--navy-2);
    border: 1px solid var(--gold);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.footer-brand img { height: 40px; width: auto; }

.footer-brand-text {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-brand-text strong {
    color: var(--gold);
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--smoke);
}

.footer-bottom a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 600px) {
    .footer-content, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
