@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --navy: #0c1b33;
    --navy-light: #162544;
    --gold: #c9a84c;
    --gold-light: #e4c76b;
    --cream: #f8f5ef;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7a7a8a;
    --border: #e5e0d5;
    --shadow: 0 8px 30px rgba(12, 27, 51, 0.08);
    --shadow-hover: 0 16px 40px rgba(12, 27, 51, 0.12);
}

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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Badge */
.bv-badge {
    background: var(--navy);
    color: var(--cream);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 0;
    letter-spacing: 1.5px;
    z-index: 1001;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 38px;
    left: 0; right: 0;
    padding: 22px 0;
    z-index: 999;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.logo span { color: var(--gold); }

nav ul { display: flex; gap: 32px; list-style: none; }
nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}
nav a:hover, nav a.active { color: var(--gold); }

.header-cta {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.header-cta:hover { background: var(--gold-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: white; }
.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: white; color: var(--navy); }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: none; }

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Divider */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .header-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
