    :root {
        --emerald: #047857;
        --emerald-dark: #065f46;
        --emerald-light: #d1fae5;
        --cream: #FDFBF7;
        --cream-dark: #F5F2EB;
        --text-dark: #1F2937;
        --text-light: #6B7280;
        --white: #FFFFFF;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'DM Sans', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--cream);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Accessibility */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--emerald);
        color: white;
        padding: 8px;
        z-index: 100;
    }
    .skip-link:focus {
        top: 0;
    }
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    /* Geometric Blobs Background */
    .blob {
        position: fixed;
        z-index: -1;
        opacity: 0.6;
        filter: blur(60px);
    }
    .blob-1 {
        top: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: var(--emerald-light);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        animation: float 15s infinite ease-in-out;
    }
    .blob-2 {
        bottom: 10%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: #FEF3C7; /* Warm yellow accent */
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        animation: float 20s infinite ease-in-out reverse;
    }
    .blob-3 {
        top: 40%;
        right: 20%;
        width: 300px;
        height: 300px;
        background: var(--emerald-light);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation: float 18s infinite ease-in-out;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(30px, -50px) rotate(10deg); }
        66% { transform: translate(-20px, 20px) rotate(-5deg); }
    }

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

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }
    .btn-primary {
        background-color: var(--emerald);
        color: var(--white);
        border: 2px solid var(--emerald);
    }
    .btn-primary:hover {
        background-color: var(--emerald-dark);
        border-color: var(--emerald-dark);
        transform: translateY(-2px);
    }
    .btn-secondary {
        background-color: transparent;
        color: var(--emerald);
        border: 2px solid var(--emerald);
    }
    .btn-secondary:hover {
        background-color: var(--emerald);
        color: var(--white);
    }
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Logo */
    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--emerald);
        text-decoration: none;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .logo-icon {
        width: 24px;
        height: 24px;
        background: var(--emerald);
        border-radius: 50%;
        display: block;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        z-index: 50;
        border-bottom: 1px solid rgba(4, 120, 87, 0.1);
        padding: 1rem 0;
    }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-links a:hover {
        color: var(--emerald);
    }

    /* Mobile Toggle */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }
    .hamburger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        transition: all 0.3s;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        overflow: hidden;
        position: relative;
    }
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .badge {
        display: inline-block;
        background: var(--emerald-light);
        color: var(--emerald-dark);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    .hero h1 {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        line-height: 1.1;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }
    .hero p {
        font-size: 1.125rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        max-width: 480px;
    }
    .hero-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .hero-stats {
        display: flex;
        gap: 3rem;
    }
    .stat-num {
        display: block;
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 700;
        color: var(--emerald);
    }
    .stat-label {
        font-size: 0.875rem;
        color: var(--text-light);
    }

    /* Hero Image */
    .hero-image-wrapper {
        position: relative;
        height: 600px;
    }
    .hero-img-main {
        width: 100%;
        height: 100%;
        border-radius: 200px 200px 20px 20px;
        overflow: hidden;
        position: relative;
        z-index: 2;
        box-shadow: 20px 20px 0 var(--emerald-light);
    }
    .hero-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-img-float {
        position: absolute;
        bottom: 40px;
        left: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        border: 8px solid var(--cream);
        z-index: 3;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .hero-img-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .geo-shape {
        position: absolute;
        z-index: 1;
    }
    .geo-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--emerald);
        top: -20px;
        right: 20px;
        opacity: 0.8;
    }
    .geo-square {
        width: 80px;
        height: 80px;
        background: #FCD34D;
        bottom: 80px;
        right: -20px;
        transform: rotate(15deg);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    .section-tag {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.875rem;
        color: var(--emerald);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .section-header h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--text-dark);
    }

    /* Categories */
    .categories {
        padding: 5rem 0;
    }
    .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .cat-card {
        text-decoration: none;
        group: hover;
    }
    .cat-img {
        width: 100%;
        height: 400px;
        background-color: #eee;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }
    .cat-card:hover .cat-img {
        transform: translateY(-10px);
    }
    .cat-info h3 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }
    .cat-info p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* New Arrivals */
    .new-arrivals {
        padding: 5rem 0;
        background-color: var(--emerald);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }
    .new-arrivals::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }
    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .split-content .section-tag {
        color: var(--emerald-light);
    }
    .split-content h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--white);
    }
    .split-content p {
        color: rgba(255,255,255,0.9);
        margin-bottom: 1.5rem;
    }
    .feature-list {
        list-style: none;
        margin-bottom: 2rem;
    }
    .feature-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .feature-list li::before {
        content: '✓';
        color: var(--emerald-light);
    }
    .split-content .btn-primary {
        background: var(--white);
        color: var(--emerald);
        border-color: var(--white);
    }
    .split-content .btn-primary:hover {
        background: var(--cream);
        border-color: var(--cream);
    }
    .split-image {
        position: relative;
        z-index: 1;
    }
    .split-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    /* About */
    .about {
        padding: 5rem 0;
    }
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .about-img-col {
        position: relative;
    }
    .about-img-col img {
        width: 100%;
        border-radius: 20px;
        position: relative;
        z-index: 2;
    }
    .about-accent {
        position: absolute;
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
        background: var(--emerald-light);
        border-radius: 20px;
        z-index: 1;
    }
    .about-text-col .section-tag {
        margin-bottom: 1rem;
    }
    .about-text-col h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    .about-text-col p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }
    .signature {
        margin-top: 2rem;
        font-family: var(--font-serif);
        font-style: italic;
        font-size: 1.5rem;
        color: var(--emerald);
    }

    /* Visit */
    .visit {
        padding: 5rem 0;
        background: var(--cream-dark);
    }
    .visit-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    .visit-info {
        padding: 4rem;
    }
    .visit-info h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .visit-info > p {
        color: var(--text-light);
        margin-bottom: 2rem;
    }
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }
    .contact-item .icon {
        width: 40px;
        height: 40px;
        background: var(--emerald-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald);
        flex-shrink: 0;
    }
    .contact-item strong {
        display: block;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }
    .contact-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .contact-item a {
        color: var(--emerald);
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .visit-map {
        min-height: 400px;
    }

    /* Footer */
    .footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 4rem 0 2rem;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .footer-brand p {
        color: rgba(255,255,255,0.7);
        margin-top: 1rem;
        max-width: 300px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .link-col h4 {
        font-family: var(--font-serif);
        margin-bottom: 1rem;
        color: var(--emerald-light);
    }
    .link-col a {
        display: block;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        padding: 0.25rem 0;
        transition: color 0.2s;
    }
    .link-col a:hover {
        color: var(--white);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        color: rgba(255,255,255,0.5);
        font-size: 0.875rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero h1 { font-size: 2.5rem; }
        .category-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .mobile-toggle { display: flex; }
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--cream);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .nav-links.active {
            transform: translateY(0);
        }
        .hero-grid { grid-template-columns: 1fr; }
        .hero-image-wrapper { height: 400px; order: -1; }
        .hero-actions { flex-direction: column; }
        .split-layout { grid-template-columns: 1fr; }
        .about-grid { grid-template-columns: 1fr; }
        .visit-wrapper { grid-template-columns: 1fr; }
        .visit-map { min-height: 300px; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-links { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

    @media (max-width: 480px) {
        .category-grid { grid-template-columns: 1fr; }
        .hero h1 { font-size: 2rem; }
    }
</style>
