body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-brand {
    color: var(--brand-pink);
}

.bg-brand {
    background-color: var(--brand-pink);
}

/* Shared Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content-wrapper {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Shared Typography */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--brand-pink);
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

/* Shared Card */
.glass-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid #f4e7ed;
}

/* Shared Divider */
.brand-divider {
    height: 3px;
    width: 90px;
    background-color: var(--brand-pink);
    border-radius: 999px;
}

/* Typography System */
.heading-luxury {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.body-muted {
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-pink);
}