
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --accent-gold: #c9a96e;
    --accent-hover: #e8c98a;
    --text-primary: #f0f0f0;
    --text-secondary: #aaaaaa;
    --divider: #2a2a2a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--accent-hover);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, backdrop-filter 0.3s;
}
header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--divider);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent-gold);
    font-weight: 700;
}
.logo:hover { color: var(--accent-hover); }

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

footer {
    background: var(--bg-secondary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--divider);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 3rem;
}
.footer-col h3 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem !important;
}
.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-col ul li a:hover {
    color: var(--accent-gold);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.social-links a:hover { color: var(--accent-gold); }
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Sections */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-small {
    height: 60vh;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}
.small-caps {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col.align-center { align-items: flex-start; }
.img-container img {
    width: 100%;
    height: auto;
    display: block;
}
.gold-border {
    border: 2px solid var(--accent-gold);
    padding: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.stats {
    background: var(--bg-secondary);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}
.stat-num {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}
.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.text-center { text-align: center; }
.page-content p { margin-bottom: 1.5rem; color: var(--text-secondary); font-size: 1.1rem;}
.text-page { max-width: 900px; }
.text-page h2 { margin-top: 2rem; margin-bottom: 1rem; }
.text-page ul { margin-left: 2rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.text-page li { margin-bottom: 0.5rem; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .burger { display: block; }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 2.5rem; }
}
\n.social-links-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}
.social-links-contact a {
    color: var(--text-secondary);
    display: inline-flex;
    transition: color 0.3s;
}
.social-links-contact a:hover {
    color: var(--accent-gold);
}