@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
        url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-RegularItalic.woff2') format('woff2'),
        url('fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Semibold.woff2') format('woff2'),
        url('fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-SemiboldItalic.woff2') format('woff2'),
        url('fonts/Gilroy-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Thin.woff2') format('woff2'),
        url('fonts/Gilroy-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-ThinItalic.woff2') format('woff2'),
        url('fonts/Gilroy-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-UltraLight.woff2') format('woff2'),
        url('fonts/Gilroy-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-UltraLightItalic.woff2') format('woff2'),
        url('fonts/Gilroy-UltraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lighthaus';
    src: url('fonts/Lighthaus.eot');
    src: local('Lighthaus'),
        url('fonts/Lighthaus.eot?#iefix') format('embedded-opentype'),
        url('fonts/Lighthaus.woff2') format('woff2'),
        url('fonts/Lighthaus.woff') format('woff'),
        url('fonts/Lighthaus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    background-color: #0C0B0B;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #fff;
    text-decoration: none;
}

header {
    color: #fff;
    padding-top: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
}

.header__top span {
    font-family: 'Gilroy';
    font-size: 24px;
    font-weight: 300;
    border: 1px solid rgba(229, 229, 229, 0.15);
    padding: 10px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    font-family: 'Gilroy';
    font-size: 16px;
    font-weight: 300;
}

.nav__link {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__link:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

.hero {
    background-image: url(img/herophot.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero__container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__logo {
    margin-bottom: 20px;
}

.hero__link {
    display: flex;
    justify-content: center;
}

.hero__content a,
.hero__btn {
    display: inline-block;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    background-color: #fff;
    padding: 10px 18px;
    letter-spacing: -0.05em; 
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__content a:hover,
.hero__btn:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__content a:active,
.hero__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.about {
    background-color: #0F0E0E;
    margin-bottom: 100px;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 32px 0;
}

.about__left {
    border: 1px solid rgba(229, 229, 229, 0.15);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    position: relative;
    overflow: hidden;
}

/* Декоративный элемент */
.about__left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.about__quote {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about__quote-icon {
    margin-bottom: 24px;
    opacity: 0.4;
}

.about__quote-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -0.02em;
    max-width: 400px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.about__value-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about__value-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about__value-desc {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.about__right {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__text {
    font-family: 'Gilroy', sans-serif;
    color: #fff;
    border-bottom: 1px solid rgba(229, 229, 229, 0.15);
    padding-bottom: 40px;
}

.about__text p {
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    font-weight: 300;
    line-height: 1.5;
}

.about__title {
    font-size: 72px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
    line-height: 1;
}

.about__intro {
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #fff;
}

.about__description {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.7);
}

.about__safety {
    font-size: 18px !important;
    color: #fff;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    font-family: 'Gilroy', sans-serif;
    color: #fff;
    padding-top: 40px;
    letter-spacing: -0.03em;
}

.about__feature-item {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.about__feature-name {
    white-space: nowrap;
    flex: 0 0 200px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.about__feature-separator {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: 0.7em;
}

.about__feature-desc {
    flex: 1;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.portfolio {
    margin-bottom: 100px;
}

.portfolio__category {
    margin-bottom: 54px;
}

.carousel {
    position: relative;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Обёртка для скрытия выходящих за пределы слайдов */
.carousel__wrapper {
    overflow: hidden;
    width: 100%;
    max-width: calc(274px * 4 + 16px * 3); /* 4 слайда + 3 промежутка */
}

.carousel__track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 16px;
    padding: 10px 0;
}

.carousel__slide {
    width: 274px;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    font-size: 32px;
    width: 40px;
    height: 40px;
    box-shadow: none;
    border-radius: 0;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__btn:hover {
    opacity: 1 !important;
}

.carousel__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel__btn:disabled:hover {
    opacity: 0.3 !important;
}

.carousel__btn--prev {
    left: -16px; /* 40px (ширина кнопки) + 16px (отступ) */
}

.carousel__btn--next {
    right: -16px; /* 40px (ширина кнопки) + 16px (отступ) */
}

.portfolio__title {
    font-family: 'Gilroy';
    font-weight: 300;
    font-size: 48px;
    color: #fff;
}

.pricing {
    margin-bottom: 50px;
    background-color: #0F0E0E;
    padding: 32px 0;
}

.pricing__content {
    font-family: 'Gilroy';
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.05em;
}

.pricing__title {
    line-height: 114%;
    font-size: 48px;
    margin-bottom: 30px;
}

.pricing__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
}

.pricing__steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    padding: 24px;
    border: 1px solid rgba(229, 229, 229, 0.15);
    max-width: 380px;
    transition: all 0.3s ease;
    background:  #0F0E0E;
}

.step:hover {
    background: rgba(31, 31, 31, 0.15);
    transform: translateY(-5px);
    border-color: rgba(229, 229, 229, 0.3);
}

.step__number {
    display: block;
    font-family: 'Lighthaus';
    font-size: 48px;
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease;
}

.step__title {
    font-family: 'Lighthaus';
    margin-bottom: 90px;
    transition: color 0.3s ease;
}

.step:hover .step__title {
    color: #00c8ff;
}

.step__description {
    font-family: 'Gilroy';
    font-size: 14px;
}

.booking__title {
    font-family: 'Gilroy';
    font-weight: 300;
    font-size: 48px;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
    color: #fff;
}

.booking__content {
    margin-bottom: 50px;
}

.booking__contacts {
    display: flex;
    justify-content: space-between;
    color: #fff;
    gap: 20px;
}

.contact-item {
    border: 1px solid rgba(229, 229, 229, 0.15);
    padding: 18px 365px 18px 18px;
    display: flex;
    align-items: center;
    font-family: 'Gilroy';
    font-size: 18px;
    font-weight: 300;
}

.contact-item img {
    margin-right: 18px;
}

.contact-item__label {
    margin-right: 5px;
}

.contact-item__value {
    white-space: nowrap;
}

.price {
    background-color: #0F0E0E;
    padding: 32px 0;
    margin-bottom: 130px;
}

.price__title {
    font-family: 'Gilroy';
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
}

.price__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .price__list {
        grid-template-columns: 1fr 1fr;
    }
}

.price-item {
    border: 1px solid rgba(229, 229, 229, 0.15);
    color: #fff;
    letter-spacing: -0.05em;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    min-height: 120px;
    position: relative;
    background-color:  #0F0E0E;
    transition: all 0.3s ease;
}

.price-item__value {
    margin-top: auto;
    align-self: flex-end;
}

.price-item:hover {
    background-color: rgba(31, 31, 31, 0.15);
    transform: translateY(-5px);
    border-color: rgba(229, 229, 229, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.price-item:hover .price-item__value {
    color: #00c8ff;
}

.price-item__title {
    font-family: 'Lighthaus';
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.price-item__desc {
    font-family: 'Gilroy';
    font-size: 14px;
    font-weight: 300;

}

.price-item__value {
    font-family: 'Lighthaus';
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    white-space: nowrap;
}

.price__note {
    font-family: 'Gilroy';
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

footer {
    letter-spacing: -0.05em;
    font-family: 'Gilroy';
}

.footer__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer__text {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}

.footer__title {
    font-size: 36px;
    color: #fff;
    font-weight: 300;
}

.footer__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__note {
        text-align: left;
    }
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer__wrapper {
        flex-direction: row;
    }
}

.footer__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__item {
    border: 1px solid rgba(229, 229, 229, 0.15);
    padding: 18px;
    display: flex;
    align-items: center;
    color: #fff;
}

.footer__icon {
    margin-right: 18px;
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__label {
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    white-space: nowrap;
}

.footer__value {
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer__value:hover {
    opacity: 0.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(229, 229, 229, 0.15);
    padding: 32px 0;
}

.footer__copyright {
    font-family: 'Gilroy', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer__age {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    border: 1px solid rgba(229, 229, 229, 0.15);
    padding: 10px;
}

/* Стили для мобильных устройств */
@media (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__left {
        padding: 40px 30px;
    }

    .about__quote-text {
        font-size: 24px;
    }

    .about__title {
        font-size: 60px;
    }

    .about__feature-name {
        flex: 0 0 180px;
    }

    .pricing__steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step {
        max-width: 400px;
        text-align: center;
    }

    .step__title {
        margin-bottom: 20px;
    }

    .booking__contacts {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .contact-item {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }

    .contact-item__label,
    .contact-item__value {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 80px;
    }

    .header__top {
        margin-bottom: 80px;
    }

    .nav {
        gap: 24px;
        font-size: 14px;
    }

    .hero {
        min-height: 400px;
        margin-bottom: 80px;
    }

    .hero__logo {
        margin-bottom: 16px;
    }

    .hero__btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .about {
        margin-bottom: 80px;
    }

    .about__content {
        padding: 24px 0;
    }

    .about__left {
        padding: 35px 25px;
    }

    .about__quote {
        margin-bottom: 40px;
    }

    .about__quote-text {
        font-size: 20px;
    }

    .about__values {
        gap: 24px;
    }

    .about__text {
        padding-bottom: 30px;
    }

    .about__text p {
        margin-bottom: 20px;
    }

    .about__title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .about__intro {
        font-size: 20px !important;
    }

    .about__description {
        font-size: 16px !important;
    }

    .about__safety {
        font-size: 16px !important;
    }

    .about__features {
        padding-top: 30px;
        gap: 20px;
    }

    .about__feature-item {
        gap: 16px;
        flex-direction: column;
    }

    .about__feature-name {
        flex: none;
        font-size: 16px;
    }

    .about__feature-desc {
        font-size: 15px;
    }

    .pricing {
        margin-bottom: 60px;
    }

    .pricing__title {
        font-size: 36px;
        line-height: 1.2;
    }

    .pricing__subtitle {
        font-size: 14px;
    }

    .pricing__steps {
        flex-direction: column;
        gap: 30px;
    }

    .step {
        padding: 20px;
        max-width: 100%;
        text-align: center;
    }

    .step__number {
        font-size: 36px;
    }

    .step__title {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .step__description {
        font-size: 13px;
    }

    .booking {
        margin-bottom: 60px;
    }

    .booking__title {
        font-size: 36px;
    }

    .booking__contacts {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        padding: 15px;
        flex-direction: column;
        gap: 8px;
    }

    .contact-item__label,
    .contact-item__value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 90%;
    }

    header {
        padding-top: 60px;
    }

    .header__top {
        margin-bottom: 60px;
    }

    .header__top span {
        font-size: 20px;
        padding: 8px;
    }

    .nav {
        gap: 16px;
        font-size: 13px;
    }

    .hero {
        min-height: 320px;
        margin-bottom: 60px;
    }

    .hero__btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .about {
        margin-bottom: 60px;
    }

    .about__content {
        padding: 16px 0;
    }

    .about__left {
        padding: 30px 20px;
    }

    .about__quote-text {
        font-size: 18px;
    }

    .about__values {
        gap: 20px;
    }

    .about__value-title {
        font-size: 18px;
    }

    .about__value-desc {
        font-size: 16px;
    }

    .about__text {
        padding-bottom: 20px;
    }

    .about__text p {
        margin-bottom: 16px;
    }

    .about__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about__intro {
        font-size: 18px !important;
    }

    .about__description {
        font-size: 14px !important;
    }

    .about__safety {
        font-size: 14px !important;
    }

    .about__features {
        padding-top: 20px;
        gap: 16px;
    }

    .about__feature-name {
        font-size: 14px;
    }

    .about__feature-desc {
        font-size: 13px;
    }

    .pricing {
        margin-bottom: 50px;
        padding: 24px 0;
    }

    .pricing__title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .pricing__subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .pricing__steps {
        flex-direction: column;
        gap: 24px;
    }

    .step {
        padding: 18px;
        max-width: 100%;
    }

    .step__number {
        font-size: 28px;
    }

    .step__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step__description {
        font-size: 12px;
    }

    .booking {
        margin-bottom: 50px;
    }

    .booking__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .booking__contacts {
        flex-direction: column;
        gap: 16px;
    }

    .contact-item {
        padding: 12px;
        flex-direction: column;
        gap: 6px;
    }

    .contact-item img {
        margin-right: 0px;
        margin-bottom: 8px;
    }

    .contact-item__label,
    .contact-item__value {
        font-size: 14px;
    }
}