:root {
            --cream: #FFFAF3; /* Soft cream background */
            --bg-alt: #FDF3E9; /* Soft pinkish-beige */
            --dusty-pink: #D9A0A0; /* Sweet dusty pink */
            --sage-green: #B2C5B2; /* Clean sage green */
            --taupe: #635249; /* Soft brown/taupe for text - NO BLACK */
            --taupe-light: #9A8A82; /* Lighter text for descriptions */
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Montserrat', sans-serif;
            --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--cream);
            color: var(--taupe);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* =========================================
           GLOBAL TYPOGRAPHY & UTILITIES
           ========================================= */
        .font-serif { font-family: var(--font-serif); }
        .text-pink { color: var(--dusty-pink); }
        .text-sage { color: var(--sage-green); }
        .text-italic { font-style: italic; }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 8rem 0; 
        }

        .subtitle {
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dusty-pink);
            margin-bottom: 1.5rem;
            display: block;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.75rem; 
            font-weight: 500;
            line-height: 1.2;
            color: var(--taupe);
            margin-bottom: 2rem;
        }

        .editorial-text {
            font-size: 1.05rem; 
            color: var(--taupe-light);
            font-weight: 400;
            max-width: 600px;
            line-height: 1.8;
        }

        /* Buttons - Sweet & Rounded */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 3rem;
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 50px; 
            transition: var(--transition-fast);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-solid {
            background-color: var(--dusty-pink);
            color: #fff;
            border: 1px solid var(--dusty-pink);
            box-shadow: 0 8px 20px rgba(217, 160, 160, 0.3);
        }

        .btn-solid:hover {
            background-color: var(--sage-green);
            border-color: var(--sage-green);
            color: #fff;
            box-shadow: 0 8px 20px rgba(178, 197, 178, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--taupe);
            border: 1px solid var(--dusty-pink);
        }

        .btn-outline:hover {
            background-color: var(--dusty-pink);
            color: #fff;
        }

        /* Animations */
        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition-slow);
        }

        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================================
           HEADER / NAVBAR
           ========================================= */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 2rem 0;
            transition: var(--transition-fast);
        }

        .header.scrolled {
            padding: 1rem 0;
            background: rgba(255, 250, 243, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(99, 82, 73, 0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 600;
            color: var(--taupe);
            letter-spacing: 0.05em;
        }

        .logo span {
            font-weight: 500;
            font-style: italic;
            color: var(--dusty-pink);
            margin-left: 0.3rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            color: var(--taupe);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--dusty-pink);
            transition: var(--transition-fast);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--taupe);
            cursor: pointer;
        }

        /* =========================================
           HERO SECTION
           ========================================= */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255, 250, 243, 0.4), rgba(255, 250, 243, 1));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
            margin-top: 10vh;
        }

        .hero-subtitle {
            color: var(--sage-green);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-title {
            font-size: 4rem; 
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--taupe);
        }

        .hero-btn-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        /* =========================================
           ABOUT SECTION
           ========================================= */
        .about-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px; 
            box-shadow: 0 20px 40px rgba(99, 82, 73, 0.08);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--dusty-pink);
            border-radius: 20px;
            z-index: -1;
        }

        .about-text {
            padding-right: 2rem;
        }

        .about-text p {
            margin-bottom: 2rem;
        }

        .signature {
            font-family: var(--font-serif);
            font-size: 1.8rem; 
            color: var(--dusty-pink);
            font-style: italic;
            margin-top: 2rem;
        }

        /* =========================================
           MENU KATALOG SECTION
           ========================================= */
        .menu-section {
            background-color: var(--sage-green);
        }

        .menu-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .menu-header .section-title {
            color: #fff;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
        }

        .catalog-item {
            text-align: center;
            background: #fff;
            padding: 1rem;
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(99, 82, 73, 0.05);
            transition: var(--transition-fast);
        }

        .catalog-item:hover {
            transform: translateY(-10px);
        }

        .catalog-img {
            width: 100%;
            aspect-ratio: 1 / 1; 
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .catalog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .catalog-item:hover .catalog-img img {
            transform: scale(1.08);
        }

        .catalog-item h3 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--taupe);
            margin-bottom: 0.3rem;
        }

        .catalog-item p {
            font-size: 0.8rem;
            color: var(--taupe-light);
            font-weight: 500;
        }

        /* =========================================
           SERVICES SECTION
           ========================================= */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            text-align: center;
        }

        .service-card {
            max-width: 250px;
            background: var(--bg-alt);
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(99, 82, 73, 0.05);
        }

        .service-card i {
            font-size: 2rem;
            color: var(--dusty-pink);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            margin-bottom: 0.8rem;
            color: var(--taupe);
        }

        .service-card p {
            font-size: 0.85rem;
            color: var(--taupe-light);
            line-height: 1.6;
        }

        /* =========================================
           FILOSOFI & ULASAN SECTION (PREMIUM LOOK)
           ========================================= */
        .philosophy-reviews {
            background-color: #FFFDF9;
            border-top: 1px solid rgba(217, 160, 160, 0.1);
            border-bottom: 1px solid rgba(217, 160, 160, 0.1);
        }

        .phil-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: start;
        }

        .phil-left {
            position: sticky;
            top: 120px;
        }

        .phil-point-list {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .phil-point {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }

        .phil-point i {
            font-size: 1.25rem;
            color: var(--dusty-pink);
            background-color: var(--bg-alt);
            padding: 0.8rem;
            border-radius: 50%;
        }

        .phil-point h4 {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--taupe);
            margin-bottom: 0.4rem;
        }

        .phil-point p {
            font-size: 0.9rem;
            color: var(--taupe-light);
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .review-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(99, 82, 73, 0.03);
            border: 1px solid rgba(217, 160, 160, 0.15);
            transition: var(--transition-fast);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(217, 160, 160, 0.08);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .review-avatar-text {
            width: 44px;
            height: 44px;
            background-color: var(--bg-alt);
            color: var(--dusty-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .review-meta h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--taupe);
        }

        .review-meta p {
            font-size: 0.75rem;
            color: var(--taupe-light);
        }

        .review-stars {
            color: #F1C40F; /* Gold Stars */
            font-size: 0.85rem;
            display: flex;
            gap: 0.2rem;
        }

        .review-body {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.05rem;
            color: var(--taupe);
            line-height: 1.6;
        }

        /* =========================================
           GALLERY SECTION
           ========================================= */
        .gallery-section {
            background-color: var(--bg-alt);
        }

        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px; 
            box-shadow: 0 8px 20px rgba(99, 82, 73, 0.06);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .item-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        .item-wide {
            grid-column: span 2;
            grid-row: span 1;
        }
        .item-tall {
            grid-column: span 1;
            grid-row: span 2;
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-section {
            text-align: center;
            position: relative;
        }

        .contact-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background-color: #fff;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(99, 82, 73, 0.06);
        }

        .contact-details {
            margin: 3rem 0;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            font-family: var(--font-sans);
            font-size: 1.1rem;
            color: var(--taupe);
            font-weight: 500;
        }

        .contact-details i {
            color: var(--dusty-pink);
            width: 30px;
            font-size: 1.3rem;
        }

        .whatsapp-btn {
            background-color: var(--sage-green);
            color: #fff;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            margin-top: 1rem;
            border-radius: 50px;
            box-shadow: 0 8px 20px rgba(178, 197, 178, 0.4);
        }
        .whatsapp-btn:hover {
            background-color: var(--dusty-pink);
            color: #fff;
            box-shadow: 0 8px 20px rgba(217, 160, 160, 0.4);
        }

        /* =========================================
           FLOATING WHATSAPP BUTTON
           ========================================= */
        .floating-wa {
            position: fixed;
            bottom: 35px;
            right: 35px;
            background-color: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            z-index: 999;
            transition: var(--transition-fast);
            animation: pulse-wa 2s infinite;
        }

        .floating-wa:hover {
            transform: scale(1.1);
            background-color: #20ba5a;
            color: #fff;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        @keyframes pulse-wa {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* =========================================
           FOOTER
           ========================================= */
        .footer {
            background-color: var(--dusty-pink);
            color: #fff;
            padding: 5rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo {
            color: #fff;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-brand .logo span {
            color: var(--taupe);
        }

        .footer-desc {
            color: #FFFDF9;
            font-size: 0.95rem;
            max-width: 400px;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .footer-title {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--taupe);
        }

        .footer-links list-style {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #FFFDF9;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--taupe);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 2rem;
            font-size: 0.8rem;
            color: #FFFDF9;
            letter-spacing: 0.05em;
        }

        /* =========================================
           RESPONSIVE DESIGN
           ========================================= */
        @media (max-width: 1200px) {
            .catalog-grid { grid-template-columns: repeat(3, 1fr); }
            .hero-title { font-size: 3.5rem; }
            .phil-grid { grid-template-columns: 1fr; gap: 4rem; }
            .phil-left { position: relative; top: 0; }
        }

        @media (max-width: 992px) {
            .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
            .about-image img { height: 400px; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .item-large { grid-column: span 2; }
            .item-wide { grid-column: span 2; }
            .services-grid { flex-direction: column; align-items: center; gap: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-btn { display: block; }
            .hero-title { font-size: 2.75rem; }
            .section-title { font-size: 2.25rem; }
            .catalog-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-btn-group { flex-direction: column; }
            .contact-details { font-size: 1rem; }
            .floating-wa {
                bottom: 25px;
                right: 25px;
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .catalog-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .item-large, .item-wide, .item-tall { grid-column: span 1; grid-row: span 1; }
        }