:root {
    --ink: #101a38;
    --gold: #ad8828;
    --font-family: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--ink);
    background: #fff;
}

figure {
    margin: 0;
}

.textile-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 100%;
    height: clamp(440px, 48vw, 690px);
    min-height: 440px;
    place-items: center;
    overflow: hidden;
    background: #6e6c68 url("assets/textile/textile-hero-hq.png") center / cover no-repeat;
}

.textile-hero__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(7, 13, 18, 0.34);
    box-shadow: inset 0 -180px 150px rgba(5, 10, 14, 0.22);
}

.textile-hero__brand {
    display: flex;
    width: min(720px, 88vw);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.textile-hero__brand span {
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 6px;
}

.textile-hero__brand img {
    display: block;
    width: min(640px, 72vw);
    height: auto;
}

.mensucat {
    padding: clamp(84px, 9vw, 150px) 24px;
}

.mensucat__inner {
    display: grid;
    width: min(1180px, 100%);
    margin: 0 auto;
    grid-template-columns: minmax(330px, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
    gap: clamp(58px, 8vw, 122px);
}

.mensucat__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.mensucat__visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    content: "";
    pointer-events: none;
}

.mensucat__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.mensucat__content h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.title-rule {
    display: block;
    width: 118px;
    height: 5px;
    margin: 28px 0 38px;
    background: var(--gold);
}

.mensucat__content > p:not(.section-kicker) {
    margin: 0 0 20px;
    color: #3f4551;
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: 0;
}

.mensucat__facts {
    display: grid;
    margin: 46px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #d9dce2;
}

.mensucat__facts div {
    min-width: 0;
    padding: 24px 20px 0 0;
}

.mensucat__facts dt {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.mensucat__facts dd {
    margin: 7px 0 0;
    color: #697080;
    font-size: 13px;
    line-height: 1.45;
}

.production-band {
    position: relative;
    isolation: isolate;
    height: clamp(600px, 50vw, 760px);
    overflow: hidden;
    background: #191c22;
}

.production-band > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-contact__overlay {
    position: absolute;
    inset: 50% 0 0;
    background: rgba(39, 43, 83, 0.67);
    box-shadow: inset 0 34px 70px rgba(19, 23, 54, 0.16), inset 0 -46px 80px rgba(19, 23, 54, 0.2);
}

.production-contact__inner {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    width: min(1100px, calc(100% - 48px));
    height: 50%;
    margin: 0 auto;
    padding: 52px 0 42px;
    grid-template-columns: minmax(300px, 1fr) minmax(330px, 0.72fr);
    align-items: start;
    gap: 80px;
    color: #fff;
}

.production-contact__inner h2 {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}

.production-contact__details {
    margin: 0;
    font-size: 18px;
    font-style: normal;
    line-height: 1.48;
}

.production-contact__details p {
    margin: 0 0 22px;
}

.production-contact__details strong {
    font-weight: 700;
}

.production-contact__details a {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.62);
    text-underline-offset: 4px;
}

.production-contact__details a:hover,
.production-contact__details a:focus-visible {
    text-decoration-color: #d4b65d;
}

@media (max-width: 860px) {
    .mensucat__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .mensucat__visual {
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .production-contact__inner {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }
}

@media (max-width: 700px) {
    .textile-hero {
        height: 72svh;
        min-height: 540px;
        background-position: 62% center;
    }

    .textile-hero__brand span {
        margin-bottom: 16px;
        font-size: 27px;
        letter-spacing: 4px;
    }

    .textile-hero__brand img {
        width: min(430px, 82vw);
    }

    .mensucat {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mensucat__content h1 {
        font-size: 42px;
    }

    .mensucat__content > p:not(.section-kicker) {
        font-size: 15px;
        line-height: 1.68;
    }

    .mensucat__facts {
        grid-template-columns: 1fr;
    }

    .mensucat__facts div {
        padding: 18px 0;
        border-bottom: 1px solid #e4e6ea;
    }

    .production-band {
        height: 760px;
    }

    .production-band > img {
        object-position: 54% center;
    }

    .production-contact__overlay {
        inset: 44% 0 0;
    }

    .production-contact__inner {
        width: calc(100% - 36px);
        height: 56%;
        padding: 38px 0 30px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 28px;
    }

    .production-contact__inner h2 {
        font-size: 36px;
    }

    .production-contact__details {
        font-size: 17px;
    }
}
