    /* --- Variables & Reset --- */
    :root {
        --color-navy: #0f172a;
        --color-navy-light: #1e293b;
        --color-gold: #fbbf24;
        --color-gold-dark: #d97706;
        --color-white: #ffffff;
        --color-off-white: #f8fafc;
        --color-gray: #64748b;
        
        --font-heading: 'Syne', sans-serif;
        --font-body: 'DM Sans', sans-serif;
        
        --radius: 12px;
        --transition: all 0.3s ease;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        background-color: var(--color-off-white);
        color: var(--color-navy);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* --- Geometric Background Elements --- */
    .geometric-shape {
        position: fixed;
        z-index: -1;
        opacity: 0.05;
        pointer-events: none;
    }

    .shape-1 {
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: var(--color-gold);
        border-radius: 50%;
    }

    .shape-2 {
        bottom: 10%;
        left: -150px;
        width: 600px;
        height: 600px;
        background: var(--color-navy);
        clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    }

    .shape-3 {
        top: 40%;
        right: 5%;
        width: 200px;
        height: 200px;
        background: var(--color-gold);
        transform: rotate(45deg);
    }

    /* --- Utilities --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .text-center { text-align: center; }
    
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        transition: var(--transition);
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--color-gold);
        color: var(--color-navy);
    }

    .btn-primary:hover {
        background-color: var(--color-gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
    }

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

    .btn-outline:hover {
        background-color: var(--color-navy);
        color: var(--color-white);
    }

    /* --- Navigation --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--color-navy);
    }

    .logo-icon {
        background: var(--color-navy);
        color: var(--color-gold);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .nav-links a {
        font-weight: 500;
        color: var(--color-navy);
        position: relative;
    }

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

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

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-navy);
    }

    /* --- Hero Section --- */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content .badge {
        display: inline-block;
        background: rgba(251, 191, 36, 0.2);
        color: var(--color-gold-dark);
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.875rem;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.1;
        margin-bottom: 24px;
        color: var(--color-navy);
    }

    .hero-content p {
        font-size: 1.25rem;
        color: var(--color-gray);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
    }

    .hero-image {
        position: relative;
    }

    .image-wrapper {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 20px 20px 0 var(--color-gold);
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

    .image-accent {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: var(--color-navy);
        border-radius: 50%;
        z-index: -1;
    }

    /* --- Features --- */
    .features {
        padding: 80px 0;
        background: var(--color-white);
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .feature-card {
        background: var(--color-off-white);
        padding: 40px;
        border-radius: var(--radius);
        border: 1px solid rgba(0,0,0,0.05);
        transition: var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        background: var(--color-navy);
    }

    .feature-card:hover h3,
    .feature-card:hover p {
        color: var(--color-white);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--color-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-navy);
        margin-bottom: 24px;
    }

    .feature-card h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: var(--color-navy);
    }

    .feature-card p {
        color: var(--color-gray);
    }

    /* --- Menu --- */
    .menu-section {
        padding: 100px 0;
        background: var(--color-navy);
        color: var(--color-white);
        position: relative;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 16px;
        color: var(--color-gold);
    }

    .section-header p {
        color: rgba(255,255,255,0.7);
        font-size: 1.125rem;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .menu-item {
        background: var(--color-navy-light);
        border-radius: var(--radius);
        overflow: hidden;
        transition: var(--transition);
    }

    .menu-item:hover {
        transform: scale(1.02);
    }

    .menu-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .menu-info {
        padding: 24px;
    }

    .menu-info h4 {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        margin-bottom: 8px;
        color: var(--color-white);
    }

    .menu-info p {
        color: var(--color-gold);
        font-size: 0.95rem;
    }

    /* --- About --- */
    .about-section {
        padding: 100px 0;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: -20px 20px 0 var(--color-navy);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-content h2 {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--color-navy);
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .about-content p {
        color: var(--color-gray);
        margin-bottom: 24px;
        font-size: 1.1rem;
    }

    .about-list {
        margin-top: 32px;
    }

    .about-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--color-navy);
        margin-bottom: 12px;
    }

    .about-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--color-gold);
        border-radius: 50%;
    }

    /* --- Location --- */
    .location-section {
        padding: 100px 0;
        background: var(--color-gold);
    }

    .location-box {
        background: var(--color-white);
        border-radius: var(--radius);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .location-text {
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .location-text h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--color-navy);
        margin-bottom: 16px;
    }

    .location-text address {
        font-style: normal;
        font-size: 1.25rem;
        margin: 24px 0;
        color: var(--color-navy);
        font-weight: 500;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .contact-details a {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--color-navy);
        transition: var(--transition);
    }

    .contact-details a:hover {
        color: var(--color-gold-dark);
    }

    .map-placeholder {
        position: relative;
        min-height: 400px;
    }

    .map-placeholder a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .map-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-navy);
        color: var(--color-white);
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 700;
        opacity: 0.9;
        transition: var(--transition);
    }

    .map-placeholder a:hover .map-overlay {
        background: var(--color-gold);
        color: var(--color-navy);
    }

    /* --- Footer --- */
    footer {
        background: var(--color-navy);
        color: var(--color-white);
        padding: 80px 0 40px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 800;
    }

    .footer-hours h4 {
        color: var(--color-gold);
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .footer-hours p {
        color: rgba(255,255,255,0.7);
        margin-bottom: 8px;
    }

    .footer-social {
        display: flex;
        gap: 16px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--color-navy-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-gold);
        transition: var(--transition);
    }

    .footer-social a:hover {
        background: var(--color-gold);
        color: var(--color-navy);
    }

    .footer-bottom {
        border-top: 1px solid var(--color-navy-light);
        padding-top: 40px;
        text-align: center;
        color: rgba(255,255,255,0.5);
        font-size: 0.9rem;
    }

    /* --- Mobile Menu --- */
    .nav-links.nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 24px;
    }

    /* --- Responsive --- */
    @media (max-width: 968px) {
        .hero-container,
        .about-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero {
            padding-top: 100px;
            text-align: center;
        }

        .hero-content p {
            margin: 0 auto 40px;
        }

        .hero-btns {
            justify-content: center;
        }

        .hero-image {
            order: -1;
            max-width: 500px;
            margin: 0 auto;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
        }

        .mobile-menu-btn {
            display: block;
        }

        .location-box {
            grid-template-columns: 1fr;
        }

        .map-placeholder {
            min-height: 250px;
        }
        
        .footer-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }
