* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background-color: #f8f2e6;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 80px;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-link {
    font-size: 11px;
    color: #999;
    text-transform: lowercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.profile-image img {
    height: auto;
    width: auto;
    max-height: 50px;
    display: block;
    transition: all 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.brand-name {
    font-size: 18px;
    font-weight: 300;
    color: white;
    letter-spacing: 1px;
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.languages {
    display: flex;
    gap: 12px;
}

.lang {
    color: white;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    opacity: 0.6;
}

.lang:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang.active {
    opacity: 1;
    font-weight: 600;
    text-decoration: underline;
}

.contact-btn {
    background-color: #fff;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-logo {
    height: 180px;
    width: auto;
    margin-bottom: 12px;
    display: block;
    object-fit: contain;
}

.brand-jko {
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: -25px;
    line-height: 1.3;
    font-family: 'Bodoni Moda', 'Didot', 'Bodoni MT', Didot, serif;
    text-align: center;
}

.brand-gallery {
    font-size: 96px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Bodoni Moda', 'Didot', 'Bodoni MT', Didot, serif;
    text-align: center;
}

.brand-tagline {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.brand-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.32em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 12px 25px;
        height: 70px;
    }

    .header-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 11px;
    }

    .brand-logo {
        height: 140px;
    }

    .brand-jko {
        font-size: 56px;
    }

    .brand-gallery {
        font-size: 76px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: white;
    display: block;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('src/img/menu-mobile-pict.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.1);
    z-index: 0;
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 20px 40px;
    text-align: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mobile-brand {
    font-size: 48px;
    font-weight: 400;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-family: 'Bodoni Moda', 'Didot', 'Bodoni MT', Didot, serif;
    line-height: 55px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.mobile-nav-link:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

.mobile-contact-btn {
    background-color: #e8e6e1;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}


.mobile-instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-instagram:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    display: block;
}

/* Intro Section */
.intro-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: rgba(49, 48, 46, 1);
}

/* Combined Section */
.combined-section {
    padding: 0 40px 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Feature Section */
.feature-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section-reverse .feature-content {
    direction: rtl;
}

.feature-section-reverse .feature-text,
.feature-section-reverse .feature-image {
    direction: ltr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 60px;
}

.feature-title {
    font-family: serif;
    font-size: 30px;
    font-weight: 500;
    color: rgba(49, 48, 46, 1);
    letter-spacing: 1px;
    line-height: 1.3;
}


.feature-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
}

.feature-btn,
.grid-btn {
    background: white;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
}


.feature-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.feature-image-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.feature-image-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.feature-image-slide.active {
    opacity: 1;
    z-index: 1;
}


/* Grid Section */
.grid-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.combined-section .feature-content {
    margin-bottom: 40px;
}

.combined-section .grid-container {
    margin-top: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 550px 550px;
    gap: 0;
}

.grid-item {
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.grid-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.grid-title {
    font-family: serif;
    font-size: 30px;
    font-weight: 500;
    color: rgba(49, 48, 46, 1);
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: left !important;
}

.grid-item:nth-child(4) .grid-title,
.grid-item[data-translate="gridTitle2"],
h3[data-translate="gridTitle2"] {
    text-align: left !important;
}


.grid-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
}


/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        padding: 0 64px;
    }

    .intro-section {
        padding: 80px 64px;
    }

    .intro-title {
        font-size: 32px;
        letter-spacing: 0.04em;
    }

    .feature-section {
        padding: 80px 64px;
    }

    .feature-content {
        gap: 60px;
    }

    .feature-title {
        font-size: 32px;
    }

    .feature-image {
        height: 375px;
    }

    .combined-section {
        padding: 80px 64px;
    }

    .combined-section .feature-content {
        margin-bottom: 0;
    }

    .grid-section {
        padding: 80px 64px;
    }

    .grid-container {
        grid-template-rows: 450px 450px;
    }

    .grid-image {
        height: 450px;
    }

    .grid-text {
        padding: 60px 40px;
    }

    .grid-title {
        font-size: 32px;
        text-align: left !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header {
        display: none;
    }

    .hero-content {
        padding: 0 32px;
    }

    .brand-logo {
        height: 120px;
        margin-bottom: 12px;
    }

    .brand-jko {
        font-size: 58px;
        margin-bottom: -10px;
    }

    .brand-gallery {
        font-size: 58px;
        margin-bottom: 12px;
    }

    .brand-tagline {
        font-size: 24px;
        letter-spacing: 0.04em;
        margin-bottom: 12px;
    }

    .brand-subtitle {
        font-size: 12px;
        letter-spacing: 0.32em;
        margin-bottom: 0;
    }

    .intro-section {
        padding: 40px 32px;
        text-align: center;
    }

    .intro-title {
        font-size: 24px;
        letter-spacing: 0.04em;
        margin-bottom: 30px;
        text-align: center;
    }

    .intro-text {
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
    }

    .feature-section {
        padding: 40px 32px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-section-reverse .feature-content {
        direction: ltr;
    }

    .feature-image {
        order: 1;
    }

    .feature-text {
        order: 2;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .feature-text .feature-title {
        order: 1;
    }

    .feature-text .feature-description {
        order: 2;
    }

    .feature-text .feature-btn {
        order: 3;
        align-self: stretch;
        width: 100%;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.02em;
        text-align: justify;
    }

    .feature-image {
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        aspect-ratio: 4/3;
    }

    .feature-image-slides {
        position: absolute;
        inset: 0;
    }

    .feature-image-slide {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .combined-section {
        padding: 40px 32px;
    }

    .combined-section .feature-content {
        margin-bottom: 40px;
    }

    .grid-section {
        padding: 40px 32px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 40px;
        min-height: auto;
        height: auto;
    }

    .grid-item {
        min-height: auto;
    }

    .grid-image {
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .grid-image img {
        object-fit: contain;
        width: 100%;
        height: auto;
        display: block;
    }

    .grid-text {
        padding: 40px 0;
        align-items: flex-start;
    }

    .grid-btn {
        align-self: stretch;
        width: 100%;
    }

    /* Виправлення порядку останнього блоку: фото перед текстом */
    .grid-item:nth-child(3) {
        order: 4;
    }

    .grid-item:nth-child(4) {
        order: 3;
    }

    .grid-title {
        font-size: 24px;
        text-align: left !important;
        width: 100%;
    }
    
    .grid-text {
        text-align: left;
    }

    .grid-description {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.02em;
        text-align: justify;
    }
}

/* About Section */
.about-section {
    padding: 0px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.about-logo-overlay {
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: 2;
    background: transparent;
    padding: 0;
}

.about-logo {
    height: 55px;
    width: auto;
    display: block;
}

.about-main-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    height: calc(100% + 40px);
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-bottom: -90px;
    margin-top: 40px;
}

.about-text-wrapper {
    background-color: white;
    display: flex;
    align-items: center;
    padding: 50px 50px;
    position: relative;
    z-index: 1;
    margin-left: -60px;
    margin-top: 40px;
    min-height: calc(500px + 40px);
}

.about-text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
}

.about-title {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
}

.about-name {
    font-weight: 400;
    font-size: 38px;
}

.about-role {
    font-weight: 400;
    font-size: 38px;
}

.about-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
    max-width: 500px;
}

.about-btn {
    background: #f8f2e6;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    font-family: 'Montserrat', sans-serif;
}


.book-section {
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
}

.book-image {
    position: absolute;
    left: 0px;
    top: -17px;
    width: 80px;
    z-index: 1;
}

.book-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.book-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(49, 48, 46, 1);
    text-align: left;
    font-weight: 300;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
    margin-left: 100px;
    max-width: calc(100% - 100px);
}

.book-title {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    color: rgba(49, 48, 46, 1);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-section {
        padding: 80px 64px;
    }

    .about-content {
        min-height: 500px;
    }

    .about-main-image {
        min-height: 500px;
    }

    .about-text-wrapper {
        padding: 50px 40px;
    }

    .about-title {
        font-size: 32px;
        letter-spacing: 0.04em;
        line-height: 100%;
    }

    .about-name {
        font-size: 32px;
    }

    .about-role {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-image-wrapper {
        margin-top: 0;
    }

    .about-logo-overlay {
        top: 20px;
        left: 20px;
    }

    .about-logo {
        height: 35px;
    }

    .about-main-image {
        min-height: 400px;
        overflow: visible;
        width: 100%;
    }

    .about-main-image img {
        margin-bottom: -80px;
        margin-top: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: none;
        display: block;
    }

    .about-text-wrapper {
        padding: 40px 32px;
        margin-left: 0;
        margin-right: 0;
        margin-top: -60px;
        position: relative;
        z-index: 1;
    }

    .about-text-content {
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .about-title {
        font-size: 28px;
        letter-spacing: 0.04em;
        line-height: 100%;
    }

    .about-name {
        font-size: 28px;
    }

    .about-role {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-align: justify;
    }

    .about-btn {
        align-self: stretch;
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 150px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.testimonial-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-names {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    margin: 0;
}

.testimonial-text {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(49, 48, 46, 1);
    max-width: 700px;
    margin: 0;
}

.testimonial-btn {
    background: white;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}


/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 64px;
    }

    .testimonial-text {
        font-size: 22px;
        line-height: 24px;
        letter-spacing: -0.02em;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 32px;
    }

    .testimonial-content {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-text {
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .testimonial-content {
        gap: 25px;
    }

    .testimonial-photo {
        width: 120px;
        height: 120px;
    }

    .testimonial-names {
        font-size: 11px;
        letter-spacing: 0.24em;
        line-height: 100%;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: -0.02em;
    }

    .testimonial-btn {
        width: 100%;
    }

    .book-section {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .book-image {
        position: relative;
        left: auto;
        top: auto;
        width: 80px;
        margin: 0;
    }

    .book-text {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }
}

/* CTA Section */
.cta-section {
    width: 100%;
    box-sizing: border-box;
}

.cta-header {
    background-color: #000;
    padding: 200px 40px;
    text-align: center;
    position: relative;
    z-index: 0;
}

.cta-slogan {
    color: white;
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.cta-line1,
.cta-line2 {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}

.cta-script {
    font-family: 'Corinthia', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 78px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: none;
    display: inline;
    margin: 0;
    vertical-align: baseline;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #faf9f7;
    position: relative;
}

.cta-image-wrapper {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    padding-right: 60px;
}

.cta-image-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-family: serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.cta-logo-text {
    display: block;
}

.cta-image {
    width: 60%;
    max-width: 420px;
    height: auto;
    position: relative;
    margin-top: -150px;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.cta-text-wrapper {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    background-color: #fff;
}

.cta-title {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    margin: 0;
    text-align: left;
}

.cta-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
    margin: 0;
}

.cta-btn {
    background: #f8f2e6;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
}


/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .cta-header {
        padding: 100px 64px;
    }

    .cta-line1,
    .cta-line2 {
        font-size: 40px;
    }

    
    
    .cta-script {
        font-size: 65px;
        letter-spacing: 0.02em;
        line-height: 100%;
        display: inline;
        margin: 0;
        vertical-align: baseline;
    }

    .cta-text-wrapper {
        padding: 80px 60px;
    }

    .cta-title {
        font-size: 26px;
        letter-spacing: 0.04em;
        line-height: 100%;
    }

    .cta-image-wrapper {
        padding: 30px;
        padding-right: 50px;
        justify-content: flex-end;
    }

    .cta-image {
        width: 55%;
        max-width: 380px;
        margin-top: -120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-header {
        padding: 100px 32px;
    }

    .cta-line1,
    .cta-line2 {
        font-size: 28px;
        letter-spacing: 0.02em;
    }

    .cta-script {
        font-size: 50px;
        letter-spacing: 0.02em;
        line-height: 100%;
        display: inline;
        margin: 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-image-wrapper {
        padding: 20px;
        justify-content: center;
    }

    .cta-image {
        width: 70%;
        max-width: 100%;
        margin-top: -80px;
    }

    .cta-image-overlay {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
        text-align: center;
    }

    .cta-text-wrapper {
        padding: 60px 32px;
        gap: 30px;
    }

    .cta-title {
        font-size: 22px;
        letter-spacing: 0.04em;
        line-height: 100%;
        text-align: center;
    }

    .cta-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-align: justify;
    }

    .cta-btn {
        align-self: stretch;
        width: 100%;
    }
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    margin: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background-color: #fff;
}

.locations-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    color: rgba(49, 48, 46, 1);
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 60px 0;
    letter-spacing: 2px;
}

.locations-gallery {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.locations-gallery:active {
    cursor: grabbing;
}

.locations-gallery::-webkit-scrollbar {
    display: none;
}

.locations-gallery-container {
    display: flex;
    gap: 20px;
    padding: 0;
    width: max-content;
    min-width: 100%;
    box-sizing: border-box;
}

.location-item {
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    position: relative;
    overflow: hidden;
    user-select: none;
    pointer-events: auto;
}

.location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.location-city {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.locations-cities {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.locations-cities-container {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: max-content;
    animation: locations-cities-scroll 60s linear infinite;
}

@keyframes locations-cities-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.city-name {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    white-space: nowrap;
}

.locations-text-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.location-text-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.decorative-image {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    margin-top: -15px;
    position: relative;
    left: 10px;
}

.decorative-image img {
    width: 100%;
    height: auto;
    display: block;
}

.decorative-line svg {
    width: 100%;
    height: 100%;
    display: block;
}

.location-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(49, 48, 46, 1);
    font-weight: 300;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .locations-section {
        padding: 80px 0;
    }

    .locations-title {
        font-size: 40px;
    }

    .location-item {
        width: 240px;
        height: 350px;
    }

    .locations-text-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }

    .locations-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .location-item {
        width: 200px;
        height: 300px;
    }

    .locations-gallery-container {
        padding: 0;
    }

    .locations-cities-container {
        gap: 20px;
    }

    .city-name {
        font-size: 14px;
        letter-spacing: 0.12em;
        line-height: 100%;
    }

    .locations-text-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 32px;
    }

    .location-text-block p {
        font-size: 14px;
    }
}

/* Services Section: білий фон на всю ширину, контент — стандартна ширина */
.services-section {
    padding: 100px 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-main-image {
    width: 70%;
    height: 550px;
    overflow: hidden;
    margin-left: auto;
    margin-top: -120px;
    position: relative;
}

.services-main-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services-main-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-main-slide.active {
    opacity: 1;
    z-index: 1;
}

.services-text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: 30%;
    max-width: 70%;
    margin-top: 180px;
}

.services-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
    margin: 0;
}

.services-btn {
    background: #f8f2e6;
    color: rgba(49, 48, 46, 1);
    border: none;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
    border-radius: 2px;
}


.services-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
}

.services-title {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    margin: 0;
    text-align: left;
}

.services-small-image {
    width: 70%;
    height: 600px;
    overflow: hidden;
    position: relative;
    margin-bottom: -150px;
    margin-top: 200px;
    z-index: 1;
    margin-left: 0;
}

.services-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Десктопні стилі - переконаємося, що вони не перекриваються мобільними */
@media (min-width: 769px) {
    .services-right {
        position: relative !important;
    }

    .services-small-image {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 70% !important;
        height: 600px !important;
        margin-bottom: -150px !important;
        margin-top: 200px !important;
        margin-left: 0 !important;
    }
}

.services-images-mobile {
    display: none;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }

    .services-content {
        gap: 40px;
        padding: 0 40px;
    }

    .services-main-image {
        width: 70%;
        height: 500px;
        margin-left: auto;
    }

    .services-small-image {
        width: 70%;
        height: 450px;
        margin-bottom: -150px;
        margin-top: 60px;
        margin-left: 0;
    }

    .services-title {
        font-size: 26px;
        letter-spacing: 0.04em;
        line-height: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        position: relative;
        padding-top: 0;
        padding-left: 32px;
        padding-right: 32px;
    }

    .services-left {
        display: contents;
    }

    .services-main-image {
        order: 1;
        width: calc(50% - 5px);
        height: 250px;
        margin: 0 5px 30px 0;
    }

    .services-main-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .services-text-block {
        order: 3;
        margin-left: 0;
        max-width: 100%;
        margin-top: 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-basis: 100%;
    }

    .services-right {
        order: 2;
        padding-top: 0;
        gap: 0;
        margin-bottom: 20px;
        display: contents;
        width: 100%;
    }

    .services-title {
        order: 2;
        font-size: 22px;
        letter-spacing: 0.04em;
        line-height: 100%;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        flex-basis: 100%;
    }

    .services-small-image {
        order: 1;
        position: relative;
        right: auto;
        top: auto;
        width: calc(50% - 5px);
        height: 250px;
        margin: 0 0 30px 5px;
        z-index: 2;
        overflow: hidden;
    }

    .services-small-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .services-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-align: justify;
        margin-bottom: 20px;
        width: 100%;
    }

    .services-btn {
        align-self: stretch;
        width: 100%;
    }
}

/* Consultation Section */
.consultation-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    background-color: #f8f2e6;
    position: relative;
    overflow: hidden;
}

.consultation-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.consultation-image {
    position: relative;
    z-index: 2;
    width: 30%;
    height: auto;
    min-height: 600px;
    overflow: visible;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.consultation-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.consultation-text-block {
    background-color: #fff;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-left: -30px;
    width: 50%;
    flex-shrink: 0;
    min-height: 600px;
}

.consultation-title {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(49, 48, 46, 1);
    margin: 0 0 40px 0;
}

.consultation-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: justify;
    color: rgba(49, 48, 46, 1);
    margin: 0 0 40px 0;
}

.consultation-btn {
    background-color: #f8f2e6;
    border: none;
    color: rgba(49, 48, 46, 1);
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    align-self: flex-start;
}


/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .consultation-section {
        padding: 80px 64px;
    }

    .consultation-text-block {
        padding: 60px 50px;
        margin-left: -80px;
    }

    .consultation-title {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .consultation-section {
        padding: 60px 32px;
        background-color: #fff;
    }

    .consultation-content {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .consultation-image {
        width: 100%;
        min-height: 300px;
        max-height: 400px;
        margin-bottom: 40px;
        z-index: 1;
        order: 1;
    }

    .consultation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .consultation-text-block {
        width: 100%;
        padding: 40px 32px;
        margin-left: 0;
        margin-right: 0;
        z-index: 2;
        position: relative;
        order: 2;
        min-height: auto;
        background-color: #fff;
    }

    .consultation-title {
        font-size: 28px;
        letter-spacing: 0.02em;
        line-height: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .consultation-description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-align: justify;
        margin-bottom: 30px;
    }

    .consultation-btn {
        align-self: stretch;
        width: 100%;
    }
}

/* Hero CTA Section */
.hero-cta-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
}

.hero-cta-title {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.hero-cta-line1,
.hero-cta-line2 {
    display: block;
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}

.hero-cta-line2 {
    margin-top: 10px;
}

.hero-cta-script {
    font-family: 'Corinthia', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 78px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: lowercase;
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-cta-section {
        min-height: 100vh;
    }

    .hero-cta-title {
        font-size: 40px;
        letter-spacing: 0.02em;
        line-height: 100%;
    }

    .hero-cta-line1,
    .hero-cta-line2 {
        font-size: 40px;
        letter-spacing: 0.02em;
    }

    .hero-cta-script {
        font-size: 65px;
        letter-spacing: 0.02em;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-cta-section {
        min-height: 100vh;
    }

    .hero-cta-video video {
        object-fit: cover;
        object-position: top;
    }

    .hero-cta-text {
        padding: 0 32px;
    }

    .hero-cta-title {
        font-size: 28px;
        letter-spacing: 0.02em;
        line-height: 100%;
    }

    .hero-cta-line1,
    .hero-cta-line2 {
        font-size: 28px;
        letter-spacing: 0.02em;
    }

    .hero-cta-script {
        font-size: 50px;
        letter-spacing: 0.02em;
        margin: 0 5px;
    }
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo a:hover .footer-logo-img {
    opacity: 0.8;
    transform: scale(1.02);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(49, 48, 46, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #8b7355;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(49, 48, 46, 1);
    margin: 0 0 10px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(49, 48, 46, 1);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #8b7355;
}

.footer-btn {
    background-color: #f8f2e6;
    border: none;
    color: rgba(49, 48, 46, 1);
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 10px;
}


.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-social-icon-pinterest {
    width: 28px;
    height: 28px;
}


/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 60px 64px;
    }

    .footer-content {
        grid-template-columns: auto 1fr 1fr 1fr;
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 60px 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: start;
        text-align: left;
    }

    .footer-nav-link {
        text-align: center;
    }

    .footer-contacts .footer-section-title,
    .footer-contacts .footer-contact {
        display: none;
    }

    .footer-contacts {
        text-align: center;
        align-items: center;
    }

    .footer-btn {
        align-self: stretch;
        width: 100%;
    }

    .footer-right {
        text-align: center;
        align-items: center;
    }

    .footer-right .footer-section-title {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Instagram Section */
.instagram-section {
    background-color: #fff;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #d4d2cd;
}

.instagram-section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-title {
    font-family: serif;
    font-size: 36px;
    font-weight: 400;
    color: rgba(49, 48, 46, 1);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.instagram-item {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #fff;
    border-top: 1px solid #8b7355;
    padding: 30px 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(49, 48, 46, 1);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(49, 48, 46, 1);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #8b7355;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .instagram-section {
        padding: 60px 64px;
    }

    .instagram-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .footer-bottom {
        padding: 25px 64px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 32px;
    }

    .instagram-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        padding: 25px 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
}
