        :root {
            --primary: #F8C8DC;
            --secondary: #E8D5F5;
            --accent: #FFFDD0;
            --text: #4A3040;
            --soft: #FDF2F8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--soft); line-height: 1.7; }
        h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

        /* HERO with parallax wave */
        .hero {
            min-height: 90vh;
            display: flex; align-items: center; justify-content: center;
            text-align: center;
            background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, -30px) rotate(2deg); }
        }
        .hero h1 { font-size: 4rem; letter-spacing: -1px; }
        .hero p { font-size: 1.2rem; margin-top: 1rem; opacity: 0.8; }
        .wave-bottom {
            position: absolute; bottom: 0; left: 0; width: 100%;
        }

        .section { padding: 5rem 0; }
        .section-alt { background: white; }

        .grid { display: grid; gap: 2rem; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

        .card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(74,48,64,0.06);
            transition: transform 0.4s ease;
        }
        .card:hover { transform: translateY(-8px); }

        .btn-velvet {
            display: inline-block;
            background: var(--text);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 2rem;
            transition: all 0.3s ease;
        }
        .btn-velvet:hover { background: var(--primary); color: var(--text); }

        .fade-in { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        .price-item {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(74,48,64,0.1);
        }
        .price-item:last-child { border-bottom: none; }
        .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); }

        footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 3rem 0; text-align: center; }
        footer a { color: var(--primary); text-decoration: none; margin: 0 1rem; }
