/* ===== SEO LANDING BASE ===== */

.landing-page {
    background: #fff;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page__inner {
    max-width: 1280px;
}

.landing-section {
    margin: 0 0 76px;
}

.landing-section__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===== HERO ===== */

.landing-hero {
    margin: 0 0 70px;
    text-align: center;
}

.landing-hero .h2 {
    margin-bottom: 26px;
}

.landing-hero__text {
    max-width: 920px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 18px;
    line-height: 1.65;
}

.landing-hero__text p {
    margin: 0 0 14px;
}

.landing-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 24px;

    border-radius: 10px;
    border: 1px solid #111;

    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    text-align: center;

    cursor: pointer;
    box-sizing: border-box;

    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-btn:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
}

.landing-btn--yellow {
    background: #F1FF0A;
    border-color: #F1FF0A;
    color: #333 !important;
}

.landing-btn--yellow:hover {
    background: #e6f000;
    border-color: #111;
    color: #333 !important;
}

.landing-btn--dark {
    background: #111;
    border-color: #111;
    color: #fff !important;
}

.landing-btn--dark:hover {
    background: #fff;
    color: #111 !important;
}

.landing-btn--light {
    background: #fff;
    border-color: #ddd;
    color: #111 !important;
}

.landing-btn--light:hover {
    border-color: #111;
    background: #fff;
    color: #111 !important;
}

/* ===== HALLS ===== */

.landing-halls__list {
    display: grid;
    gap: 34px;
}

.landing-hall-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: stretch;

    padding: 26px;

    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fff;

    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.landing-hall-card__media {
    min-width: 0;
}

.landing-hall-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-hall-card__title {
    margin: 0 0 16px;

    color: #111;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
}

.landing-hall-card__price {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;

    margin: 0 0 18px;
    padding: 10px 16px;

    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;

    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.landing-hall-card__price:before {
    content: "Стоимость:";
    color: #777;
    font-size: 15px;
    font-weight: 400;
}

.landing-hall-card__text {
    margin: 0 0 24px;

    color: #666;
    font-size: 17px;
    line-height: 1.65;
}

.landing-hall-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== HALL MINI SLIDER ===== */

.landing-hall-slider {
    position: relative;
    overflow: hidden;

    border-radius: 14px;
    background: #f5f5f5;
}

.landing-hall-slider__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.landing-hall-slider__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.landing-hall-slider__slide img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
}

.landing-hall-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);

    background: rgba(17, 17, 17, 0.72);
    color: #fff;

    font-size: 42px;
    line-height: 1;
    font-weight: 300;

    cursor: pointer;

    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.landing-hall-slider__arrow:hover {
    background: rgba(17, 17, 17, 0.95);
    transform: translateY(-50%) scale(1.04);
}

.landing-hall-slider__arrow--prev {
    left: 16px;
}

.landing-hall-slider__arrow--next {
    right: 16px;
}

.landing-hall-slider.is-single .landing-hall-slider__arrow {
    display: none;
}

/* ===== EXAMPLES ===== */

.landing-examples__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.landing-example {
    min-width: 0;
}

.landing-example__image {
    display: block;
    overflow: hidden;

    border-radius: 14px;
    background: #f5f5f5;

    text-decoration: none !important;
}

.landing-example__image img {
    display: block;

    width: 100%;
    height: 310px;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.landing-example__image:hover img {
    transform: scale(1.035);
}

.landing-example__caption {
    margin-top: 12px;

    color: #111;
    font-size: 17px;
    line-height: 1.35;
    text-align: center;
}

.landing-example__hall {
    margin-top: 4px;

    color: #777;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

/* ===== SERVICES / EQUIPMENT / PROPS ===== */

.landing-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.landing-service {
    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 24px;

    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
}

.landing-service__image {
    display: block;
    overflow: hidden;

    margin: 0 0 18px;

    border-radius: 12px;
    background: #f5f5f5;

    text-decoration: none !important;
}

.landing-service__image img {
    display: block;

    width: 100%;
    height: 210px;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.landing-service__image:hover img {
    transform: scale(1.035);
}

.landing-service__title {
    margin: 0 0 10px;

    color: #111;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
}

.landing-service__text {
    margin: 0 0 18px;

    color: #666;
    font-size: 16px;
    line-height: 1.55;
}

.landing-service__link {
    margin-top: auto;

    color: #111 !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== ROUTE ===== */

.landing-route__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;

    padding: 30px;

    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
}

.landing-route__content {
    color: #555;
    font-size: 17px;
    line-height: 1.65;
}

.landing-route__content p {
    margin: 0 0 12px;
}

.landing-route__content p:last-child {
    margin-bottom: 0;
}

.landing-route__actions {
    display: grid;
    gap: 12px;
}

/* ===== FAQ ===== */

.landing-faq__list {
    border-top: 1px solid #e5e5e5;
}

.landing-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.landing-faq-item__head {
    position: relative;

    width: 100%;
    padding: 24px 70px 24px 0;

    border: 0;
    background: transparent;

    color: #111;
    font: inherit;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
    text-align: left;

    cursor: pointer;
}

.landing-faq-item__head:before,
.landing-faq-item__head:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;

    width: 34px;
    height: 2px;

    background: #111;

    transition: transform 0.2s ease;
}

.landing-faq-item__head:after {
    transform: rotate(90deg);
}

.landing-faq-item.is-open .landing-faq-item__head:after {
    transform: rotate(0deg);
}

.landing-faq-item__body {
    display: none;

    padding: 0 70px 26px 0;

    color: #555;
    font-size: 17px;
    line-height: 1.65;
}

.landing-faq-item.is-open .landing-faq-item__body {
    display: block;
}

.landing-faq-item__body p {
    margin: 0 0 12px;
}

.landing-faq-item__body p:last-child {
    margin-bottom: 0;
}

/* ===== RULES ===== */

.landing-rules__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;

    padding: 30px;

    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.landing-rules__text {
    color: #555;
    font-size: 17px;
    line-height: 1.65;
}

.landing-rules__text p {
    margin: 0 0 14px;
}

.landing-rules__text ul {
    margin: 0;
    padding-left: 22px;
}

.landing-rules__text li {
    margin: 0 0 8px;
}

.landing-rules__actions {
    display: flex;
    justify-content: flex-end;
}

/* ===== FINAL CTA ===== */

.landing-final {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 44px 36px;

    border-radius: 22px;
    background: #f8f8f8;

    text-align: center;
}

.landing-final p {
    max-width: 760px;
    margin: 0 auto 28px;

    color: #555;
    font-size: 18px;
    line-height: 1.65;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
    .landing-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-examples__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .landing-hall-card {
        grid-template-columns: 1fr;
    }

    .landing-hall-slider__slide img {
        height: 320px;
    }

    .landing-route__card,
    .landing-rules__card {
        grid-template-columns: 1fr;
    }

    .landing-rules__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .landing-section {
        margin-bottom: 54px;
    }

    .landing-section__title {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .landing-hero {
        margin-bottom: 50px;
    }

    .landing-hero__text {
        font-size: 16px;
    }

    .landing-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .landing-btn {
        width: 100%;
    }

    .landing-hall-card {
        padding: 18px;
        border-radius: 14px;
    }

    .landing-hall-slider__slide img {
        height: 260px;
    }

    .landing-hall-slider__arrow {
        width: 40px;
        height: 40px;
        font-size: 36px;
    }

    .landing-hall-slider__arrow--prev {
        left: 10px;
    }

    .landing-hall-slider__arrow--next {
        right: 10px;
    }

    .landing-hall-card__title {
        font-size: 25px;
    }

    .landing-hall-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .landing-examples__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .landing-example__image img {
        height: 240px;
    }

    .landing-services__grid {
        grid-template-columns: 1fr;
    }

    .landing-route__card,
    .landing-rules__card {
        padding: 22px;
        border-radius: 14px;
    }

    .landing-route__actions {
        grid-template-columns: 1fr;
    }

    .landing-faq-item__head {
        padding: 20px 52px 20px 0;
        font-size: 20px;
    }

    .landing-faq-item__head:before,
    .landing-faq-item__head:after {
        width: 28px;
    }

    .landing-faq-item__body {
        padding: 0 0 22px;
        font-size: 16px;
    }

    .landing-final {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .landing-final p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .landing-examples__grid {
        grid-template-columns: 1fr;
    }

    .landing-example__image img {
        height: 300px;
    }

    .landing-service__image img {
        height: 220px;
    }
}