
/* Palette: Dark Brown #1C140D, Gold #C5A059, Cream #F4F1EA, Light Gray #EAE7E1 */
:root {
    --mspa-brown: #1C140D;
    --mspa-gold: #C5A059;
    --mspa-cream: #F4F1EA;
    --mspa-off-white: #FAF8F5;
}

.mspa-body-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: var(--mspa-brown);
    background-color: var(--mspa-off-white);
}

.mspa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero */
.mspa-hero {
    background-color: var(--mspa-brown);
    color: var(--mspa-cream);
    padding: 120px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.mspa-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--mspa-gold);
    max-width: 600px;
    margin-bottom: 20px;
}

.mspa-btn-gold {
    background: var(--mspa-gold);
    color: var(--mspa-brown);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-right: 20px;
}

.mspa-trust-circle {
    border: 1px dashed var(--mspa-gold);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Grid */
.mspa-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.mspa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-left: 1px solid rgba(197, 160, 89, 0.3);
}

.mspa-grid-item {
    padding: 40px;
    border-right: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.mspa-num {
    color: var(--mspa-gold);
    display: block;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mspa-grid-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* FAQ */
.mspa-faq { background: var(--mspa-cream); }
.mspa-faq-layout { display: flex; gap: 50px; }
.mspa-faq-header { flex: 1; }
.mspa-faq-list { flex: 2; }

.mspa-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
    cursor: pointer;
}

.mspa-faq-question {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.mspa-faq-answer {
    display: none;
    padding-top: 15px;
    color: #555;
}
