:root {
    --gold: #e2a54a;
    --gold-bg: #fdf8ef;
    --navy: #1b2340;
    --text: #3a3a3a;
    --muted: #888;
    --border: #e8e2d6;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ── BANNER ──────────────────────────── */
.mgf-background {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* ── PAGE TITLE BAND ─────────────────── */
.mgf-page-title {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    padding: 28px 0;
    text-align: center;
}

.mgf-page-title-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-family: sans-serif;
    margin: 0;
}

.mgf-page-title-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mgf-page-title-meta svg {
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.mgf-page-title-meta .divider {
    color: var(--gold);
    display: inline;
}

/* ── SECTION LABEL ───────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 767px) {
    .mgf-page-title { padding: 24px 0; }
    .mgf-page-title-meta { flex-direction: column; gap: 10px; }
    .mgf-page-title-meta .divider { display: none; }
}