:root {
    --navy: #0a1628;
    --deep-navy: #060f1e;
    --gold: #c8a84b;
    --gold-light: #e8c96a;
    --sky: #4a9eca;
    --green: #2e7d55;
    --white: #f8f6f1;
    --text: #2c2c2c;
    --text-light: #666;
    --border: #e0d8c8;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVIGATION */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6, 15, 30, 0.97);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid rgba(200,168,75,0.2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: rgba(248,246,241,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }

/* HERO SECTION */
.hero {
    height: 60vh;
    background: var(--deep-navy);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(6, 15, 30, 0.9) 0%, rgba(6, 15, 30, 0.4) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    padding: 0 5%;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* SECTIONS */
section { padding: 6rem 5%; }
.section-header { max-width: 800px; margin-bottom: 4rem; }
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    line-height: 1.2;
}

/* TABLES */
.table-container { overflow-x: auto; margin: 2rem 0; }
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
th, td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--navy); color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200,168,75,0.05); }

/* FOOTER */
footer {
    background: var(--deep-navy);
    color: rgba(248,246,241,0.6);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(200,168,75,0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand h2 { color: var(--white); margin-bottom: 1.5rem; }
.footer-links h4 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; font-size: 0.9rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 1rem; font-size: 0.9rem; }
.footer-bottom {
    border-top: 1px solid rgba(248,246,241,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); border: none; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
