/* Chong Mau public homepage — index.php */
:root {
    --mph-navy: #0a1628;
    --mph-navy-mid: #0d2137;
    --mph-navy-soft: #132a45;
    --mph-gold: #c9a24e;
    --mph-gold-soft: #d4b76a;
    --mph-text: #e8edf4;
    --mph-muted: rgba(232, 237, 244, 0.72);
    --mph-shell: 1280px;
    --mph-radius: 12px;
    --mph-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--mph-navy);
}

body.mph-body {
    margin: 0;
    font-family: var(--mph-font);
    background: var(--mph-navy);
    color: var(--mph-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.mph-shell {
    width: min(100%, var(--mph-shell));
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ── Top bar ── */
.mph-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px clamp(16px, 4vw, 32px);
    padding-top: max(12px, env(safe-area-inset-top, 0px));
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mph-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
}

.mph-brand-logo-link {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.mph-site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    font-weight: 600;
}

.mph-site-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.mph-site-nav a:hover,
.mph-site-nav a:focus-visible {
    color: var(--mph-gold-soft);
}

.mph-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mph-skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 200;
    padding: 8px 12px;
    background: #fff;
    color: #0a1628;
    border-radius: 6px;
}

.mph-brand-logo {
    display: block;
    width: auto;
    height: 40px;
    max-width: min(140px, 34vw);
    object-fit: contain;
    flex-shrink: 0;
}

.mph-brand {
    margin: 0;
    font-size: clamp(11px, 1.6vw, 13px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
    max-width: 420px;
}

.mph-nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mph-nav-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mph-nav-actions a:hover { transform: translateY(-1px); }

.mph-btn-customer {
    color: #111;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.mph-btn-staff {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

/* ── Hero ── */
.mph-hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--mph-navy-mid);
}

.mph-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mph-hero__media img,
.mph-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mph-hero__slideshow {
    position: absolute;
    inset: 0;
}

.mph-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.mph-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.mph-hero__slideshow[data-effect="fade"] .mph-hero__slide {
    transition: opacity 0.9s ease-in-out;
}

.mph-hero__slideshow[data-effect="slide"] .mph-hero__slide,
.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide {
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.95s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.95s ease;
}

.mph-hero__slideshow[data-effect="slide"] .mph-hero__slide.is-active,
.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-active {
    transform: translateX(0);
}

.mph-hero__slideshow[data-effect="slide"] .mph-hero__slide.is-leave,
.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-leave {
    transform: translateX(-100%);
    z-index: 2;
}

.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-leave {
    opacity: 0.15;
}

.mph-hero__slideshow[data-effect="slide"] .mph-hero__slide.is-enter,
.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-enter {
    transform: translateX(100%);
    opacity: 1;
    z-index: 3;
}

.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-enter {
    opacity: 0;
}

.mph-hero__slideshow[data-effect="slide-fade"] .mph-hero__slide.is-enter.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .mph-hero__slide { transition: none !important; }
}

.mph-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.55) 45%, rgba(10, 22, 40, 0.75) 100%);
    z-index: 1;
}

.mph-hero__certs {
    position: absolute;
    top: 16px;
    right: clamp(16px, 4vw, 40px);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    max-width: min(460px, calc(100vw - 32px));
}

.mph-hero__certs-head {
    margin: 0;
    padding: 7px 14px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: nowrap;
}

.mph-hero__certs-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 8px 10px;
}

.mph-hero__cert {
    display: block;
    height: 56px;
    width: auto;
    max-width: 132px;
    object-fit: contain;
}

@media (max-width: 720px) {
    .mph-hero__certs {
        top: 10px;
        right: 10px;
        border-radius: 8px;
        max-width: calc(100vw - 20px);
    }
    .mph-hero__certs-head {
        padding: 6px 10px;
        font-size: 11px;
    }
    .mph-hero__certs-logos {
        gap: 8px;
        padding: 6px 8px;
    }
    .mph-hero__cert {
        height: 38px;
        max-width: 92px;
    }
}

.mph-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(48px, 10vw, 96px) clamp(20px, 5vw, 48px);
    max-width: 900px;
}

.mph-hero__headline {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #fff;
}

.mph-hero__sub {
    margin: 0 0 28px;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--mph-muted);
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.mph-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.mph-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.mph-cta:hover { transform: translateY(-2px); }

.mph-cta--primary {
    background: var(--mph-gold);
    color: #0a1628;
    border: none;
    box-shadow: 0 8px 24px rgba(201, 162, 78, 0.35);
}

.mph-cta--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* ── Sections ── */
.mph-section {
    padding: clamp(56px, 10vw, 96px) 0;
}

.mph-section--alt { background: var(--mph-navy-mid); }

.mph-section__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mph-gold);
    margin-bottom: 8px;
}

.mph-section__title {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.mph-section__intro {
    margin: 0 0 32px;
    font-size: 1rem;
    color: var(--mph-muted);
    max-width: 62ch;
    line-height: 1.7;
}

.mph-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 24px;
    margin-bottom: 32px;
}

.mph-section__head-text {
    flex: 1 1 280px;
    min-width: 0;
}

.mph-section__head-text .mph-section__intro {
    margin-bottom: 0;
}

.mph-section__head-cta {
    flex: 0 0 auto;
}

#featured,
#featured-grid {
    scroll-margin-top: 88px;
}

/* ── About values ── */
.mph-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.mph-values--quad {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mph-about-competencies {
    margin-top: 28px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mph-about-competencies__title {
    margin: 0 0 10px;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.mph-about-competencies__intro {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--mph-muted);
    max-width: 72ch;
    line-height: 1.65;
}

/* About right-side social video */
#about.mph-about--has-video > .mph-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr);
    gap: 28px 40px;
    align-items: start;
}

#about.mph-about--has-video .mph-section__label,
#about.mph-about--has-video .mph-section__title,
#about.mph-about--has-video .mph-section__intro {
    grid-column: 1;
}

#about.mph-about--has-video .mph-about-video {
    grid-column: 2;
    grid-row: 1 / span 3;
    min-width: 0;
}

#about.mph-about--has-video .mph-about-competencies,
#about.mph-about--has-video .mph-values,
#about.mph-about--has-video .mph-badges,
#about.mph-about--has-video .mph-stats {
    grid-column: 1 / -1;
}

#about.mph-about--has-video.mph-about--has-bts > .mph-shell {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.15fr);
}

.mph-about-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.mph-about-video--has-bts {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

.mph-about-video__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    border-radius: 12px;
    background: #0b1220;
    border: 1px solid rgba(253, 230, 138, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.mph-about-video--has-bts .mph-about-video__card {
    flex: 1 1 auto;
}

.mph-about-video--portrait .mph-about-video__card {
    width: min(100%, 380px);
}

.mph-about-video--portrait.mph-about-video--has-bts .mph-about-video__card {
    width: min(100%, 320px);
    flex: 0 1 320px;
}

.mph-about-video__bts {
    flex: 0 0 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.mph-about-video__bts-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mph-gold-soft);
    line-height: 1.3;
}

.mph-about-video__bts-note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.82);
}

.mph-about-video__bts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mph-about-video__bts-item {
    margin: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mph-about-video__bts-thumb.cm-avatar-thumb {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(253, 230, 138, 0.22);
    background: #0b1220;
    cursor: default;
    pointer-events: auto;
}

.mph-about-video__bts-thumb .cm-avatar-thumb__img,
.mph-about-video__bts-thumb video.cm-avatar-thumb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mph-about-video__bts-thumb--video {
    cursor: pointer;
}

.mph-about-video__bts-play {
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fde68a;
    color: #141210;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding-left: 2px;
    pointer-events: none;
}

.mph-about-video__bts-cap {
    margin: 0;
    font-size: 0.65rem;
    line-height: 1.35;
    color: rgba(226, 232, 240, 0.78);
    word-break: break-word;
}

.mph-about-video--landscape.mph-about-video--has-bts {
    flex-wrap: wrap;
}

.mph-about-video--landscape.mph-about-video--has-bts .mph-about-video__card {
    flex: 1 1 280px;
}

.mph-about-video--landscape.mph-about-video--has-bts .mph-about-video__bts {
    flex: 0 0 148px;
}

.mph-about-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b1220;
}

.mph-about-video--portrait .mph-about-video__frame {
    aspect-ratio: 9 / 16;
}

.mph-about-video__poster,
.mph-about-video__el,
.mph-about-video__frame iframe,
.mph-about-video__frame video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
}

.mph-about-video__el {
    z-index: 4;
    background: #0b1220;
}

.mph-about-video--portrait .mph-about-video__poster,
.mph-about-video--portrait .mph-about-video__el,
.mph-about-video--portrait .mph-about-video__frame iframe,
.mph-about-video--portrait .mph-about-video__frame video {
    /* 完整 9:16 畫面；禁止再放大裁上下 */
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    background: #0b1220;
}

.mph-about-video__placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #1f2937;
}

.mph-about-video__placeholder--instagram {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 55%, #7c3aed 100%);
}

.mph-about-video__placeholder--youtube {
    background: #7f1d1d;
}

.mph-about-video__placeholder--facebook {
    background: #1e3a8a;
}

.mph-about-video__placeholder--x {
    background: #111;
}

.mph-about-video__hit {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 16px;
    border: 0;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.12) 0%, rgba(8, 12, 24, 0.55) 100%);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.mph-about-video__hit:hover,
.mph-about-video__hit:focus-visible {
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.08) 0%, rgba(8, 12, 24, 0.62) 100%);
    outline: none;
}

.mph-about-video__playico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fde68a;
    color: #141210;
    font-size: 32px;
    line-height: 1;
    padding-left: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.mph-about-video__playlabel {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.mph-about-video.is-playing .mph-about-video__hit,
.mph-about-video.is-playing .mph-about-video__poster,
.mph-about-video.is-playing .mph-about-video__placeholder {
    display: none;
}

.mph-about-video__theme {
    margin: 0;
    padding: 10px 14px 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: var(--mph-gold-soft, #d4b76a);
}

.mph-about-video__caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 12px 16px 14px;
    border-top: 1px solid rgba(201, 162, 78, 0.22);
    background: rgba(8, 14, 28, 0.96);
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.mph-about-video__caption:hover .mph-about-video__caption-action,
.mph-about-video__caption:focus-visible .mph-about-video__caption-action {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mph-about-video__caption:focus-visible {
    outline: 2px solid rgba(253, 230, 138, 0.55);
    outline-offset: -2px;
}

.mph-about-video__caption-source {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: rgba(226, 232, 240, 0.58);
    max-width: 100%;
}

.mph-about-video__caption-source em {
    font-style: normal;
    font-weight: 700;
    color: var(--mph-gold-soft);
}

.mph-about-video__caption-action {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mph-gold-soft);
    max-width: 100%;
}

.mph-about-video__caption-action::after {
    content: "↗";
    margin-left: 0.35em;
    font-size: 0.82em;
    opacity: 0.85;
}

.mph-about-video__ig {
    position: absolute;
    inset: 0;
    overflow: auto;
    background: #000;
}

.mph-about-video-modal__box {
    width: min(480px, 96vw);
}

.mph-about-video-modal__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px 20px;
}

.mph-about-video-modal .mph-promo-modal__media {
    min-height: 280px;
    display: flex;
    justify-content: center;
    background: #0b1220;
}

.mph-about-video-modal .mph-promo-modal__media iframe {
    width: min(100%, 400px);
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 720px);
    background: #111;
}

.mph-about-video-modal .mph-promo-modal__media.is-landscape iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(56vh, 480px);
}

.mph-about-video-modal .mph-promo-modal__ig {
    width: 100%;
    min-height: 420px;
}

.mph-about-video-modal .mph-cta {
    align-self: center;
}

@media (max-width: 860px) {
    #about.mph-about--has-video > .mph-shell {
        grid-template-columns: 1fr;
    }
    #about.mph-about--has-video .mph-about-video {
        grid-column: 1;
        grid-row: auto;
        max-width: 560px;
    }
    .mph-about-video {
        align-items: flex-start;
    }
    .mph-about-video--has-bts {
        flex-direction: column;
        max-width: 560px;
    }
    .mph-about-video--portrait.mph-about-video--has-bts .mph-about-video__card {
        width: min(100%, 380px);
        flex: 1 1 auto;
    }
    .mph-about-video__bts {
        flex-basis: auto;
        width: 100%;
    }
    .mph-about-video__bts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 380px;
    }
}

.mph-value-card {
    padding: 24px;
    border-radius: var(--mph-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mph-value-card:hover {
    border-color: rgba(201, 162, 78, 0.35);
    transform: translateY(-2px);
}

.mph-value-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    stroke: var(--mph-gold);
    fill: none;
    stroke-width: 1.5;
}

.mph-value-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #fff;
}

.mph-value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--mph-muted);
    line-height: 1.55;
}

.mph-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.mph-badge {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(201, 162, 78, 0.12);
    border: 1px solid rgba(201, 162, 78, 0.35);
    color: var(--mph-gold-soft);
}

/* ── Featured grid ── */
.mph-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.mph-feature-card {
    position: relative;
    border-radius: var(--mph-radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--mph-navy-soft);
    text-decoration: none;
    color: inherit;
    display: block;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    width: 100%;
}

.mph-feature-card:focus-visible {
    outline: 2px solid var(--mph-gold);
    outline-offset: 3px;
}

.mph-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.mph-feature-card:hover img { transform: scale(1.06); }

.mph-feature-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0.95;
    transition: opacity 0.25s ease;
}

.mph-feature-card:hover .mph-feature-card__overlay { opacity: 1; }

.mph-feature-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mph-gold);
    margin-bottom: 4px;
}

.mph-feature-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* ── Shipment Spotlight ── */
.mph-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.mph-spotlight-card {
    position: relative;
    border-radius: var(--mph-radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--mph-navy-soft);
    text-decoration: none;
    color: inherit;
    display: block;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    width: 100%;
}

.mph-spotlight-card:focus-visible {
    outline: 2px solid var(--mph-gold);
    outline-offset: 3px;
}

.mph-spotlight-card img,
.mph-spotlight-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.mph-spotlight-card__media {
    background-size: cover;
    background-position: center;
}

.mph-spotlight-card:hover img,
.mph-spotlight-card:hover .mph-spotlight-card__media {
    transform: scale(1.05);
}

.mph-spotlight-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px 16px 16px;
    background: linear-gradient(180deg, transparent 35%, rgba(8, 14, 28, 0.88) 100%);
    opacity: 0.92;
    transition: opacity 0.25s ease;
}

.mph-spotlight-card:hover .mph-spotlight-card__overlay {
    opacity: 1;
}

.mph-spotlight-card__tag {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mph-gold-soft);
}

.mph-spotlight-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.mph-spotlight-card__caption {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mph-visitor-protect .mph-spotlight-card:hover .mph-protect-media {
    transform: none;
}

/* Layout hooks — hidden on v1; shown under .mph-layout-v2 / .mph-layout-v3 */
.mph-view-more,
.mph-spotlight-chips,
.mph-cta-band {
    display: none;
}

/* ── Visitor content protection (deterrents) ── */
.mph-visitor-protect {
    -webkit-touch-callout: none;
}

.mph-visitor-protect.mph-visitor-protect--tab-hidden #main-content {
    filter: blur(14px) brightness(0.55);
    transition: filter 0.2s ease;
}

.mph-visitor-protect.mph-visitor-protect--tab-hidden .mph-featured-gallery-modal.is-open .mph-featured-gallery-modal__box,
.mph-visitor-protect.mph-visitor-protect--tab-hidden .cm-img-lb-overlay.cm-img-lb--open .cm-img-lb-shell {
    filter: blur(16px) brightness(0.45);
}

.mph-visitor-protect img,
.mph-visitor-protect .mph-protect-media {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.mph-visitor-protect .mph-protect-media {
    position: absolute;
    inset: 0;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.45s ease;
}

.mph-visitor-protect .mph-feature-card:hover .mph-protect-media {
    transform: scale(1.06);
}

.mph-protect-shield {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    pointer-events: none;
    touch-action: none;
}

.mph-visitor-protect .mph-feature-card__overlay {
    z-index: 3;
}

.mph-visitor-protect .mph-spotlight-card__overlay {
    z-index: 3;
}

.mph-visitor-protect .mph-gallery-item,
.mph-visitor-protect .mph-process-photo,
.mph-visitor-protect .mph-orderflow__hero,
.mph-visitor-protect .mph-orderflow__thumb,
.mph-visitor-protect .mph-about-video__bts-thumb {
    position: relative;
}

.mph-visitor-protect .mph-about-video__bts-thumb,
.mph-visitor-protect .mph-about-video__bts-thumb.mph-protect-media {
    inset: auto;
    pointer-events: auto;
    background-image: none;
}

.mph-visitor-protect .mph-gallery-item::after,
.mph-visitor-protect .mph-process-photo::after,
.mph-visitor-protect .mph-orderflow__hero::after,
.mph-visitor-protect .mph-orderflow__thumb::after,
.mph-visitor-protect .mph-about-video__bts-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    pointer-events: none;
    touch-action: none;
}

.mph-visitor-protect .mph-protect-shield--cmlb {
    inset: 0;
    z-index: 4;
}

.mph-visitor-protect:not(.mph-visitor-protect--allow-select) :where(
    .mph-section,
    .mph-hero,
    .mph-topbar,
    .mph-feature-card,
    .mph-spotlight-card,
    .mph-gallery-item,
    .mph-process-step,
    .mph-orderflow,
    .mph-partner,
    .mph-testimonial
) {
    user-select: none;
    -webkit-user-select: none;
}

.mph-visitor-protect .mph-contact-form,
.mph-visitor-protect .mph-contact-form *,
.mph-visitor-protect .mph-quote-modal,
.mph-visitor-protect .mph-quote-modal * {
    user-select: text;
    -webkit-user-select: text;
}

/* ── Featured portfolio gallery modal (~98% viewport) ── */
.mph-featured-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 28000;
    align-items: center;
    justify-content: center;
    padding: 1vh 1vw;
    box-sizing: border-box;
}

.mph-featured-gallery-modal.is-open { display: flex; }

.mph-featured-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.82);
}

.mph-featured-gallery-modal__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 98vw;
    height: 98vh;
    max-width: 98vw;
    max-height: 98vh;
    background: #0a1628;
    border: 1px solid rgba(201, 162, 78, 0.28);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
}

.mph-featured-gallery-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 0 0 auto;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(10, 22, 40, 0.96) 100%);
}

.mph-featured-gallery-modal__head-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mph-featured-gallery-modal__tag {
    margin: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mph-gold);
    line-height: 1.25;
}

.mph-featured-gallery-modal__tag[hidden] { display: none; }

.mph-featured-gallery-modal__title {
    margin: 0;
    font-size: clamp(0.92rem, 1.8vw, 1.12rem);
    line-height: 1.2;
    color: #fff;
}

.mph-featured-gallery-modal__head-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mph-featured-gallery-modal__slideshow {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-size: 0.72rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mph-featured-gallery-modal__slideshow:hover,
.mph-featured-gallery-modal__slideshow:focus-visible {
    border-color: rgba(201, 162, 78, 0.55);
    color: var(--mph-gold-soft);
    outline: none;
}

.mph-featured-gallery-modal__slideshow:disabled {
    opacity: 0.35;
    cursor: default;
}

.mph-featured-gallery-modal__slideshow-icon--pause {
    display: none;
    letter-spacing: -0.12em;
    font-size: 0.68rem;
}

.mph-featured-gallery-modal__slideshow.is-playing .mph-featured-gallery-modal__slideshow-icon--play {
    display: none;
}

.mph-featured-gallery-modal__slideshow.is-playing .mph-featured-gallery-modal__slideshow-icon--pause {
    display: block;
}

.mph-featured-gallery-modal__close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.mph-featured-gallery-modal__close:hover,
.mph-featured-gallery-modal__close:focus-visible {
    border-color: rgba(201, 162, 78, 0.55);
    color: var(--mph-gold-soft);
    outline: none;
}

.mph-featured-gallery-modal__stage {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 56px;
    background: radial-gradient(ellipse at center, rgba(201, 162, 78, 0.06) 0%, transparent 62%);
    overflow: hidden;
}

.mph-featured-gallery-modal__stage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 72px;
    border: 1px solid rgba(201, 162, 78, 0.32);
    border-radius: 10px;
    background: rgba(10, 22, 40, 0.72);
    color: var(--mph-gold-soft);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.mph-featured-gallery-modal__stage-nav--prev {
    left: 10px;
}

.mph-featured-gallery-modal__stage-nav--next {
    right: 10px;
}

.mph-featured-gallery-modal__stage-nav:hover,
.mph-featured-gallery-modal__stage-nav:focus-visible {
    background: rgba(201, 162, 78, 0.18);
    border-color: rgba(201, 162, 78, 0.62);
    color: #fff;
    outline: none;
}

.mph-featured-gallery-modal__stage-nav:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.mph-featured-gallery-modal__figure {
    margin: 0;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.mph-featured-gallery-modal__frame {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    pointer-events: auto;
}

.mph-featured-gallery-modal__img {
    display: block;
    max-width: 100%;
    max-height: calc(98vh - 132px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.mph-featured-gallery-modal__shield {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    pointer-events: auto;
    touch-action: none;
    cursor: pointer;
}

.mph-featured-gallery-modal__watermark {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.4rem, 12vw, 7rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    transform: rotate(-18deg);
}

.mph-featured-gallery-modal__count {
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 4;
    margin: 0;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 78, 0.28);
    background: rgba(0, 0, 0, 0.45);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

.mph-featured-gallery-modal__blocked {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.mph-featured-gallery-modal__blocked[hidden] {
    display: none;
}

.mph-featured-gallery-modal__blocked p {
    margin: 0;
    max-width: 28rem;
    line-height: 1.5;
}

.mph-featured-gallery-modal.is-blocked .mph-featured-gallery-modal__figure,
.mph-featured-gallery-modal.is-blocked .mph-featured-gallery-modal__count,
.mph-featured-gallery-modal.is-blocked .mph-featured-gallery-modal__foot,
.mph-featured-gallery-modal.is-blocked .mph-featured-gallery-modal__stage-nav {
    visibility: hidden;
}

.mph-featured-gallery-modal__foot {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
}

.mph-featured-gallery-modal__nav {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 78, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: var(--mph-gold-soft);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mph-featured-gallery-modal__nav:hover,
.mph-featured-gallery-modal__nav:focus-visible {
    background: rgba(201, 162, 78, 0.16);
    outline: none;
}

.mph-featured-gallery-modal__nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.mph-featured-gallery-modal__thumbs {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0;
    scroll-snap-type: x proximity;
}

.mph-featured-gallery-modal__thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    scroll-snap-align: start;
}

.mph-featured-gallery-modal__thumb.is-active {
    border-color: var(--mph-gold);
    box-shadow: 0 0 0 1px rgba(201, 162, 78, 0.35);
}

.mph-featured-gallery-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.mph-featured-gallery-modal__thumb:focus-visible {
    outline: 2px solid var(--mph-gold-soft);
    outline-offset: 2px;
}

/* ── Manufacturing process ── */
.mph-process {
    display: grid;
    gap: 24px;
}

.mph-process-step {
    display: grid;
    grid-template-columns: 48px 1fr minmax(160px, 280px);
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: var(--mph-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mph-process-step__num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--mph-gold);
    color: var(--mph-gold);
    font-weight: 800;
    font-size: 0.9rem;
}

.mph-process-step h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #fff;
}

.mph-process-step p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--mph-muted);
}

.mph-process-step__img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    display: block;
    width: 100%;
}

.mph-process-step__media {
    min-width: 0;
}

.mph-process-step__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mph-process-step__gallery-item {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
    cursor: zoom-in;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mph-process-step__gallery-item:hover,
.mph-process-step__img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.mph-process-step__gallery-item img,
.mph-process-step__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Gallery ── */
.mph-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.mph-gallery-filter {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--mph-muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.mph-gallery-filter.is-active,
.mph-gallery-filter:hover {
    background: var(--mph-gold);
    color: #0a1628;
    border-color: var(--mph-gold);
}

.mph-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.mph-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    background: var(--mph-navy-soft);
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    text-align: left;
}

.mph-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

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

.mph-gallery-item__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mph-gallery-item:hover .mph-gallery-item__cap { opacity: 1; }

.mph-gallery-item.is-hidden { display: none; }

/* ── Lightbox ── */
.mph-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
}

.mph-lightbox.is-open { display: flex; }

.mph-lightbox img {
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.mph-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

/* ── Partners & testimonials ── */
.mph-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.mph-partner-pill {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.mph-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.mph-quote {
    margin: 0;
    padding: 28px;
    border-radius: var(--mph-radius);
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--mph-gold);
}

.mph-quote p {
    margin: 0 0 16px;
    font-size: 1rem;
    font-style: italic;
    color: var(--mph-text);
    line-height: 1.65;
}

.mph-quote footer {
    font-size: 0.85rem;
    color: var(--mph-gold-soft);
}

.mph-quote footer strong {
    display: block;
    color: #fff;
    font-style: normal;
}

/* ── Stats ── */
.mph-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.mph-stat strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
}

.mph-stat span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mph-gold-soft);
}

/* ── Client logos (diamond grid) ── */
.mph-clients {
    overflow: visible;
}

.mph-clients__kicker {
    margin: 0 0 10px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #fff;
}

.mph-clients__brands {
    margin: 0 0 clamp(28px, 5vw, 44px);
    font-size: clamp(1.15rem, 3.2vw, 1.95rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--mph-gold);
}

.mph-clients__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.15fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.mph-clients__title {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.mph-clients__rule {
    display: block;
    width: 72px;
    height: 4px;
    margin: 14px 0 18px;
    background: var(--mph-gold);
}

.mph-clients__intro {
    margin: 0;
    max-width: 42ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--mph-muted);
}

.mph-clients__diamonds {
    --mph-d: 104px;
    --mph-g: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    width: calc(var(--mph-d) * 4 + var(--mph-g) * 3);
    max-width: 100%;
    margin: 4px auto 12px;
    gap: var(--mph-g);
    padding: 12px 8px 28px;
    overflow: visible;
}

.mph-clients__diamond {
    position: relative;
    width: var(--mph-d);
    height: var(--mph-d);
    flex: 0 0 var(--mph-d);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    filter:
        drop-shadow(0 14px 8px rgba(0, 0, 0, 0.42))
        drop-shadow(0 5px 2px rgba(0, 0, 0, 0.28));
}

.mph-clients__diamond-face {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mph-d-plate, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
    overflow: hidden;
}

.mph-clients__diamond-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76%;
    height: 76%;
    transform: rotate(-45deg);
}

.mph-clients__diamond img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.mph-clients__diamond--more {
    text-decoration: none;
}

.mph-clients__diamond--more .mph-clients__diamond-face {
    background: var(--mph-d-plate, #ffffff);
}

.mph-clients__more {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    padding: 8px;
    background: var(--mph-gold);
    color: #0a1628;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.2;
}

.mph-clients__diamond--more:hover .mph-clients__diamond-face {
    filter: brightness(1.06);
}

@media (max-width: 860px) {
    .mph-clients__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mph-clients__diamonds {
        --mph-d: 88px;
        --mph-g: 28px;
        width: calc(var(--mph-d) * 3 + var(--mph-g) * 2);
    }
}

@media (max-width: 560px) {
    .mph-clients__diamonds {
        --mph-d: 76px;
        --mph-g: 24px;
        width: calc(var(--mph-d) * 2 + var(--mph-g));
        padding: 8px 4px 24px;
    }
}

/* ── Contact & footer ── */
.mph-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.mph-contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--mph-muted);
    margin-bottom: 6px;
}

.mph-contact-form input,
.mph-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

.mph-contact-form input:focus,
.mph-contact-form textarea:focus {
    outline: none;
    border-color: var(--mph-gold);
}

.mph-contact-form textarea { min-height: 120px; resize: vertical; }

.mph-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mph-contact-hint {
    margin: -4px 0 12px;
    font-size: 0.78rem;
    color: var(--mph-muted);
    line-height: 1.45;
}

.mph-contact-info p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: var(--mph-muted);
}

.mph-contact-info strong { color: #fff; }

.mph-contact-map {
    margin-top: 20px;
}

.mph-contact-map__open {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.mph-contact-map__frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    background: #0a1628;
}

.mph-contact-map__thumb,
.mph-contact-map__mini {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    pointer-events: none;
}

.mph-contact-map__overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.mph-contact-map__pin { font-size: 16px; line-height: 1; }

.mph-contact-map__open:hover .mph-contact-map__frame,
.mph-contact-map__open:focus-visible .mph-contact-map__frame {
    border-color: var(--mph-gold);
    outline: none;
}

.mph-contact-map__external {
    margin: 8px 0 0;
    font-size: 13px;
}

.mph-contact-map__external a { color: var(--mph-gold-soft); }

.mph-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30000;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.mph-map-modal.is-open { display: flex; }

.mph-map-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.mph-map-modal__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 75vw;
    height: 75vh;
    max-width: 75vw;
    max-height: 75vh;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.mph-map-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #111827;
}

.mph-map-modal__head h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--mph-gold-soft);
}

.mph-map-modal__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: transparent;
    color: #e2e8f0;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.mph-map-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    background: #0a1628;
}

.mph-map-modal__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.mph-map-modal__foot {
    padding: 8px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.mph-map-modal__foot a { color: var(--mph-gold-soft); }

@media (max-width: 720px) {
    .mph-map-modal__box {
        width: 94vw;
        height: 72vh;
        max-width: 94vw;
        max-height: 72vh;
    }
    .mph-featured-gallery-modal {
        padding: 1vw;
    }
    .mph-featured-gallery-modal__box {
        width: 98vw;
        height: 98vh;
        border-radius: 10px;
    }
    .mph-featured-gallery-modal__head {
        padding: 7px 10px;
    }
    .mph-featured-gallery-modal__stage {
        padding: 4px 44px;
    }
    .mph-featured-gallery-modal__stage-nav {
        width: 40px;
        height: 60px;
        font-size: 2rem;
        border-radius: 8px;
    }
    .mph-featured-gallery-modal__stage-nav--prev {
        left: 6px;
    }
    .mph-featured-gallery-modal__stage-nav--next {
        right: 6px;
    }
    .mph-featured-gallery-modal__img {
        max-height: calc(98vh - 118px);
    }
    .mph-featured-gallery-modal__foot {
        padding: 5px 8px 7px;
        gap: 6px;
    }
    .mph-featured-gallery-modal__nav {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    .mph-featured-gallery-modal__thumb {
        width: 48px;
        height: 58px;
    }
}

.mph-foot {
    padding: 32px clamp(16px, 4vw, 32px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.mph-foot a { color: var(--mph-gold-soft); }

/* ── Feed placeholder ── */
.mph-feed-empty {
    padding: 32px;
    text-align: center;
    color: var(--mph-muted);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--mph-radius);
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .mph-process-step {
        grid-template-columns: 40px 1fr;
    }
    .mph-process-step__media {
        grid-column: 1 / -1;
    }
    .mph-process-step__img,
    .mph-process-step__gallery {
        max-width: 100%;
    }
    .mph-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .mph-topbar { flex-direction: column; align-items: stretch; }
    .mph-site-nav { justify-content: flex-start; gap: 10px; }
    .mph-nav-actions { justify-content: flex-end; }
    .mph-hero__ctas { flex-direction: column; }
    .mph-cta { width: 100%; }
    .mph-section__head {
        flex-direction: column;
        align-items: stretch;
    }
    .mph-section__head-cta .mph-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .mph-feature-card img,
    .mph-spotlight-card img,
    .mph-spotlight-card__media,
    .mph-gallery-item img { transition: none; }
}

/* ── Online quote ── */
.mph-cta--quote {
    border: 1px solid rgba(201, 162, 39, 0.85);
    background: rgba(201, 162, 39, 0.18);
    color: #fde68a;
    cursor: pointer;
    font: inherit;
}
.mph-cta--quote:hover { background: rgba(201, 162, 39, 0.32); }
.mph-cta--watch-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
}
.mph-cta--watch-source .mph-about-video__caption-source {
    letter-spacing: 0.06em;
}
.mph-cta--watch-source .mph-about-video__caption-action::after {
    content: none;
}
.mph-nav-quote { color: #fde68a !important; }

.mph-quote-modal[hidden] { display: none !important; }
.mph-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}
.mph-quote-modal.is-open { display: flex; }
.mph-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}
.mph-quote-modal__box {
    position: relative;
    width: 85vw;
    height: 85vh;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: #0c1220;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}
.mph-quote-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #121a2a 0%, #0c1220 100%);
}
.mph-quote-modal__head h2 {
    margin: 0;
    font-size: 1.15rem;
    color: #fde68a;
}
.mph-quote-modal__sub {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: var(--mph-muted);
    line-height: 1.45;
}
.mph-quote-modal__close {
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.mph-quote-modal__body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 16px 18px 20px;
}
.mph-quote-layout {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 20px;
    align-items: start;
}
@media (max-width: 760px) {
    .mph-quote-layout { grid-template-columns: 1fr; }
}
.mph-quote-preview {
    position: sticky;
    top: 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #080e18;
    text-align: center;
}
.mph-quote-stage {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px 8px 0;
}
.mph-quote-figurine {
    --mph-fig-scale: 0.55;
    --mph-fig-color: #c9a227;
    transform: scale(var(--mph-fig-scale));
    transform-origin: center bottom;
    transition: transform 0.35s ease;
}
.mph-quote-figurine__svg { width: 120px; height: 160px; display: block; }
.mph-quote-fig-body,
.mph-quote-fig-head { fill: var(--mph-fig-color); }
.mph-quote-fig-base { fill: #4b5563; }
.mph-quote-fig-shadow { fill: rgba(0, 0, 0, 0.35); }
.mph-quote-fig-eye { fill: #1e293b; }
.mph-quote-scale-label {
    margin: 8px 0 0;
    font-size: 0.78rem;
    color: #7dd3fc;
}
.mph-quote-fieldset {
    margin: 0 0 12px;
    padding: 10px 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.mph-quote-fieldset legend {
    padding: 0 6px;
    font-size: 0.82rem;
    color: #fde68a;
}
.mph-quote-dims {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mph-quote-dims label {
    font-size: 0.78rem;
    color: var(--mph-muted);
}
.mph-quote-dims input {
    width: 100%;
    margin-top: 4px;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111827;
    color: #e2e8f0;
}
.mph-quote-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.mph-quote-main-colors {
    display: block;
    font-size: 0.84rem;
    margin-bottom: 4px;
}
.mph-quote-main-colors select {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111827;
    color: #e2e8f0;
    font-size: 0.85rem;
}
.mph-quote-main-colors--custom input {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111827;
    color: #e2e8f0;
    font-size: 0.85rem;
    box-sizing: border-box;
}
.mph-quote-main-colors--custom {
    margin-top: 10px;
}
.mph-quote-color-count__more {
    font-size: 0.72rem;
    color: #fde68a;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.45);
}
.mph-quote-color-count-label {
    margin: 8px 0 4px;
    font-size: 0.8rem;
    color: #fde68a;
    font-weight: 600;
}
.mph-quote-color-count {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    min-height: 22px;
    margin-bottom: 4px;
}
.mph-quote-color-count__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.mph-quote-color {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    cursor: pointer;
}
.mph-quote-color__swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.mph-quote-radio,
.mph-quote-check {
    display: block;
    font-size: 0.84rem;
    margin: 6px 0;
    cursor: pointer;
}
.mph-quote-hint {
    margin: 8px 0 0;
    font-size: 0.76rem;
    color: var(--mph-muted);
}
.mph-quote-calc-btn { margin-top: 12px; width: 100%; }
.mph-quote-result {
    margin-top: 14px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(14, 116, 144, 0.12);
}
.mph-quote-result__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.mph-quote-result__qty {
    margin: 0 0 10px;
    font-size: 0.84rem;
    color: #cbd5e1;
}
.mph-quote-result__total strong {
    font-size: 1.35rem;
    color: #fde68a;
}
.mph-quote-result__lines {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mph-quote-result__lines li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
}
.mph-quote-result__note {
    margin: 10px 0 0;
    font-size: 0.74rem;
    color: var(--mph-muted);
}

.mph-quote-modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
@media (max-width: 560px) {
    .mph-quote-modes { grid-template-columns: 1fr; }
}
.mph-quote-mode {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    background: rgba(18, 26, 42, 0.85);
    color: #e2e8f0;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}
.mph-quote-mode strong {
    font-size: 0.95rem;
    color: #fde68a;
}
.mph-quote-mode span {
    font-size: 0.78rem;
    color: var(--mph-muted);
    line-height: 1.4;
}
.mph-quote-mode:hover,
.mph-quote-mode.is-active {
    border-color: rgba(201, 162, 39, 0.75);
    background: rgba(201, 162, 39, 0.12);
}
.mph-quote-request-modal { z-index: 10060; }
.mph-quote-request-form label {
    display: block;
    font-size: 0.82rem;
    margin: 10px 0 4px;
    color: #cbd5e1;
}
.mph-quote-request-form input[type="text"],
.mph-quote-request-form input[type="email"],
.mph-quote-request-form input[type="tel"],
.mph-quote-request-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.9);
    color: #f1f5f9;
    font: inherit;
}
.mph-quote-request-form textarea {
    min-height: 140px;
    resize: vertical;
}
.mph-quote-request-form .mph-quote-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 560px) {
    .mph-quote-request-form .mph-quote-row2 { grid-template-columns: 1fr; }
}
.mph-quote-request-images {
    margin-top: 8px;
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.5);
}
.mph-quote-request-images input[type="file"] {
    width: 100%;
    font-size: 0.8rem;
    color: #cbd5e1;
}
.mph-quote-request-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.mph-quote-request-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.mph-quote-request-msg {
    margin-top: 12px;
    font-size: 0.85rem;
}
.mph-quote-request-msg.is-ok { color: #6ee7b7; }
.mph-quote-request-msg.is-err { color: #fca5a5; }
.mph-quote-request-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.mph-quote-request-actions .mph-cta { flex: 1; min-width: 140px; }
.mph-quote-request-back {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: transparent;
    color: #cbd5e1;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font: inherit;
}
.mph-hp-quote {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mph-quote-status-modal { z-index: 10070; }
.mph-quote-status-modal__box {
    width: min(480px, 90vw);
    height: auto;
    max-height: 70vh;
}
.mph-quote-status {
    text-align: center;
    padding: 8px 4px 4px;
}
.mph-quote-status h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #fde68a;
}
.mph-quote-status__steps {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    text-align: left;
}
.mph-quote-status__steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: #94a3b8;
}
.mph-quote-status__steps li.is-active { color: #e2e8f0; }
.mph-quote-status__steps li.is-done { color: #6ee7b7; }
.mph-quote-status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid currentColor;
    flex-shrink: 0;
}
.mph-quote-status__steps li.is-active .mph-quote-status__dot {
    border-color: #fde68a;
    background: rgba(253, 230, 138, 0.35);
}
.mph-quote-status__steps li.is-done .mph-quote-status__dot {
    border-color: #6ee7b7;
    background: #6ee7b7;
}
.mph-quote-status__spinner {
    width: 36px;
    height: 36px;
    margin: 12px auto 0;
    border: 3px solid rgba(253, 230, 138, 0.25);
    border-top-color: #fde68a;
    border-radius: 50%;
    animation: mph-quote-spin 0.8s linear infinite;
}
@keyframes mph-quote-spin {
    to { transform: rotate(360deg); }
}
.mph-quote-status__msg {
    margin: 12px 0 0;
    font-size: 0.86rem;
    color: #cbd5e1;
    line-height: 1.5;
}
.mph-quote-status__msg.is-err { color: #fca5a5; }
.mph-quote-status__actions {
    margin-top: 18px;
}
.mph-quote-status__actions .mph-cta {
    width: 100%;
}

/* ── Hero promo marquee ── */
.mph-hero--has-promo {
    align-items: center;
    padding-bottom: 0;
}

.mph-hero--has-promo .mph-hero__content {
    padding-bottom: clamp(140px, 22vh, 200px);
}

.mph-promo-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 10px 0 8px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 14, 28, 0.55) 28%, rgba(8, 14, 28, 0.88) 100%);
    pointer-events: auto;
}

.mph-promo-marquee__viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.mph-promo-marquee__track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    will-change: transform;
    padding: 4px 16px 2px;
}

.mph-promo-marquee__item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: min(220px, 58vw);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(12, 18, 32, 0.72);
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mph-promo-marquee__item:hover,
.mph-promo-marquee__item:focus-visible {
    border-color: rgba(253, 230, 138, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    outline: none;
}

.mph-promo-marquee__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0b1220;
    overflow: hidden;
}

.mph-promo-marquee__media img,
.mph-promo-marquee__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.mph-promo-marquee__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    z-index: 1;
}

.mph-promo-marquee__embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    background: #0b1220;
    z-index: 2;
}

.mph-promo-marquee__media--embed.has-poster:not(.is-playing) .mph-promo-marquee__embed {
    opacity: 0;
}

.mph-promo-marquee__item--embed {
    font: inherit;
}

.mph-promo-marquee__item--portrait {
    width: min(168px, 44vw);
}

.mph-promo-marquee__item--portrait .mph-promo-marquee__media {
    aspect-ratio: 9 / 16;
}

.mph-promo-marquee__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    color: #fde68a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.mph-promo-marquee__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: #1f2937;
}

.mph-promo-marquee__placeholder--instagram {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 55%, #7c3aed 100%);
}

.mph-promo-marquee__placeholder--x {
    background: #111;
}

.mph-promo-marquee__badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fde68a;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 3;
}

.mph-promo-marquee__badge--platform {
    width: auto;
    min-width: 26px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mph-promo-marquee__caption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px 10px;
    min-height: 2.6em;
}

.mph-promo-marquee__title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mph-promo-marquee__summary {
    font-size: 0.72rem;
    color: rgba(226, 232, 240, 0.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mph-promo-marquee__hint {
    margin: 4px 0 0;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.55);
}

.mph-promo-marquee.is-slow .mph-promo-marquee__hint {
    color: rgba(253, 230, 138, 0.85);
}

.mph-promo-marquee.is-static .mph-promo-marquee__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
}

.mph-promo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 12000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.mph-promo-modal.is-open {
    display: flex;
}

.mph-promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 16, 0.78);
}

.mph-promo-modal__box {
    position: relative;
    z-index: 1;
    width: min(920px, 96vw);
    max-height: min(92vh, 900px);
    overflow: auto;
    border-radius: 14px;
    background: #101826;
    border: 1px solid rgba(253, 230, 138, 0.28);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
}

.mph-promo-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.mph-promo-modal__title {
    margin: 0;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    color: #f8fafc;
    line-height: 1.25;
}

.mph-promo-modal__close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.15);
    color: #f8fafc;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.mph-promo-modal__close:hover,
.mph-promo-modal__close:focus-visible {
    background: rgba(253, 230, 138, 0.2);
    color: #fde68a;
    outline: none;
}

.mph-promo-modal__body {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px 18px 20px;
}

.mph-promo-modal__media {
    border-radius: 10px;
    overflow: hidden;
    background: #0b1220;
    min-height: 180px;
}

.mph-promo-modal__media img,
.mph-promo-modal__media video {
    width: 100%;
    height: auto;
    max-height: min(52vh, 420px);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #000;
}

.mph-promo-modal__media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: min(56vh, 480px);
    border: 0;
    display: block;
    background: #000;
}

.mph-promo-modal__media.is-portrait iframe,
.mph-promo-modal__ig iframe {
    aspect-ratio: 9 / 16;
    width: min(100%, 380px);
    max-height: min(72vh, 720px);
    margin: 0 auto;
}

.mph-promo-modal__ig {
    min-height: 420px;
    display: flex;
    justify-content: center;
}

.mph-promo-modal__ig .instagram-media {
    margin: 0 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 380px !important;
    background: #000 !important;
}

.mph-promo-modal__summary {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: #fde68a;
    line-height: 1.45;
}

.mph-promo-modal__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.92);
    white-space: pre-wrap;
}

.mph-promo-modal__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

@media (max-width: 720px) {
    .mph-promo-modal__body {
        grid-template-columns: 1fr;
    }
    .mph-promo-marquee__item {
        width: min(180px, 70vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mph-promo-marquee__item {
        transition: none;
    }
}

/* ── Public landing pages (sitelinks) ── */
.mph-page-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
    background: linear-gradient(180deg, var(--mph-navy-mid) 0%, var(--mph-navy) 100%);
    border-bottom: 1px solid rgba(201, 162, 78, 0.22);
}

.mph-page-banner--photo {
    min-height: min(42vh, 380px);
    display: flex;
    align-items: flex-end;
    padding: clamp(52px, 9vw, 96px) 0 clamp(36px, 5vw, 56px);
    background: var(--mph-navy);
}

.mph-page-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mph-page-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.mph-page-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.28) 0%, rgba(10, 22, 40, 0.62) 48%, rgba(10, 22, 40, 0.88) 100%);
    pointer-events: none;
}

.mph-page-banner .mph-shell {
    position: relative;
    z-index: 2;
}

.mph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 14px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mph-muted);
}

.mph-breadcrumb a {
    color: var(--mph-gold-soft);
    text-decoration: none;
}

.mph-breadcrumb a:hover,
.mph-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.mph-page-banner__title {
    margin: 0 0 10px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.mph-page-banner__intro {
    margin: 0;
    max-width: 46rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--mph-muted);
}

.mph-site-nav a.is-current {
    color: var(--mph-gold-soft);
}

.mph-body--subpage .mph-hero {
    min-height: 0;
}

/* ── Ordering process (client journey) ── */
.mph-orderflow {
    position: relative;
    overflow: hidden;
}

.mph-orderflow::before {
    content: "";
    position: absolute;
    inset: auto -8% 8% auto;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 78, 0.14), transparent 68%);
    pointer-events: none;
}

.mph-orderflow__intro {
    max-width: 46rem;
}

.mph-orderflow__board {
    margin-top: 36px;
    display: grid;
    gap: 28px;
}

.mph-orderflow__rail {
    list-style: none;
    margin: 0;
    padding: 8px 0 4px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    position: relative;
}

.mph-orderflow__rail::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 78, 0.55), transparent);
    pointer-events: none;
}

.mph-orderflow__rail-item {
    margin: 0;
    min-width: 0;
}

.mph-orderflow__node {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 4px 8px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mph-orderflow__node:focus-visible {
    outline: 2px solid var(--mph-gold);
    outline-offset: 4px;
    border-radius: 12px;
}

.mph-orderflow__node-num {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 78, 0.45);
    background: var(--mph-navy-mid);
    color: var(--mph-gold);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 6px var(--mph-navy);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mph-orderflow__node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--mph-gold);
}

.mph-orderflow__node-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.mph-orderflow__node-title {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(232, 237, 244, 0.72);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mph-orderflow__chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 78, 0.45);
    background: rgba(201, 162, 78, 0.12);
    color: var(--mph-gold-soft);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.mph-orderflow__node.is-active .mph-orderflow__node-num,
.mph-orderflow__node:hover .mph-orderflow__node-num {
    background: var(--mph-gold);
    border-color: var(--mph-gold);
    color: #0a1628;
    transform: scale(1.08);
}

.mph-orderflow__node.is-active .mph-orderflow__node-title {
    color: #fff;
}

.mph-orderflow__story {
    position: relative;
    min-height: 280px;
    padding: 32px 36px 28px;
    border-radius: 18px;
    border: 1px solid rgba(201, 162, 78, 0.28);
    background:
        linear-gradient(180deg, rgba(19, 42, 69, 0.92), rgba(10, 22, 40, 0.92)),
        rgba(13, 33, 55, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.mph-orderflow__panel {
    position: relative;
    z-index: 1;
}

.mph-orderflow__panel[hidden] {
    display: none !important;
}

.mph-orderflow__panel-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    position: relative;
}

.mph-orderflow__panel--media .mph-orderflow__panel-main {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
    align-items: stretch;
}

.mph-orderflow__copy {
    position: relative;
    min-width: 0;
    z-index: 1;
}

.mph-orderflow__media {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.mph-orderflow__hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    margin: 0;
    padding: 10px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 78, 0.28);
    background: rgba(8, 16, 24, 0.65);
}

.mph-orderflow__hero img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(52vh, 420px);
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mph-orderflow__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mph-orderflow__thumb {
    width: 64px;
    height: 64px;
    padding: 4px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 78, 0.28);
    background: rgba(8, 16, 24, 0.65);
    cursor: pointer;
    flex-shrink: 0;
}

.mph-orderflow__thumb.is-active {
    border-color: var(--mph-gold);
    box-shadow: 0 0 0 1px var(--mph-gold);
}

.mph-orderflow__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mph-orderflow__watermark {
    position: absolute;
    right: 12px;
    top: -18px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(5.5rem, 12vw, 8.5rem);
    font-weight: 600;
    line-height: 1;
    color: rgba(201, 162, 78, 0.1);
    pointer-events: none;
    user-select: none;
}

.mph-orderflow__panel-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.mph-orderflow__panel-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(201, 162, 78, 0.4);
    background: rgba(201, 162, 78, 0.1);
    color: var(--mph-gold);
}

.mph-orderflow__panel-icon svg {
    width: 26px;
    height: 26px;
}

.mph-orderflow__panel-kicker {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mph-gold);
}

.mph-orderflow__panel-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}

.mph-orderflow__chip--lg {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 6px 12px;
}

.mph-orderflow__panel-text {
    margin: 0 0 16px;
    max-width: 46rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--mph-muted);
}

.mph-orderflow__note {
    max-width: 46rem;
    padding: 14px 16px 14px 18px;
    border-radius: 12px;
    border-left: 3px solid var(--mph-gold);
    background: rgba(201, 162, 78, 0.1);
}

.mph-orderflow__note strong {
    display: block;
    margin: 0 0 4px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mph-gold-soft);
}

.mph-orderflow__note p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--mph-text);
}

.mph-orderflow__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mph-orderflow__ctrl {
    min-width: 108px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 78, 0.45);
    background: transparent;
    color: var(--mph-gold-soft);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.mph-orderflow__ctrl:hover,
.mph-orderflow__ctrl:focus-visible {
    background: rgba(201, 162, 78, 0.14);
    color: #fff;
}

.mph-orderflow__ctrl:disabled {
    opacity: 0.35;
    cursor: default;
}

.mph-orderflow__progress {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 237, 244, 0.55);
}

.mph-orderflow__cta {
    display: inline-flex;
    margin-top: 18px;
}

@media (max-width: 980px) {
    .mph-orderflow__rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        gap: 4px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .mph-orderflow__rail::before {
        display: none;
    }

    .mph-orderflow__rail-item {
        flex: 0 0 108px;
        scroll-snap-align: center;
    }

    .mph-orderflow__story {
        padding: 24px 20px 20px;
    }

    .mph-orderflow__chip--lg {
        margin-left: 0;
    }

    .mph-orderflow__panel-head {
        flex-wrap: wrap;
    }

    .mph-orderflow__panel--media .mph-orderflow__panel-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .mph-orderflow__hero {
        min-height: 200px;
    }

    .mph-orderflow__hero img {
        max-height: min(48vh, 360px);
    }
}

@media (max-width: 640px) {
    .mph-orderflow__controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mph-orderflow__progress {
        order: -1;
        width: 100%;
        text-align: center;
    }
}
