/* MASTER-PACK prototype 0.7.0 visual layer.
 * Variant 1 is intentionally rebuilt as a separate visual concept based on
 * the approved project reference: white editorial header, photographic hero,
 * full-width product bands, restrained typography, visible horizontal controls.
 */

/* --------------------------------------------------------------------------
   VARIANT 1 — PHOTOGRAPHIC INDUSTRIAL EDITORIAL
   -------------------------------------------------------------------------- */

.mp-prototype-1 {
    --mp-header-height: 76px;
    --mp-bg: #f5f5f3;
    --mp-surface: #ffffff;
    --mp-surface-2: #efefed;
    --mp-text: #151719;
    --mp-muted: #5d6267;
    --mp-line: rgba(21, 23, 25, .14);
    --mp-accent: #d85a34;
    --mp-accent-2: #d85a34;
    --mp-radius: 0px;
    --mp-shadow: none;
    --mp-pad: clamp(22px, 4.2vw, 72px);
    --mp-container: 1660px;
    background: var(--mp-bg);
    color: var(--mp-text);
}

.mp-prototype-1 .mp-header {
    min-height: var(--mp-header-height);
    gap: clamp(20px, 3vw, 46px);
    padding: 12px var(--mp-pad);
    color: #151719;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(21, 23, 25, .09);
    box-shadow: none;
    backdrop-filter: none;
}

.mp-prototype-1 .mp-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
}

.mp-prototype-1 .mp-logo {
    gap: 14px;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: .01em;
}

.mp-prototype-1 .mp-logo-mark {
    width: 38px;
    height: 38px;
    color: #18222a;
    background: #fff;
    border: 2px solid #273745;
    border-radius: 2px;
    box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 6px #d85a34;
    font-size: 9px;
    transform: rotate(45deg);
}

.mp-prototype-1 .mp-logo-mark::first-line {
    transform: rotate(-45deg);
}

.mp-prototype-1 .mp-logo-text {
    font-size: clamp(14px, 1.15vw, 18px);
}

.mp-prototype-1 .mp-main-nav {
    gap: clamp(18px, 2.6vw, 38px);
}

.mp-prototype-1 .mp-main-nav a {
    color: #24272a;
    font-size: 14px;
    font-weight: 650;
}

.mp-prototype-1 .mp-main-nav a::after {
    height: 1px;
    background: #151719;
}

.mp-prototype-1 .mp-variant-switch {
    border-color: rgba(21, 23, 25, .16);
    background: #f7f7f5;
}

.mp-prototype-1 .mp-variant-switch a[aria-current="page"] {
    color: #fff;
    background: #1c242b;
}

/* Hero: photographic full-width production scene with left text field. */
.mp-prototype-1 .mp-company {
    min-height: 100svh;
    padding: var(--mp-header-height) 0 0;
    color: #fff;
    background: #1d252b;
}

.mp-prototype-1 .mp-company::before {
    display: none;
}

.mp-prototype-1 .mp-company > * {
    width: 100%;
    max-width: none;
}

.mp-prototype-1 .mp-hero-visuals {
    position: absolute;
    inset: var(--mp-header-height) 0 0;
}

.mp-prototype-1 .mp-hero-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: scale(1.045);
    transition: opacity .7s ease, transform 7.4s cubic-bezier(.18,.7,.24,1);
}

.mp-prototype-1 .mp-hero-visual.is-active {
    opacity: 1;
    transform: scale(1);
}

.mp-prototype-1 .mp-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.82) contrast(1.03);
}

.mp-prototype-1 .mp-hero-overlay {
    display: block;
    position: absolute;
    inset: var(--mp-header-height) 0 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 16, .88) 0%, rgba(7, 12, 16, .78) 28%, rgba(7, 12, 16, .34) 55%, rgba(7, 12, 16, .10) 78%, rgba(7, 12, 16, .16) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .36) 0%, transparent 36%);
}

.mp-prototype-1 .mp-hero-layout {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - var(--mp-header-height));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: clamp(62px, 8vw, 116px) var(--mp-pad) clamp(112px, 12vh, 150px);
}

.mp-prototype-1 .mp-hero-copy {
    width: min(780px, 62vw);
    max-width: none;
    margin: 0;
}

.mp-prototype-1 .mp-hero-slides {
    position: relative;
    min-height: clamp(360px, 42vh, 510px);
}

.mp-prototype-1 .mp-hero-slide {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .45s ease, transform .45s ease, visibility 0s linear .45s;
}

.mp-prototype-1 .mp-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
}

.mp-prototype-1 .mp-company .mp-eyebrow {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    letter-spacing: .2em;
}

.mp-prototype-1 .mp-company .mp-hero-title {
    max-width: 760px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 520;
    line-height: .98;
    letter-spacing: -.045em;
}

.mp-prototype-1 .mp-company .mp-lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
}

.mp-prototype-1 .mp-company .mp-button {
    min-height: 50px;
    color: #151719;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    font-weight: 750;
}

.mp-prototype-1 .mp-company .mp-button:hover,
.mp-prototype-1 .mp-company .mp-button:focus-visible {
    color: #fff;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.mp-prototype-1 .mp-company .mp-text-link {
    color: #fff;
    font-weight: 650;
}

.mp-prototype-1 .mp-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    max-width: 760px;
    margin: 26px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
}

.mp-prototype-1 .mp-hero-proof li {
    min-height: 0;
    padding: 0;
    color: rgba(255, 255, 255, .76);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 12px;
    line-height: 1.45;
}

.mp-prototype-1 .mp-hero-meta {
    align-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 0 8px;
    color: #fff;
}

.mp-prototype-1 .mp-hero-location {
    color: rgba(255,255,255,.82);
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.mp-prototype-1 .mp-hero-count {
    color: rgba(255,255,255,.62);
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.mp-prototype-1 .mp-hero-count strong {
    color: #fff;
}

.mp-prototype-1 .mp-hero-navigation {
    position: absolute;
    z-index: 3;
    right: var(--mp-pad);
    bottom: 36px;
    left: var(--mp-pad);
    width: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.mp-prototype-1 .mp-hero-arrow {
    width: 48px;
    height: 48px;
    color: #fff;
    background: rgba(10, 14, 17, .28);
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.mp-prototype-1 .mp-hero-arrow:hover,
.mp-prototype-1 .mp-hero-arrow:focus-visible {
    color: #17191b;
    background: #fff;
}

.mp-prototype-1 .mp-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-prototype-1 .mp-hero-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: rgba(255,255,255,.42);
    border: 0;
    border-radius: 50%;
}

.mp-prototype-1 .mp-hero-dot span {
    display: none;
}

.mp-prototype-1 .mp-hero-dot.is-active {
    width: 26px;
    min-width: 26px;
    background: #fff;
    border-radius: 999px;
}

.mp-prototype-1 .mp-hero-timer {
    flex: 1;
    height: 1px;
    margin-left: 8px;
    background: rgba(255,255,255,.28);
}

.mp-prototype-1 .mp-hero-timer span {
    background: #fff;
}

/* Product sections: each product is a wide, clean horizontal band. */
.mp-prototype-1 .mp-product-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--mp-header-height) + clamp(32px, 5vw, 68px)) 0 clamp(48px, 6vw, 80px);
    background: #f3f3f1;
}

.mp-prototype-1 .mp-section-films,
.mp-prototype-1 .mp-section-sealers {
    background: #fff;
}

.mp-prototype-1 .mp-section-heading {
    position: relative;
    z-index: 4;
    width: min(calc(100% - (2 * var(--mp-pad))), var(--mp-container));
    margin: 0 auto clamp(22px, 3vw, 38px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.mp-prototype-1 .mp-section-copy {
    max-width: 820px;
}

.mp-prototype-1 .mp-section-copy .mp-eyebrow {
    margin-bottom: 10px;
    color: #767b80;
    font-size: 10px;
    letter-spacing: .18em;
}

.mp-prototype-1 .mp-section-copy h2 {
    margin: 0;
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 520;
    line-height: 1;
    letter-spacing: -.04em;
}

.mp-prototype-1 .mp-section-copy > p:last-child {
    max-width: 680px;
    margin: 12px 0 0;
    color: #666b70;
    font-size: 14px;
    line-height: 1.55;
}

.mp-prototype-1 .mp-slider-tools {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
}

.mp-prototype-1 .mp-slider-counter {
    display: none;
}

.mp-prototype-1 .mp-slider-pagination {
    position: absolute;
    z-index: 6;
    left: 25%;
    bottom: clamp(-56px, -3.8vw, -42px);
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.mp-prototype-1 .mp-slider-pagination button {
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: #c1c3c3;
    border: 0;
    border-radius: 50%;
    font-size: 0;
}

.mp-prototype-1 .mp-slider-pagination button.is-active,
.mp-prototype-1 .mp-slider-pagination button[aria-current="true"] {
    width: 26px;
    min-width: 26px;
    background: #1c1f21;
    border-radius: 999px;
}

.mp-prototype-1 .mp-slider-controls {
    position: absolute;
    z-index: 8;
    top: calc(50% + 28px);
    right: var(--mp-pad);
    left: var(--mp-pad);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.mp-prototype-1 .mp-slider-controls button {
    width: 52px;
    height: 52px;
    color: #17191b;
    background: rgba(255,255,255,.93);
    border: 1px solid rgba(21,23,25,.10);
    border-radius: 50%;
    box-shadow: 0 6px 22px rgba(0,0,0,.09);
    pointer-events: auto;
}

.mp-prototype-1 .mp-slider-controls button:hover:not(:disabled),
.mp-prototype-1 .mp-slider-controls button:focus-visible:not(:disabled) {
    color: #fff;
    background: #1d2226;
}

.mp-prototype-1 .mp-slider-controls button:disabled {
    opacity: .28;
}

.mp-prototype-1 .mp-slider-shell {
    width: 100%;
    margin: 0;
}

.mp-prototype-1 .mp-slider {
    gap: 0;
    width: 100%;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.mp-prototype-1 .mp-slide {
    flex: 0 0 100vw;
    width: 100vw;
    min-height: clamp(520px, 66vh, 720px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: center;
}

.mp-prototype-1 .mp-slide-media {
    position: relative;
    min-height: clamp(520px, 66vh, 720px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(38px, 5vw, 76px);
    background: #ececea;
}

.mp-prototype-1 .mp-section-films .mp-slide-media,
.mp-prototype-1 .mp-section-sealers .mp-slide-media {
    background: #f3f3f1;
}

.mp-prototype-1 .mp-slide-media > img:first-child {
    width: min(88%, 760px);
    height: min(88%, 590px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.10));
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.mp-prototype-1 .mp-slide.is-revealed .mp-slide-media > img:first-child {
    transform: translateY(-2px) scale(1.01);
}

.mp-prototype-1 .mp-slide-detail-image {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(24px, 4vw, 54px);
    width: clamp(110px, 15vw, 230px);
    height: clamp(90px, 12vw, 180px);
    object-fit: cover;
    background: #fff;
    border: 8px solid rgba(255,255,255,.94);
    box-shadow: 0 12px 34px rgba(0,0,0,.14);
}

.mp-prototype-1 .mp-slide-index {
    position: absolute;
    top: 24px;
    left: 28px;
    color: #686d70;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.mp-prototype-1 .mp-slide-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(52px, 6.5vw, 108px) clamp(52px, 7vw, 126px);
    background: #f8f8f6;
}

.mp-prototype-1 .mp-section-films .mp-slide-content,
.mp-prototype-1 .mp-section-sealers .mp-slide-content {
    background: #fff;
}

.mp-prototype-1 .mp-slide-subtitle {
    margin-bottom: 16px;
    color: #797e82;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mp-prototype-1 .mp-slide-content h3 {
    max-width: 650px;
    margin-bottom: 22px;
    color: #141719;
    font-size: clamp(34px, 3.5vw, 58px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.mp-prototype-1 .mp-slide-description {
    max-width: 620px;
    margin-bottom: 24px;
    color: #4d5256;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.58;
}

.mp-prototype-1 .mp-slide-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 620px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.mp-prototype-1 .mp-slide-facts li {
    padding: 8px 11px;
    color: #555b5f;
    background: transparent;
    border: 1px solid rgba(21,23,25,.15);
    border-radius: 999px;
    font-size: 11px;
    line-height: 1.2;
}

.mp-prototype-1 .mp-slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.mp-prototype-1 .mp-slide-actions .mp-button {
    min-height: 48px;
    padding-inline: 22px;
    color: #fff;
    background: #1c2226;
    border-radius: 0;
    box-shadow: none;
    font-weight: 720;
}

.mp-prototype-1 .mp-slide-actions .mp-button:hover,
.mp-prototype-1 .mp-slide-actions .mp-button:focus-visible {
    background: #d85a34;
    box-shadow: none;
    transform: none;
}

.mp-prototype-1 .mp-price-note {
    color: #6e7377;
    font-size: 13px;
}

.mp-prototype-1 .mp-slider-progress,
.mp-prototype-1 .mp-slider-hint {
    display: none;
}

/* Trust/history section — magazine-like white field rather than cards. */
.mp-prototype-1 .mp-quality {
    min-height: auto;
    padding-top: calc(var(--mp-header-height) + clamp(54px, 6vw, 96px));
    color: #17191b;
    background: #ececea;
}

.mp-prototype-1 .mp-quality-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
    gap: clamp(44px, 8vw, 130px);
    align-items: end;
    margin-bottom: clamp(48px, 7vw, 100px);
}

.mp-prototype-1 .mp-quality-heading h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: -.05em;
}

.mp-prototype-1 .mp-quality-heading > p {
    margin-bottom: 0;
    color: #5b6064;
    font-size: 15px;
    line-height: 1.65;
}

.mp-prototype-1 .mp-partners {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: clamp(54px, 7vw, 94px);
    background: rgba(21,23,25,.10);
    border: 1px solid rgba(21,23,25,.10);
}

.mp-prototype-1 .mp-partner {
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 8px;
    margin: 0;
    padding: 22px;
    background: #f7f7f5;
    border: 0;
    border-radius: 0;
}

.mp-prototype-1 .mp-partner img {
    max-width: 150px;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .78;
}

.mp-prototype-1 .mp-partner figcaption {
    color: #777c80;
    font-size: 10px;
}

.mp-prototype-1 .mp-achievements {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 32px);
}

.mp-prototype-1 .mp-achievement {
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.mp-prototype-1 .mp-achievement-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border: 0;
    cursor: zoom-in;
}

.mp-prototype-1 .mp-achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.mp-prototype-1 .mp-achievement > div {
    padding: 15px 0 0;
}

.mp-prototype-1 .mp-achievement span {
    color: #84898c;
    font-size: 11px;
}

.mp-prototype-1 .mp-achievement h3 {
    margin-top: 5px;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.mp-prototype-1 .mp-quality-note {
    margin-top: 44px;
    padding: 18px 0;
    color: #555b5f;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(21,23,25,.14);
    border-bottom: 1px solid rgba(21,23,25,.14);
    border-radius: 0;
    font-size: 13px;
}

/* Contacts — strong dark closing section. */
.mp-prototype-1 .mp-contacts {
    min-height: 86svh;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, .7fr);
    align-items: center;
    gap: clamp(56px, 8vw, 130px);
    color: #fff;
    background: #1a2024;
}

.mp-prototype-1 .mp-contact-copy,
.mp-prototype-1 .mp-inquiry-form {
    width: 100%;
    margin: 0;
}

.mp-prototype-1 .mp-contact-copy .mp-eyebrow {
    color: #c3c7ca;
}

.mp-prototype-1 .mp-contact-copy h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 500;
    letter-spacing: -.05em;
}

.mp-prototype-1 .mp-contact-copy > p {
    max-width: 650px;
    color: rgba(255,255,255,.68);
    font-size: 16px;
}

.mp-prototype-1 .mp-contact-links a {
    color: #fff;
}

.mp-prototype-1 .mp-inquiry-form {
    padding: clamp(28px, 3.4vw, 48px);
    color: #17191b;
    background: #f5f5f2;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.mp-prototype-1 .mp-inquiry-form input,
.mp-prototype-1 .mp-inquiry-form textarea {
    background: #fff;
    border-color: rgba(21,23,25,.17);
    border-radius: 0;
}

.mp-prototype-1 .mp-inquiry-form .mp-button {
    border-radius: 0;
    box-shadow: none;
    background: #d85a34;
}

.mp-prototype-1 .mp-footer {
    color: #d7d9da;
    background: #111518;
    border-top-color: rgba(255,255,255,.08);
}

/* Variant 2: small refinement only; preserve its industrial identity for comparison. */
.mp-prototype-2 .mp-slide {
    box-shadow: 0 18px 48px rgba(15, 34, 44, .10);
}

.mp-prototype-2 .mp-section-heading h2 {
    letter-spacing: -.045em;
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Variant 1
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .mp-prototype-1 .mp-main-nav {
        gap: 17px;
    }

    .mp-prototype-1 .mp-main-nav a {
        font-size: 12px;
    }

    .mp-prototype-1 .mp-hero-copy {
        width: min(760px, 74vw);
    }

    .mp-prototype-1 .mp-slide-content {
        padding: 54px 58px;
    }

    .mp-prototype-1 .mp-quality-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mp-prototype-1 .mp-partners,
    .mp-prototype-1 .mp-achievements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-prototype-1 .mp-contacts {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }
}

@media (max-width: 900px) {
    .mp-prototype-1 .mp-header {
        min-height: 68px;
    }

    .mp-prototype-1 {
        --mp-header-height: 68px;
    }

    .mp-prototype-1 .mp-company {
        min-height: 100svh;
    }

    .mp-prototype-1 .mp-hero-visuals,
    .mp-prototype-1 .mp-hero-overlay {
        inset: var(--mp-header-height) 0 0;
    }

    .mp-prototype-1 .mp-hero-overlay {
        background:
            linear-gradient(180deg, rgba(8,12,15,.48) 0%, rgba(8,12,15,.58) 30%, rgba(8,12,15,.86) 78%, rgba(8,12,15,.94) 100%);
    }

    .mp-prototype-1 .mp-hero-layout {
        min-height: calc(100svh - var(--mp-header-height));
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: clamp(150px, 28vh, 270px);
        padding-bottom: 112px;
    }

    .mp-prototype-1 .mp-hero-copy {
        width: 100%;
        max-width: 720px;
    }

    .mp-prototype-1 .mp-hero-slides {
        min-height: clamp(350px, 43vh, 430px);
    }

    .mp-prototype-1 .mp-hero-meta {
        display: none;
    }

    .mp-prototype-1 .mp-section-heading {
        align-items: start;
        padding-right: 0;
    }

    .mp-prototype-1 .mp-slider-tools {
        min-width: 86px;
    }

    .mp-prototype-1 .mp-slider-controls {
        top: calc(50% + 44px);
    }

    .mp-prototype-1 .mp-slide {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .mp-prototype-1 .mp-slide-media {
        min-height: 46svh;
    }

    .mp-prototype-1 .mp-slide-content {
        min-height: 42svh;
        padding: clamp(34px, 6vw, 56px) var(--mp-pad) clamp(48px, 7vw, 66px);
    }

    .mp-prototype-1 .mp-slider-pagination {
        left: 50%;
        bottom: -38px;
    }

    .mp-prototype-1 .mp-contacts {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .mp-prototype-1 {
        --mp-header-height: 64px;
        --mp-pad: 20px;
    }

    .mp-prototype-1 .mp-logo {
        gap: 10px;
    }

    .mp-prototype-1 .mp-logo-mark {
        width: 32px;
        height: 32px;
    }

    .mp-prototype-1 .mp-logo-text {
        font-size: 13px;
    }

    .mp-prototype-1 .mp-menu-toggle {
        color: #17191b;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .mp-prototype-1 .mp-hero-layout {
        padding-top: 150px;
        padding-bottom: 106px;
    }

    .mp-prototype-1 .mp-company .mp-hero-title {
        font-size: clamp(36px, 11.5vw, 50px);
        line-height: .99;
    }

    .mp-prototype-1 .mp-company .mp-lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .mp-prototype-1 .mp-hero-slides {
        min-height: 390px;
    }

    .mp-prototype-1 .mp-hero-proof {
        display: none;
    }

    .mp-prototype-1 .mp-hero-navigation {
        right: 20px;
        bottom: 24px;
        left: 20px;
    }

    .mp-prototype-1 .mp-hero-arrow {
        width: 44px;
        height: 44px;
    }

    .mp-prototype-1 .mp-product-section {
        padding-top: calc(var(--mp-header-height) + 32px);
        padding-bottom: 42px;
    }

    .mp-prototype-1 .mp-section-heading {
        width: calc(100% - 40px);
        margin-bottom: 20px;
    }

    .mp-prototype-1 .mp-section-copy h2 {
        font-size: 32px;
    }

    .mp-prototype-1 .mp-section-copy > p:last-child {
        display: none;
    }

    .mp-prototype-1 .mp-slider-tools {
        position: absolute;
        right: 0;
        bottom: -54px;
    }

    .mp-prototype-1 .mp-slider-controls {
        top: calc(var(--mp-header-height) + 50px);
        right: 20px;
        left: auto;
        gap: 8px;
        justify-content: flex-end;
        transform: none;
    }

    .mp-prototype-1 .mp-slider-controls button {
        width: 42px;
        height: 42px;
        box-shadow: 0 4px 16px rgba(0,0,0,.08);
    }

    .mp-prototype-1 .mp-slide-media {
        min-height: 42svh;
        padding: 44px 28px 34px;
    }

    .mp-prototype-1 .mp-slide-media > img:first-child {
        width: 92%;
        height: 88%;
    }

    .mp-prototype-1 .mp-slide-detail-image {
        right: 18px;
        bottom: 18px;
        width: 118px;
        height: 90px;
        border-width: 5px;
    }

    .mp-prototype-1 .mp-slide-content {
        min-height: 0;
        padding: 34px 20px 58px;
    }

    .mp-prototype-1 .mp-slide-content h3 {
        margin-bottom: 16px;
        font-size: clamp(31px, 9vw, 40px);
    }

    .mp-prototype-1 .mp-slide-description {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .mp-prototype-1 .mp-slide-facts {
        margin-bottom: 22px;
    }

    .mp-prototype-1 .mp-slider-pagination {
        bottom: -31px;
    }

    .mp-prototype-1 .mp-quality {
        padding-top: calc(var(--mp-header-height) + 48px);
    }

    .mp-prototype-1 .mp-quality-heading h2,
    .mp-prototype-1 .mp-contact-copy h2 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .mp-prototype-1 .mp-partners,
    .mp-prototype-1 .mp-achievements {
        grid-template-columns: 1fr 1fr;
    }

    .mp-prototype-1 .mp-partner {
        min-height: 115px;
        padding: 16px;
    }

    .mp-prototype-1 .mp-achievement h3 {
        font-size: 14px;
    }

    .mp-prototype-1 .mp-contacts {
        min-height: auto;
        padding-top: calc(var(--mp-header-height) + 48px);
    }

    .mp-prototype-1 .mp-inquiry-form {
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mp-prototype-1 .mp-hero-visual,
    .mp-prototype-1 .mp-slide-media > img:first-child {
        transition: none !important;
        transform: none !important;
    }
}
