:root {
    --bg: #020406;
    --white: #ffffff;
    --accent: #0033A0;
    --muted: rgba(255, 255, 255, 0.72);
    --stage-width: min(100vw, calc(100svh * 1.7228));
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html,
body {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img,
svg,
video,
canvas {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

a,
button {
    -webkit-user-drag: none;
    user-drag: none;
}

html.fonts-loading body {
    opacity: 0;
    visibility: hidden;
}

html.fonts-loaded body {
    opacity: 1;
    visibility: visible;
}


html {
    scroll-behavior: smooth;
    background: var(--scroll-bg, var(--bg));
}

body {
    margin: 0;
    min-width: 320px;
    cursor: default;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    background: var(--scroll-bg, var(--bg));
    overflow-x: hidden;
    transition: background-color 0.08s linear;
}

main {
    background: var(--scroll-bg, var(--bg));
    transition: background-color 0.08s linear;
}

.page-section {
    min-height: 100svh;
    display: grid;
    place-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.28);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    position: fixed;
    top: clamp(24px, 3vw, 48px);
    right: clamp(10px, 4vw, 40px);
    padding: 30px 10px 30px 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    background: rgba(2, 4, 6, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.site-nav a {
    color: var(--muted);
    font-size: clamp(10px, 1.8vw, 22px);
    font-weight: 300;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    background: var(--bg);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
    z-index: 4;
}

.panel {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.panel.left {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.steel-logo {
    position: absolute;
    left: clamp(10px, 4vw, 40px);
    top: 50%;
    bottom: auto;
    width: 27vw;
    max-width: none;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.96;
}

.hero-image {
    position: absolute;
    top: 50%;
    height: min(100svh, 1375px);
    width: auto;
    max-width: none;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.hero-image.left-image {
    right: 2px;
}

.hero-image.right-image {
    left: 2px;
}

.copy {
    position: absolute;
    right: clamp(10px, 4vw, 40px);
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 5;
}

.headline {
    margin: 0;
    font-size: 5vw;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
}

.headline .accent {
    color: var(--accent);
}

.subcopy {
    margin-top: 1vw;
    font-size: clamp(10px, 1.8vw, 22px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--muted);
    font-weight: 300;
}

.scroll-track {
    position: absolute;
    left: clamp(10px, 4vw, 40px);
    right: auto;
    bottom: clamp(30px, 4.8vw, 78px);
    width: 1px;
    height: clamp(40px, 6.5vh, 100px);
    z-index: 5;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.scroll-track::after {
    content: "";
    position: absolute;
    left: 0;
    top: -45%;
    width: 100%;
    height: 45%;
    background: var(--bg);
    animation: scrollPulse 5s ease-in-out infinite;
}

.scroll-label {
    position: absolute;
    left: calc(clamp(10px, 4vw, 40px) + 14px);
    right: auto;
    bottom: calc(clamp(30px, 4.8vw, 78px) + 4px);
    z-index: 5;
    writing-mode: vertical-rl;
    transform: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.52);
}

@keyframes scrollPulse {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    78% {
        opacity: 1;
    }

    100% {
        transform: translateY(320%);
        opacity: 0;
    }
}

.who-section {
    display: grid;
    grid-template-columns: minmax(360px, 40vw) 1fr;
    gap: clamp(48px, 6vw, 120px);
    align-items: center;
    min-height: 100svh;
    padding: clamp(32px, 4vw, 64px);
    background: transparent;
    color: var(--white);
}

.who-visual {
    position: relative;
    width: 100%;
    max-width: 760px;
    overflow: hidden;
}

.who-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.who-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.who-symbol {
    width: clamp(150px, 14vw, 260px);
    margin-bottom: clamp(28px, 3.5vw, 56px);
}

.who-title {
    margin: 0 0 clamp(36px, 4vw, 72px);
    font-size: clamp(64px, 7vw, 136px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.who-text {
    width: min(578px, 100%);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.9;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
}

.who-text p {
    margin: 0 0 18px;
}

.p2-gallery-section {
    position: relative;
    min-height: 100svh;
    background: transparent;
    color: var(--white);
    overflow: hidden;
}

.p2-gallery-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100vw, calc(100svh * 1.7228));
    aspect-ratio: 1709 / 992;
    transform: translate(-50%, -50%);
}

.p2-gallery-item {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.p2-gallery-belief {
    position: absolute;
    left: 32px;
    top: 0;
    z-index: 6;
    margin: 0;
    font-size: clamp(15px, 2.5vw, 40px);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.p2-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1);
}

.p2-gallery-01 {
    left: 6.8%;
    top: 6.8%;
    width: 25.7%;
    height: 30.0%;
}

.p2-gallery-05 {
    left: 37.3%;
    top: 8.9%;
    width: 29.0%;
    height: 22.0%;
}

.p2-gallery-04 {
    left: 73.1%;
    top: 3.4%;
    width: 20.3%;
    height: 40.2%;
}

.p2-gallery-02 {
    left: 2.0%;
    top: 39.8%;
    width: 17.8%;
    height: 47.3%;
}

.p2-gallery-03 {
    left: 26.9%;
    top: 44.3%;
    width: 30.4%;
    height: 31.4%;
}

.p2-gallery-06 {
    left: 69.0%;
    top: 50.5%;
    width: 19.8%;
    height: 44.0%;
}

.p2-gallery-title {
    position: absolute;
    left: 50%;
    top: 48.5%;
    z-index: 4;
    margin: 0;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 86%;
    font-size: 8.1vw;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.055em;
    color: var(--white);
    text-align: center;
    pointer-events: none;
    white-space: nowrap;
}

.p2-mobile-word {
    display: none;
}

.section-spacer {
    min-height: 15svh;
    background: transparent;
}

.p3-section {
    position: relative;
    background: transparent;
    color: var(--white);
    overflow: hidden;
}

.p3-inner {
    position: relative;
    padding-top: clamp(72px, 8vh, 86px);
}

.p3-content {
    position: relative;
    z-index: 2;
    width: var(--stage-width);
    margin: 0 auto;
    padding: 0 32px;
}

.p3-heading {
    display: flex;
    align-items: baseline;
    min-width: 0;
}

.p3-number {
    flex: 0 0 auto;
    font-size: clamp(128px, 15vw, 215px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.105em;
    color: var(--white);
}

.p3-label {
    flex: 0 1 auto;
    margin-left: clamp(12px, 1.4vw, 24px);
    font-size: clamp(48px, 6.25vw, 90px);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.46);
    white-space: nowrap;
}

.p3-title {
    margin: clamp(28px, 5vh, 44px) 0 0;
    font-size: clamp(42px, 5.25vw, 78px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.065em;
    color: var(--white);
    word-break: keep-all;
}

.p3-copy {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc((var(--stage-width) - 100vw) / 2 - 32px);
    margin-top: clamp(48px, 4.6vh, 68px);
}

.p3-copy p {
    justify-self: center;
    width: 70%;
    margin: 0;
    font-size: clamp(13px, 1.08vw, 16px);
    line-height: 1.43;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.96);
    word-break: keep-all;
}

.p3-scroll-gallery {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: clamp(60px, 10vh, 120px);
    display: flex;
    flex-direction: column;
    gap: 5svh;
}

.p3-image-wrap {
    position: relative;
    width: 100%;
    height: clamp(206px, 31.5vh, 315px);
    overflow: hidden;
    background: transparent;
}

.p3-scroll-image {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    user-select: none;
    pointer-events: none;
    will-change: transform;
}

.blue-transition {
    min-height: 15svh;
    background: transparent;
}

.p3-products-spacer {
    height: 5svh;
    background: transparent;
}

.p3-products-section {
    position: relative;
    background: transparent;
    color: var(--white);
    overflow: hidden;
}

.p3-products-section-01 {
    height: 60svh;
}

.p3-products-section-02 {
    height: 35svh;
}

.p3-products-row {
    width: var(--stage-width);
    height: 100%;
    margin: 0 auto;
    display: grid;
    align-items: stretch;
}

.p3-products-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p3-products-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p3-product-card {
    height: 100%;
    margin: 0;
    padding: clamp(12px, 2vh, 24px) clamp(22px, 4vw, 72px) clamp(18px, 3vh, 36px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: end;
}

.p3-product-media {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.p3-product-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

@media (min-width: 901px) {
    .p3-products-section-01 .p3-product-media img {
        max-height: 40svh;
    }

    .p3-products-section-02 .p3-product-media img {
        max-height: 25svh;
    }
}

.p3-product-caption {
    width: 100%;
    margin-top: clamp(8px, 1.2vh, 14px);
    text-align: center;
}

.p3-product-line {
    display: block;
    width: min(100%, 260px);
    height: 1px;
    margin: 0 auto clamp(6px, 0.9vh, 10px);
    background: rgba(255, 255, 255, 0.86);
}

.p3-product-caption h3 {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 30px);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--white);
}

.p3-product-caption p {
    margin: 3px 0 0;
    font-size: clamp(12px, 1.25vw, 16px);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.58);
}

.p4-transition {
    min-height: 15svh;
    background: transparent;
}

.p4-section {
    position: relative;
    background: transparent;
    color: var(--white);
    overflow: visible;
}

.p4-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc((var(--stage-width) - 100vw) / 2 - 32px);
    margin-top: clamp(48px, 4.6vh, 68px);
}

.p4-copy p {
    justify-self: center;
    width: 70%;
    margin: 0;
    font-size: clamp(13px, 1.08vw, 16px);
    line-height: 1.54;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.96);
    word-break: keep-all;
}

.p4-logo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin-top: clamp(60px, 10vh, 120px);
    padding-bottom: clamp(80px, 10vh, 140px);
    overflow: visible;
    background: transparent;
}

.p4-logo-row {
    width: var(--stage-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 88px);
    align-items: start;
}

.p4-logo-card {
    min-width: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.p4-logo-card img {
    display: block;
    width: min(100%, clamp(300px, 20vw, 440px));
    height: auto;
    max-height: none;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.p4-partner-caption {
    width: min(100%, clamp(300px, 20vw, 440px));
    margin-top: clamp(18px, 2.2vh, 28px);
    text-align: center;
}

.p4-partner-line {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 auto clamp(8px, 1vh, 12px);
    background: rgba(255, 255, 255, 0.86);
}

.p4-partner-caption h3 {
    margin: 0;
    font-size: clamp(21px, 1.9vw, 34px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.065em;
    color: var(--white);
}

.p4-partner-origin {
    margin: 7px 0 0;
    font-size: clamp(13px, 1.1vw, 18px);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.58);
}

.p4-partner-text {
    margin-top: clamp(24px, 2.6vh, 34px);
    text-align: left;
}

.p4-partner-text p {
    margin: 0;
    font-size: clamp(13px, 1.06vw, 17px);
    line-height: 1.45;
    font-weight: 300;
    letter-spacing: -0.045em;
    color: rgba(255, 255, 255, 0.94);
    word-break: keep-all;
}

.p4-partner-text p + p {
    margin-top: clamp(18px, 2vh, 26px);
}


.p5-transition {
    min-height: 15svh;
    background: transparent;
}

.p5-section {
    position: relative;
    min-height: 100svh;
    background: transparent;
    color: var(--white);
    overflow: hidden;
}

.p5-inner {
    position: relative;
    width: var(--stage-width);
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(56px, 6vh, 92px) 32px;
    display: flex;
    align-items: center;
}

.p5-content {
    position: relative;
    z-index: 2;
    width: min(58vw, 980px);
    min-width: 0;
}

.p5-title {
    margin: 0;
    font-size: clamp(88px, 7.2vw, 170px);
    line-height: 0.82;
    font-weight: 900;
    letter-spacing: -0.07em;
    color: var(--white);
    white-space: nowrap;
}

.p5-kicker {
    margin: clamp(60px, 9vh, 112px) 0 0;
    font-size: clamp(24px, 2.25vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.46);
    word-break: keep-all;
}

.p5-copy {
    width: min(100%, 980px);
    margin-top: clamp(44px, 5.8vh, 72px);
}

.p5-copy p {
    margin: 0;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.45;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.96);
    word-break: keep-all;
}

.p5-copy p + p {
    margin-top: clamp(18px, 2.1vh, 28px);
}

.p5-contact-info {
    display: flex;
    flex-direction: column;
    width: min(100%, 880px);
    margin-top: clamp(64px, 8vh, 108px);
    font-style: normal;
}

.p5-address-group {
    margin: 0;
}

.p5-address-group + .p5-address-group {
    margin-top: clamp(26px, 3.2vh, 44px);
}

.p5-contact-label {
    font-size: clamp(20px, 1.7vw, 32px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
    color: var(--white);
}

.p5-contact-line {
    margin-top: clamp(8px, 1vh, 12px);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.45;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.86);
    word-break: keep-all;
}

.p5-contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: clamp(36px, 4.8vw, 92px);
    row-gap: 12px;
    margin-top: clamp(34px, 4.4vh, 60px);
}

.p5-contact-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.44em;
    color: var(--white);
    text-decoration: none;
    font-size: clamp(15px, 1.18vw, 22px);
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.p5-contact-link-label {
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
}


.p5-visual {
    position: absolute;
    z-index: 1;
    left: calc(50vw - ((100vw - var(--stage-width)) / 2));
    right: calc(2vw - ((100vw - var(--stage-width)) / 2));
    top: 50%;
    width: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

.p5-visual img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
}

@media (max-width: 900px) {

    .section-spacer,
    .blue-transition,
    .p3-products-spacer,
    .p4-transition,
    .p5-transition {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .site-nav {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        padding: 16px 20px;
        background: var(--bg);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        font-size: 13px;
    }

    .hero {
        display: block;
        min-height: auto;
    }

    .panel {
        min-height: 100svh;
    }

    .panel.left {
        border-right: 0;
        border-bottom: 0;
    }

    .steel-logo {
        left: 12px;
        right: auto;
        top: 50%;
        bottom: auto;
        width: 47vw;
        transform: translateY(-50%);
    }

    .hero-image {
        height: 100svh;
    }

    .hero-image.left-image {
        right: 0;
    }

    .hero-image.right-image {
        left: 0;
    }

    .copy {
        right: 12px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    .headline {
        font-size: 9vw;
    }

    .subcopy {
        margin-top: 22px;
        font-size: 3vw;
    }

    .scroll-track {
        left: 12px;
        right: auto;
        bottom: 60px;
        height: 70px;
    }

    .scroll-label {
        left: 22px;
        right: auto;
        bottom: 64px;
    }

    .who-section {
        display: block;
        padding: 0;
    }

.who-visual {
    width: 100%;
    max-width: none;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
}

.who-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    object-position: left center;
}

    .who-content {
        min-height: 100svh;
        padding: 72px 24px;
    }

    .who-symbol {
        width: 42vw;
        max-width: 220px;
        margin-bottom: 40px;
    }

    .who-title {
        margin-bottom: 48px;
        font-size: 18vw;
    }

    .p2-gallery-section {
        min-height: auto;
        overflow: visible;
        padding: 0;
    }

    .p2-gallery-stage {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        aspect-ratio: auto;
        transform: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .p2-gallery-belief {
        position: relative;
        left: auto;
        top: auto;
        z-index: 2;
        grid-column: 1 / 3;
        width: 100%;
        margin: 0;
        padding: 80px 24px 28px;
        font-size: clamp(24px, 7vw, 42px);
        line-height: 1.12;
        font-weight: 300;
        letter-spacing: -0.04em;
        white-space: normal;
    }

    .p2-gallery-item {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        margin: 0;
    }

    .p2-gallery-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .p2-gallery-01 {
        grid-column: 1 / 3;
    }

    .p2-gallery-02 {
        grid-column: 1 / 2;
    }

    .p2-mobile-word-we {
        grid-column: 2 / 3;
    }

    .p2-gallery-03 {
        grid-column: 1 / 3;
    }

    .p2-mobile-word-make {
        grid-column: 1 / 2;
    }

    .p2-gallery-04 {
        grid-column: 2 / 3;
    }

    .p2-gallery-05 {
        grid-column: 1 / 3;
    }

    .p2-gallery-06 {
        grid-column: 1 / 2;
    }

    .p2-mobile-word-seoan {
        grid-column: 2 / 3;
    }

    .p2-mobile-word {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0 12px;
        color: var(--white);
        font-size: clamp(42px, 13vw, 92px);
        line-height: 0.86;
        font-weight: 900;
        letter-spacing: -0.075em;
        text-align: center;
    }

    .p2-gallery-title {
        display: none;
    }

    .p3-inner {
        padding-top: 40px;
    }

    .p3-content {
        padding: 70px 24px 0;
    }

    .p3-heading {
        display: block;
    }

    .p3-number {
        font-size: clamp(92px, 27vw, 132px);
        line-height: 0.78;
    }

    .p3-label {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        font-size: clamp(36px, 12vw, 62px);
        line-height: 0.92;
        white-space: normal;
    }

    .p3-title {
        margin-top: 34px;
        font-size: clamp(34px, 10.5vw, 54px);
        line-height: 1.08;
    }

    .p3-copy {
        display: block;
        margin-top: 28px;
        margin-left: 0;
        width: 100%;
    }

    .p3-copy p {
        width: 100%;
        font-size: 14px;
        line-height: 1.58;
    }

    .p3-copy p + p {
        margin-top: 16px;
    }

    .p3-scroll-gallery {
        margin-top: 56px;
        gap: 5svh;
    }

    .p3-image-wrap {
        height: clamp(180px, 28vh, 250px);
    }

    .p3-products-spacer {
        display: none;
        height: 0;
    }

    .p3-products-section,
    .p3-products-section-01,
    .p3-products-section-02 {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .p3-products-section {
        padding: 64px 0 0;
    }

    .p3-products-section-02 {
        padding-top: 48px;
        padding-bottom: 0px;
    }

    .p3-products-row {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 56px;
    }

    .p3-product-card {
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p3-product-media {
        width: 55vw;
        height: 40svh;
        min-height: 0;
        flex: 0 0 auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .p3-product-grab .p3-product-media,
    .p3-product-compactor .p3-product-media {
        padding-bottom: 28px;
    }

    .p3-product-media img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .p3-product-caption {
        width: 72vw;
        margin-top: 8px;
    }

    .p3-product-line {
        width: 100%;
        margin-bottom: 8px;
    }

    .p3-product-caption h3 {
        font-size: clamp(20px, 7vw, 34px);
    }

    .p3-product-caption p {
        font-size: 14px;
    }

    .p4-copy {
        display: block;
        margin-top: 28px;
        margin-left: 0;
        width: 100%;
    }

    .p4-copy p {
        width: 100%;
        font-size: 14px;
        line-height: 1.58;
    }

    .p4-copy p + p {
        margin-top: 16px;
    }

    .p4-logo-wrap {
        height: auto;
        margin-top: 56px;
        padding-bottom: 40px;
        overflow: visible;
    }

    .p4-logo-row {
        width: 100%;
        padding: 50px 24px;
        display: flex;
        flex-direction: column;
        gap: clamp(100px, 10svh, 200px);
    }

    .p4-logo-card {
        width: 100%;
    }

    .p4-logo-card img {
        width: min(80%, 520px);
        height: auto;
        max-height: none;
    }

    .p4-partner-caption {
        width: 72vw;
        margin-top: 20px;
    }

    .p4-partner-line {
        width: 100%;
    }

    .p4-partner-caption h3 {
        font-size: clamp(22px, 7.2vw, 36px);
    }

    .p4-partner-origin {
        font-size: 14px;
    }

    .p4-partner-text {
        margin-top: 26px;
    }

    .p4-partner-text p {
        font-size: 14px;
        line-height: 1.58;
    }

    .p5-section {
        min-height: auto;
        overflow: visible;
    }

    .p5-inner {
        width: 100%;
        min-height: auto;
        padding: 72px 24px 112px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .p5-content {
        width: 100%;
        order: 1;
    }

    .p5-title {
        font-size: clamp(56px, 17vw, 92px);
        line-height: 0.86;
        white-space: normal;
    }

    .p5-kicker {
        margin-top: 48px;
        font-size: clamp(24px, 7vw, 38px);
        line-height: 1.12;
    }

    .p5-copy {
        margin-top: 34px;
    }

    .p5-copy p + p {
        margin-top: 14px;
    }

    .p5-contact-info {
        width: 100%;
        margin-top: 56px;
    }

    .p5-address-group + .p5-address-group {
        margin-top: 30px;
    }

    .p5-contact-label {
        font-size: clamp(22px, 6.2vw, 34px);
    }

    .p5-contact-line {
        margin-top: 9px;
        font-size: 14px;
        line-height: 1.58;
    }

    .p5-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 34px;
    }

    .p5-contact-link {
        white-space: normal;
        font-size: 14px;
        line-height: 1.4;
    }

    .p5-visual {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        order: 2;
        width: 100vw;
        margin-top: 64px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        transform: none;
    }

    .p5-visual img {
        display: block;
        width: 100vw;
        max-width: none;
        height: auto;
        margin: 0;
    }

}