html { 
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: calc(100vw*(10/375));
    background-color: #240B07;
}

body {
    max-width: 620px;
    margin: 0 auto;
}

@media screen and (min-width: 620px) {
    html {
        font-size: calc(620px*(10/375));
    }

    a {
        transition: opacity .4s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    a:hover {
        opacity: .7;
    }
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

section {
    position: relative;
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    width: 100%;
    max-width: 620px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 1.6rem 2rem;
}

.p-header__btns {
    display: flex;
    justify-content: end;
    padding-left: 2.2rem;
    gap: .6rem;
}

.p-header__btn {
    padding-left: .6rem;
    padding-right: .6rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    border-radius: .2rem;
    border: .1rem solid #FFF;
}

.p-header__btn.is-active {
    position: relative;
    background-color: #240B07;
}

.p-header__btn.is-active::before {
    background: url(../img/btn-deco.webp) no-repeat center center/contain;
    content: '';
    height: 1.6rem;
    left: -2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
}

/*===========================================================================*/
/*  venues  */
/*===========================================================================*/
.p-venues {
    padding: 0 20px 60px;
}

.p-venues__heads {
    display: flex;
}

.p-venues__head {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.p-venues__subHead {
    padding-left: .6rem;
    transform: translateY(6.5rem);
    color: #D4B778;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.p-venues__list {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    gap: 3.2rem;
}

.p-venues__list--name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.p-venues__list--address {
    margin-top: .4rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
}

.p-venues__list--map {
    margin-top: 1.2rem;
}

.p-venues__list--map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 335 / 184;
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    position: relative;
}

.p-footer__img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.p-footer__btns {
    padding: 11rem 2rem 18.2rem;
    display: flex;
    justify-content: space-between;
}

.p-footer__btn {
    width: calc(50% - .65rem);
}

.p-footer__btn--mail {
    white-space: nowrap;
    position: relative;
    display: block;
    padding: 1.5rem 5.3rem 1.4rem 6.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    border: .1rem solid #FFF;
}
.p-footer__btn--mail::before {
    background: url(../img/mail.webp) no-repeat center center/contain;
    content: '';
    height: 1.6rem;
    left: 1.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
}

.p-footer__btn--insta {
    white-space: nowrap;
    position: relative;
    display: block;
    padding: 1.5rem 1.8rem 1.4rem 4.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    border: .1rem solid #FFF;
}
.p-footer__btn--insta::before {
    background: url(../img/insta.webp) no-repeat center center/contain;
    content: '';
    height: 1.6rem;
    left: 1.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
}