@font-face {
    font-family: "LST Anton";
    src: url("/assets/fonts/light-street-trio/anton-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "LST Barlow Condensed";
    src: url("/assets/fonts/light-street-trio/barlow-condensed-500-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

.lst-page {
    --lst-paper: #faf8f2;
    --lst-ink: #24251f;
    --lst-red: #C04652;
    --lst-green: #A3BF50;
    --lst-blue: #15ACD1;
    --lst-display-font: "LST Anton", Impact, "Arial Narrow", sans-serif;
    margin: 0;
    background: var(--lst-paper);
    color: var(--lst-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.lst-page *,
.lst-page *::before,
.lst-page *::after {
    box-sizing: border-box;
}

.lst-page [hidden] {
    display: none !important;
}

.lst-page ::selection {
    background: var(--lst-ink);
    color: var(--lst-paper);
}

.lst-page a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.lst-page a:hover {
    text-decoration-thickness: 2px;
}

.lst-page :focus-visible {
    outline: 3px solid var(--lst-ink);
    outline-offset: 6px;
}

.lst-page .lst-main {
    width: min(1080px, calc(100% - 80px));
    margin-inline: auto;
}

.lst-page .lst-title {
    display: flex;
    justify-content: center;
    gap: 0.15em;
    margin: 57px 0 56px;
    font-family: var(--lst-display-font);
    font-size: clamp(70px, 10vw, 120px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-align: center;
    text-transform: uppercase;
}

.lst-page .lst-title span {
    white-space: nowrap;
}

.lst-page .lst-red {
    color: var(--lst-red);
}

.lst-page .lst-green {
    color: var(--lst-green);
}

.lst-page .lst-blue {
    color: var(--lst-blue);
}

.lst-page .lst-musicians {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.lst-page .lst-musician {
    min-width: 0;
    margin: 0;
}

.lst-page .lst-musician img {
    display: block;
    width: min(90%, 270px);
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
    border-radius: 50%;
    object-fit: cover;
}

.lst-page .lst-musician figcaption {
    margin-top: 24px;
}

.lst-page .lst-musician h2 {
    margin: 0;
    font-family: var(--lst-display-font);
    font-size: clamp(24px, 2.55vw, 30px);
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lst-page .lst-musician p {
    margin: 6px 0 0;
    color: var(--lst-ink);
    font-family: "LST Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lst-page .lst-description {
    max-width: 800px;
    margin: 88px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    text-wrap: pretty;
}

.lst-page .lst-description p {
    margin: 0;
}

.lst-page .lst-description p + p {
    margin-top: 1em;
}

.lst-page .lst-rehearsal {
    padding-block: 76px 80px;
    text-align: center;
}

.lst-page .lst-section-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lst-page .lst-player {
    width: min(100%, 400px);
    margin-inline: auto;
}

.lst-page .lst-player iframe {
    display: block;
    width: 100%;
    height: 710px;
    border: 0;
    background: #fff;
}

.lst-page .lst-instagram-link {
    margin: 18px 0 0;
    font-size: 13px;
}

.lst-page .lst-contact {
    padding-block: 44px 52px;
    border-top: 1px solid var(--lst-ink);
    text-align: center;
}

.lst-page .lst-booking-form {
    max-width: 520px;
    margin: 27px auto 0;
    text-align: left;
}

.lst-page .lst-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.lst-page .lst-field {
    min-width: 0;
    margin-bottom: 19px;
}

.lst-page .lst-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
}

.lst-page .lst-field input,
.lst-page .lst-field textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #8b8b80;
    border-radius: 0;
    background: transparent;
    color: var(--lst-ink);
    font: inherit;
}

.lst-page .lst-field textarea {
    resize: vertical;
}

.lst-page .lst-submit {
    display: block;
    min-height: 48px;
    margin: 24px auto 0;
    padding: 12px 28px;
    border: 1px solid var(--lst-ink);
    border-radius: 0;
    background: var(--lst-ink);
    color: var(--lst-paper);
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.lst-page .lst-submit:hover {
    background: var(--lst-paper);
    color: var(--lst-ink);
}

.lst-page .lst-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 699px) {
    .lst-page .lst-main {
        width: calc(100% - 40px);
    }

    .lst-page .lst-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 0.15em;
        row-gap: 0;
        max-width: 500px;
        margin: 31px auto 48px;
        font-size: clamp(44px, 13.5vw, 80px);
        line-height: 1.08;
    }

    .lst-page .lst-title span:last-child {
        flex-basis: 100%;
    }

    .lst-page .lst-musicians {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .lst-page .lst-musician-jordan {
        order: -1;
    }

    .lst-page .lst-musician img {
        width: min(100%, 230px);
    }

    .lst-page .lst-musician figcaption {
        margin-top: 17px;
    }

    .lst-page .lst-musician h2 {
        font-size: 28px;
    }

    .lst-page .lst-musician p {
        margin-top: 4px;
    }

    .lst-page .lst-description {
        width: 100%;
        max-width: none;
        margin-top: 60px;
        font-size: 18px;
        line-height: 1.65;
    }

    .lst-page .lst-rehearsal {
        padding-block: 56px 60px;
    }

    .lst-page .lst-contact {
        padding-block: 36px 37px;
    }

    .lst-page .lst-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
