:root {
    --navy: #10284b;
    --navy-dark: #0b1e39;
    --gold: #aa842e;

    --cream: #f8f5ef;
    --cream-light: #fcfaf6;

    --gray: #7e7b75;
    --border: rgba(16, 40, 75, 0.11);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--navy);
}

.page {
    width: 100%;
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        110px
        1fr;

    background: var(--cream);
}

/* SIDE PANEL */

.side-panel {
    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            #122d52 0%,
            #0b1f3c 100%
        );

    color: #ffffff;

    display: flex;
    flex-direction: column;

    align-items: center;

    padding:
        38px 0
        30px;

    overflow: hidden;
}

.side-panel::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.11),
            transparent
        );
}

.side-number {
    position: relative;
    z-index: 2;

    font-family: "Playfair Display", serif;

    color: rgba(255,255,255,.42);

    font-size: 26px;
}

.side-text {
    position: relative;
    z-index: 2;

    margin: auto 0;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: rgba(255,255,255,.7);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .28em;

    white-space: nowrap;
}

.side-bottom {
    position: relative;
    z-index: 2;

    color: var(--gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;
}

/* CONTENT */

.content {
    min-width: 0;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding:
        42px 5vw
        30px;

    background:
        linear-gradient(
            135deg,
            var(--cream-light) 0%,
            #f7f3eb 100%
        );
}

/* HEADER */

.header {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;
}

.logo {
    display: block;

    width: min(470px, 52vw);
    height: auto;
}

.status {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 12px;

    color: #88847d;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.status > span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);
}

/* HERO */

.hero {
    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding:
        8vh 2vw
        10vh;
}

.hero-top {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}

.section-label {
    color: #88827b;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .24em;

    text-transform: uppercase;

    white-space: nowrap;
}

.hero-top .line {
    width: 110px;
    height: 1px;

    background: rgba(170,132,46,.4);
}

/* TITLE */

h1 {
    font-family: "Playfair Display", serif;

    color: var(--navy-dark);

    font-size: clamp(85px, 11vw, 190px);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -.055em;

    margin-left: -5px;
}

h1 span {
    color: var(--gold);
}

/* TEXT */

.hero-info {
    display: grid;

    grid-template-columns:
        minmax(250px, 430px)
        minmax(250px, 500px);

    gap: 6vw;

    align-items: start;

    margin-top: 58px;
}

.lead {
    font-family: "Playfair Display", serif;

    color: #263851;

    font-size: clamp(21px, 1.7vw, 29px);

    line-height: 1.45;
}

.description {
    max-width: 470px;

    padding-left: 28px;

    border-left: 1px solid rgba(170,132,46,.35);

    color: #77746e;

    font-size: 13px;

    line-height: 1.9;
}

/* FOOTER */

.footer {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 25px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #95918a;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.footer > span:last-child {
    text-align: right;
}

.footer-center {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #7d7973;
}

.footer-gold {
    width: 18px;
    height: 1px;

    background: var(--gold);
}

/* TABLET */

@media (max-width: 1000px) {

    .page {
        grid-template-columns:
            80px
            1fr;
    }

    .content {
        padding:
            35px 35px
            25px;
    }

    .logo {
        width: min(400px, 58vw);
    }

    h1 {
        font-size: clamp(76px, 12vw, 125px);
    }

    .hero-info {
        gap: 40px;
    }

}

/* MOBILE */

@media (max-width: 700px) {

    .page {
        display: block;
    }

    .side-panel {
        min-height: auto;
        height: 55px;

        flex-direction: row;

        justify-content: space-between;

        padding:
            0 20px;
    }

    .side-panel::after {
        display: none;
    }

    .side-number {
        font-size: 20px;
    }

    .side-text {
        margin: 0;

        writing-mode: initial;

        transform: none;

        font-size: 7px;

        letter-spacing: .18em;
    }

    .side-bottom {
        font-size: 7px;
    }

    .content {
        min-height: calc(100svh - 55px);

        padding:
            25px 20px
            20px;
    }

    .header {
        flex-direction: column;

        gap: 18px;
    }

    .logo {
        width: min(350px, 90vw);
    }

    .status {
        margin-top: 0;

        font-size: 8px;
    }

    .hero {
        padding:
            70px 0
            75px;
    }

    .hero-top {
        margin-bottom: 25px;
    }

    .hero-top .line {
        width: 45px;
    }

    h1 {
        font-size: clamp(65px, 20vw, 100px);

        line-height: .88;
    }

    .hero-info {
        grid-template-columns: 1fr;

        gap: 28px;

        margin-top: 42px;
    }

    .lead {
        font-size: 22px;
    }

    .description {
        padding-left: 20px;

        font-size: 12px;
    }

    .footer {
        grid-template-columns: 1fr;

        gap: 7px;

        text-align: center;
    }

    .footer > span:last-child {
        text-align: center;
    }

    .footer-center {
        justify-content: center;
    }

}

/* SMALL MOBILE */

@media (max-width: 420px) {

    .side-text {
        display: none;
    }

    .hero {
        padding-top: 55px;
    }

    h1 {
        font-size: 19vw;
    }

}