@font-face {
    font-family: "Quicksand";
    src: url("../font/Quicksand-VariableFont_wght.ttf") format("truetype");
    font-weight: 300 700;
    font-style: normal;
}

@font-face {
    font-family: "Warsa Display";
    src: url("../font/Geometr706 BlkCn BT Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

:root {
    --black: #070707;
    --ink: #121212;
    --paper: #f7f5ef;
    --white: #ffffff;
    --yellow: #fcbd11;
    --blue: #00bff3;
    --lime: #b3f300;
    --purple: #bd8cbf;
    --gold: #b97806;
    --muted: #65615b;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background: var(--black);
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Quicksand", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--black);
    background: var(--yellow);
}

.loader__mark {
    position: absolute;
    width: min(46vw, 420px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--black);
    transform: scale(0.72);
}

.loader__mark img {
    width: 76%;
}

.loader__content {
    position: absolute;
    left: clamp(22px, 5vw, 72px);
    right: clamp(22px, 5vw, 72px);
    bottom: clamp(24px, 7vh, 82px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 42vw) auto;
    gap: 18px;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
}

.loader__content p,
.loader__content strong {
    margin: 0;
    font-family: "Warsa Display", Impact, sans-serif;
    font-size: clamp(24px, 5vw, 70px);
    line-height: 0.9;
}

.loader__bar {
    height: 10px;
    overflow: hidden;
    border: 2px solid var(--black);
    background: rgba(255, 255, 255, 0.35);
}

.loader__bar span {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--black);
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 1000;
    width: min(calc(100% - 32px), 1180px);
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(18, 18, 18, 0.12);
    background: rgba(247, 245, 239, 0.78);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.brand,
.site-header nav,
.hero__actions,
.closing__grid {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    min-width: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header nav {
    gap: 8px;
}

.site-header nav a,
.header-cta,
.button,
.closing__grid span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(18, 18, 18, 0.14);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.header-cta,
.button--dark {
    color: var(--white);
    background: var(--black);
}

.button--light {
    color: var(--black);
    background: var(--white);
}

.button {
    min-height: 54px;
    padding: 16px 22px;
    transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.hero {
    --hero-curtain-opacity: 0;
    color: var(--black);
    background:
        linear-gradient(90deg, rgba(252, 189, 17, 0.96), rgba(252, 189, 17, 0.72)),
        repeating-linear-gradient(135deg, rgba(7, 7, 7, 0.08) 0 2px, transparent 2px 22px);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: var(--hero-curtain-opacity);
    background:
        radial-gradient(circle at 68% 48%, rgba(252, 189, 17, 0.2), transparent 25%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.02) 0%, rgba(7, 7, 7, 0.78) 58%, #070707 100%);
}

.hero__stage {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: center;
    width: min(calc(100% - 44px), 1280px);
    margin: 0 auto;
    padding: 120px 0 52px;
}

.eyebrow {
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: "Warsa Display", Impact, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.86;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    font-size: clamp(48px, 5.8vw, 92px);
}

h2 {
    max-width: 900px;
    font-size: clamp(42px, 5.9vw, 96px);
}

.hero__text,
.scene-copy p:not(.eyebrow),
.closing__inner > p:not(.eyebrow) {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(18, 18, 18, 0.78);
    font-size: clamp(16px, 1.35vw, 21px);
    font-weight: 650;
    line-height: 1.45;
}

.hero__actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero__visual {
    position: relative;
    min-height: min(72vh, 720px);
}

.hero__logo {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(54vw, 620px);
    opacity: 0.12;
    transform: translate(-50%, -50%);
}

.hero__product {
    position: absolute;
    width: clamp(170px, 25vw, 330px);
    background: var(--paper);
    box-shadow: 0 30px 70px rgba(7, 7, 7, 0.25);
    will-change: transform;
}

.hero__product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f3f3f0;
}

.hero__product--one {
    top: 8%;
    left: 12%;
    transform: rotate(-7deg);
}

.hero__product--two {
    top: 28%;
    right: 4%;
    transform: rotate(6deg);
}

.hero__product--three {
    left: 28%;
    bottom: 4%;
    transform: rotate(3deg);
}

.showreel {
    margin-top: -1px;
    color: var(--paper);
    background:
        linear-gradient(180deg, #070707 0%, #070707 72%, #101010 100%);
}

.showreel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 24%, rgba(252, 189, 17, 0.2), transparent 24%),
        linear-gradient(90deg, rgba(252, 189, 17, 0.12), transparent 40%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.showreel__pin {
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: clamp(22px, 4vh, 38px);
    padding: 96px max(22px, calc((100vw - 1280px) / 2)) 64px;
}

.showreel__pin > * {
    position: relative;
    z-index: 1;
}

.showreel .eyebrow {
    margin-bottom: 0;
    color: var(--yellow);
}

.showreel h2 {
    max-width: 1040px;
    font-size: clamp(36px, 4.3vw, 70px);
    line-height: 0.92;
}

.reel-strip {
    display: flex;
    gap: clamp(14px, 2vw, 28px);
    width: max-content;
    will-change: transform;
}

.reel-strip img {
    width: clamp(260px, 27vw, 410px);
    aspect-ratio: 1;
    object-fit: contain;
    background: rgba(247, 245, 239, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.product-scene {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    gap: clamp(24px, 5vw, 76px);
    align-items: center;
    padding: 118px max(22px, calc((100vw - 1280px) / 2));
}

.product-scene::before,
.product-scene::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.product-scene::before {
    inset: 0;
    opacity: 0.55;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 42px 42px;
}

.product-scene::after {
    right: -8vw;
    bottom: -12vh;
    width: 46vw;
    height: 46vw;
    border: 1px solid rgba(7, 7, 7, 0.1);
    background: repeating-linear-gradient(45deg, rgba(7, 7, 7, 0.1) 0 3px, transparent 3px 18px);
    transform: rotate(12deg);
}

.product-scene--jersey {
    background: linear-gradient(135deg, #fcbd11 0%, #fff3bd 63%, #111111 64%, #111111 100%);
}

.product-scene--batik {
    background:
        radial-gradient(circle at 22% 20%, rgba(179, 243, 0, 0.3), transparent 28%),
        linear-gradient(135deg, #e8f1dc, #b6c79d 48%, #31432a);
}

.product-scene--tshirt {
    background: linear-gradient(135deg, #f9f8f2 0%, #c8f2ff 48%, #00bff3 100%);
}

.product-scene--kemeja {
    background: linear-gradient(135deg, #f8f8f3 0%, #dce1d6 52%, #263123 100%);
}

.product-scene--merch {
    background:
        linear-gradient(135deg, rgba(189, 140, 191, 0.9), rgba(238, 230, 218, 0.9) 52%, rgba(69, 87, 58, 0.92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 12px, transparent 12px 24px);
}

.scene-copy,
.scene-media,
.closing__inner {
    position: relative;
    z-index: 1;
}

.scene-copy .eyebrow {
    display: inline-flex;
    padding: 10px 13px;
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(7, 7, 7, 0.16);
}

.scene-media {
    min-height: 560px;
}

.scene-media img {
    position: absolute;
    width: clamp(210px, 28vw, 420px);
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--paper);
    box-shadow: 0 34px 90px rgba(7, 7, 7, 0.26);
    will-change: transform;
}

.scene-media img:first-child {
    top: 0;
    left: 0;
    transform: rotate(-4deg);
}

.scene-media img:last-child {
    right: 0;
    bottom: 0;
    transform: rotate(5deg);
}

.closing {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 120px 22px;
    color: var(--paper);
    text-align: center;
    background:
        linear-gradient(rgba(7, 7, 7, 0.84), rgba(7, 7, 7, 0.92)),
        url("../img/product-web/contact-sheet.jpg") center / cover;
}

.closing__inner {
    width: min(1080px, 100%);
}

.closing .eyebrow {
    color: var(--yellow);
}

.closing h2 {
    margin: 0 auto;
}

.closing__grid {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 34px 0;
}

.closing__grid span {
    color: var(--black);
    background: var(--yellow);
}

.site-credit {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    width: min(calc(100% - 44px), 960px);
    margin: 0;
    color: rgba(247, 245, 239, 0.66);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    transform: translateX(-50%);
}

.split .line {
    overflow: hidden;
}

.split .word,
.split .char {
    display: inline-block;
}

@media (min-width: 921px) {
    body.cinematic-ready {
        background: var(--black);
    }

    body.cinematic-ready #smooth-content {
        position: relative;
        height: 100vh;
        overflow: hidden;
        background: var(--black);
    }

    body.cinematic-ready .panel {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform-origin: 50% 50%;
    }

    body.cinematic-ready .hero {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.cinematic-ready .showreel__pin,
    body.cinematic-ready .hero__stage {
        height: 100vh;
        min-height: 100vh;
    }

    body.cinematic-ready .product-scene,
    body.cinematic-ready .closing {
        height: 100vh;
        min-height: 100vh;
    }

    body.cinematic-ready .product-scene {
        padding-top: 98px;
        padding-bottom: 56px;
    }

    body.cinematic-ready .scene-media {
        min-height: min(63vh, 620px);
    }

    body.cinematic-ready .scene-media img {
        width: clamp(240px, 26vw, 390px);
    }

    body.cinematic-ready .showreel {
        background:
            radial-gradient(circle at 70% 25%, rgba(252, 189, 17, 0.18), transparent 26%),
            linear-gradient(180deg, #070707 0%, #111111 100%);
    }
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto;
        top: 10px;
        width: calc(100% - 20px);
    }

    .site-header nav {
        display: none;
    }

    .hero__stage,
    .product-scene {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 480px;
    }

    .scene-media {
        min-height: 460px;
    }

    .loader__content {
        grid-template-columns: 1fr auto;
    }

    .loader__bar {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 64px;
    }

    .brand span {
        max-width: 150px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    h1 {
        font-size: clamp(38px, 11.2vw, 52px);
    }

    h2 {
        font-size: clamp(36px, 12vw, 60px);
    }

    .hero__stage,
    .product-scene,
    .showreel__pin {
        padding-top: 102px;
    }

    .hero__product {
        width: clamp(145px, 48vw, 230px);
    }

    .scene-media img {
        width: clamp(170px, 60vw, 270px);
    }

    .button {
        width: 100%;
    }
}
