/* Banner */

section.banner {
    position: relative;
    height: clamp(600px, 60vw, 1000px);
}

section.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

section.banner .wrap {
    z-index: 1;
    position: relative;
    margin: auto;
    height: 100%;
    display: flex;
}

h1.banner-title {
    margin: auto;
    text-align: center;
    font-size: clamp(30px, 6vw, 60px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
    letter-spacing: 4.8px;
    text-transform: uppercase;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    text-overflow: ellipsis;
}

.banner-wrapper {
    margin: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    max-width: 643px;
}

section.banner:after {
    opacity: 0.75;
    background: var(--black);
    mix-blend-mode: luminosity;
    content: '';
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

p.banner-text {
    color: var(--white);
    text-align: center;
    font-size: clamp(20px, 3.2vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    font-family: "adobe-caslon-pro";
}

a.button {
    border-radius: 2px;
    border: 1px solid rgba(250, 249, 246, 0.36);
    background: rgba(250, 249, 246, 0.06);
    backdrop-filter: blur(5px);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
    padding: clamp(18px, 2.4vw, 24px) clamp(36px, 4.8vw, 48px);
}

.banner-button {
    display: flex;
}

.banner-wrapper {
    gap: 30px;
}