@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Regular.woff2') format('woff2'),
        url('/fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Bold.woff2') format('woff2'),
        url('/fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Base and defaults */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'Neue Montreal', system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', sans-serif;
    overscroll-behavior: none;
    color: #F5F5F5;
}

/* Main layout */
section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: clamp(16px, 3vh, 48px);
    padding-bottom: clamp(48px, 10vh, 120px);
}

/* Top text */
.text-top {
    text-align: center;
    font-size: 28px;
    letter-spacing: .2em;
    margin-top: clamp(8px, 3vh, 32px);
}

.text-top h1 {
    font-size: 28px;
    font-weight: normal;
    margin-top: clamp(16px, 3vh, 28px);
}

.text-top .strong {
    font-weight: bold;
}

/* Logo */
.brand-logo {
    margin-top: clamp(40px, 8px, 90px);
    margin-bottom: clamp(24px, 6vh, 70px);
}

.brand-logo img {
    display: block;
    max-width: 420px;
    width: 55vw;
    height: auto;
}

/* Contact block */
.contact-block {
    text-align: center;
    display: block;
    font-size: 18px;
    letter-spacing: 0.22em;
}

.contact-block h2 {
    margin-top: 0px;
}

.contact-block .tag {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

.contact-block .left,
.contact-block .right {
    display: inline-block;
    margin: 0 48px;
}

.contact-block a {
    display: block;
    color: inherit;
    text-transform: lowercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    margin-bottom: 8px;
}

/* Bottom block */
.bottom-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-inline: 20px;
    padding-bottom: clamp(12px, 3vh, 20px);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.10em;
}

.bottom-info>div {
    white-space: pre-line;
}

.bttm-right {
    text-align: right;
}

.bttm-left::first-line,
.bttm-right::first-line {
    font-weight: bold;
}

.bttm-mid {
    align-self: flex-end;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.bttm-mid a {
    color: inherit;
    text-decoration: none;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* ----------------------------- MOBILE ----------------------------- */

@media (max-width: 1000px) {

    /* Layout */
    section {
        min-height: 100svh;
        padding-block: clamp(8px, 2.5vh, 16px);
        gap: clamp(12px, 3vh, 24px);
        justify-content: flex-start;
    }

    .text-top {
        font-size: 18px;
        letter-spacing: 0.18em;
        width: 60%;
        margin-top: 0px;
    }

    .text-top h1 {
        font-size: 18px;
        margin-top: clamp(12px, 2.5vh, 20px);
    }

    .brand-logo {
        margin: 0;
        margin-top: clamp(12px, 4vh, 25px);
        margin-bottom: clamp(12px, 4vh, 25px);
    }

    .brand-logo img {
        width: 80vw;
        max-width: 320px;
    }

    .contact-block {
        font-size: 16px;
        letter-spacing: 0.18em;
    }

    .contact-block .tag {
        font-size: 16px;
        align-self: center;
        width: 60%;
        margin-inline: auto;
        margin-bottom: clamp(12px, 3vh, 20px);
    }

    .contact-block .left,
    .contact-block .right {
        display: flex;
        flex-direction: column;
        line-height: clamp(12px, 1.8vh, 14px);
    }

    .contact-block a {
        display: block;
    }

    .bottom-info {
        position: static;
        width: 100%;
        padding: clamp(12px, 3vh, 20px);
        margin-top: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(10px, 2.5vh, 18px);
        font-size: 11px;
        text-decoration: none;
        letter-spacing: .2em;
    }

    /* OVERRIDES AUTO DETECT TEXT ------------ */
    .bottom-info a,
    .bottom-info a * {
        color: inherit;
        text-decoration: none !important;
    }

    .bottom-info a[x-apple-data-detectors],
    .bottom-info a[href^="x-apple-data-detectors:"],
    .bottom-info a[href^="http://maps.apple.com/"],
    .bottom-info a[href^="https://maps.apple.com/"],
    .bottom-info a[href^="tel"],
    .bottom-info a[href^="sms"],
    .bottom-info a[href^="mailto"],
    .bottom-info a[href^="maps:"],
    .bottom-info a[href^="geo:"] {
        display: inline;
        color: inherit !important;
        text-decoration: none !important;
        -webkit-text-decoration: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border-bottom: 0 !important;
    }
    /* OVERRIDES AUTO DETECT TEXT END ------------ */

    .bttm-left,
    .bttm-right {
        text-align: left;
    }

    .bttm-mid {
        font-size: 12px;
        align-self: flex-start;
        order: 3;
    }

    .bttm-mid a {
        text-decoration: underline !important;
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }

    .bttm-left {
        order: 1;
    }

    .bttm-right {
        order: 2;
    }
}

/* Extra type adjs for small desktop */
@media (max-width: 1500px) and (min-width: 1000px) {

    section {
        padding-bottom: clamp(12px, 3vh, 20px);
    }
    /* Top text */
    .text-top {
        font-size: 19px;
        margin-top: 0px;
    }

    .text-top h1 {
        font-size: 19px;
    }

    .brand-logo {
        margin: 0;
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .brand-logo img {
        width: 80vw;
        max-width: 320px;
    }

    /* Contact block */
    .contact-block {
        font-size: 16px;
    }

    .contact-block .tag {
        font-size: 16px;
    }

    /* Bottom block */
    .bottom-info {
        font-size: 12px;
    }

    .bttm-mid {
        font-size: 12px;
    }
}

/* Extra type adjs for small mobile */
@media (max-width: 480px) {
    .brand-logo {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .text-top {
        font-size: 19px;
        width: 85%;
    }

    .text-top h1 {
        font-size: 19px;
    }

    .contact-block {
        font-size: 17px;
    }

    .contact-block .tag {
        font-size: 17px;
    }

    .bottom-info {
        font-size: 11px;
    }

    .bttm-mid {
        font-size: 12px;
    }
}
