    /* --- CSS Variables & Reset --- */
    :root {
        /* Palette: Teal & Slate Grey */
        --teal-dark: #0f4c5c;
        --teal-primary: #1b5c6e;
        --teal-light: #e0f2f4;
        --slate-dark: #2f4f4f;
        --slate-grey: #708090;
        --slate-light: #f4f7f6;
        --white: #ffffff;
        --black: #1a1a1a;
        
        /* Fonts */
        --font-serif: 'Cormorant Garamond', serif;
        --font-sans: 'Montserrat', sans-serif;
        
        /* Spacing */
        --section-padding: 100px 0;
        --container-width: 1200px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
        object-fit: cover;
    }

    /* --- Utilities --- */
    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .text-center { text-align: center; }

    .section-tag {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal-primary);
        margin-bottom: 1rem;
    }
    
    .section-tag.light { color: var(--teal-light); }

    .section-title {
        font-size: 3.5rem;
        color: var(--teal-dark);
        margin-bottom: 1.5rem;
    }
    
    .section-title.light { color: var(--white); }

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

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: var(--teal-dark);
        color: var(--white);
        border: 2px solid var(--teal-dark);
    }

    .btn-primary:hover {
        background-color: transparent;
        color: var(--teal-dark);
    }

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

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

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

    .btn-outline-light:hover {
        background-color: var(--white);
        color: var(--teal-dark);
    }

    .full-width { width: 100%; }

    /* --- Navbar --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        padding: 1rem 0;
        transition: padding 0.3s ease;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--teal-dark);
        letter-spacing: -0.5px;
    }

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

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--slate-dark);
    }

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--teal-dark);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--teal-dark);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .close-menu-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        font-size: 3rem;
        color: var(--white);
        cursor: pointer;
    }

    .mobile-menu ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--white);
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

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

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(15, 76, 92, 0.4), rgba(15, 76, 92, 0.8));
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: var(--white);
        max-width: 800px;
    }

    .hero-subtitle {
        display: block;
        font-family: var(--font-sans);
        font-size: 1rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .hero-title {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-title em {
        font-style: italic;
        font-weight: 300;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        font-weight: 300;
    }

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

    .scroll-down {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255,255,255,0.5);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }

    .scroll-down span {
        width: 4px;
        height: 8px;
        background: var(--white);
        border-radius: 2px;
        margin-top: 10px;
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% { transform: translateY(0); opacity: 1; }
        100% { transform: translateY(15px); opacity: 0; }
    }

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

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

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

    .about-image-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 20px 20px 0 var(--teal-light);
    }

    .about-text .lead {
        font-size: 1.3rem;
        color: var(--teal-dark);
        margin-bottom: 1.5rem;
        font-family: var(--font-serif);
    }

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

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

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

    .feature-list svg {
        color: var(--teal-primary);
    }

    /* --- Menu --- */
    .menu {
        padding: var(--section-padding);
        background-color: var(--teal-dark);
    }

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

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

    .menu-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

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

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

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

    .menu-content {
        padding: 25px;
    }

    .menu-content h3 {
        font-size: 1.5rem;
        color: var(--teal-dark);
        margin-bottom: 0.5rem;
    }

    .menu-content p {
        font-size: 0.95rem;
        color: var(--slate-grey);
    }

    .mt-4 { margin-top: 3rem; }

    /* --- Gallery --- */
    .gallery {
        padding: var(--section-padding);
        background-color: var(--slate-light);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 300px);
        gap: 20px;
        margin-top: 3rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
        position: relative;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }

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

    .item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
    .item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .item-3 { grid-column: 4 / 5; grid-row: 1 / 2; }
    .item-4 { grid-column: 3 / 5; grid-row: 2 / 3; }

    /* --- Contact --- */
    .contact {
        padding: var(--section-padding);
        background-color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

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

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .info-item svg {
        color: var(--teal-primary);
        flex-shrink: 0;
        margin-top: 4px;
    }

    .info-item strong {
        display: block;
        color: var(--teal-dark);
        margin-bottom: 0.25rem;
        font-family: var(--font-serif);
        font-size: 1.2rem;
    }

    .info-item p {
        color: var(--slate-grey);
        margin: 0;
    }

    .contact-form-wrapper {
        background-color: var(--slate-light);
        padding: 40px;
        border-radius: 8px;
        border: 1px solid var(--teal-light);
    }

    .contact-form-wrapper h3 {
        font-size: 2rem;
        color: var(--teal-dark);
        margin-bottom: 2rem;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--slate-dark);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: border-color 0.3s;
    }

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

    .form-status {
        margin-top: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .success { color: green; }
    .error { color: red; }

    /* --- Footer --- */
    .footer {
        background-color: var(--teal-dark);
        color: var(--white);
        padding: 60px 0 30px;
        text-align: center;
    }

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

    .footer-brand h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

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

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

    .footer-links a:hover {
        color: var(--white);
        text-decoration: underline;
    }

    .footer-copy {
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        width: 100%;
        text-align: center;
    }

    /* --- Animations --- */
    .reveal-bottom, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-bottom { transform: translateY(30px); }
    .reveal-left { transform: translateX(-30px); }
    .reveal-right { transform: translateX(30px); }
    .reveal-scale { transform: scale(0.95); }

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

    /* --- Responsive --- */
    @media (max-width: 1024px) {
        .hero-title { font-size: 4rem; }
        .section-title { font-size: 2.8rem; }
        .about-grid, .contact-wrapper { gap: 40px; }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
        .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
        .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
        .item-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
        .item-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
    }

    @media (max-width: 768px) {
        .nav-links { display: none; }
        .mobile-menu-btn { display: flex; }
        
        .hero-title { font-size: 3rem; }
        .hero-buttons { flex-direction: column; }
        .hero-buttons .btn { width: 100%; text-align: center; }
        
        .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
        
        .about-image-wrapper { order: -1; }
        .about-image-wrapper img { height: 350px; box-shadow: 10px 10px 0 var(--teal-light); }
        
        .section-title { font-size: 2.5rem; }
        
        .gallery-grid { display: flex; flex-direction: column; gap: 20px; }
        .gallery-item { height: 250px; }
    }
