:root {
    /* Sophisticated Rose Theme Palette */
    --rose-pink: #f4e3e1;
    --rose-dark: #A5444E;
    --rose-soft: #D4898E;
    --cream: #FFFDD0;
    --cream-light: #FFFCF5;
    --white: #FFFFFF;
    --gold: #C5A059;
    --gold-light: #E0C995;
    --text-dark: #3E3033;
    --text-muted: #826c71;

    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    line-height: 1.8;
    background-color: var(--rose-pink);
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Base Background Architecture */
.floral-blur-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1920&q=80'); /* floral mix */
    background-size: cover; background-position: center;
    filter: blur(15px) contrast(0.8) opacity(0.35);
    z-index: -5; pointer-events: none;
}
#petals-container {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -3; pointer-events: none;
}

/* Generalized Formatting Utilities */
.text-center { text-align: center; }
.text-rose-dark { color: var(--rose-dark); }
.text-rose-soft { color: var(--rose-soft); }
.text-gold { color: var(--gold); }
.text-dark { color: var(--text-dark); }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mb-5 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.container { max-width: 1050px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 5; }
.container-sm { max-width: 800px; }
.section { padding: 140px 0; }
.section-cream { background: linear-gradient(180deg, var(--white) 0%, var(--cream-light) 100%); }
.footer-space { height: 12vh; }

/* Premium Typography Scaling */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--text-dark); letter-spacing: 0.5px;}

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

/* Circular Bloom Centerpiece Effect */
.rose-bloom-effect { margin: 0 auto; width: 200px; height: 200px; border-radius: 50%; overflow: hidden; padding: 5px; border: 2px solid var(--gold-light); box-shadow: 0 0 35px rgba(165, 68, 78, 0.25); background: var(--white);}
.center-rose { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 5s ease; }
.rose-bloom-effect:hover .center-rose { transform: scale(1.15); }

.hero-title {
    font-size: 5rem; letter-spacing: 2px; font-style: italic; line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(255,255,255,1);
}
.hero-quote {
    font-size: 1.3rem; color: var(--text-dark); max-width: 850px; margin: 0 auto;
    font-weight: 400; line-height: 2.2; position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.7); padding: 45px 55px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 15px 45px rgba(165, 68, 78, 0.12);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
}

.section-title { font-size: 3.2rem; margin-bottom: 25px; letter-spacing: 1.5px; font-style: italic; }
.section-para { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 30px; line-height: 2.1; font-weight: 300; }

/* Refined UI Action Inputs */
.scroll-btn {
    display: inline-block; color: var(--rose-dark); text-decoration: none; font-size: 1.05rem;
    letter-spacing: 3px; text-transform: uppercase; padding: 16px 45px; border-radius: 40px;
    background: rgba(255, 255, 255, 0.85); box-shadow: 0 10px 25px rgba(165, 68, 78, 0.15);
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); border: 2px solid var(--rose-dark); font-weight: 500;
}
.scroll-btn:hover { background: var(--rose-dark); color: var(--white); transform: translateY(4px); }

.btn-royal {
    position: relative; overflow: hidden; display: inline-block;
    padding: 16px 45px; border-radius: 40px; border: none; font-size: 1.15rem; font-family: var(--font-body);
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none;
    transition: all 0.4s ease; z-index: 1; outline: none; border: 2px solid transparent;
    background: linear-gradient(135deg, var(--rose-dark), #802f37); color: var(--white);
    box-shadow: 0 10px 35px rgba(165, 68, 78, 0.45);
}
.btn-royal:hover { transform: translateY(-4px); box-shadow: 0 15px 45px rgba(165, 68, 78, 0.6); border-color: var(--gold-light); }

.btn-outline { background-color: transparent; border: 2px solid rgba(165, 68, 78, 0.5); padding: 14px 45px; display: inline-block; border-radius: 40px; text-decoration: none; font-weight: 500; cursor: pointer; font-size: 1.1rem; line-height: 1; transition: 0.3s; letter-spacing: 1.5px;}
.btn-outline:hover { background-color: rgba(165, 68, 78, 0.08); border-color: var(--rose-dark); }

.pulse-glow { animation: pulseAnim 3s infinite alternate cubic-bezier(0.45, 0, 0.55, 1); }
@keyframes pulseAnim { 0% { box-shadow: 0 0 0 0 rgba(212, 137, 142, 0.5); } 100% { box-shadow: 0 0 0 25px rgba(212, 137, 142, 0); } }

/* Ambient Audio Toggler */
.music-btn {
    position: fixed; top: 30px; right: 30px; width: 60px; height: 60px;
    border-radius: 50%; background: var(--white); color: var(--rose-dark);
    border: 1px solid var(--rose-soft); display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 100; transition: all 0.4s ease; box-shadow: 0 5px 25px rgba(165, 68, 78, 0.2); font-size: 1.3rem;
}
.music-btn:hover { background: var(--rose-dark); color: var(--white); border-color: transparent; }

/* Substantive Module Blocks */
.card-up {
    background: var(--white); border-radius: 12px; border: 1px solid rgba(165, 68, 78, 0.1);
    padding: 80px 70px; box-shadow: 0 25px 60px rgba(165, 68, 78, 0.08); margin-top: -90px; position: relative; z-index: 5;
}

.split-layout { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 70px; }
.col-text { flex: 1; min-width: 320px; }
.col-img { flex: 1; min-width: 320px; text-align: center; }
.pl-md { padding-left: 2rem; }

.premium-frame { position: relative; display: inline-block; padding: 18px; border: 1px solid var(--gold-light); background: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.premium-frame::before { content: ''; position: absolute; top: -12px; left: -12px; right: -12px; bottom: -12px; border: 1px solid rgba(197, 160, 89, 0.5); z-index: -1; }
.framed-image { width: 100%; max-width: 480px; height: auto; transition: filter 0.6s ease; filter: sepia(15%); border: 1px solid rgba(0,0,0,0.05);}
.premium-frame:hover .framed-image { filter: sepia(0%); }

/* Staggered CSS Grid Details */
.promise-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.p-card { background: var(--white); padding: 50px 35px; border-radius: 8px; box-shadow: 0 10px 45px rgba(165, 68, 78, 0.06); text-align: center; transition: all 0.4s ease; border-bottom: 4px solid transparent; border: 1px solid rgba(0,0,0,0.02);}
.p-card:hover { transform: translateY(-12px); box-shadow: 0 20px 55px rgba(165, 68, 78, 0.15); border-color: var(--rose-soft); }
.p-icon { font-size: 3rem; margin-bottom: 25px; }
.p-card h3 { font-size: 1.9rem; margin-bottom: 15px; font-style: italic; }
.p-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.9; }

/* Dynamic Modal Overlays */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(62, 48, 51, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.modal-content {
    margin: 15vh auto; width: 90%; max-width: 530px; position: relative; padding: 60px 50px;
    background: var(--cream-light); border-radius: 8px; animation: modalFade 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28); 
    box-shadow: 0 35px 80px rgba(0,0,0,0.5); border: 15px solid var(--white); border-top-color: var(--rose-dark);
}
.close-modal { position: absolute; top: 15px; right: 25px; color: var(--text-muted); font-size: 32px; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--rose-dark); }
#modalMessage img { width: 100%; max-width: 250px; margin-bottom: 30px; border-radius: 6px; box-shadow: 0 15px 40px rgba(165, 68, 78, 0.2); filter: contrast(0.95); }
#modalMessage h3 { font-size: 2.5rem; color: var(--rose-dark); margin-bottom: 15px; font-style: italic;}
#modalMessage p { font-size: 1.2rem; color: var(--text-dark); line-height: 1.8; font-weight: 300;}

@keyframes modalFade { from { opacity: 0; transform: scale(0.9) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* Hardware Accelerated Petals Base Definitions */
.rose-petal-anim {
    position: absolute; background-image: radial-gradient(circle at top right, var(--rose-pink), var(--rose-soft));
    border-radius: 5px 25px 5px 25px; opacity: 0.65; pointer-events: none;
    box-shadow: 2px 2px 8px rgba(165,68,78,0.15);
    animation: fallPetal linear infinite; will-change: transform, opacity;
}
@keyframes fallPetal {
    0% { transform: translateY(-80px) rotateX(0) rotateY(0) rotateZ(0); opacity: 0; }
    10% { opacity: 0.85; }
    80% { opacity: 0.85; }
    100% { transform: translateY(120vh) rotateX(360deg) rotateY(200deg) rotateZ(200deg); opacity: 0; }
}

/* Scaling CSS rules exclusively for small portable devices */
@media (max-width: 768px) {
    .container { padding: 0 7%; }
    .hero-title { font-size: 3.8rem; }
    .hero-quote { font-size: 1.2rem; padding: 30px 20px; }
    .rose-bloom-effect { width: 150px; height: 150px; margin-bottom: 20px; border-width: 3px; }
    .card-up { padding: 40px 25px; margin-top: -40px; }
    .split-layout { flex-direction: column; gap: 45px; }
    .pl-md { padding-left: 0; text-align: center; }
    .section-para { text-align: center; }
    .section-title { font-size: 2.6rem; text-align: center;}
    .action-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .btn-royal { width: 100%; padding: 16px 20px;}
    .modal-content { padding: 40px 25px; border-width: 8px; }
}
