.elementor-107 .elementor-element.elementor-element-37bb27d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-001a855 */@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Manrope:wght@200..800&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

        :root {
            --primary: #531278;
            --secondary: #834d70;
            --tertiary: #6e0039;
            --background: #f9f9f6;
            --surface-low: #f4f4f1;
            --surface-highest: #e2e3e0;
            --on-surface: #1a1c1b;
            --on-surface-variant: #4d4450;
            --outline-variant: #d0c2d2;
            --tertiary-fixed: #ffd9e2;
            --on-tertiary-fixed: #3e001e;
            
            --font-display: 'Newsreader', serif;
            --font-body: 'Manrope', sans-serif;
            
            --editorial-gradient: linear-gradient(45deg, #531278, #6c2f91);
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--on-surface);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
            vertical-align: middle;
        }

        .spa-main {
            padding-top: 8rem;
            padding-bottom: 6rem;
        }

        /* ==========================================================================
           1. HEADER / NAVIGATION
           ========================================================================== */


        /* ==========================================================================
           2. HERO / EDITORIAL INTRO
           ========================================================================== */
        .spa-intro {
            padding: 4rem 2rem 5rem 2rem;
            max-width: 1536px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out;
            margin-top:2rem;
        }
        .spa-intro-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: flex-end;
        }
        @media (min-width: 1024px) {
            .spa-intro-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
        }
        .spa-intro-label {
            display: block;
            font-family: var(--font-body);
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.4em;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }
        .spa-intro-text h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            line-height: 1.1;
            color: var(--primary);
            margin: 0;
        }
        @media (min-width: 768px) { .spa-intro-text h1 { font-size: 4.5rem; } }
        .spa-intro-desc { padding-bottom: 0.5rem; }
        .spa-intro-desc p {
            font-size: 1.125rem;
            color: var(--on-surface-variant);
            line-height: 1.7;
            max-width: 28rem;
            margin: 0;
        }

        /* ==========================================================================
           3. SERVICES NAVIGATION / FILTER
           ========================================================================== */
        .spa-filter-nav {
            padding: 0 2rem;
            max-width: 1536px;
            margin: 0 auto 4rem auto;
            overflow-x: auto;
            animation: fadeIn 1.2s ease-out;
        }
        .spa-filter-track {
            display: flex;
            gap: 2rem;
            border-bottom: 1px solid rgba(208, 194, 210, 0.3);
            padding-bottom: 1rem;
            min-width: max-content;
        }
        .spa-filter-track button {
            background: none;
            border: none;
            font-family: var(--font-body);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--on-surface-variant);
            cursor: pointer;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 0.25rem;
        }
        .spa-filter-track button:hover { color: var(--primary); }
        .spa-filter-track button.active {
            color: var(--primary);
            font-weight: bold;
        }
        
        /* Glide Underline Effect */
        .spa-filter-track button::after {
            content: '';
            position: absolute;
            bottom: -17px;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .spa-filter-track button:hover::after, 
        .spa-filter-track button.active::after {
            width: 100%;
        }

        /* ==========================================================================
           4. BENTO GRID SERVICES
           ========================================================================== */
        .spa-bento-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 2rem;
            max-width: 1536px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-out;
        }
        @media (min-width: 768px) { .spa-bento-grid { grid-template-columns: repeat(12, 1fr); } }

        /* Box Sizing & Backgrounds */
        .bento-box { 
            padding: 2.5rem; 
            position: relative; 
            overflow: hidden; 
            border-radius: 0; 
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
                        opacity 0.4s ease, visibility 0.4s ease;
        }
        
        .bento-box.hidden {
            display: none;
            opacity: 0;
            visibility: hidden;
        }

        .bento-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(83, 18, 120, 0.12);
            z-index: 10;
        }

        .bg-low { background-color: var(--surface-low); }
        .bg-highest { background-color: var(--surface-highest); }
        .bg-white { background-color: #ffffff; }
        .bordered { border: 1px solid rgba(208, 194, 210, 0.1); }
        .bg-tertiary { background-color: var(--tertiary-fixed); color: var(--on-tertiary-fixed); }
        .bg-dark { background-color: #6e0039; color: #ffffff; }

        /* Grid Spanning */
        @media (min-width: 768px) {
            .bento-large { grid-column: span 8; min-height: 500px; display: flex; flex-direction: column; justify-content: space-between; }
            .bento-tall { grid-column: span 4; display: flex; flex-direction: column; }
            .bento-small { grid-column: span 4; }
            .bento-medium { grid-column: span 6; }
        }

        /* Typography */
        .bento-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
        .bento-header .icon { color: var(--tertiary); }
        .bento-header h2 { font-family: var(--font-display); font-size: 2.25rem; font-style: italic; color: var(--primary); margin: 0; }
        .bento-box h3 { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; margin: 0 0 1.5rem 0; color: inherit; }
        .bg-white h3, .bg-low h3 { color: var(--primary); }
        .bg-dark h3 { font-size: 1.875rem; margin-bottom: 1rem; }
        .bg-tertiary h3 { font-size: 1.875rem; font-style: normal; margin-bottom: 2rem; }

        /* List Styling & Hover Enhancements */
        .bento-list-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 3rem; }
        @media (min-width: 768px) { .bento-list-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .bento-item { 
            display: flex; justify-content: space-between; align-items: flex-end; 
            border-bottom: 1px solid rgba(208, 194, 210, 0.2); 
            padding-bottom: 0.5rem; 
            transition: background-color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
            border-radius: 0.25rem;
        }
        .bento-item:hover {
            background-color: rgba(83, 18, 120, 0.03);
            padding-left: 0.5rem;
        }

        .item-title { display: block; font-family: var(--font-body); font-size: 0.875rem; font-weight: bold; color: var(--primary); transition: transform 0.3s; }
        .bento-item:hover .item-title { transform: translateX(4px); }
        .item-desc { font-size: 0.75rem; color: var(--on-surface-variant); font-style: italic; }
        .item-price { font-family: var(--font-display); font-size: 1.125rem; color: var(--secondary); }

        /* List Stack */
        .bento-list-stack { display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; }
        .bento-item-plain p { font-size: 0.75rem; color: var(--on-surface-variant); line-height: 1.6; margin: 0.25rem 0 0 0; }
        .item-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.25rem; }
        .item-row-wide { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; margin-top: 0.5rem; }
        .item-title-plain { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; }
        .item-price-large { font-family: var(--font-display); font-size: 1.25rem; }

        /* Image Placements & Scaling Animation */
        .bento-bg-img { position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.2; pointer-events: none; overflow: hidden; }
        .bento-bg-img img { 
            width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }
        
        .bento-content { position: relative; z-index: 10; }
        .bento-img-bottom { margin-top: 2.5rem; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: -2.5rem; margin-left: -2.5rem; width: calc(100% + 5rem); }
        .bento-img-bottom img { 
            width: 100%; height: 100%; object-fit: cover; 
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .bento-box:hover .bento-bg-img img, 
        .bento-box:hover .bento-img-bottom img {
            transform: scale(1.08);
        }

        /* Unique Box Layouts */
        .bento-simple-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
        .bento-simple-list li { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--on-surface-variant); }
        .price-color { color: var(--primary); }

        .bento-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        .sub-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 0.5rem; }
        .border-light { border-bottom: 1px solid rgba(62, 0, 30, 0.2); padding-bottom: 0.25rem; }

        .flex-row-between { display: flex; justify-content: space-between; align-items: center; }
        .bg-dark p { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; max-width: 20rem; margin-bottom: 1.5rem; }
        .uppercase { text-transform: uppercase; letter-spacing: -0.05em; }
        .bento-icon-large { display: none; }
        @media (min-width: 1024px) { .bento-icon-large { display: block; } }
        .bento-icon-large .material-symbols-outlined { font-size: 4rem; opacity: 0.2; }

        .bento-footer { margin-top: 3rem; }
        .bento-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); text-decoration: none; transition: gap 0.3s; }
        .bento-link:hover { gap: 1rem; }
        .bento-link .material-symbols-outlined { font-size: 1rem; }

        /* ==========================================================================
           5. SIGNATURE RITUAL BANNER
           ========================================================================== */
       /* ==========================================================================
   PREMIUM CTA SECTION
   ========================================================================== */
/* ==========================================================================
   PREMIUM CTA SECTION
   ========================================================================== */
.premium-cta-section {
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
}

.cta-container {
    background-color: var(--primary, #531278);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(83, 18, 120, 0.15);
}

/* Decorative Background Elements */
.cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3.5rem 2.5rem;
}

@media (min-width: 992px) {
    .cta-content-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 4rem 5rem;
    }
}

/* Left Side: Text Content */
.cta-text-content {
    flex: 1;
    max-width: 600px;
}

.cta-label {
    font-family: var(--font-label, 'Manrope', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold, #c5a059);
    margin-bottom: 1rem;
    display: block;
}

.cta-title {
    font-family: var(--font-display, 'Newsreader', serif);
    font-size: 2.5rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
    .cta-title { font-size: 3.25rem; }
}

.cta-description {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.cta-features {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.cta-features .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important; /* This is the magic fix */
    font-size: 1.1rem;
    color: var(--accent-gold, #c5a059);
    font-weight: 300;
    
    /* These ensure the icon renders perfectly without distortion */
    font-style: normal;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}
/* Right Side: Action Content */
.cta-action-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    min-width: 250px;
}

@media (min-width: 992px) {
    .cta-action-content {
        align-items: flex-end;
        text-align: right;
    }
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-currency {
    font-family: var(--font-label, 'Manrope', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold, #c5a059);
}

.price-amount {
    font-family: var(--font-display, 'Newsreader', serif);
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1;
}

/* Gold Button Style */
.btn-solid-gold {
    background-color: var(--accent-gold, #c5a059);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-solid-gold { width: auto; }
}

.btn-solid-gold:hover {
    background-color: #ffffff;
    color: var(--primary, #531278);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

        /* ==========================================================================
           6. FOOTER
           ========================================================================== *//* End custom CSS */