    :root {
        --navy: #0F172A;
        --navy-light: #1E293B;
        --mint: #2DD4BF;
        --mint-dark: #14B8A6;
        --white: #FFFFFF;
        --off-white: #F8FAFC;
        --gray: #64748B;
        
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Outfit', sans-serif;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

    h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
    h3 { font-size: 1.5rem; }

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

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

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

    .btn-outline {
        border: 2px solid var(--navy);
        color: var(--navy);
        background: transparent;
    }

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

    .btn-outline-dark {
        border: 2px solid var(--navy);
        color: var(--navy);
    }
    
    .btn-outline-dark:hover {
        background: var(--navy);
        color: var(--white);
    }

    /* Background Shapes */
    .bg-shape {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.6;
    }
    .shape-1 {
        width: 600px;
        height: 600px;
        background: var(--mint);
        top: -200px;
        right: -200px;
    }
    .shape-2 {
        width: 400px;
        height: 400px;
        background: #E0F2FE; /* light blue tint */
        bottom: 10%;
        left: -100px;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .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(--navy);
    }

    .logo .dot { color: var(--mint); }

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

    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--navy);
    }

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 2px;
        background: var(--navy);
        transition: 0.3s;
    }

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

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .eyebrow {
        display: inline-block;
        background: var(--navy);
        color: var(--mint);
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        margin-bottom: 1.5rem;
    }

    .hero h1 .highlight {
        color: var(--mint-dark);
        font-style: italic;
    }

    .hero-desc {
        font-size: 1.125rem;
        color: var(--gray);
        margin-bottom: 2.5rem;
        max-width: 90%;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--navy);
        font-weight: 500;
        font-size: 0.9rem;
    }
    
    .trust-img {
        border-radius: 50%;
        border: 2px solid var(--mint);
    }

    /* Hero Visual & Cards */
    .hero-visual {
        position: relative;
        height: 600px;
    }

    .card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: absolute;
    }

    .main-card {
        width: 85%;
        height: 80%;
        top: 10%;
        left: 10%;
        z-index: 1;
    }

    .card-img-wrapper {
        position: relative;
        height: 100%;
    }

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

    .card-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: var(--shadow-sm);
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        width: 240px;
        z-index: 2;
        top: 0;
        right: 0;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        background: var(--mint);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
    }

    .stat-num {
        display: block;
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--navy);
    }

    .stat-label {
        font-size: 0.75rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .secondary-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        width: 220px;
        z-index: 3;
        bottom: 40px;
        left: -30px;
    }

    .float-img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        object-fit: cover;
    }

    .float-text {
        display: flex;
        flex-direction: column;
    }

    .float-text strong { color: var(--navy); font-size: 0.9rem; }
    .float-text span { font-size: 0.75rem; color: var(--gray); }

    /* Floating Animation */
    .float-1 { animation: float 6s ease-in-out infinite; }
    .float-2 { animation: float 5s ease-in-out infinite reverse; }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    /* Geometric Accents */
    .geo-circle {
        position: absolute;
        top: 10%;
        left: 45%;
        width: 100px;
        height: 100px;
        border: 4px solid var(--mint);
        border-radius: 50%;
        z-index: 0;
        opacity: 0.5;
    }

    .geo-square {
        position: absolute;
        bottom: 20%;
        right: 5%;
        width: 80px;
        height: 80px;
        background: var(--navy);
        transform: rotate(15deg);
        z-index: 0;
        opacity: 0.1;
    }

    .geo-triangle {
        position: absolute;
        top: 20%;
        right: 10%;
        width: 0; 
        height: 0; 
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 70px solid var(--mint);
        opacity: 0.2;
        transform: rotate(-20deg);
        z-index: 0;
    }

    /* Menu Section */
    .section { padding: 6rem 0; }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .accent-text {
        display: block;
        color: var(--mint-dark);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .outline-text {
        -webkit-text-stroke: 1px var(--navy);
        color: transparent;
    }

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

    .menu-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease;
    }

    .menu-card:hover { transform: translateY(-10px); }

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

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

    .tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .tag-mint { background: var(--mint); color: var(--navy); }
    .tag-navy { background: var(--navy); color: var(--white); }

    .menu-body { padding: 1.5rem; }
    .menu-body h3 { margin-bottom: 0.5rem; color: var(--navy); }
    .menu-body p { color: var(--gray); font-size: 0.95rem; }

    .text-center { text-align: center; }
    .mt-4 { margin-top: 2rem; }

    /* About Section */
    .about-section {
        background: var(--white);
    }

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

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

    .shape-block {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        background: var(--mint);
        border-radius: 20px;
        z-index: 0;
        opacity: 0.2;
    }

    .about-img {
        position: relative;
        z-index: 1;
        border-radius: 20px;
        width: 100%;
        height: 500px;
        object-fit: cover;
        box-shadow: var(--shadow-lg);
    }

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

    .feature-list {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 600;
        color: var(--navy);
    }

    .feature-list svg { color: var(--mint-dark); }

    /* Location Strip */
    .location-strip {
        background: var(--navy);
        color: var(--white);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .location-info h2 { color: var(--white); margin-bottom: 1rem; }
    .address { 
        font-size: 1.5rem; 
        font-family: var(--font-heading);
        margin-bottom: 2rem; 
        color: var(--mint);
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
        color: var(--white);
    }

    .contact-item:hover { color: var(--mint); }

    .location-map {
        background: var(--navy-light);
        border-radius: 20px;
        padding: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .map-placeholder {
        text-align: center;
        color: var(--gray);
    }
    
    .map-pin {
        width: 60px;
        height: 60px;
        background: var(--mint);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: var(--navy);
    }

    /* Footer */
    footer {
        background: var(--off-white);
        padding: 5rem 0 2rem;
        border-top: 1px solid #e2e8f0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 2fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .footer-brand p {
        color: var(--gray);
        margin-top: 1rem;
        max-width: 300px;
    }

    .footer-links h4, .footer-newsletter h4 {
        margin-bottom: 1.5rem;
        color: var(--navy);
    }

    .footer-links ul {
        display: grid;
        gap: 0.75rem;
    }

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

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

    .footer-form {
        display: flex;
        gap: 0.5rem;
    }

    .footer-form input {
        padding: 0.75rem 1rem;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        flex: 1;
        font-family: var(--font-body);
    }

    .footer-form button {
        background: var(--navy);
        color: var(--white);
        border: none;
        padding: 0 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }

    .footer-form button:hover { background: var(--mint); color: var(--navy); }
    
    .form-msg {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: var(--mint-dark);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #e2e8f0;
        color: var(--gray);
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-grid, .about-grid, .location-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .hero { padding-top: 100px; }
        .hero-visual { height: 400px; order: -1; }
        .main-card { width: 100%; height: 100%; left: 0; }
        .stat-card { top: -20px; right: -20px; }
        .secondary-card { bottom: -20px; left: 20px; }
        
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            box-shadow: var(--shadow-lg);
        }
        
        .nav-links.active { transform: translateY(0); }
        .mobile-toggle { display: flex; }
        
        .footer-grid { grid-template-columns: 1fr; }
    }
</style>
