    /* --- Variables & Reset --- */
    :root {
        --bg-dark: #050a08;
        --bg-card: #0d1410;
        --emerald: #10b981;
        --emerald-dark: #047857;
        --cream: #f5f5f0;
        --cream-dim: #d1d5db;
        --gold: #d4af37;
        --gold-light: #f3cf55;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Outfit', 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(--cream);
        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;
    }

    h1 { font-size: clamp(3rem, 8vw, 5rem); }
    h2 { font-size: clamp(2rem, 5vw, 3rem); }
    h3 { font-size: 1.5rem; }

    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* --- Utilities --- */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .section {
        padding: 6rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        color: var(--cream);
    }

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

    .tagline {
        display: block;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.85rem;
        color: var(--emerald);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .text-gold { color: var(--gold); }
    .center { text-align: center; }
    .mt-4 { margin-top: 2rem; }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: var(--font-body);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 2px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.9rem;
    }

    .btn-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--bg-dark);
        border: none;
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }

    .btn-primary {
        background-color: var(--emerald);
        color: var(--bg-dark);
        border: 2px solid var(--emerald);
    }
    .btn-primary:hover { background-color: var(--emerald-dark); border-color: var(--emerald-dark); }

    .btn-outline {
        background: transparent;
        color: var(--cream);
        border: 2px solid var(--cream);
    }
    .btn-outline:hover { background: var(--cream); color: var(--bg-dark); }

    .btn-outline-light {
        background: transparent;
        color: var(--cream-dim);
        border: 1px solid var(--cream-dim);
    }
    .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

    .full-width { width: 100%; }

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

    .navbar.scrolled {
        background: rgba(5, 10, 8, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

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

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

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

    .nav-links a:not(.btn) {
        font-size: 0.95rem;
        color: var(--cream);
        position: relative;
    }

    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 0;
        background-color: var(--emerald);
        transition: width 0.3s;
    }

    .nav-links a:not(.btn):hover::after { width: 100%; }

    /* Mobile Menu */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }
    .mobile-toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--cream);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-link { font-size: 1.5rem; font-family: var(--font-heading); }
    .btn-gold-mobile { padding: 0.8rem 2rem; }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background-color: #000;
    }

    .hero-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: url('https://images.pexels.com/photos/11406429/pexels-photo-11406429.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
        opacity: 0.6;
        animation: zoomIn 20s infinite alternate;
    }

    @keyframes zoomIn {
        from { transform: scale(1); }
        to { transform: scale(1.1); }
    }

    .hero-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(5,10,8,0.3) 0%, rgba(5,10,8,0.8) 90%, var(--bg-dark) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 1rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s forwards 0.5s;
    }

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

    .hero-content p {
        font-size: 1.2rem;
        color: var(--cream-dim);
        margin: 1.5rem 0 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--cream-dim);
        font-size: 0.8rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.7;
    }
    .scroll-indicator .line {
        width: 1px;
        height: 40px;
        background: var(--gold);
        animation: scrollLine 2s infinite;
    }
    @keyframes scrollLine {
        0% { transform: scaleY(0); transform-origin: top; }
        50% { transform: scaleY(1); transform-origin: top; }
        51% { transform-origin: bottom; }
        100% { transform: scaleY(0); transform-origin: bottom; }
    }

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

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

    .main-img {
        border-radius: 4px;
        box-shadow: 20px 20px 0 var(--emerald-dark);
    }

    .secondary-img {
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 40%;
        border-radius: 4px;
        border: 4px solid var(--bg-dark);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .about-content p {
        color: var(--cream-dim);
        margin-bottom: 1.5rem;
    }
    
    .about-content .lead {
        font-size: 1.25rem;
        color: var(--cream);
        margin-bottom: 2rem;
    }

    .features-list {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .features-list li {
        color: var(--cream);
        font-weight: 500;
    }
    .features-list .check {
        color: var(--gold);
        margin-right: 0.5rem;
    }

    /* --- Menu --- */
    .menu-dark {
        background-color: var(--bg-card);
    }

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

    .menu-card {
        background: var(--bg-dark);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.05);
        transition: var(--transition);
    }

    .menu-card:hover {
        transform: translateY(-10px);
        border-color: var(--emerald);
    }

    .menu-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .menu-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .menu-card:hover .menu-img img {
        transform: scale(1.1);
    }

    .menu-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }
    .menu-card:hover .menu-overlay { opacity: 1; }
    .menu-overlay span {
        color: var(--gold);
        border: 1px solid var(--gold);
        padding: 0.5rem 1rem;
        text-transform: uppercase;
        font-size: 0.8rem;
    }

    .menu-info {
        padding: 1.5rem;
    }
    .menu-info h3 { color: var(--cream); margin-bottom: 0.5rem; }
    .menu-info p { color: var(--cream-dim); font-size: 0.95rem; }

    /* --- Atmosphere --- */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 1rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
        position: relative;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }

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

    /* --- Contact --- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background: linear-gradient(145deg, var(--bg-card), #080d0b);
        padding: 4rem;
        border-radius: 8px;
        border: 1px solid var(--emerald-dark);
    }

    .contact-list {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-list li {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-list .icon {
        font-size: 1.5rem;
        background: rgba(16, 185, 129, 0.1);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--emerald);
    }

    .contact-list strong { display: block; color: var(--cream); margin-bottom: 0.25rem; }
    .contact-list p, .contact-list a { color: var(--cream-dim); font-size: 0.95rem; }
    .contact-list a: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(--cream-dim);
    }
    .form-group input, .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: var(--cream);
        border-radius: 4px;
        font-family: var(--font-body);
    }
    .form-group input:focus, .form-group textarea:focus {
        outline: none;
        border-color: var(--emerald);
    }

    .success-message {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(16, 185, 129, 0.2);
        border: 1px solid var(--emerald);
        color: var(--emerald);
        text-align: center;
    }
    .hidden { display: none; }

    /* --- Footer --- */
    .footer {
        background: #020403;
        padding: 4rem 0 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand h3 { color: var(--gold); letter-spacing: 2px; }
    .footer-brand p { color: var(--cream-dim); font-size: 0.9rem; }

    .footer-links {
        display: flex;
        gap: 2rem;
    }
    .footer-links a { color: var(--cream); font-size: 0.95rem; }
    .footer-links a:hover { color: var(--emerald); }

    .footer-copy {
        color: #555;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
        .secondary-img { display: none; }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
        .gallery-item.large { grid-column: span 2; }
        .gallery-item.tall { grid-row: span 1; }
    }

    @media (max-width: 768px) {
        .nav-links { display: none; }
        .mobile-toggle { display: flex; }
        .hero-btns { flex-direction: column; }
        .btn { width: 100%; text-align: center; }
        .contact-wrapper { padding: 2rem; }
        .features-list { grid-template-columns: 1fr; }
    }
