:root {
    --bg-primary: #111;
    --bg-secondary: #1a1a1a;
    --accent: #D4AF37;
    --accent-hover: #f1c40f;
    --text-main: #eee;
    --text-muted: #aaa;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.max-w-lg { max-width: 600px; }
.w-full { width: 100%; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

.btn-text {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-text:hover {
    letter-spacing: 0.15em;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(17,17,17,1));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-secondary);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.small {
    grid-column: span 2;
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    pointer-events: none;
}

/* Slider */
.slider-wrapper {
    position: relative;
}

.slider {
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 4px;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slider-controls {
    position: absolute;
    bottom: -3rem;
    right: 0;
    display: flex;
    gap: 1rem;
}

.slider-controls button {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--accent);
    color: #000;
}

/* Alternating Grid */
.alternating-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.alt-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.alt-item.reverse {
    flex-direction: row-reverse;
}

.alt-img, .alt-text {
    flex: 1;
}

.alt-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--bg-secondary);
}

.alt-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.alt-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Form */
.vip-form {
    background: var(--bg-primary);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, select, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-status {
    margin-top: 1.5rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4rem;
}

.footer-brand h3 {
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-col h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-item.large, .bento-item.small {
        grid-column: span 1;
        height: 350px;
    }
    
    .alt-item, .alt-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .alt-img img {
        box-shadow: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards ease-out;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
