body.mini-services-page {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: var(--sans);
    overflow-x: hidden;
}

body.mini-services-page a {
    color: inherit;
    text-decoration: none;
}

.services-page {
    padding: 14px 0 62px;
}

.services-hero {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto 38px;
    text-align: center;
}

.services-hero h1 {
    margin: 0;
    color: var(--plum);
    font-family: var(--serif);
    font-size: clamp(54px, 5.4vw, 72px);
    font-weight: 700;
    line-height: 0.96;
}

.services-hero p {
    margin: 14px 0 0;
    color: rgba(39, 22, 35, 0.82);
    font-family: var(--serif);
    font-size: clamp(22px, 2.1vw, 29px);
    font-weight: 600;
    line-height: 1.25;
}

.services-hero span {
    color: var(--pink);
}

.service-grid {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 28px 30px;
    border: 1px solid rgba(247, 37, 104, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(116, 37, 70, 0.08);
}

.service-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ff7f70;
    background: #fff0ef;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h2 {
    margin: 0;
    color: var(--plum);
    font-family: var(--serif);
    font-size: clamp(29px, 2.4vw, 35px);
    line-height: 1;
}

.service-card__price {
    margin: 0;
    padding: 10px 20px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ff5b8b, var(--pink));
    box-shadow: 0 14px 24px rgba(247, 37, 104, 0.2);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.service-card__price-wrap {
    align-self: center;
    margin: 16px 0 24px;
    text-align: center;
}

.service-card__tax {
    margin: 7px 0 0;
    color: rgba(74, 22, 63, 0.58);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.service-card__image {
    display: block;
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.service-card ul {
    flex: 1;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    margin-top: 10px;
    padding-left: 21px;
    color: #433540;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.42;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a5b, var(--pink));
}

.service-card__choose {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, #ff5fa2, var(--pink));
    box-shadow: 0 14px 28px rgba(247, 37, 104, 0.2);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card__choose:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(247, 37, 104, 0.28);
}

.service-travel-note {
    position: relative;
    width: min(920px, calc(100% - 56px));
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 30px;
    border: 1px solid rgba(247, 37, 104, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 226, 222, 0.68), transparent 34%),
        linear-gradient(135deg, rgba(255, 250, 248, 0.96), rgba(255, 245, 240, 0.88));
    box-shadow: 0 18px 46px rgba(116, 37, 70, 0.07);
    text-align: left;
}

.service-travel-note__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--pink);
    background: linear-gradient(135deg, #fff0f5, #ffe9dc);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 12px 24px rgba(247, 37, 104, 0.12);
}

.service-travel-note__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-travel-note strong,
.service-travel-note span:not(.service-travel-note__icon) {
    display: block;
}

.service-travel-note strong {
    color: var(--plum);
    font-family: var(--serif);
    font-size: clamp(23px, 2.1vw, 29px);
    font-weight: 700;
    line-height: 1.05;
}

.service-travel-note span:not(.service-travel-note__icon) {
    margin-top: 6px;
    color: rgba(67, 53, 64, 0.78);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.service-gallery {
    position: relative;
    width: min(1180px, calc(100% - 56px));
    margin: 34px auto 0;
    min-height: 128px;
    padding-top: 18px;
}

.service-gallery__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
}

.service-gallery__title {
    position: relative;
    min-width: 250px;
    min-height: 132px;
    display: flex;
    align-items: center;
}

.service-gallery__title a {
    display: inline-block;
    border-radius: 18px;
    transition: transform 180ms ease, filter 180ms ease;
}

.service-gallery__title a:hover,
.service-gallery__title a:focus-visible {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(116, 37, 70, 0.12));
}

.service-gallery__art {
    display: block;
    width: 250px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.service-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-gallery__item {
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    cursor: zoom-in;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-gallery__item:hover,
.service-gallery__item:focus-visible {
    transform: translateY(-3px);
    outline: none;
}

.service-gallery__grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.65 / 1;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(74, 22, 63, 0.1);
}

.service-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(32, 14, 25, 0.78);
}

.service-lightbox[hidden] {
    display: none;
}

.service-lightbox img {
    max-width: min(960px, 92vw);
    max-height: 82vh;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.service-lightbox__close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--pink);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
}

@media (max-width: 980px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-gallery {
        padding-top: 8px;
    }

    .service-travel-note {
        width: min(720px, calc(100% - 40px));
    }

    .service-gallery__content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

@media (max-width: 620px) {
    .services-page {
        padding-top: 14px;
    }

    .services-hero {
        width: calc(100% - 28px);
        margin-bottom: 28px;
    }

    .services-hero h1 {
        font-size: 48px;
    }

    .services-hero p {
        font-size: 22px;
    }

    .service-grid,
    .service-travel-note,
    .service-gallery {
        width: calc(100% - 28px);
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 24px 20px 26px;
        border-radius: 24px;
    }

    .service-card h2 {
        font-size: 30px;
    }

    .service-card__price {
        font-size: 22px;
    }

    .service-travel-note {
        margin-top: 24px;
        flex-direction: column;
        gap: 12px;
        padding: 22px 18px;
        border-radius: 24px;
        text-align: center;
    }

    .service-travel-note__icon {
        width: 48px;
        height: 48px;
    }

    .service-travel-note strong {
        font-size: 24px;
    }

    .service-travel-note span:not(.service-travel-note__icon) {
        font-size: 15px;
    }

    .service-gallery {
        margin-top: 28px;
    }

    .service-gallery__title {
        min-width: 0;
        min-height: 94px;
    }

    .service-gallery__art {
        width: 180px;
    }

    .service-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
