* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: #f7f7f7;
    background: #000000;
}
section{
    overflow: hidden;
}
body.fitness-lock {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

p,
li {
    font-size: 18px;
    line-height: 1.45;
}

.fitness-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 54px;
    padding: 15px 26px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.fitness-button:hover {
    transform: translateY(-2px);
}

.fitness-button--red {
    background: #ed173b;
    color: #ffffff;
}

.fitness-button--red:hover {
    background: #d30d2f;
}

.fitness-button--outline {
    border: 1px solid #ed173b;
    color: #ed173b;
    background: transparent;
}

.fitness-button--outline:hover {
    background: #ed173b;
    color: #ffffff;
}

.fitness-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 22px 35px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .1));
    transition: background .25s ease, min-height .25s ease, padding .25s ease;
}

.fitness-header.fitness-header--scrolled {
    min-height: 72px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: rgba(0, 0, 0, .92);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

.fitness-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 162px;
}

.fitness-header__mark,
.fitness-footer__mark {
    color: #ed173b;
    font-size: 52px;
    line-height: .8;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -.14em;
}

.fitness-header__brand-text {
    display: grid;
    gap: 2px;
    font-size: 22px;
    line-height: .88;
    letter-spacing: .24em;
    font-weight: 500;
}

.fitness-header__brand-text small {
    font-size: 12px;
    letter-spacing: .33em;
}

.fitness-header__nav {
    display: flex;
    align-items: center;
    gap: 31px;
    justify-self: start;
}

.fitness-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
    opacity: .96;
}

.fitness-header__link i {
    font-size: 11px;
    opacity: .7;
}

.fitness-header__aside {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.fitness-header__place {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 10px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fitness-header__place i {
    color: #ed173b;
}

.fitness-header__place strong {
    font-weight: 800;
}

.fitness-header__trial,
.fitness-header__join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.fitness-header__trial {
    border: 1px solid rgba(255, 255, 255, .85);
    color: #ffffff;
}

.fitness-header__join {
    background: #ed173b;
    color: #ffffff;
}

.fitness-header__burger {
    display: none;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 2px;
    background: rgba(0, 0, 0, .22);
    color: #ffffff;
    cursor: pointer;
}

.fitness-header__burger span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: transform .25s ease, opacity .25s ease;
}

.fitness-header__burger.fitness-header__burger--active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.fitness-header__burger.fitness-header__burger--active span:nth-child(2) {
    opacity: 0;
}

.fitness-header__burger.fitness-header__burger--active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.fitness-hero {
    position: relative;
    min-height: 870px;
    overflow: hidden;
    background: #050505;
}

.fitness-hero__track,
.fitness-hero__slide {
    position: absolute;
    inset: 0;
}

.fitness-hero__slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}

.fitness-hero__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.fitness-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fitness-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .57) 30%, rgba(0, 0, 0, .35) 58%, rgba(0, 0, 0, .78) 100%);
}

.fitness-hero__content {
    position: absolute;
    left: 34px;
    bottom: 70px;
    max-width: 1020px;
}

.fitness-hero__content--wide {
    max-width: 760px;
}

.fitness-hero__eyebrow {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fitness-hero__title {
    margin: 0 0 78px;
    color: #ffffff;
    font-size: clamp(58px, 5.5vw, 98px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.045em;
}

.fitness-hero__content--wide .fitness-hero__title {
    margin-bottom: 34px;
    font-size: clamp(46px, 4.6vw, 82px);
}

.fitness-hero__price {
    display: grid;
    gap: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

.fitness-hero__price span {
    font-size: 20px;
    font-weight: 500;
}

.fitness-hero__price strong {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.04em;
}

.fitness-hero__controls {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.fitness-hero__control {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #ffffff;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.fitness-hero__control:hover {
    background: #ed173b;
    transform: translateY(-2px);
}

.membership-panel {
    position: relative;
    width: calc(100% - 96px);
    min-height: 600px;
    margin: 55px auto 64px;
    overflow: hidden;
    border-radius: 8px;
    background: #171717;
}

.membership-panel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membership-panel__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .64)), linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .08));
}

.membership-panel__body {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    padding: 350px 98px 60px;
}

.membership-panel__label,
.locations-block__note,
.work-block__note {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.membership-panel__title {
    margin: 0 0 22px;
    font-size: clamp(36px, 3.2vw, 54px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.membership-panel__text {
    max-width: 1670px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

.studio-block {
    padding: 8px 49px 70px;
    background: #000000;
}

.studio-block__head {
    max-width: 1180px;
    margin: 0 auto 34px;
    text-align: center;
}

.studio-block__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 10px;
}

.studio-block__logo strong {
    color: #ed173b;
    font-size: clamp(52px, 5.5vw, 88px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.07em;
}

.studio-block__logo span {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    text-transform: uppercase;
}

.studio-block__logo em {
    color: #ffffff;
    font-size: clamp(30px, 3vw, 54px);
    line-height: .92;
    font-style: normal;
    letter-spacing: .22em;
}

.studio-block__lead {
    max-width: 1040px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.28;
}

.studio-block__grid {
    display: grid;
    grid-template-columns: 1.02fr 1fr 1.02fr;
    gap: 34px;
    align-items: start;
}

.studio-card--lower {
    margin-top: 1px;
}

.studio-card__image {
    width: 100%;
    height: 386px;
    object-fit: cover;
    border-radius: 8px;
}

.studio-card__title {
    margin: 15px 0 9px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.studio-card__text {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.locations-block {
    display: grid;
    grid-template-columns: .98fr .95fr;
    gap: 72px;
    align-items: center;
    padding: 96px 30px 92px;
    background: #ffffff;
    color: #5d5d5d;
}

.locations-block__copy {
    padding-left: 0;
    max-width: 920px;
}

.locations-block__note {
    color: #a4a4a4;
}

.locations-block__title,
.about-block__title,
.work-block__title {
    margin: 0 0 27px;
    color: #ed173b;
    font-size: clamp(38px, 3.7vw, 58px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.locations-block__text {
    max-width: 880px;
    margin: 0 0 31px;
    color: #777777;
    font-weight: 500;
}

.locations-block__list {
    margin: 0 0 33px;
}

.locations-block__list p {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 14px;
    color: #8b8b8b;
    font-size: 18px;
}

.locations-block__list i {
    color: #ed173b;
    min-width: 13px;
}

.locations-block__list strong {
    color: #5e5e5e;
    text-transform: uppercase;
}

.locations-block__media {
    position: relative;
    margin: 0;
}

.locations-block__image {
    width: 100%;
    min-height: 565px;
    object-fit: cover;
    border-radius: 8px;
}

.locations-block__caption {
    position: absolute;
    left: 22px;
    bottom: -26px;
    max-width: 490px;
    padding: 15px 18px;
    border-left: 4px solid #ed173b;
    background: rgba(255, 255, 255, .92);
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.goal-panel {
    position: relative;
    min-height: 725px;
    margin: 0 38px 0;
    overflow: hidden;
    border-radius: 7px;
    background: #131313;
}

.goal-panel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.goal-panel__mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .52));
}

.goal-panel__content {
    position: absolute;
    left: 93px;
    right: 93px;
    bottom: 57px;
}

.goal-panel__text {
    max-width: 1520px;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -.02em;
}

.about-block {
    background: #ffffff;
    color: #5f5f5f;
}

.about-block__intro {
    padding: 84px 24px 61px;
    text-align: center;
    background: #f2f2f2;
}

.about-block__title {
    margin-bottom: 24px;
}

.about-block__lead {
    max-width: 790px;
    margin: 0 auto;
    color: #696969;
    font-weight: 500;
}

.about-block__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 536px;
}

.about-block__row--first .about-block__copy {
    max-width: 430px;
    margin: 0 0 0 auto;
    padding: 84px 84px 45px 20px;
}

.about-block__copy p {
    margin: 0 0 54px;
    color: #4f5967;
    font-weight: 500;
}

.about-block__copy p:last-child {
    margin-bottom: 0;
}

.about-block__image {
    width: 100%;
    height: 100%;
    min-height: 535px;
    object-fit: cover;
}

.about-block__image--wide {
    min-height: 452px;
}

.about-block__row--second {
    min-height: 452px;
}

.about-block__copy--compact {
    max-width: 535px;
    padding: 90px 40px 40px 95px;
}

.about-block__copy--compact p {
    margin-bottom: 25px;
    color: #737373;
}

.about-block__side-note {
    display: block;
    max-width: 430px;
    color: #919191;
    font-size: 14px;
    line-height: 1.55;
}

.work-block {
    display: grid;
    grid-template-columns: 1fr .97fr;
    align-items: stretch;

    color: #666666;
}

.work-block__copy {
    max-width: 645px;
    align-self: center;
    justify-self: end;
    padding: 82px 77px 70px 26px;
}

.work-block__note {
    color: #9c9c9c;
}

.work-block__text {
    margin: 0 0 24px;
    color: #777777;
    font-weight: 500;
}

.work-block__stats {
    margin: 0 0 30px;
}

.work-block__stats p {
    margin: 0 0 4px;
    color: #626262;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.work-block__stats strong {
    color: #555555;
}

.work-block__media {
    margin: 0;
    min-height: 720px;
}

.work-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fitness-footer {
    padding: 25px 28px 19px;
    background: #ffffff;
    color: #1f2e3f;
}

.fitness-footer__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 29px;
    margin: 0 0 70px;
}

.fitness-footer__links a {
    font-size: 16px;
    color: #1f2e3f;
}

.fitness-footer__main {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 42px;
    margin-bottom: 42px;
}

.fitness-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1f2e3f;
    font-size: 24px;
    line-height: .9;
    letter-spacing: .2em;
}

.fitness-footer__brand small {
    font-size: 12px;
    letter-spacing: .32em;
}

.fitness-footer__apps {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 19px;
    color: #9b9b9b;
    text-transform: uppercase;
}

.fitness-footer__apps i {
    color: #2c2c2c;
    font-size: 54px;
}

.fitness-footer__apps p {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.fitness-footer__apps strong {
    color: #8a8a8a;
}

.fitness-footer__bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 31px;
}

.fitness-footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2e3f;
}

.fitness-footer__rating span {
    margin-right: 7px;
    font-size: 15px;
}

.fitness-footer__rating i {
    font-size: 17px;
}

.fitness-footer__socials {
    display: flex;
    align-items: center;
    gap: 21px;
}

.fitness-footer__socials a {
    font-size: 18px;
    color: #1f2e3f;
}

.fitness-footer__copyright {
    margin: 0;
    text-align: center;
    color: #1f2e3f;
    font-size: 15px;
}

@media (max-width: 1280px) {
    .fitness-header {
        gap: 18px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .fitness-header__nav {
        gap: 18px;
    }

    .fitness-header__place {
        display: none;
    }

    .membership-panel__body {
        padding-left: 55px;
        padding-right: 55px;
    }

    .studio-block__grid {
        gap: 24px;
    }

    .locations-block {
        gap: 38px;
    }
}

@media (max-width: 1080px) {
    .fitness-header {
        grid-template-columns: auto 1fr;
    }

    .fitness-header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 10px 22px 22px;
        background: rgba(0, 0, 0, .95);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }

    .fitness-header__nav.fitness-header__nav--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .fitness-header__link {
        padding: 17px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .fitness-header__aside {
        justify-self: end;
    }

    .fitness-header__trial,
    .fitness-header__join {
        display: none;
    }

    .fitness-header__burger {
        display: inline-flex;
    }

    .fitness-hero {
        min-height: 760px;
    }

    .membership-panel {
        width: calc(100% - 42px);
    }

    .studio-block__grid,
    .locations-block,
    .about-block__row,
    .work-block {
        grid-template-columns: 1fr;
    }

    .studio-card--lower {
        margin-top: 0;
    }

    .studio-card__image {
        height: 430px;
    }

    .locations-block__media {
        max-width: 780px;
    }

    .about-block__row--first .about-block__copy,
    .about-block__copy--compact {
        max-width: 760px;
        margin: 0 auto;
        padding: 64px 24px;
    }

    .work-block__copy {
        max-width: 780px;
        justify-self: start;
        padding: 70px 38px 58px;
    }

    .work-block__media {
        min-height: 560px;
    }
}

@media (max-width: 760px) {
    p,
    li {
        font-size: 17px;
    }

    .fitness-button {
        width: 100%;
        min-width: 0;
    }

    .fitness-header {
        min-height: 72px;
        padding: 14px 16px;
    }

    .fitness-header__brand {
        min-width: 0;
        gap: 10px;
    }

    .fitness-header__mark {
        font-size: 42px;
    }

    .fitness-header__brand-text {
        font-size: 17px;
    }

    .fitness-header__brand-text small {
        font-size: 10px;
    }

    .fitness-hero {
        min-height: 710px;
    }

    .fitness-hero__content {
        left: 20px;
        right: 20px;
        bottom: 92px;
        max-width: none;
    }

    .fitness-hero__title {
        margin-bottom: 42px;
        font-size: 54px;
    }

    .fitness-hero__price strong {
        font-size: 30px;
    }

    .fitness-hero__controls {
        left: 20px;
        right: auto;
        bottom: 28px;
    }

    .membership-panel {
        width: calc(100% - 24px);
        min-height: 610px;
        margin-top: 26px;
        margin-bottom: 38px;
    }

    .membership-panel__body {
        padding: 290px 20px 28px;
    }

    .membership-panel__title,
    .locations-block__title,
    .about-block__title,
    .work-block__title {
        font-size: 34px;
    }

    .studio-block {
        padding: 20px 18px 42px;
    }

    .studio-block__logo {
        align-items: flex-end;
        gap: 12px;
    }

    .studio-block__logo strong {
        font-size: 24px;
    }

    .studio-block__logo em {
        font-size: 22px;
    }

    .studio-block__lead {
        font-size: 20px;
    }

    .studio-card__image {
        height: 260px;
    }

    .locations-block {
        padding: 58px 20px 64px;
    }

    .locations-block__list p {
        display: block;
    }

    .locations-block__list i {
        margin-right: 8px;
    }

    .locations-block__image {
        min-height: 330px;
    }

    .locations-block__caption {
        position: static;
        margin-top: 14px;
        max-width: none;
    }

    .goal-panel {
        min-height: 540px;
        margin: 0 12px;
    }

    .goal-panel__content {
        left: 20px;
        right: 20px;
        bottom: 28px;
    }

    .goal-panel__text {
        font-size: 26px;
    }

    .about-block__intro {
        padding: 58px 18px 45px;
    }

    .about-block__image,
    .about-block__image--wide {
        min-height: 330px;
    }

    .about-block__copy p {
        margin-bottom: 26px;
    }

    .work-block__copy {
        padding: 58px 20px 44px;
    }

    .work-block__media {
        min-height: 410px;
    }

    .fitness-footer {
        padding: 25px 18px 22px;
    }

    .fitness-footer__links {
        gap: 17px 22px;
        margin-bottom: 42px;
    }

    .fitness-footer__main,
    .fitness-footer__bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fitness-footer__apps {
        justify-self: start;
    }

    .fitness-footer__rating {
        flex-wrap: wrap;
    }
}


.fitness-hero__title,
.membership-panel__title,
.locations-block__title,
.about-block__title,
.work-block__title,
.page-hero__title,
.pricing-section__intro h2,
.feature-wall__intro h2,
.editorial-split__copy h2,
.studio-directory__head h2,
.content-band h2,
.timeline-section__head h2,
.service-board__intro h2,
.contact-section__details h2,
.legal-page__content h2 {
    font-family: "Bebas Neue", "Manrope", Arial, sans-serif;
    letter-spacing: .025em;
}

.fitness-footer__main {
    display: flex;
    flex-wrap: wrap;
   
}

.fitness-footer__main .fitness-button {
    justify-self: end;
}

.site-page {
    background: #050505;
}

.page-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: radial-gradient(circle at 18% 10%, rgba(237, 23, 59, .42), transparent 32%), #090909;
    padding: 160px 34px 82px;
}

.page-hero--legal {
    min-height: 470px;
    background: radial-gradient(circle at 12% 12%, rgba(237, 23, 59, .35), transparent 32%), linear-gradient(135deg, #050505 0%, #181818 58%, #080808 100%);
}

.page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.page-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .54) 46%, rgba(0, 0, 0, .15)), linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .82));
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.page-hero__eyebrow,
.section-note {
    display: inline-block;
    color: #ed173b;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.page-hero__title {
    margin: 14px 0 18px;
    color: #ffffff;
    font-size: clamp(24px, 7vw, 72px);
    line-height: .9;
    font-weight: 400;
    max-width: 980px;
}

.page-hero__lead {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.45;
}

.pricing-section,
.feature-wall,
.studio-directory,
.timeline-section,
.service-board,
.contact-section,
.legal-page {
    padding: 92px 34px;
}

.pricing-section,
.studio-directory,
.service-board {
    background: #050505;
    color: #ffffff;
}

.pricing-section__intro,
.feature-wall__intro,
.studio-directory__head,
.timeline-section__head,
.service-board__intro {
    max-width: 960px;
    margin: 0 auto 42px;
    text-align: center;
}

.pricing-section__intro h2,
.feature-wall__intro h2,
.studio-directory__head h2,
.timeline-section__head h2,
.service-board__intro h2,
.contact-section__details h2 {
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: clamp(40px, 4.8vw, 76px);
    line-height: .95;
    font-weight: 400;
}

.pricing-section__intro p,
.feature-wall__intro p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .78);
}

.pricing-grid,
.feature-grid,
.service-board__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.pricing-card,
.feature-card,
.service-board__grid div {
    min-height: 100%;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.pricing-card--featured {
    border-color: rgba(237, 23, 59, .65);
    background: linear-gradient(180deg, rgba(237, 23, 59, .2), rgba(255, 255, 255, .035));
    transform: translateY(-16px);
}

.pricing-card__label {
    color: #ed173b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.pricing-card h3,
.feature-card h3,
.service-board__grid h3 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-card__price {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .8);
    font-weight: 800;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    min-height: 164px;
    margin: 0 0 28px;
    padding-left: 20px;
    color: rgba(255, 255, 255, .82);
}

.pricing-section__fineprint {
    max-width: 1000px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    text-align: center;
}

.feature-wall {
    background: #ffffff;
    color: #1f2e3f;
}

.feature-wall--compact {
    padding-top: 72px;
}

.feature-wall__intro h2,
.feature-wall .feature-card h3 {
    color: #1f2e3f;
}

.feature-wall__intro p,
.feature-wall .feature-card p {
    color: #5c6670;
}

.feature-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: #f5f6f8;
    border-color: rgba(31, 46, 63, .08);
    box-shadow: none;
}

.feature-card i,
.service-board__grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: #ed173b;
    color: #ffffff;
    font-size: 20px;
}

.feature-card p,
.service-board__grid p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 58px;
    align-items: center;
    padding: 96px 34px;
    background: #0b0b0b;
    color: #ffffff;
}

.editorial-split--light {
    background: #ffffff;
    color: #1f2e3f;
}

.editorial-split__copy {
    max-width: 760px;
    justify-self: center;
}

.editorial-split__copy h2 {
    margin: 14px 0 20px;
    color: #ed173b;
    font-size: clamp(40px, 4.4vw, 72px);
    line-height: .96;
    font-weight: 400;
}

.editorial-split__copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .78);
}

.editorial-split--light .editorial-split__copy p {
    color: #59636e;
}

.editorial-split__media {
    margin: 0;
}

.editorial-split__media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.editorial-split__media div {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.45;
}

.editorial-split--light .editorial-split__media div {
    color: #6c7480;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.check-list p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
}

.check-list i {
    color: #ed173b;
    margin-top: 4px;
}

.studio-directory__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1240px;
    margin: 0 auto;
}

.studio-profile {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    color: #1f2e3f;
}

.studio-profile img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.studio-profile div {
    padding: 26px;
}

.studio-profile span {
    color: #ed173b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.studio-profile h3 {
    margin: 10px 0 12px;
    font-size: 29px;
    line-height: 1;
    text-transform: uppercase;
}

.studio-profile p {
    margin: 0;
    color: #5d6874;
}

.content-band {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 44px;
    align-items: start;
    padding: 72px 34px;
    background: #161616;
    color: #ffffff;
}

.content-band--red {
    background: #ed173b;
}

.content-band .section-note {
    color: rgba(255, 255, 255, .72);
}

.content-band h2 {
    margin: 13px 0 0;
    color: #ffffff;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: .92;
    font-weight: 400;
}

.content-band__text p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .86);
}

.timeline-section {
    background: #090909;
    color: #ffffff;
}

.timeline-list {
    display: grid;
    gap: 18px;
    max-width: 1050px;
    margin: 0 auto;
}

.timeline-list div {
    display: grid;
    grid-template-columns: 86px .38fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.timeline-list span {
    color: #ed173b;
    font-size: 30px;
    font-weight: 800;
}

.timeline-list h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
}

.timeline-list p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.service-board__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-board__grid div {
    padding: 30px;
}

.contact-section {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 46px;
    align-items: start;
    background: #ffffff;
    color: #1f2e3f;
}

.contact-section__details h2 {
    color: #1f2e3f;
}

.contact-card {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.contact-card p {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 20px;
    border-radius: 14px;
    background: #f4f5f7;
}

.contact-card i {
    color: #ed173b;
    margin-top: 4px;
}

.contact-card span {
    display: grid;
    gap: 4px;
}

.contact-card strong {
    color: #1f2e3f;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-card a {
    color: #ed173b;
    font-weight: 800;
}

.contact-section__note {
    margin-top: 22px;
    color: #64707c;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    border-radius: 18px;
    background: #0b0b0b;
    color: #ffffff;
    box-shadow: 0 26px 90px rgba(0, 0, 0, .18);
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-field span {
    color: #ed173b;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .06);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    outline: none;
}

.form-field select option {
    color: #111111;
}

.form-field textarea {
    resize: vertical;
    min-height: 142px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(237, 23, 59, .86);
}

.form-field--hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-field {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.45;
}

.check-field input {
    margin-top: 4px;
    accent-color: #ed173b;
}

.check-field a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: underline;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
}

.form-status--success {
    color: #89f2a6;
}

.form-status--error {
    color: #ffb1bd;
}

.legal-page {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 58px;
    background: #ffffff;
    color: #1f2e3f;
}

.legal-page__aside {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 24px;
    border-radius: 16px;
    background: #f4f5f7;
}

.legal-page__aside p {
    margin: 10px 0 0;
    color: #66717d;
    font-size: 15px;
}

.legal-page__content {
    display: grid;
    gap: 26px;
    max-width: 920px;
}

.legal-page__content div {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(31, 46, 63, .12);
}

.legal-page__content h2 {
    margin: 0 0 10px;
    color: #ed173b;
    font-size: clamp(30px, 3vw, 46px);
    line-height: .98;
    font-weight: 400;
}

.legal-page__content p {
    margin: 0;
    color: #596572;
}

.cookie-banner {
    position: fixed;
    z-index: 80;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(8, 8, 8, .96);
    color: #ffffff;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .38);
}

.cookie-banner__title {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.cookie-banner__text {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner__button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 10px 16px;
    background: transparent;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.cookie-banner__button--accept {
    border-color: #ed173b;
    background: #ed173b;
}

@media (max-width: 1080px) {
    .pricing-grid,
    .feature-grid,
    .feature-grid--six,
    .studio-directory__grid,
    .service-board__grid,
    .contact-section,
    .legal-page,
    .editorial-split,
    .content-band {
        grid-template-columns: 1fr;
    }

    .pricing-card--featured {
        transform: none;
    }

    .timeline-list div {
        grid-template-columns: 72px 1fr;
    }

    .timeline-list p {
        grid-column: 2;
    }

    .legal-page__aside {
        position: static;
    }
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 560px;
        padding: 130px 20px 58px;
    }

    .page-hero__title {
        font-size: 54px;
    }

    .pricing-section,
    .feature-wall,
    .studio-directory,
    .timeline-section,
    .service-board,
    .contact-section,
    .legal-page,
    .editorial-split,
    .content-band {
        padding: 58px 20px;
    }

    .pricing-card,
    .feature-card,
    .service-board__grid div,
    .contact-form {
        padding: 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .studio-profile img,
    .editorial-split__media img {
        min-height: 0;
        height: 260px;
    }

    .timeline-list div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .timeline-list p {
        grid-column: auto;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-banner__button {
        flex: 1 1 auto;
    }
}
