:root {
    --primary: #1a3a4a;
    --accent: #c09e6b;
    --accent-dark: #a8874f;
    --dark: #0f1f28;
    --darker: #0a161e;
    --light: #f8f6f3;
    --cream: #faf9f7;
    --text: #2c3e50;
    --text-light: #7b8a96;
    --radius: 12px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* NAV */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15, 31, 40, 0.95); backdrop-filter: blur(10px);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; padding: 16px 24px;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: #fff;
}
.logo-accent { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    color: #ccc; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* HERO */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, #0a161e 0%, #1a3a4a 40%, #0f1f28 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(192, 158, 107, 0.06) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; }
.hero-pre {
    font-size: 13px; color: var(--accent); text-transform: uppercase;
    letter-spacing: 4px; font-weight: 500; margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 64px); color: #fff;
    margin-bottom: 20px; line-height: 1.1; font-weight: 600;
}
.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.65);
    font-weight: 300; max-width: 560px; margin: 0 auto 40px; line-height: 1.8;
}

.btn {
    display: inline-block; padding: 14px 40px; border-radius: 50px;
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; transition: all 0.3s; cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover {
    background: var(--accent-dark); color: #fff;
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 158, 107, 0.3);
}

/* SECTIONS */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: #ddd; }
.section-dark .section-title { color: #fff; }
.section-dark .section-title::after { background: var(--accent); }
.section-title {
    font-size: 38px; text-align: center; margin-bottom: 16px; color: var(--dark); font-weight: 600;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 2px;
    background: var(--accent); margin: 16px auto 0;
}
.section-desc {
    text-align: center; max-width: 620px; margin: 24px auto 60px;
    color: var(--text-light); font-size: 15px;
}
.section-dark .section-desc { color: #999; }

/* ABOUT */
.about-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 60px; align-items: center; margin-top: 60px;
}
.about-text p { margin-bottom: 16px; font-size: 15px; color: #555; line-height: 1.8; }
.about-stats { display: flex; flex-direction: column; gap: 24px; }
.stat {
    text-align: center; padding: 28px; background: #fff;
    border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.stat-number {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 700; color: var(--accent-dark);
}
.stat-label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(192, 158, 107, 0.15);
    border-radius: var(--radius); padding: 36px 24px; text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 22px; color: var(--accent); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #999; line-height: 1.8; }

/* VENUES */
.venues-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 60px; }
.venue-item {
    padding: 32px; background: #fff; border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05); border-left: 3px solid var(--accent);
}
.venue-item h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary); }
.venue-item p { font-size: 14px; color: #666; }

/* CTA */
.section-cta {
    background: linear-gradient(135deg, #0a161e, #1a3a4a); color: #fff; text-align: center;
}
.section-cta h2 { font-size: 36px; margin-bottom: 16px; }
.section-cta > .container > p { color: #bbb; max-width: 500px; margin: 0 auto 40px; font-size: 15px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.contact-card {
    background: #fff; border-radius: var(--radius); padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-card h3 { font-size: 20px; margin-bottom: 16px; color: var(--primary); }
.contact-card p { color: #555; font-size: 14px; margin-bottom: 6px; }

/* FOOTER */
.footer { background: var(--darker); color: #777; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-desc { margin-top: 12px; font-size: 14px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a, .footer-col a { color: #777; font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover, .footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 14px; margin-bottom: 4px; }
.footer-bottom {
    margin-top: 40px; padding: 20px 0; border-top: 1px solid #1a2a35;
    text-align: center; font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
        background: var(--dark); flex-direction: column; padding: 80px 32px 32px;
        gap: 24px; transition: right 0.3s;
    }
    .nav-links.active { right: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .about-grid, .services-grid, .venues-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 60px 0; }
}