    /* --- Variables & Reset --- */
    :root {
        --bg-dark: #0a1118;
        --bg-card: #131f2b;
        --text-light: #f0f4f8;
        --text-muted: #94a3b8;
        --gold: #c5a059;
        --gold-light: #e5c578;
        --gold-dark: #9e7e3d;
        --navy: #1c2d41;
        
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;
        
        --transition: all 0.3s ease;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* --- Typography --- */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

    .gold-text {
        color: var(--gold);
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--gold);
        margin-top: 10px;
    }

    .center::after {
        margin-left: auto;
    }

    .section-desc {
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }

    /* --- Layout --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .section {
        padding: 6rem 0;
    }

    .dark-section {
        background-color: var(--navy);
    }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        transition: var(--transition);
        border: 2px solid transparent;
    }

    .btn-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: var(--bg-dark);
    }

    .btn-gold:hover {
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    }

    .btn-outline {
        border-color: var(--gold);
        color: var(--gold);
    }

    .btn-outline:hover {
        background: var(--gold);
        color: var(--bg-dark);
    }

    .full-width {
        width: 100%;
    }

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

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

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-light);
        text-decoration: none;
        letter-spacing: 2px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }

    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .nav-links a:not(.btn):hover {
        color: var(--gold);
    }

    /* Mobile Menu */
    .mobile-menu-btn, .close-menu {
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-light);
        transition: var(--transition);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu ul {
        list-style: none;
        text-align: center;
    }

    .mobile-menu li {
        margin: 1.5rem 0;
    }

    .mobile-link {
        color: var(--text-light);
        text-decoration: none;
        font-family: var(--font-heading);
        font-size: 2rem;
        transition: var(--transition);
    }

    .mobile-link:hover {
        color: var(--gold);
    }

    .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3rem;
        color: var(--text-light);
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-image: url('https://images.pexels.com/photos/2159070/pexels-photo-2159070.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(10,17,24,0.6), rgba(10,17,24,0.9));
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* --- About --- */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .gold-accent {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        border-right: 3px solid var(--gold);
        border-bottom: 3px solid var(--gold);
        z-index: -1;
    }

    .about-text .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }

    .about-text p {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

    /* --- Menu --- */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .menu-card {
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid rgba(197, 160, 89, 0.1);
    }

    .menu-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .card-img {
        height: 220px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--gold);
        color: var(--bg-dark);
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 2px;
    }

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-light);
    }

    .card-content p {
        color: var(--text-muted);
        font-size: 0.95rem;
    }

    .text-link {
        color: var(--gold);
        text-decoration: none;
        border-bottom: 1px solid var(--gold);
        padding-bottom: 2px;
        transition: var(--transition);
    }

    .text-link:hover {
        color: var(--gold-light);
        border-color: var(--gold-light);
    }

    /* --- Vibe --- */
    .vibe-section {
        background: linear-gradient(rgba(10,17,24,0.85), rgba(10,17,24,0.85)), url('https://images.pexels.com/photos/157060/pexels-photo-157060.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-attachment: fixed;
        text-align: center;
    }

    .features-list {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
    }

    .features-list li {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .icon {
        color: var(--gold);
    }

    /* --- Contact --- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background: var(--bg-card);
        padding: 3rem;
        border-radius: 8px;
        border: 1px solid rgba(197, 160, 89, 0.2);
    }

    .info-list {
        list-style: none;
        margin-top: 2rem;
    }

    .info-list li {
        margin-bottom: 2rem;
    }

    .label {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gold);
        margin-bottom: 0.5rem;
    }

    .value {
        font-size: 1.1rem;
        color: var(--text-light);
        text-decoration: none;
    }

    .value:hover {
        color: var(--gold);
    }

    .contact-form {
        margin-top: 2rem;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: var(--bg-dark);
        border: 1px solid #2d3e50;
        color: var(--text-light);
        font-family: var(--font-body);
        border-radius: 4px;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

    .success-message {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(197, 160, 89, 0.1);
        border: 1px solid var(--gold);
        color: var(--gold);
        text-align: center;
    }

    .hidden {
        display: none;
    }

    /* --- Footer --- */
    .footer {
        background: #05090d;
        padding: 3rem 0;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-brand p {
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

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

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.85rem;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--gold);
    }

    /* --- Animations --- */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease;
    }

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease;
    }

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }

    /* --- Responsive --- */
    @media (max-width: 900px) {
        .hero-title { font-size: 3rem; }
        .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
        .about-image-wrapper { order: -1; }
    }

    @media (max-width: 768px) {
        .nav-links { display: none; }
        .mobile-menu-btn { display: flex; }
        .hero-title { font-size: 2.5rem; }
        .section { padding: 4rem 0; }
        .features-list { flex-direction: column; gap: 1rem; }
        .contact-wrapper { padding: 1.5rem; }
    }
