:root {
            --soft-rose: #D6A99D;
            --creamy-beige: #F2EDD1;
            --white: #FFFFFF;
            --text-dark: #5a4a45;
            --margin-width: 100px;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            font-family: "Parisienne", cursive;
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* --- Global Margin Frame --- */
        .margin-left, .margin-right {
            position: fixed;
            top: 0;
            bottom: 0;
            width: var(--margin-width);
            background: var(--white);
            z-index: 1001;
        }
        .margin-left { left: 0; border-right: 1px solid rgba(214, 169, 157, 0.1); }
        .margin-right { right: 0; border-left: 1px solid rgba(214, 169, 157, 0.1); }

        .content-wrapper {
            margin: 0 var(--margin-width);
            position: relative;
        }

        /* --- Header --- */
        header {
            position: sticky;
            top: 0;
            height: 110px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            z-index: 1000;
            border-bottom: 1px solid var(--creamy-beige);
        }

        .logo-text { font-size: 2.8rem; color: var(--soft-rose); cursor: pointer; }
        
        nav { display: flex; gap: 30px; }
        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 1px;
            background: var(--soft-rose);
            transition: 0.3s;
        }
        nav a:hover::after { width: 100%; }

        .auth-zone { display: flex; align-items: center; gap: 20px; font-size: 1.1rem; }
        .auth-btn { cursor: pointer; color: var(--soft-rose); border-bottom: 1px solid transparent; transition: 0.3s; }
        .auth-btn:hover { border-bottom-color: var(--soft-rose); }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1519689680058-324335c77eba?auto=format&fit=crop&w=2000');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -2;
            animation: kenBurns 25s infinite alternate;
        }

        @keyframes kenBurns {
            from { transform: scale(1) translate(0, 0); }
            to { transform: scale(1.15) translate(-2%, -2%); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--creamy-beige) 40%, rgba(242, 237, 209, 0.1) 100%);
            z-index: -1;
        }

        .hero-content {
            padding: 15% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 1;
        }

        .hero-content h1 { font-size: 5.5rem; color: var(--soft-rose); line-height: 1; margin-bottom: 30px; }
        .hero-content p { font-size: 1.5rem; max-width: 500px; margin-bottom: 40px; }

        /* --- Components --- */
        .btn {
            display: inline-block;
            padding: 15px 45px;
            background: var(--soft-rose);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-size: 1.3rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(214, 169, 157, 0.2);
        }
        .btn:hover { background: #c2958a; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(214, 169, 157, 0.4); }
        .btn-outline {
            background: transparent;
            border: 1px solid var(--soft-rose);
            color: var(--soft-rose);
        }

        /* --- Sections --- */
        section { padding: 150px 10%; position: relative; }
        .section-title { text-align: center; font-size: 4rem; color: var(--soft-rose); margin-bottom: 80px; }

        /* --- Split Layouts --- */
        .split-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 700px;
            margin-bottom: 120px;
            background: var(--creamy-beige);
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.04);
        }
        .split-text { padding: 12%; display: flex; flex-direction: column; justify-content: center; }
        .split-img { background-size: cover; background-position: center; background-attachment: fixed; }

        /* --- Grid Layouts --- */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
        }

        .card {
            background: var(--creamy-beige);
            padding: 50px 40px;
            border-radius: 40px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 15px 45px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .card:hover { transform: translateY(-15px); box-shadow: 0 25px 60px rgba(214, 169, 157, 0.15); }
        .card i { color: var(--soft-rose); margin-bottom: 25px; }
        .card h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--soft-rose); }
        .card p { font-size: 1.1rem; margin-bottom: 25px; }

        /* --- Testimonials --- */
        .testimonials {
            background: var(--soft-rose);
            color: var(--creamy-beige);
            border-radius: 60px;
            padding: 100px 60px;
            text-align: center;
        }
        .carousel { display: flex; overflow-x: auto; gap: 40px; padding: 40px 0; scrollbar-width: none; scroll-snap-type: x mandatory; }
        .quote-card { 
            min-width: 500px; 
            background: rgba(255,255,255,0.08); 
            padding: 60px; 
            border-radius: 40px; 
            font-size: 1.6rem; 
            font-style: italic; 
            scroll-snap-align: center;
        }

        /* --- Journal / Filters --- */
        .filter-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; }
        .journal-card { padding: 0 !important; overflow: hidden; }
        .journal-card img { width: 100%; height: 280px; object-fit: cover; transition: 0.8s; }
        .journal-card:hover img { transform: scale(1.1); }

        /* --- Modal System --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(90, 74, 69, 0.6);
            backdrop-filter: blur(12px);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        .modal-content {
            background: var(--white);
            width: 100%;
            max-width: 1000px;
            max-height: 90vh;
            border-radius: 50px;
            position: relative;
            overflow-y: auto;
            padding: 80px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.2);
            animation: modalIn 0.5s ease-out;
        }
        @keyframes modalIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
        .modal-close { position: absolute; top: 40px; right: 40px; cursor: pointer; color: var(--soft-rose); z-index: 10; }

        /* --- Page Structure --- */
        .page { display: none; }
        .page.active { display: block; }

        /* --- Newsletter --- */
        .newsletter {
            background: var(--soft-rose);
            color: white;
            text-align: center;
            padding: 120px 10%;
            border-radius: 60px;
            margin: 100px 0;
        }
        .newsletter input {
            padding: 18px 35px;
            width: 350px;
            border-radius: 50px;
            border: none;
            margin-right: 15px;
            font-family: inherit;
            font-size: 1.2rem;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
        }

        /* --- Footer --- */
        footer {
            background: var(--creamy-beige);
            padding: 120px 10% 60px;
            border-radius: 80px 80px 0 0;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 100px;
        }
        .footer-col h4 { font-size: 2rem; color: var(--soft-rose); margin-bottom: 30px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; cursor: pointer; font-size: 1.2rem; transition: 0.3s; }
        .footer-col li:hover { color: var(--soft-rose); transform: translateX(5px); }
        .social-circle {
            display: inline-flex;
            width: 50px; height: 50px;
            background: var(--soft-rose);
            color: white;
            border-radius: 50%;
            align-items: center; justify-content: center;
            margin-right: 15px;
            transition: 0.4s;
        }
        .social-circle:hover { transform: translateY(-10px) rotate(360deg); }

        /* --- Responsive --- */
        @media (max-width: 1200px) {
            .margin-left, .margin-right { width: 40px; }
            .content-wrapper { margin: 0 40px; }
        }
        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; }
            .hero-overlay { background: rgba(242, 237, 209, 0.85); }
            .split-row { grid-template-columns: 1fr; }
            .split-img { height: 400px; }
            .margin-left, .margin-right { display: none; }
            .content-wrapper { margin: 0; }
            footer { grid-template-columns: 1fr; text-align: center; }
        }


#hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

#hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--soft-rose);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Optional: Animation when menu is open */
#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}        /* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    header {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    nav { display: none; width: 100%; flex-direction: column; gap: 15px; margin-top: 10px; }
    nav.mobile-open { display: flex; }
    #hamburger { display: flex; }
    .auth-zone { margin-top: 10px; gap: 15px; justify-content: flex-start; width: 100%; }
}

@media (max-width: 768px) {
    header { height: auto; padding: 15px 20px; }
    .logo-text { font-size: 2rem; }
    .auth-zone button, .auth-zone .auth-btn { font-size: 1rem; padding: 8px 20px; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.8rem; }
    nav a { font-size: 1rem; }
}
