:root {
    /* Updated Palette - More Organic/Luxury */
    --primary: #2C5F2D; /* Deep Forest Green */
    --primary-light: #97BC62; /* Fresh Leaf */
    --accent: #D4A373; /* Warm Sand/Wood */
    --dark: #1F2937;
    --text: #4B5563;
    --bg-cream: #FDFCF8;
    --bg-soft: #F3F4F6;
    --white: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius-lg: 24px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 20px 40px -15px rgba(44, 95, 45, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    display: none; /* Hidden on mobile by default, shown via JS on desktop usually */
}
@media (min-width: 992px) {
    .cursor-dot {
        display: block;
        width: 8px;
        height: 8px;
        background-color: var(--primary);
    }
    .cursor-outline {
        display: block;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(44, 95, 45, 0.5);
        transition: width 0.2s, height 0.2s;
    }
}

/* Floating Nature Elements */
.nature-element {
    position: fixed;
    color: rgba(151, 188, 98, 0.2);
    font-size: 4rem;
    z-index: -1;
    animation: floatElement 10s ease-in-out infinite;
}
.leaf-1 { top: 15%; left: 5%; animation-duration: 12s; }
.leaf-2 { bottom: 20%; right: 5%; animation-duration: 15s; font-size: 5rem; transform: rotate(45deg); }
.drop-1 { top: 40%; right: 15%; color: rgba(135, 206, 235, 0.2); animation-duration: 8s;}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.section-badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 em, h1 em { font-style: italic; font-weight: 400; color: var(--primary); }
p.subtitle { font-size: 1.1rem; color: var(--accent); margin-bottom: 1rem; font-family: var(--font-heading); font-style: italic;}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    background: rgba(253, 252, 248, 0.85); /* trans cream */
    backdrop-filter: blur(10px);
    z-index: 1011;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    box-shadow: 0 5px 20px 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: 2rem;
    font-weight: 700;
    color: var(--dark);
}
.logo .dot { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 40px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.btn-circle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials a {
    color: var(--dark);
    font-size: 1.2rem;
    transition: var(--transition);
}
.nav-socials a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-header-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-header-wa:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Old Circle Btn Removed */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Blend mask for smooth transition to content */
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}


.hero-container {
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-circle-img {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid var(--white);
    box-shadow: var(--shadow-soft);
    position: relative;
    animation: floatCircle 6s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
    color: var(--dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.play-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    transition: var(--transition);
    backdrop-filter: none;
}
.play-btn:hover .play-icon { transform: scale(1.1); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(90deg);
    transform-origin: right center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--dark);
}

/* Main Footer (Rebuilt) */
.main-footer {
    background-color: #1c1c1e; /* Lighter "Soft Black" */
    color: #e5e5e5;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align vertically center */
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    display: inline-block;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.footer-logo span { color: var(--primary); }

.footer-desc {
    color: #9ca3af;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keep right alignment for balance */
    justify-content: center;
}

.contact-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.phone-link {
    font-size: 1.8rem;
    color: #f3f4f6;
    font-family: var(--font-heading);
    transition: var(--transition);
    line-height: 1;
    margin-bottom: 5px;
}
.phone-link:hover {
    color: var(--primary);
}

.email-link {
    font-size: 1rem;
    color: #9ca3af;
    transition: var(--transition);
}
.email-link:hover { color: #fff; }

.footer-bottom-bar {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 0.85rem;
    flex-wrap: wrap; /* efficient adaptation */
    gap: 20px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #6b7280;
    transition: var(--transition);
}
.bottom-links a:hover { color: var(--primary); }

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .contact-group {
        align-items: center;
    }
    .footer-bottom-bar {
        flex-direction: column-reverse; /* stack vertically on mobile */
        text-align: center;
    }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ph-text h2 .highlight {
    color: var(--primary);
    font-style: italic;
}

.ph-features {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.ph-feat h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--primary-light); }
.ph-feat p { font-size: 0.9rem; margin: 0; }

.ph-images {
    position: relative;
    height: 500px;
}

.img-box {
    position: absolute;
    width: 320px;
    height: 400px;
    overflow: hidden;
    border-radius: 100px 100px 0 0; /* Arch shape */
}

.img-box img { width: 100%; height: 100%; transition: transform 1s; }
.img-box:hover img { transform: scale(1.1); }

.box-1 { top: 0; left: 0; z-index: 1; }
.box-2 { top: 80px; right: 0; z-index: 2; border-radius: 0 0 100px 100px; /* Inverted Arch */ border: 5px solid var(--bg-cream); }

/* Collection - Zig Zag */
.collection { padding: 100px 0; overflow: hidden; }

.section-header.center { text-align: center; margin-bottom: 100px; }

.product-showcase {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 150px;
}

.product-showcase.right-layout { flex-direction: row; }
.product-showcase.left-layout { flex-direction: row-reverse; }

.p-image-wrapper {
    flex: 1;
    position: relative;
}

.p-image-wrapper img {
    border-radius: 8px; /* Slightly refined */
    box-shadow: var(--shadow-soft);
    display: block;
    width: 100%;
}

/* Organic blobs behind images */
.p-image-wrapper::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 120%;
    background: #f0fdf4; /* Very light green */
    z-index: -1;
    top: -10%;
    left: -10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.left-layout .p-image-wrapper::before {
     left: auto; right: -10%;
     border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
     background: #fff7ed; /* sandy */
}

.floating-tag {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.p-content { flex: 1; position: relative; }

.p-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: -80px;
    left: 0;
    line-height: 1;
    z-index: -1;
}

.p-content h3 { font-size: 2.5rem; margin-bottom: 10px; }

.p-specs { margin: 30px 0; }
.p-specs li { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; color: var(--text); font-weight: 500;}
.p-specs li i { color: var(--primary); }

/* Learn More Link Button */
.btn-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-link:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
    transform: translateY(-3px);
}

/* TikTok Section */
.tiktok-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.tiktok-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.tiktok-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    width: 100%;
    max-width: 320px;
}

.tiktok-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(44, 95, 45, 0.25);
}

.tiktok-item iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.tiktok-item .tiktok-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 15px;
}

.tiktok-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.tiktok-placeholder span {
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tiktok-grid {
        grid-template-columns: 1fr;
    }
    .tiktok-item {
        max-width: 100%;
    }
}

/* Lifestyle Banner */
.lifestyle-banner {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80') center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.lifestyle-banner::before {
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3);
}

.banner-content { position: relative; z-index: 10; color: white; }
.banner-content h2 { color: white; margin-bottom: 30px; }
.btn-white-outline {
    border: 2px solid white; color: white; padding: 15px 40px; border-radius: 50px;
    transition: var(--transition);
}
.btn-white-outline:hover { background: white; color: var(--dark); }

/* Responsive */
@media (max-width: 992px) {
    .h1 { font-size: 3rem; }
    .hero-bg-wrapper { width: 100%; opacity: 0.3; mask-image: none; -webkit-mask-image: none; }
    .hero-container { position: relative; z-index: 2; text-align: center; flex-direction: column; }
    .hero-content { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    
    .nav-links { display: none; }
    
    .hero-circle-img {
        width: 280px;
        height: 280px;
        margin-top: 40px;
        border-width: 10px;
    }
    
    .philosophy-grid { grid-template-columns: 1fr; }
    .ph-images { display: none; } /* Hide complex images on tablet for speed/simplicity */
    
    .product-showcase { flex-direction: column !important; gap: 40px; margin-bottom: 100px; }
    .p-image-wrapper { width: 100%; }
    
    /* Simple Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
        z-index: 1012;
        padding: 5px;
    }

    .mobile-menu-btn .bar {
        width: 28px;
        height: 2px;
        background: var(--dark);
        transition: var(--transition);
        border-radius: 2px;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
        background: var(--primary);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        transform: translateY(-5px) rotate(-45deg);
        background: var(--primary);
    }


    
    
    .header-actions {
        gap: 15px; 
    }
    .btn-header-wa span { display: none; }
    .btn-header-wa { padding: 8px 8px; width: 40px; height: 40px; justify-content: center; }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu a {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--dark);
        transition: var(--transition);
        transform: translateY(20px);
        opacity: 0;
    }
    
    .mobile-menu.active a {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
    
    .mobile-menu a:hover {
        color: var(--primary);
    }
    
    .mobile-menu .mobile-socials {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }
    
    .mobile-menu .mobile-socials a {
        font-size: 1.5rem;
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .nav-socials { display: flex; } /* Hide socials on very small screens if tight, or keep check */
    .btn-header-wa { display: flex; }
    .nav-right { gap: 20px; }

    .hero {
        height: min-content;
        padding: 6rem 0;
    }

    .ph-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar .container { padding: 0 20px; }
    .hero h1 { font-size: 2.8rem; }
}

/* Animations classes */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.fade-in-active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
