html {
    scroll-behavior: smooth;
}

.mnp-body {
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

.mnp-page {
    --mnp-accent: #f97316;
    --mnp-accent-soft: #ffedd5;
    --mnp-ink: #0f172a;
    --mnp-surface: rgba(255, 255, 255, 0.16);
    font-family: "DM Sans", sans-serif;
}

.mnp-page h1,
.mnp-page h2,
.mnp-page h3,
.mnp-page h4 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
}

.mnp-section {
    position: relative;
}

.mnp-section--hero {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 38%, #f59e0b 100%);
}

.mnp-glass {
    background: var(--mnp-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mnp-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mnp-accent);
}

.mnp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.9rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease,
        color 0.2s ease, border-color 0.2s ease;
}

.mnp-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.mnp-button--primary {
    background: var(--mnp-accent);
    color: #fff;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.2);
}

.mnp-button--primary:hover {
    background: #ea580c;
    color: #fff;
}

.mnp-button--secondary {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    color: var(--mnp-ink);
}

.mnp-button--secondary:hover {
    border-color: rgba(249, 115, 22, 0.32);
    color: var(--mnp-accent);
}

.mnp-button--dark {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
}

.mnp-button--dark:hover {
    background: #020617;
    color: #fff;
}

.mnp-button--glass {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mnp-button--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mnp-body .cms-edit-section {
    background: linear-gradient(135deg, #0f172a 0%, #f97316 100%);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.28);
}

.mnp-body .cms-edit-section:hover {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.38);
}

.mnp-body #sectionEditorModal {
    --section-editor-bg: #fff7ed;
    --section-editor-panel: #ffffff;
    --section-editor-panel-soft: #fff7ed;
    --section-editor-line: #fed7aa;
    --section-editor-ink: #0f172a;
    --section-editor-muted: #64748b;
    --section-editor-accent: #f97316;
    --section-editor-accent-deep: #c2410c;
    --section-editor-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.mnp-body #sectionEditorModal .section-editor-header {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #0f172a 0%, #c2410c 54%, #f97316 100%);
}

.mnp-body #sectionEditorModal .section-editor-body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 237, 0.98) 100%);
}

.mnp-body #sectionEditorModal .section-editor-intro {
    border-color: rgba(249, 115, 22, 0.18);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.09), rgba(255, 255, 255, 0.88));
}

.mnp-body #sectionEditorModal .section-editor-upload--media {
    border-color: rgba(249, 115, 22, 0.26);
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.94), rgba(255, 255, 255, 0.98));
}

.mnp-body #sectionEditorModal .section-editor-preview-frame.is-empty {
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(15, 23, 42, 0.03)),
        #fff7ed;
}

.mnp-body #sectionEditorModal .section-editor-btn--primary {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
}

.mnp-body #sectionEditorModal .section-editor-btn--accent {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.mnp-body #sectionEditorModal .tox .tox-toolbar__primary,
.mnp-body #sectionEditorModal .note-toolbar {
    background: #fff7ed !important;
}

.mnp-nav-frame {
    display: grid;
    gap: 1rem;
}

.mnp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #0f172a;
    text-decoration: none;
}

.mnp-brand:hover {
    color: #0f172a;
    text-decoration: none;
}

.mnp-brand strong,
.mnp-brand small {
    display: block;
}

.mnp-brand strong {
    font-size: 1rem;
    font-weight: 700;
}

.mnp-brand small {
    margin-top: 0.1rem;
    font-size: 0.78rem;
    color: #64748b;
}

.mnp-brand-mark {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    background: linear-gradient(160deg, rgba(249, 115, 22, 0.96), rgba(251, 191, 36, 0.96));
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.2);
}

.mnp-nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.mnp-nav-links a {
    color: #475569;
    text-decoration: none;
}

.mnp-nav-links a:hover {
    color: var(--mnp-accent);
    text-decoration: none;
}

.mnp-template-panel {
    display: grid;
    gap: 0.55rem;
}

.mnp-template-panel--drawer,
.mnp-route-launcher--drawer {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
    padding: 1.2rem;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.mnp-admin-stack {
    display: grid;
    gap: 1rem;
}

.mnp-template-label,
.mnp-route-launcher label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.mnp-template-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.mnp-template-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    padding: 0.65rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.mnp-template-pill:hover,
.mnp-template-pill.is-active {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.08);
    color: var(--mnp-accent);
    text-decoration: none;
}

.mnp-route-launcher {
    display: grid;
    gap: 0.55rem;
}

.mnp-route-launcher-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mnp-route-launcher-row input {
    min-width: 0;
    flex: 1 1 14rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 0.95rem;
    background: #fff;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    color: #0f172a;
    outline: none;
}

.mnp-route-launcher-row input:focus {
    border-color: rgba(249, 115, 22, 0.42);
}

.mnp-route-launcher-row button,
.mnp-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.95rem;
    padding: 0.85rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mnp-route-launcher-row button {
    background: #0f172a;
    color: #fff;
}

.mnp-route-launcher-row button:hover,
.mnp-contact-button:hover {
    transform: translateY(-1px);
}

.mnp-contact-button {
    background: var(--mnp-accent);
    color: #fff;
}

.mnp-contact-button:hover {
    background: #ea580c;
    color: #fff;
    text-decoration: none;
}

.mnp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.mnp-hero-metric {
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.14);
    padding: 1rem 1.1rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mnp-hero-metric strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.mnp-hero-metric span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.84);
}

.mnp-hero-media-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.8rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
    box-shadow: 0 36px 70px rgba(15, 23, 42, 0.28);
}

.mnp-hero-media-shell img {
    border-radius: 1.45rem;
    aspect-ratio: 11 / 10;
}

.mnp-hero-media-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(18rem, calc(100% - 2rem));
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 1rem 1.05rem;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.mnp-surface-card,
.mnp-gallery-item {
    border-radius: 1.9rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: #fff;
    padding: 1.7rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.mnp-card-icon {
    display: inline-flex;
    height: 3.2rem;
    width: 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    background: var(--mnp-accent-soft);
    color: var(--mnp-accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.mnp-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.mnp-package-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.9rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mnp-package-card--featured {
    border-color: rgba(249, 115, 22, 0.5);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: 0 26px 60px rgba(249, 115, 22, 0.16);
}

.mnp-package-badge {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.16);
    padding: 0.45rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fdba74;
}

.mnp-package-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    margin-top: 1.1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(249, 115, 22, 0.28);
    background: rgba(249, 115, 22, 0.1);
    color: #fdba74;
    font-size: 1.25rem;
}

.mnp-package-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fdba74;
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mnp-gallery-item {
    overflow: hidden;
    padding: 0;
}

.mnp-gallery-item img {
    transition: transform 0.45s ease;
}

.mnp-gallery-item:hover img {
    transform: scale(1.04);
}

.mnp-gallery-directory {
    display: grid;
    gap: 1.2rem;
}

.mnp-gallery-toolbar {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.mnp-gallery-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.mnp-gallery-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    padding: 0.95rem 1rem;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.mnp-gallery-search i {
    color: #f97316;
    font-size: 0.95rem;
}

.mnp-gallery-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 0.96rem;
}

.mnp-gallery-results {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.14);
    background: rgba(249, 115, 22, 0.08);
    padding: 0.75rem 1rem;
    color: #9a3412;
    font-size: 0.86rem;
    font-weight: 700;
}

.mnp-gallery-results strong {
    color: #c2410c;
    font-size: 1rem;
}

.mnp-gallery-results--slots {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
}

.mnp-gallery-results--slots strong {
    color: #0f172a;
}

.mnp-gallery-admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 0.9rem 1.15rem;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.mnp-gallery-admin-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(249, 115, 22, 0.28);
}

.mnp-gallery-admin-button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.mnp-gallery-admin-button i {
    font-size: 0.92rem;
}

.mnp-gallery-filter-stack {
    display: grid;
    gap: 1rem;
}

.mnp-gallery-filter-group {
    display: grid;
    gap: 0.8rem;
}

.mnp-gallery-filter-group__label {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mnp-gallery-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mnp-gallery-filter-pills--city {
    max-height: 15rem;
    overflow: auto;
    padding-right: 0.2rem;
    scrollbar-width: thin;
}

.mnp-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: #fff;
    padding: 0.7rem 0.95rem;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.mnp-filter-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.3);
    color: #c2410c;
}

.mnp-filter-pill.is-active {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
    box-shadow: 0 18px 28px rgba(249, 115, 22, 0.18);
}

.mnp-filter-pill--city {
    justify-content: flex-start;
}

.mnp-gallery-directory-card {
    position: relative;
    isolation: isolate;
}

.mnp-gallery-card-edit {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    padding: 0.65rem 0.9rem;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.24);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mnp-gallery-card-edit:hover {
    transform: translateY(-2px);
    background: #f97316;
}

.mnp-gallery-item__link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.mnp-gallery-item__link:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.4);
    outline-offset: 4px;
    border-radius: 1.65rem;
}

.mnp-gallery-item__link--placeholder {
    min-height: 100%;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.mnp-gallery-placeholder {
    display: grid;
    place-items: center;
    gap: 0.9rem;
    min-height: 19rem;
    padding: 2.25rem 1.4rem 6rem;
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0) 55%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0));
    text-align: center;
}

.mnp-gallery-placeholder__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fdba74;
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mnp-gallery-placeholder__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.mnp-gallery-placeholder__copy {
    max-width: 17rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

.mnp-gallery-placeholder__footer {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 0 1.25rem 1.25rem;
}

.mnp-gallery-item.is-draft {
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.mnp-gallery-directory-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 14px 22px rgba(15, 23, 42, 0.16);
}

.mnp-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.mnp-gallery-lightbox[hidden] {
    display: none;
}

.mnp-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(16px);
}

.mnp-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 72rem);
    overflow: hidden;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 40px 90px rgba(2, 6, 23, 0.4);
}

.mnp-gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    box-shadow: 0 18px 30px rgba(2, 6, 23, 0.24);
}

.mnp-gallery-lightbox__media {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.mnp-gallery-lightbox__media img {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.mnp-gallery-lightbox__content {
    padding: 1.75rem;
}

body.mnp-gallery-lightbox-open {
    overflow: hidden;
}

.section-editor-field.is-targeted {
    border-radius: 1.4rem;
    background: rgba(249, 115, 22, 0.08);
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

@media (min-width: 900px) {
    .mnp-gallery-lightbox__dialog {
        grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.55fr);
    }

    .mnp-gallery-lightbox__content {
        padding: 2rem;
    }
}

.mnp-gallery-empty {
    display: grid;
    gap: 0.35rem;
    border-radius: 1.6rem;
    border: 1px dashed rgba(249, 115, 22, 0.3);
    background: rgba(255, 247, 237, 0.8);
    padding: 1.25rem 1.4rem;
    color: #9a3412;
}

.mnp-gallery-empty strong {
    font-size: 1rem;
}

.mnp-gallery-empty span {
    color: #c2410c;
    line-height: 1.6;
}

.mnp-footer-panel {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.98));
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.24);
}

.mnp-slider-shell {
    position: relative;
    overflow: hidden;
}

.mnp-slider-shell::before,
.mnp-slider-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(2rem, 4vw, 4rem);
    pointer-events: none;
}

.mnp-slider-shell::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.mnp-slider-shell::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.mnp-slider-shell--soft::before {
    background: linear-gradient(90deg, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0));
}

.mnp-slider-shell--soft::after {
    background: linear-gradient(270deg, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0));
}

.mnp-slider-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: mnp-marquee var(--mnp-slider-duration, 26s) linear infinite;
}

.mnp-slider-track:hover {
    animation-play-state: paused;
}

.mnp-slider-track--reverse {
    animation-direction: reverse;
}

@keyframes mnp-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.mnp-spotlight-slide {
    width: clamp(15rem, 25vw, 18rem);
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #fff;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.mnp-spotlight-slide__media {
    overflow: hidden;
}

.mnp-spotlight-slide__media img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
}

.mnp-spotlight-slide__body {
    padding: 1.15rem 1.2rem 1.3rem;
}

.mnp-spotlight-slide__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f97316;
}

.mnp-spotlight-slide__title {
    margin-top: 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.mnp-spotlight-slide__meta {
    display: inline-flex;
    margin-top: 0.8rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    padding: 0.45rem 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c2410c;
}

.mnp-review-card--slider {
    min-width: clamp(18rem, 28vw, 22rem);
    max-width: clamp(18rem, 28vw, 22rem);
    flex: 0 0 auto;
}

.mnp-slider-shell--reviews::before {
    background: linear-gradient(90deg, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0));
}

.mnp-slider-shell--reviews::after {
    background: linear-gradient(270deg, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0));
}

.mnp-footer-shell {
    display: grid;
    gap: 1.5rem;
}

.mnp-footer-lead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mnp-footer-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fdba74;
}

.mnp-footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mnp-footer-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.65rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f8fafc;
}

.mnp-footer-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.78);
    padding: 2rem;
    box-shadow: 0 24px 46px rgba(2, 6, 23, 0.18);
}

.mnp-footer-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.mnp-footer-grid {
    display: grid;
    gap: 1.5rem;
}

.mnp-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.mnp-footer-list a {
    color: #cbd5e1;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mnp-footer-list a:hover {
    color: #fdba74;
    transform: translateX(3px);
}

.mnp-footer-story-link {
    display: grid;
    gap: 0.35rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.05rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mnp-footer-story-link:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.32);
    background: rgba(249, 115, 22, 0.08);
    color: #fff;
    text-decoration: none;
}

.mnp-footer-story-link strong {
    font-size: 0.98rem;
    font-weight: 700;
}

.mnp-footer-story-link span {
    font-size: 0.88rem;
    color: #cbd5e1;
}

.mnp-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.92rem;
}

.mnp-footer-bottom p {
    margin: 0;
}

.mnp-footer-bottom a {
    color: #fdba74;
    font-weight: 600;
    text-decoration: none;
}

.mnp-contact-card {
    display: block;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mnp-contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.28);
    background: rgba(249, 115, 22, 0.08);
    color: #fff;
    text-decoration: none;
}

.mnp-contact-card span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.mnp-contact-card strong {
    display: block;
    margin-top: 0.55rem;
    font-size: 1rem;
    line-height: 1.5;
}

.mnp-faq-shell {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.mnp-faq-intro {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(145deg, #0f172a, #1e293b 58%, #f97316 160%);
    padding: clamp(1.6rem, 2vw + 1rem, 2.35rem);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.mnp-faq-intro::after {
    content: "";
    position: absolute;
    right: -3.5rem;
    bottom: -3.5rem;
    width: 13rem;
    height: 13rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.28), rgba(251, 146, 60, 0));
    pointer-events: none;
}

.mnp-faq-intro__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    font-size: 0.88rem;
}

.mnp-faq-intro__meta strong {
    color: #fff;
    font-size: 0.95rem;
}

.mnp-faq-grid {
    display: grid;
    gap: 1rem;
}

.mnp-faq-card {
    border-radius: 1.6rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.86), #ffffff);
    padding: 1.15rem 1.2rem;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mnp-faq-card:hover,
.mnp-faq-card[open] {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.26);
    box-shadow: 0 26px 44px rgba(249, 115, 22, 0.09);
}

.mnp-faq-card__summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.9rem;
    cursor: pointer;
    list-style: none;
}

.mnp-faq-card__summary::-webkit-details-marker {
    display: none;
}

.mnp-faq-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.95rem;
    background: #fff7ed;
    color: #ea580c;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.mnp-faq-card__question {
    padding-top: 0.18rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

.mnp-faq-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #f8fafc;
    color: #f97316;
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.mnp-faq-card[open] .mnp-faq-card__icon {
    transform: rotate(45deg);
    background: #f97316;
    color: #fff;
}

.mnp-faq-card__answer {
    margin: 0.95rem 0 0 3.25rem;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.75;
}

.mnp-map-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.32);
}

.mnp-map-shell::before {
    content: "";
    position: absolute;
    top: -5rem;
    right: -4rem;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0));
    pointer-events: none;
}

.mnp-map-grid {
    display: grid;
    gap: 1.25rem;
    padding: 1.2rem;
}

.mnp-map-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, #020617, #0f172a 65%, #1e293b);
    padding: clamp(1.6rem, 2vw + 1rem, 2.5rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mnp-map-panel::after {
    content: "";
    position: absolute;
    inset: auto -3rem -4rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.18), rgba(251, 146, 60, 0));
    pointer-events: none;
}

.mnp-map-address {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
    margin-top: 1.6rem;
    max-width: 28rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.15rem 1.2rem;
}

.mnp-map-address__eyebrow {
    color: #fdba74;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mnp-map-address strong {
    color: #fff;
    font-size: 1.14rem;
    font-weight: 700;
}

.mnp-map-address p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.6;
}

.mnp-map-inline-note {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
}

.mnp-map-visual {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.75rem;
    min-height: 23rem;
    background: #020617;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mnp-map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mnp-map-shell:hover .mnp-map-visual img {
    transform: scale(1.04);
}

.mnp-map-location {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.3rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.78);
    padding: 1rem 1.1rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.mnp-map-location span {
    color: #fdba74;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mnp-map-location strong {
    font-size: 1rem;
    font-weight: 700;
}

.mnp-map-location small {
    color: #cbd5e1;
    font-size: 0.88rem;
}

.mnp-section--stats {
    position: relative;
    background: linear-gradient(135deg, #020617, #0f172a 48%, #7c2d12 160%);
}

.mnp-section--stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), rgba(251, 146, 60, 0) 28%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0) 32%);
    pointer-events: none;
}

.mnp-stats-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.16), rgba(251, 146, 60, 0) 32%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.8));
    padding: 1rem;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.26);
}

.mnp-stats-shell::before {
    content: "";
    position: absolute;
    inset: auto -4rem -4rem auto;
    width: 13rem;
    height: 13rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0));
    pointer-events: none;
}

.mnp-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.mnp-stats-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    padding: 1.25rem 1rem 1.15rem;
    text-align: center;
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.16);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.mnp-stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.26);
    box-shadow: 0 22px 40px rgba(249, 115, 22, 0.12);
}

.mnp-stats-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.85rem;
    border-radius: 1rem;
    background: rgba(249, 115, 22, 0.16);
    color: #fdba74;
    font-size: 1rem;
}

.mnp-stats-card__halo {
    position: absolute;
    top: -1.9rem;
    left: 50%;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.38), rgba(253, 186, 116, 0));
    transform: translateX(-50%);
    pointer-events: none;
}

.mnp-stats-card__value {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.mnp-stats-card__label {
    position: relative;
    z-index: 1;
    margin: 0.65rem auto 0;
    max-width: 11rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
}

.mnp-richtext {
    font-size: 1rem;
    line-height: 1.8;
}

.mnp-richtext > * + * {
    margin-top: 1rem;
}

.mnp-section-fade {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--mnp-reveal-delay, 0ms);
    will-change: transform, opacity;
}

.mnp-section-fade[data-mnp-reveal="left"] {
    transform: translate3d(-42px, 36px, 0);
}

.mnp-section-fade[data-mnp-reveal="right"] {
    transform: translate3d(42px, 36px, 0);
}

.mnp-section-fade[data-mnp-reveal="up"] {
    transform: translate3d(0, 48px, 0);
}

.mnp-section-fade[data-mnp-reveal="scale"] {
    transform: translate3d(0, 22px, 0) scale(0.94);
}

.mnp-section-fade.show {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.mnp-review-card,
.mnp-package-card,
.mnp-chip,
.mnp-surface-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mnp-review-card:hover,
.mnp-package-card:hover,
.mnp-chip:hover,
.mnp-surface-card:hover {
    transform: translateY(-4px);
}

.mnp-review-scroll {
    scrollbar-width: none;
}

.mnp-review-scroll::-webkit-scrollbar {
    display: none;
}

.mnp-hero-ring-1,
.mnp-hero-ring-2,
.mnp-hero-ring-3 {
    position: absolute;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    animation: mnp-float-ring 10s linear infinite;
}

.mnp-hero-ring-1 {
    top: -3rem;
    left: -5rem;
    height: 18rem;
    width: 18rem;
}

.mnp-hero-ring-2 {
    top: -6rem;
    left: 2.5rem;
    height: 32rem;
    width: 32rem;
    animation-duration: 16s;
}

.mnp-hero-ring-3 {
    bottom: -18rem;
    left: -8rem;
    height: 46rem;
    width: 46rem;
    animation-duration: 22s;
}

@keyframes mnp-float-ring {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.03);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.mnp-section-is-hidden {
    display: none !important;
}

.mnp-admin-rail {
    position: fixed;
    right: 1.25rem;
    top: 50%;
    z-index: 1080;
    display: grid;
    gap: 0.75rem;
    transform: translateY(-50%);
}

.mnp-admin-rail__button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.94);
    color: #fff;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.24);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mnp-admin-rail__button:hover {
    transform: translateX(-4px);
    background: #f97316;
}

.mnp-admin-overlay {
    position: fixed;
    inset: 0;
    z-index: 1085;
    background: rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(4px);
}

.mnp-admin-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1090;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(31rem, calc(100vw - 1rem));
    height: 100vh;
    background: #ffffff;
    box-shadow: -28px 0 60px rgba(15, 23, 42, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mnp-admin-drawer.is-open {
    transform: translateX(0);
}

.mnp-body.mnp-admin-open {
    overflow: hidden;
}

.mnp-admin-drawer__header,
.mnp-admin-drawer__footer {
    padding: 1.35rem 1.25rem;
    border-left: 1px solid rgba(148, 163, 184, 0.16);
}

.mnp-admin-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.mnp-admin-drawer__header h2 {
    margin: 0.2rem 0 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.mnp-admin-drawer__header p {
    margin: 0.6rem 0 0;
    max-width: 22rem;
    font-size: 0.93rem;
    line-height: 1.65;
    color: #64748b;
}

.mnp-admin-drawer__kicker {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f97316;
}

.mnp-admin-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 1rem;
    background: #f8fafc;
    color: #475569;
}

.mnp-admin-drawer__body {
    overflow-y: auto;
    padding: 1.25rem;
}

.mnp-admin-drawer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: #fff;
}

.mnp-admin-drawer__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 1rem;
    background: #f97316;
    color: #fff;
    padding: 0.9rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 700;
    flex: 1 1 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.mnp-admin-drawer__action:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.mnp-admin-drawer__action--ghost {
    background: #eef2f7;
    color: #334155;
}

.mnp-admin-drawer__action--ghost:hover {
    background: #e2e8f0;
}

.mnp-admin-drawer__list {
    display: grid;
    gap: 0.8rem;
}

.mnp-admin-section-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 1.35rem;
    background: #fff;
    padding: 0.95rem 1rem;
}

.mnp-admin-section-item strong {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
}

.mnp-admin-section-item small {
    display: block;
    margin-top: 0.3rem;
    color: #64748b;
}

.mnp-admin-section-item__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mnp-admin-section-status {
    border-radius: 999px;
    background: #dcfce7;
    padding: 0.28rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #166534;
}

.mnp-admin-section-status.is-inactive {
    background: #fee2e2;
    color: #b91c1c;
}

.mnp-admin-switch {
    position: relative;
    width: 3.2rem;
    height: 1.9rem;
    flex: 0 0 auto;
}

.mnp-admin-switch input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.mnp-admin-switch__track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background-color 0.2s ease;
}

.mnp-admin-switch__thumb {
    position: absolute;
    top: 0.22rem;
    left: 0.22rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease;
}

.mnp-admin-switch input:checked + .mnp-admin-switch__track {
    background: #f97316;
}

.mnp-admin-switch input:checked + .mnp-admin-switch__track + .mnp-admin-switch__thumb {
    transform: translateX(1.3rem);
}

.mnp-admin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mnp-admin-form__field {
    display: grid;
    gap: 0.45rem;
}

.mnp-admin-form__field--full {
    grid-column: 1 / -1;
}

.mnp-admin-form__field span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
}

.mnp-admin-form__field input,
.mnp-admin-form__field textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1rem;
    background: #fff;
    padding: 0.85rem 0.95rem;
    font-size: 0.94rem;
    line-height: 1.5;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mnp-admin-form__field textarea {
    min-height: 7rem;
    resize: vertical;
    font-family: "DM Sans", sans-serif;
}

.mnp-admin-form__field input:focus,
.mnp-admin-form__field textarea:focus {
    border-color: rgba(249, 115, 22, 0.48);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

@media (min-width: 960px) {
    .mnp-nav-frame {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .mnp-footer-shell {
        grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    }

    .mnp-footer-lead {
        min-height: 100%;
    }

    .mnp-footer-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mnp-faq-shell {
        grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
        gap: 1.6rem;
    }

    .mnp-faq-intro {
        position: sticky;
        top: 6.5rem;
    }

    .mnp-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mnp-map-grid {
        grid-template-columns: minmax(19rem, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
    }

    .mnp-gallery-toolbar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .mnp-map-visual {
        min-height: 100%;
    }

    .mnp-stats-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 959px) {
    .mnp-nav-links {
        margin-top: 0.2rem;
    }

    .mnp-contact-button {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .mnp-footer-panel {
        padding: 1.5rem;
    }

    .mnp-footer-card {
        padding: 1.5rem;
    }

    .mnp-spotlight-slide {
        width: 15.5rem;
    }

    .mnp-button {
        width: 100%;
    }

    .mnp-route-launcher-row button {
        width: 100%;
    }

    .mnp-admin-rail {
        top: auto;
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        transform: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mnp-admin-rail__button {
        justify-content: center;
    }

    .mnp-admin-drawer {
        width: calc(100vw - 0.5rem);
    }

    .mnp-admin-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .mnp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mnp-gallery-filter-pills--city {
        max-height: 12rem;
    }

    .mnp-faq-card {
        padding: 1rem;
    }

    .mnp-faq-card__summary {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mnp-faq-card__icon {
        grid-column: 2;
        justify-self: end;
        margin-top: 0.35rem;
    }

    .mnp-faq-card__answer {
        margin-left: 0;
    }

    .mnp-map-grid {
        padding: 0.9rem;
    }

    .mnp-map-location {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .mnp-gallery-toolbar {
        grid-template-columns: minmax(0, 1fr);
    }

    .mnp-gallery-results {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mnp-section-fade,
    .mnp-review-card,
    .mnp-package-card,
    .mnp-chip,
    .mnp-surface-card,
    .mnp-gallery-item img,
    .mnp-hero-ring-1,
    .mnp-hero-ring-2,
    .mnp-hero-ring-3,
    .mnp-button,
    .mnp-slider-track,
    .mnp-route-launcher-row button,
    .mnp-contact-button,
    .mnp-admin-rail__button,
    .mnp-admin-drawer,
    .mnp-admin-drawer__action,
    .mnp-admin-switch__track,
    .mnp-admin-switch__thumb {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .mnp-section-fade {
        opacity: 1;
    }
}
