/* =============================================================
   LAYOUT — primitivas cross-cutting específicas de este proyecto
   Header, footer, breadcrumb, ritmo de secciones, tipografía base.
   Mobile-first. Overrides responsive en tablet.css / desktop.css.
   ============================================================= */

/* ── TIPOGRAFÍA BASE DEL PROYECTO ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--mpg-dark-green);
    line-height: 1.15;
    font-weight: 700;
}

.eyebrow,
.section-header .eyebrow,
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mpg-gold);
    margin-bottom: var(--space-sm);
}
.eyebrow--light { color: var(--mpg-cream); opacity: .92; }

/* ── SECCIÓN GENÉRICA (home-section reutilizada por varias plantillas) ── */
.home-section {
    padding: var(--space-xl) 0;
}
.section-header {
    margin-bottom: var(--space-xl);
    max-width: 68rem;
}
.section-header--center {
    margin-inline: auto;
    text-align: center;
}
.section-header h2 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    margin-bottom: var(--space-sm);
}
.section-subtitle {
    font-size: 1.6rem;
    color: var(--mpg-text-muted);
    line-height: 1.6;
}
.section-action {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

/* ── BOTONES ADICIONALES DEL PROYECTO ─────────────────────────── */
.btn--nav-cta {
    background: var(--mpg-forest);
    color: var(--mpg-text-on-dark);
    padding: 1.1rem 2.2rem;
    font-size: 1.3rem;
}
.btn--nav-cta:hover { background: var(--mpg-dark-green); }

.btn--outline-light {
    background: transparent;
    border-color: rgba(246,241,230,.55);
    color: var(--mpg-cream);
}
.btn--outline-light:hover { background: rgba(246,241,230,.12); border-color: var(--mpg-cream); }

.btn--accent {
    background: var(--mpg-grad-gold-135);
    color: var(--mpg-dark-green);
}
.btn--accent:hover { color: var(--mpg-dark-green); }

.btn--lg { padding: 1.6rem 3.2rem; font-size: 1.5rem; }
.btn--sm { padding: .8rem 1.6rem; font-size: 1.2rem; }

/* .btn--primary / .btn--outline ya definidos en components.css con --color-*;
   los redefinimos aquí para usar la paleta --mpg-* del proyecto sin tocar components.css */
.btn--primary { background: var(--mpg-grad-gold-135); color: var(--mpg-dark-green); }
.btn--primary:hover { color: var(--mpg-dark-green); }
.btn--outline { background: transparent; border-color: var(--mpg-forest); color: var(--mpg-forest); }
.btn--outline:hover { background: var(--mpg-forest); color: var(--mpg-text-on-dark); }

/* ── FOCUS VISIBLE (accesibilidad) ────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--mpg-gold);
    outline-offset: 2px;
}

/* ── ICONOS ────────────────────────────────────────────────────── */
.macglo-ic { width: 1em; height: 1em; vertical-align: -0.125em; }

/* =============================================================
   SITE HEADER
   ============================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--mpg-cream-light);
    border-bottom: 1px solid var(--mpg-sand);
    box-shadow: none;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 1.2rem var(--container-pad);
}

.site-header__brand { display: flex; align-items: center; }
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.site-header__logo-icon {
    width: 2.8rem; height: 2.8rem;
    color: var(--mpg-gold);
    flex-shrink: 0;
}
.site-header__wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.site-header__brand-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--mpg-dark-green);
}
.site-header__brand-sub {
    font-size: 1rem;
    color: var(--mpg-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* nav — oculto en mobile, mostrado como panel deslizante al togglear .is-open */
.site-header__nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(30rem, 84vw);
    background: var(--mpg-cream-light);
    box-shadow: var(--mpg-shadow-card);
    padding: 9rem var(--space-lg) var(--space-lg);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 150;
}
.site-header__nav.is-open { transform: translateX(0); }

/* components.css trae una regla legacy @media(max-width:600px) que fuerza
   .site-header__nav{display:none} / .nav-toggle{display:block} — de un
   patrón de nav genérico anterior a este header. La sobreescribimos aquí
   (layout.css carga después) para que el panel deslizante funcione. */
@media (max-width: 600px) {
    .site-header__nav { display: block; }
    .nav-toggle { display: flex; }
}

.site-header__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.site-header__menu a {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--mpg-dark-green);
    transition: color var(--transition);
}
.site-header__menu a:hover,
.site-header__menu .current-menu-item a { color: var(--mpg-gold); }

/* .site-header__actions (lang switch + CTA) es solo de desktop —
   en mobile/tablet esos mismos controles viven dentro de .site-header__nav
   (ver .site-header__nav-actions más abajo) para no competir por espacio
   con el hamburger. desktop.css lo vuelve a mostrar en 1024px+. */
.site-header__actions {
    display: none;
    align-items: center;
    gap: var(--space-md);
    margin-left: auto;
}

.site-header__nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--mpg-sand);
}
.site-header__cta--mobile { width: 100%; text-align: center; }

/* lang select (dropdown con banderas) */
.lang-select { position: relative; }
.lang-select__trigger {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .7rem;
    font: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--mpg-text-muted);
    background: transparent;
    border: 1px solid var(--mpg-sand);
    border-radius: var(--radius-sm);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.lang-select__trigger:hover { color: var(--mpg-forest); background: var(--mpg-cream-alt); border-color: var(--mpg-forest); }
.lang-select__trigger:focus-visible { outline: 2px solid var(--mpg-forest); outline-offset: 2px; }
.lang-select__flag {
    display: block;
    width: 2rem;
    height: 1.4rem;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
    flex: none;
}
.lang-select__code { font-size: 1.2rem; }
.lang-select__caret {
    display: inline-flex;
    transition: transform var(--transition);
}
.lang-select__caret svg { width: 1.4rem; height: 1.4rem; }
.lang-select[data-open="true"] .lang-select__caret { transform: rotate(180deg); }

.lang-select__menu {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 60;
    min-width: 15rem;
    margin: 0;
    padding: .4rem;
    list-style: none;
    /* las opciones siempre se apilan en columna (evita que se corten con 3+ idiomas) */
    display: flex;
    flex-direction: column;
    gap: .1rem;
    background: var(--mpg-cream);
    border: 1px solid var(--mpg-sand);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px -12px rgba(60,45,30,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-.4rem);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.lang-select__item { width: 100%; }
.lang-select[data-open="true"] .lang-select__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-select__link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .7rem;
    border-radius: var(--radius-sm);
    color: var(--mpg-text);
    font-size: 1.3rem;
    font-weight: 600;
    transition: color var(--transition), background var(--transition);
}
.lang-select__link:hover { color: var(--mpg-forest); background: var(--mpg-cream-alt); }
.lang-select__name { white-space: nowrap; }

/* variante footer (fondo oscuro) */
.lang-select--footer .lang-select__trigger {
    color: var(--mpg-text-on-dark-muted);
    border-color: rgba(246,241,230,.22);
}
.lang-select--footer .lang-select__trigger:hover {
    color: var(--mpg-cream);
    background: rgba(246,241,230,.08);
    border-color: rgba(246,241,230,.4);
}
.lang-select--footer .lang-select__menu {
    bottom: calc(100% + .5rem);
    top: auto;
    transform: translateY(.4rem);
}
.lang-select--footer[data-open="true"] .lang-select__menu { transform: translateY(0); }

/* variante mobile: dentro del menú desplegable el panel abre EN FLUJO
   (no flotante) para que se vean todas las opciones sin superponerse
   con la CTA "Plan Your Journey". */
.lang-select--mobile { align-self: stretch; width: 100%; }
.lang-select--mobile .lang-select__trigger { width: 100%; justify-content: flex-start; }
.lang-select--mobile .lang-select__caret { margin-left: auto; }
.lang-select--mobile .lang-select__menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: .4rem;
    box-shadow: none;
    /* colapsado por defecto; se expande al abrir */
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height var(--transition), opacity var(--transition), visibility var(--transition), padding var(--transition);
}
.lang-select--mobile[data-open="true"] .lang-select__menu {
    max-height: 24rem;
    padding-top: .4rem;
    padding-bottom: .4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
}
.lang-select--mobile .lang-select__link { font-size: 1.4rem; }

/* hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    width: 4rem;
    height: 4rem;
    z-index: 210;
}
.nav-toggle span {
    background: var(--mpg-dark-green);
    height: 2px;
    width: 2.4rem;
    flex-shrink: 0;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* backdrop mientras el menú está abierto en mobile */
body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(23,29,16,.55);
    z-index: 120;
}

/* =============================================================
   BREADCRUMB BAR
   ============================================================= */
.breadcrumb-bar {
    background: var(--mpg-cream-alt);
    border-bottom: 1px solid var(--mpg-sand);
}
.breadcrumb-bar__inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 1.4rem var(--container-pad);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
    font-size: 1.3rem;
    color: var(--mpg-text-muted);
}
.breadcrumb-bar__link { color: var(--mpg-text-muted); transition: color var(--transition); }
.breadcrumb-bar__link:hover { color: var(--mpg-forest); }
.breadcrumb-bar__sep-icon { width: 1.4rem; height: 1.4rem; opacity: .5; }
.breadcrumb-bar__current { color: var(--mpg-dark-green); font-weight: 600; }

/* Variantes .tdx-breadcrumb / .breadcrumb (inline, usadas en algunas plantillas) */
.tdx-breadcrumb {
    display: flex; align-items: center; gap: .6rem;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}
.tdx-breadcrumb a { color: var(--mpg-text-on-dark-muted); transition: color var(--transition); }
.tdx-breadcrumb a:hover { color: var(--mpg-cream); }
.tdx-breadcrumb span { color: var(--mpg-text-on-dark-muted); }

/* =============================================================
   SITE FOOTER
   ============================================================= */
.site-footer {
    background: var(--mpg-dark-green-2);
    color: var(--mpg-text-on-dark-muted);
}
.site-footer__inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 0 var(--container-pad);
}

/* Newsletter row */
.footer-newsletter {
    text-align: center;
    max-width: 60rem;
    margin-inline: auto;
    padding: var(--space-xl) 0 var(--space-lg);
}
.footer-newsletter__eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--mpg-gold);
    margin-bottom: var(--space-sm);
}
.footer-newsletter__title {
    font-family: var(--font-heading);
    color: var(--mpg-text-on-dark);
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    margin-bottom: var(--space-sm);
}
.footer-newsletter__note {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}
.footer-newsletter__form {
    /* mobile-first: apilado vertical, ancho completo */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    max-width: 44rem;
    margin-inline: auto;
}
.footer-newsletter__input {
    /* ancho completo y altura fija; sin flex-basis vertical que lo estire */
    flex: 0 0 auto;
    width: 100%;
    height: 4.8rem;
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(246,241,230,.25);
    background: rgba(246,241,230,.06);
    color: var(--mpg-cream);
    font-family: var(--font-body);
    font-size: 1.4rem;
    box-sizing: border-box;
}
.footer-newsletter__input::placeholder { color: var(--mpg-text-on-dark-muted); }
.footer-newsletter__input:focus { outline: none; border-color: var(--mpg-gold); background: rgba(246,241,230,.1); }
.footer-newsletter__btn {
    padding: 1.2rem 2.4rem;
    border-radius: var(--mpg-radius-pill);
    background: var(--mpg-grad-gold-135);
    color: var(--mpg-dark-green);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
}
.footer-newsletter__btn:hover { transform: translateY(-2px); box-shadow: var(--mpg-shadow-card); }

/* Footer columns */
.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
    padding: var(--space-lg) 0 var(--space-xl);
    border-top: 1px solid rgba(246,241,230,.1);
}
.footer-col--brand { grid-column: 1 / -1; }

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-sm);
}
.footer-brand__mark-icon { width: 2.6rem; height: 2.6rem; color: var(--mpg-gold); }
.footer-brand__wordmark {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--mpg-text-on-dark);
}
.footer-brand__tagline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--mpg-gold);
    margin-bottom: var(--space-sm);
}
.footer-brand__blurb {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 42rem;
    margin-bottom: var(--space-md);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social__link {
    display: flex; align-items: center; justify-content: center;
    width: 3.8rem; height: 3.8rem;
    border-radius: 50%;
    background: rgba(246,241,230,.08);
    color: var(--mpg-cream);
    transition: background var(--transition), color var(--transition);
}
.footer-social__link:hover { background: var(--mpg-gold); color: var(--mpg-dark-green); }
.footer-social__link svg { width: 1.8rem; height: 1.8rem; }

.footer-col__title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mpg-text-on-dark);
    margin-bottom: var(--space-md);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.footer-links a {
    font-size: 1.4rem;
    color: var(--mpg-text-on-dark-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--mpg-gold); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--mpg-text-on-dark-muted);
}
.footer-contact-list a { color: var(--mpg-text-on-dark-muted); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--mpg-gold); }
.footer-contact-list__icon {
    width: 1.8rem; height: 1.8rem;
    flex-shrink: 0;
    color: var(--mpg-gold);
    margin-top: .2rem;
}

/* Badges row */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(246,241,230,.1);
}
.footer-badges__certs,
.footer-badges__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.footer-badges__label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mpg-text-on-dark-muted);
    margin-right: .4rem;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: .5rem 1.2rem;
    border-radius: var(--mpg-radius-pill);
    border: 1px solid rgba(246,241,230,.2);
    color: var(--mpg-text-on-dark-muted);
}
.footer-badge--payment { border-color: rgba(246,241,230,.12); }

/* Bottom bar */
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(246,241,230,.1);
}
.footer-copyright { font-size: 1.2rem; color: var(--mpg-text-on-dark-muted); }
.footer-legal-nav { display: flex; gap: var(--space-md); }
.footer-legal-nav a {
    font-size: 1.2rem;
    color: var(--mpg-text-on-dark-muted);
    transition: color var(--transition);
}
.footer-legal-nav a:hover { color: var(--mpg-gold); }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

/* =============================================================
   BOTONES GENÉRICOS .mpg-btn (reutilizables en page.php, etc.)
   ============================================================= */
.mpg-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1.5rem; font-weight: 600; line-height: 1;
    cursor: pointer; border: 1.5px solid transparent; text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.mpg-btn:hover { transform: translateY(-2px); box-shadow: var(--mpg-shadow-card); }
.mpg-btn .macglo-ic { width: 1.7rem; height: 1.7rem; }
.mpg-btn--gold { background: var(--mpg-gold); color: var(--mpg-forest); }
.mpg-btn--gold:hover { background: var(--mpg-grad-gold-135); }
.mpg-btn--ghost-light { background: transparent; border-color: rgba(246,241,230,.5); color: var(--mpg-cream); }
.mpg-btn--ghost-light:hover { background: rgba(246,241,230,.12); }
.mpg-btn--ghost-dark { background: transparent; border-color: rgba(246,241,230,.4); color: var(--mpg-cream); }
.mpg-btn--ghost-dark:hover { background: rgba(246,241,230,.12); }

/* =============================================================
   PÁGINA GENÉRICA page.php (.genpage__*)
   ============================================================= */
.genpage__hero {
    background: var(--mpg-forest);
    color: var(--mpg-cream);
    padding: var(--space-xl) 0;
    position: relative;
    background-size: cover; background-position: center;
}
.genpage__hero--image { padding: 9rem 0 6rem; }
.genpage__hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(23,29,16,.65), rgba(23,29,16,.88));
}
.genpage__hero-inner { position: relative; z-index: 1; }
.genpage__crumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
    font-size: 1.2rem; color: var(--mpg-text-on-dark-muted); margin-bottom: var(--space-md);
}
.genpage__crumbs a { color: var(--mpg-text-on-dark-muted); }
.genpage__crumbs a:hover { color: var(--mpg-gold); }
.genpage__crumbs .macglo-ic { width: 1.4rem; height: 1.4rem; }
.genpage__crumbs [aria-current="page"] { color: var(--mpg-cream); }
.genpage__title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 1.08; color: var(--mpg-cream);
}
.genpage__lead {
    margin-top: var(--space-md); max-width: 62rem;
    font-size: 1.7rem; line-height: 1.6; color: var(--mpg-text-on-dark-muted);
}
.genpage__body { background: var(--mpg-bg); padding: var(--space-xl) 0; }
.genpage__prose {
    max-width: 76rem;
    font-size: 1.7rem; line-height: 1.8; color: var(--mpg-text);
}
.genpage__prose h2 { font-family: var(--font-heading); font-size: 3rem; margin: var(--space-lg) 0 var(--space-md); color: var(--mpg-dark-green); }
.genpage__prose h3 { font-family: var(--font-heading); font-size: 2.4rem; margin: var(--space-lg) 0 var(--space-sm); color: var(--mpg-dark-green); }
.genpage__prose p { margin-bottom: var(--space-md); }
.genpage__prose ul, .genpage__prose ol { margin: 0 0 var(--space-md) 2rem; }
.genpage__prose li { margin-bottom: .6rem; }
.genpage__prose a { color: var(--mpg-terracotta); text-decoration: underline; text-underline-offset: .2em; }
.genpage__prose img { border-radius: var(--radius-md); margin: var(--space-md) 0; }
.genpage__prose blockquote {
    border-left: 3px solid var(--mpg-gold); padding-left: var(--space-md);
    font-family: var(--font-heading); font-style: italic; font-size: 2rem; color: var(--mpg-dark-green);
    margin: var(--space-lg) 0;
}
.genpage__cta { background: var(--mpg-forest); padding: var(--space-xl) 0; text-align: center; }
.genpage__cta-eyebrow {
    font-size: 1.2rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    color: var(--mpg-gold); margin-bottom: var(--space-sm);
}
.genpage__cta-title {
    font-family: var(--font-heading); font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--mpg-cream); margin-bottom: var(--space-lg);
}
.genpage__cta-btns { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }

/* =============================================================
   LOGO CUSTOM (custom_logo) — header + footer
   ============================================================= */
.site-header__logo--image { display: inline-flex; align-items: center; }
.site-header__logo-img {
    height: 4.4rem;
    width: auto;
    max-width: 24rem;
    display: block;
}
.footer-brand--image { display: inline-flex; }
.footer-brand__logo-img {
    height: 5rem;
    width: auto;
    max-width: 26rem;
    display: block;
    /* el SVG del logo es oscuro; el footer es verde oscuro → invertir a claro */
    filter: brightness(0) invert(1) sepia(1) saturate(0) brightness(1.9);
}
@media (min-width: 1024px) {
    .site-header__logo-img { height: 5rem; }
}
