/* =========================================================
   MuseuPass Heritage Media — single stylesheet
   Light theme · deep teal + amber · Inter sans · mp-* namespace
   ========================================================= */

:root {
    --mp-bg: #f8fafc;
    --mp-surface: #ffffff;
    --mp-surface-2: #eef2f6;
    --mp-ink: #0b1220;
    --mp-ink-2: #334155;
    --mp-ink-3: #64748b;
    --mp-rule: #d6dde6;
    --mp-primary: #0f766e;
    --mp-primary-d: #115e59;
    --mp-primary-l: #ccfbf1;
    --mp-amber: #d97706;
    --mp-amber-d: #b45309;
    --mp-amber-l: #fef3c7;
    --mp-r-xs: 4px;
    --mp-r-sm: 8px;
    --mp-r-md: 14px;
    --mp-shadow-1: 0 1px 2px rgba(15, 23, 42, 0.05);
    --mp-shadow-2: 0 8px 24px rgba(15, 23, 42, 0.08);
    --mp-shadow-3: 0 24px 48px rgba(15, 23, 42, 0.12);
    --mp-w: 1240px;
    --mp-s1: 4px;
    --mp-s2: 8px;
    --mp-s3: 12px;
    --mp-s4: 16px;
    --mp-s5: 24px;
    --mp-s6: 32px;
    --mp-s7: 48px;
    --mp-s8: 72px;
    --mp-s9: 112px;
    --mp-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--mp-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--mp-ink);
    background: var(--mp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01" on, "cv11" on;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--mp-primary-d);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
a:hover, a:focus { color: var(--mp-amber); border-bottom-color: currentColor; }

:focus-visible {
    outline: 3px solid var(--mp-amber);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    margin: 0 0 var(--mp-s4);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--mp-ink);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mp-ink-3); }

p { margin: 0 0 var(--mp-s4); color: var(--mp-ink-2); }

.mp-container {
    width: 100%;
    max-width: var(--mp-w);
    margin: 0 auto;
    padding: 0 var(--mp-s5);
}

.mp-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mp-primary-d);
    background: var(--mp-primary-l);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: var(--mp-s4);
}

/* ---------- Header ---------- */
.mp-header {
    background: var(--mp-surface);
    border-bottom: 1px solid var(--mp-rule);
    position: sticky;
    top: 0;
    z-index: 60;
}
.mp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--mp-s4) var(--mp-s5);
    gap: var(--mp-s5);
}
.mp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mp-ink) !important;
    font-weight: 700;
    font-size: 1.1rem;
    border: 0 !important;
}
.mp-logo__mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-d) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.05em;
}
.mp-nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
}
.mp-nav-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--mp-ink); border-radius: 2px;
}
.mp-nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: var(--mp-s5);
    align-items: center;
}
.mp-nav__link {
    color: var(--mp-ink-2) !important;
    font-weight: 500;
    font-size: 0.94rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent !important;
    transition: color 0.15s, border-color 0.15s;
}
.mp-nav__link:hover,
.mp-nav__link.is-active {
    color: var(--mp-primary-d) !important;
    border-bottom-color: var(--mp-primary) !important;
}
.mp-nav__link--cta {
    background: var(--mp-amber);
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: var(--mp-r-sm);
    border-bottom: 0 !important;
    font-weight: 600;
}
.mp-nav__link--cta:hover {
    background: var(--mp-amber-d);
    color: #fff !important;
}

/* ---------- Buttons ---------- */
.mp-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--mp-r-sm);
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
    line-height: 1.2;
}
.mp-btn:active { transform: translateY(1px); }
.mp-btn--primary {
    background: var(--mp-primary);
    color: #fff !important;
    border-color: var(--mp-primary);
}
.mp-btn--primary:hover {
    background: var(--mp-primary-d);
    border-color: var(--mp-primary-d);
    color: #fff !important;
}
.mp-btn--ghost {
    background: transparent;
    color: var(--mp-primary-d) !important;
    border-color: var(--mp-primary);
}
.mp-btn--ghost:hover {
    background: var(--mp-primary-l);
    border-color: var(--mp-primary-d);
    color: var(--mp-primary-d) !important;
}
.mp-btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.mp-btn--block { display: flex; width: 100%; }

/* ---------- Hero — centered composition ---------- */
.mp-hero {
    padding: var(--mp-s9) 0 var(--mp-s8);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(15, 118, 110, 0.08) 0%, transparent 60%),
        var(--mp-bg);
    text-align: center;
}
.mp-hero__inner {
    max-width: 920px;
    margin: 0 auto;
}
.mp-hero h1 { margin-bottom: var(--mp-s5); }
.mp-hero__lead {
    font-size: 1.2rem;
    color: var(--mp-ink-2);
    max-width: 65ch;
    margin: 0 auto var(--mp-s6);
}
.mp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mp-s3);
    justify-content: center;
    margin-bottom: var(--mp-s8);
}
.mp-hero__media {
    margin: 0 0 var(--mp-s7);
    border-radius: var(--mp-r-md);
    overflow: hidden;
    box-shadow: var(--mp-shadow-2);
}
.mp-hero__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.mp-hero__stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mp-s5);
    text-align: center;
}
.mp-hero__stats li {
    padding: var(--mp-s5);
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
}
.mp-hero__stats strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mp-primary-d);
    letter-spacing: -0.02em;
}
.mp-hero__stats span {
    font-size: 0.88rem;
    color: var(--mp-ink-3);
}

/* ---------- Page hero (inner pages) ---------- */
.mp-page-hero {
    padding: var(--mp-s8) 0 var(--mp-s6);
    background: var(--mp-surface);
    border-bottom: 1px solid var(--mp-rule);
    text-align: center;
}
.mp-page-hero__lead {
    font-size: 1.1rem;
    color: var(--mp-ink-2);
    max-width: 70ch;
    margin: 0 auto var(--mp-s5);
}
.mp-page-hero__media {
    max-width: 1100px;
    margin: var(--mp-s6) auto 0;
    border-radius: var(--mp-r-md);
    overflow: hidden;
    box-shadow: var(--mp-shadow-2);
}
.mp-page-hero__media img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

/* ---------- Sections ---------- */
.mp-section { padding: var(--mp-s8) 0; }
.mp-section--alt { background: var(--mp-surface); }
.mp-section--ink {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-d) 100%);
    color: #fff;
}
.mp-section--ink h2, .mp-section--ink p { color: #fff; }
.mp-section--ink p { color: rgba(255, 255, 255, 0.85); }
.mp-section__head {
    max-width: 720px;
    margin: 0 auto var(--mp-s7);
    text-align: center;
}
.mp-section__head--left {
    text-align: left;
    margin-left: 0;
}

/* ---------- Cards ---------- */
.mp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--mp-s5);
}
.mp-card {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
}
.mp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--mp-shadow-2);
}
.mp-card__media {
    margin: 0;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--mp-surface-2);
}
.mp-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.mp-card__body {
    padding: var(--mp-s5);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mp-card__tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mp-amber-d);
    background: var(--mp-amber-l);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: var(--mp-s3);
    align-self: flex-start;
}
.mp-card__link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--mp-primary-d) !important;
    font-weight: 600;
    border-bottom: 1px dashed var(--mp-primary) !important;
}
.mp-card__link:hover { border-bottom-style: solid !important; }

.mp-card--plain { overflow: visible; }
.mp-card--plain .mp-card__body { padding: var(--mp-s5); }

/* ---------- Two column ---------- */
.mp-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--mp-s7);
    align-items: start;
}
.mp-callout {
    background: var(--mp-primary-l);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s6);
    border: 1px solid rgba(15, 118, 110, 0.15);
}
.mp-callout h3 { margin-top: 0; color: var(--mp-primary-d); }
.mp-callout--ink {
    background: var(--mp-ink);
    color: #fff;
    border-color: transparent;
}
.mp-callout--ink h3 { color: #fff; }
.mp-callout--ink p { color: rgba(255, 255, 255, 0.78); }
.mp-callout--ink a { color: var(--mp-amber-l) !important; }

.mp-bullets {
    list-style: none;
    padding: 0;
    margin: var(--mp-s4) 0 0;
}
.mp-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--mp-s2);
    color: var(--mp-ink-2);
}
.mp-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--mp-amber);
    font-weight: 700;
}

.mp-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mp-facts li {
    padding: var(--mp-s3) 0;
    border-bottom: 1px solid var(--mp-rule);
    color: var(--mp-ink-2);
    font-size: 0.95rem;
}
.mp-facts li:last-child { border-bottom: none; }

/* ---------- Steps / process ---------- */
.mp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--mp-s5);
}
.mp-step {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-left: 4px solid var(--mp-amber);
    border-radius: var(--mp-r-sm);
    padding: var(--mp-s5);
}
.mp-step__num {
    display: block;
    font-size: 0.85rem;
    color: var(--mp-amber-d);
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: var(--mp-s2);
}

/* ---------- Reviews list ---------- */
.mp-reviews { display: grid; gap: var(--mp-s5); }
.mp-review {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s5);
}
.mp-review__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--mp-s4);
    margin-bottom: var(--mp-s3);
}
.mp-review__head h3 { margin: 0; }
.mp-review__score {
    background: var(--mp-amber);
    color: #fff;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
    white-space: nowrap;
}
.mp-review__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--mp-s3);
    margin: 0 0 var(--mp-s4);
    padding: var(--mp-s3) 0;
    border-top: 1px solid var(--mp-rule);
    border-bottom: 1px solid var(--mp-rule);
}
.mp-review__meta dt {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mp-ink-3);
    font-weight: 600;
}
.mp-review__meta dd { margin: 2px 0 0; color: var(--mp-ink); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.mp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--mp-s5);
    align-items: stretch;
}
.mp-plan {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s6);
    display: flex;
    flex-direction: column;
}
.mp-plan--featured {
    border: 2px solid var(--mp-amber);
    box-shadow: var(--mp-shadow-2);
    position: relative;
}
.mp-plan__price {
    margin: var(--mp-s4) 0 var(--mp-s5);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.mp-plan__amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--mp-ink);
    letter-spacing: -0.02em;
}
.mp-plan__period { color: var(--mp-ink-3); }
.mp-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--mp-s5);
    flex: 1;
}
.mp-plan__features li {
    padding: var(--mp-s2) 0 var(--mp-s2) 24px;
    position: relative;
    color: var(--mp-ink-2);
    font-size: 0.95rem;
}
.mp-plan__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mp-primary);
    font-weight: 700;
}

.mp-compare-wrap { overflow-x: auto; }
.mp-compare {
    width: 100%;
    border-collapse: collapse;
    background: var(--mp-surface);
    border-radius: var(--mp-r-md);
    overflow: hidden;
}
.mp-compare th, .mp-compare td {
    padding: var(--mp-s3) var(--mp-s4);
    text-align: left;
    border-bottom: 1px solid var(--mp-rule);
}
.mp-compare thead th {
    background: var(--mp-surface-2);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- FAQ ---------- */
.mp-faq { display: grid; gap: var(--mp-s3); }
.mp-faq__item {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-sm);
    padding: var(--mp-s4) var(--mp-s5);
}
.mp-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: var(--mp-ink);
}
.mp-faq__item summary::-webkit-details-marker { display: none; }
.mp-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0; top: -2px;
    font-size: 1.5rem;
    color: var(--mp-amber);
    line-height: 1;
}
.mp-faq__item[open] summary::after { content: "−"; }
.mp-faq__item p { margin: var(--mp-s3) 0 0; color: var(--mp-ink-2); }

/* ---------- Team ---------- */
.mp-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--mp-s5);
}
.mp-team__card {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s5);
    text-align: center;
}
.mp-team__avatar {
    width: 72px; height: 72px;
    margin: 0 auto var(--mp-s3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-amber) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.mp-team__role {
    display: block;
    color: var(--mp-amber-d);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: var(--mp-s3);
}

/* ---------- Form ---------- */
.mp-form { display: grid; gap: var(--mp-s4); }
.mp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--mp-s4);
}
.mp-form__group { display: flex; flex-direction: column; gap: 6px; }
.mp-form__group label {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--mp-ink);
}
.mp-form input[type="text"],
.mp-form input[type="email"],
.mp-form input[type="tel"],
.mp-form select,
.mp-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-sm);
    background: var(--mp-surface);
    color: var(--mp-ink);
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.mp-form input:focus,
.mp-form select:focus,
.mp-form textarea:focus {
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
    outline: none;
}
.mp-form textarea { resize: vertical; min-height: 140px; }
.mp-form__group--check {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--mp-s3);
}
.mp-form__group--check input { margin-top: 4px; }
.mp-form__group--check label { font-weight: 400; color: var(--mp-ink-2); }
.mp-form__actions {
    display: flex;
    align-items: center;
    gap: var(--mp-s4);
    flex-wrap: wrap;
}
.mp-form__status { font-size: 0.94rem; color: var(--mp-ink-3); }
.mp-form__status.is-error { color: #b91c1c; }
.mp-form__status.is-loading { color: var(--mp-primary-d); }
.mp-form__status.is-success { color: #047857; }

/* ---------- Filter ---------- */
.mp-filter {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
    gap: var(--mp-s4);
    align-items: end;
}
.mp-filter__group { display: flex; flex-direction: column; gap: 6px; }
.mp-filter__group label { font-weight: 600; font-size: 0.92rem; }
.mp-filter select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-sm);
    background: var(--mp-surface);
    color: var(--mp-ink);
    font-family: inherit;
    font-size: 0.96rem;
}

/* ---------- Timeline ---------- */
.mp-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--mp-s4);
}
.mp-timeline__item {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s5);
    position: relative;
    padding-left: 88px;
}
.mp-timeline__year {
    position: absolute;
    left: var(--mp-s5);
    top: var(--mp-s5);
    font-weight: 800;
    color: var(--mp-amber-d);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}
.mp-timeline__item h3 { margin: 0 0 var(--mp-s2); }

/* ---------- Thanks page ---------- */
.mp-thanks {
    padding: var(--mp-s9) 0;
    text-align: center;
}
.mp-thanks__icon {
    color: var(--mp-primary);
    margin: 0 auto var(--mp-s5);
    display: inline-flex;
}
.mp-thanks__lead {
    font-size: 1.15rem;
    color: var(--mp-ink-2);
    max-width: 60ch;
    margin: 0 auto var(--mp-s6);
}
.mp-thanks__next {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--mp-s6);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--mp-s4);
    text-align: left;
}
.mp-thanks__next li {
    background: var(--mp-surface);
    border: 1px solid var(--mp-rule);
    border-radius: var(--mp-r-md);
    padding: var(--mp-s5);
}
.mp-thanks__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mp-s3);
    justify-content: center;
}

/* ---------- Legal pages ---------- */
.mp-legal { max-width: 820px; margin: 0 auto; }
.mp-legal h2 { margin-top: var(--mp-s7); }
.mp-legal h2:first-of-type { margin-top: 0; }
.mp-legal ul { padding-left: 22px; color: var(--mp-ink-2); }
.mp-legal address {
    font-style: normal;
    background: var(--mp-surface-2);
    border-left: 4px solid var(--mp-primary);
    padding: var(--mp-s4);
    border-radius: var(--mp-r-sm);
}

/* ---------- Hours ---------- */
.mp-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mp-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
}
.mp-hours li:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.mp-footer {
    background: var(--mp-ink);
    color: #cbd5e1;
    margin-top: var(--mp-s8);
}
.mp-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--mp-s6);
    padding: var(--mp-s8) var(--mp-s5);
}
.mp-footer h4 {
    color: #fff;
    margin-bottom: var(--mp-s3);
    font-size: 0.82rem;
}
.mp-footer ul { list-style: none; padding: 0; margin: 0; }
.mp-footer li { margin-bottom: var(--mp-s2); }
.mp-footer a, .mp-footer address a {
    color: #cbd5e1 !important;
    border-bottom: 0 !important;
}
.mp-footer a:hover { color: #fff !important; }
.mp-footer p, .mp-footer address {
    color: #94a3b8;
    font-style: normal;
    font-size: 0.93rem;
    line-height: 1.7;
}
.mp-footer__bottom {
    background: #050912;
    padding: var(--mp-s4) 0;
    font-size: 0.86rem;
    text-align: center;
    color: #64748b;
}
.mp-footer__bottom p { margin: 0; color: #64748b; }
.mp-footer .mp-logo, .mp-footer .mp-logo__text { color: #fff !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .mp-two-col { grid-template-columns: 1fr; }
    .mp-footer__grid { grid-template-columns: 1fr 1fr; }
    .mp-hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .mp-nav-toggle { display: inline-flex; }
    .mp-nav__list {
        position: absolute;
        top: 100%;
        right: var(--mp-s5);
        left: var(--mp-s5);
        background: var(--mp-surface);
        border: 1px solid var(--mp-rule);
        border-radius: var(--mp-r-md);
        padding: var(--mp-s4);
        flex-direction: column;
        align-items: stretch;
        gap: var(--mp-s2);
        box-shadow: var(--mp-shadow-2);
        display: none;
    }
    .mp-nav__list.is-open { display: flex; }
    .mp-nav__link, .mp-nav__link--cta {
        display: block;
        padding: 10px 12px;
        border-bottom: 0 !important;
    }
    .mp-form__row { grid-template-columns: 1fr; }
    .mp-footer__grid { grid-template-columns: 1fr; }
    .mp-filter { grid-template-columns: 1fr; }
    .mp-review__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    body { font-size: 15.5px; }
    .mp-section { padding: var(--mp-s7) 0; }
    .mp-hero { padding: var(--mp-s7) 0 var(--mp-s6); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
