/*--flags--*/
.fib,
.fi {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em
}

.fi:before {
    content: " "
}

.fi.fis {
    width: 1em
}

.fi-cn {
    background-image: url(../libs/flags/4x3/cn.svg)
}

.fi-de {
    background-image: url(../libs/flags/4x3/de.svg)
}

.fi-fr {
    background-image: url(../libs/flags/4x3/fr.svg)
}

.fi-gb {
    background-image: url(../libs/flags/4x3/gb.svg)
}

.fi-it {
    background-image: url(../libs/flags/4x3/it.svg)
}

.fi-kz {
    background-image: url(../libs/flags/4x3/kz.svg)
}

.fi-nl {
    background-image: url(../libs/flags/4x3/nl.svg)
}

.fi-pl {
    background-image: url(../libs/flags/4x3/pl.svg)
}

.fi-ru {
    background-image: url(../libs/flags/4x3/ru.svg)
}

.fi-th {
    background-image: url(../libs/flags/4x3/th.svg)
}

.fi-tr {
    background-image: url(../libs/flags/4x3/tr.svg)
}

.fi-ua {
    background-image: url(../libs/flags/4x3/ua.svg)
}

.fi-eg {
    background-image: url(../libs/flags/4x3/eg.svg)
}

.fi-es {
    background-image: url(../libs/flags/4x3/es.svg)
}

.fi-jp {
    background-image: url(../libs/flags/4x3/jp.svg)
}

/*--main-style--*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf9f7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 100%);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-right: auto;
}

.logo img {
    width: 200px;
    max-width: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links__item {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links__item:hover {
    color: #8b7355;
}

.nav-links__item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b7355;
    transition: width 0.3s ease;
}

.nav-links__item:hover::after {
    width: 100%;
}

/*------------------------ social-mobile -------------------*/

.social-mobile {
    align-items: center;
    column-gap: 5px;
    display: none;
}

@media screen and (max-width: 920px) {
    .social-mobile {
        display: flex;
    }
}

.social-mobile__link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #8b7355;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-mobile__link svg {
    width: 18px;
    fill: #8b7355;
}

/*-------------------- language-block -----------------*/

.language-block {
    width: 55px;
    position: relative;
    padding: 10px 0;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.language-block-head {
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
}

.language-block-head span {
    margin-right: 5px;
}

.language-block-head::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.language-block-list {
    list-style: none;
    width: 90px;
    background-color: #fff;
    border: 1px solid rgba(139, 115, 85, 0.18);
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    display: none;
}

@media screen and (max-width: 920px) {
    .language-block-list {
        right: auto;
        left: 0;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background-color: #eee;
}

.language-block-list li a {
    display: block;
    color: #333;
    text-align: left;
}

/*---------------------------- hero ------------------------*/

.hero {
    position: relative;
    height: 82vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 196, 176, 0.25) 0%, rgba(212, 196, 176, 0) 55%),
        radial-gradient(ellipse at 85% 80%, rgba(139, 115, 85, 0.45) 0%, rgba(139, 115, 85, 0) 60%),
        linear-gradient(135deg, #1f1d1b 0%, #2c2826 45%, #3d352e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4c4b0;
    margin-bottom: 22px;
    padding: 7px 18px;
    border: 1px solid rgba(212, 196, 176, 0.55);
    border-radius: 999px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e9dcc6 50%, #c8a779 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-divider {
    width: 90px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, #d4c4b0, transparent);
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(135deg, #b8945f 0%, #8b7355 100%);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(212, 196, 176, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    background: linear-gradient(135deg, #c9a66a 0%, #9c8260 100%);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #3d3d3d;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: #8b7355;
    transform: translateY(-3px);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b6b6b;
    margin-bottom: 60px;
    font-weight: 300;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.model-card {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    background: #1f1f23;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    aspect-ratio: 3 / 4;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    isolation: isolate;
}

.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0) 0%, rgba(212, 196, 176, 0) 50%, rgba(139, 115, 85, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

.model-card:hover::before {
    background: linear-gradient(135deg, #8b7355 0%, #d4c4b0 50%, #8b7355 100%);
}

.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.model-card:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.model-card:hover img {
    transform: scale(1.08);
}

.model-card .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(31, 31, 35, 0.78);
    color: #f7e7c8;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.model-card:hover .badge {
    opacity: 0;
    transform: translateY(-6px);
}

.model-card .card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: #fff;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.model-card:hover .card-content {
    opacity: 0;
    transform: translateY(10px);
}

.model-card .card-content h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.model-card .card-content h3 .age {
    color: #d4c4b0;
    font-weight: 400;
    margin-left: 4px;
}

.model-card .card-content .tagline {
    font-size: 13px;
    opacity: 0.85;
    letter-spacing: 0.4px;
    margin-top: 4px;
}

.model-card .card-stats {
    display: flex;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 196, 176, 0.28);
}

.model-card .stat {
    flex: 1;
    min-width: 0;
    padding: 0 4px;
    text-align: center;
    position: relative;
}

.model-card .stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 26px;
    background: rgba(212, 196, 176, 0.28);
    transform: translateY(-50%);
}

.model-card .stat .lbl {
    display: block;
    color: #d4c4b0;
    font-size: 9px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
}

.model-card .stat .val {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-card .view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.model-card:hover .view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.model-cta {
    text-align: center;
    margin-top: 50px;
}

.model-cta a {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #8b7355;
    color: #8b7355;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.model-cta a:hover {
    background: #8b7355;
    color: #fff;
}

/*----------------------- pagination ---------------------*/

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination .page-num {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 115, 85, 0.3);
    color: #2c2c2c;
    font-size: 15px;
    letter-spacing: 0.6px;
    background: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination .page-num:hover {
    background: #8b7355;
    color: #fff;
    border-color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(139, 115, 85, 0.25);
}

.pagination .page-num.is-active {
    background: #8b7355;
    color: #fff;
    border-color: #8b7355;
    font-weight: 600;
    cursor: default;
}

/*----------------------- pagination /--------------------*/

.highlights {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 100%);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 48px;
    color: #8b7355;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
}

.highlight-item p {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
}

footer {
    background: linear-gradient(135deg, #3d3d3d 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4c4b0;
    font-weight: 400;
}

.footer-logo img {
    width: 150px;
    max-width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b8b8;
    font-size: 0.9rem;
    transition: border-color .3s ease;
}

.footer-social__link:hover {
    border: 1px solid #fff;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4c4b0;
    font-weight: 400;
}

.footer-section p,
.footer-section__link {
    color: #b8b8b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section__link:hover {
    color: #d4c4b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    color: #999;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4c4b0;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
}

.burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #3d3d3d;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.page-header {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 70px 20px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(212, 196, 176, 0.22) 0%, rgba(212, 196, 176, 0) 55%),
        radial-gradient(ellipse at 85% 85%, rgba(139, 115, 85, 0.45) 0%, rgba(139, 115, 85, 0) 60%),
        linear-gradient(135deg, #1f1d1b 0%, #2c2826 50%, #3d352e 100%);
}

@media (max-width: 640px) {
    .page-header {
        padding: 70px 16px 50px;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
}

.page-header>* {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e9dcc6 50%, #c8a779 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 980px) {
    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 30px;
    }
}

.page-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, #d4c4b0, transparent);
}

.page-header .breadcrumb {
    margin-top: 22px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4c4b0;
}

.page-header .breadcrumb a {
    color: #d4c4b0;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: #fff;
}

.page-header .breadcrumb i {
    margin: 0 10px;
    opacity: 0.6;
    font-size: 10px;
}

.profile-section {
    padding: 70px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 980px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

@media (max-width: 980px) {
    .gallery {
        position: static;
    }
}

.gallery .main {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 4 / 5;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #8b7355 0%, #d4c4b0 50%, #8b7355 100%) 1;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.gallery .main.is-swipeable {
    cursor: grab;
}

.gallery .main.is-dragging {
    cursor: grabbing;
}

.gallery .main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.thumbs-wrap {
    position: relative;
}

.thumbs-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 10px;
    width: 36px;
    background: linear-gradient(90deg, rgba(250, 249, 247, 0) 0%, rgba(250, 249, 247, 0.95) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbs-wrap.has-overflow::after {
    opacity: 1;
}

.thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    cursor: grab;
}

.thumbs.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.thumbs.is-dragging .thumb {
    cursor: grabbing;
}

.thumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.thumb {
    flex: 0 0 calc((100% - 36px) / 4);
    scroll-snap-align: start;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ccc;
    cursor: pointer;
    border: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.78;
    padding: 0;
    position: relative;
}

.thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    pointer-events: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.thumb:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.thumb.is-active {
    opacity: 1;
    transform: translateY(-1px);
}

.thumb.is-active::before {
    border-color: #8b7355;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.name-card {
    border-bottom: 1px solid rgba(139, 115, 85, 0.25);
    padding-bottom: 22px;
}

.name-card .name {
    font-size: 36px;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .name-card .name {
        font-size: 30px;
    }
}

.single-name {
    display: flex;
    align-items: center;
}

.name-card .city {
    color: #8b7355;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
    margin: 0 0 0 auto;
}

.single-social__link {
    width: 46px;
    height: 46px;
    border-radius: 50px;
    border: 2px solid #8b7355;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease;
}

.single-social__link:hover {
   background-color: #8b7355;
}

.single-social__link svg {
    width: 26px;
    fill: #8b7355;
    transition: fill .3s ease;
}

.single-social__link:hover svg {
    fill: #fff;
}

.name-card .tagline {
    color: #7a7a7a;
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0.4px;
}

.data-block .block-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-block .block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 115, 85, 0.35), rgba(139, 115, 85, 0));
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 640px) {
    .pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pill {
    background: #fff;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid rgba(139, 115, 85, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pill:hover {
    transform: translateY(-3px);
    border-color: #8b7355;
    box-shadow: 0 8px 22px rgba(139, 115, 85, 0.12);
}

.pill .pill-label {
    color: #8b7355;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pill .pill-value {
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 500;
}

.about-text {
    background: #fff;
    border: 1px solid rgba(139, 115, 85, 0.18);
    border-left: 3px solid #8b7355;
    padding: 22px 24px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.data-block .contact-cta {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
}

.contact-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #b8945f 0%, #8b7355 100%);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(212, 196, 176, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, #c9a66a 0%, #9c8260 100%);
    color: #fff;
}

.contact-cta .cta-button i {
    font-size: 13px;
}

.neighbour-nav {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 115, 85, 0.18);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.neighbour-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2c2c2c;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.neighbour-link i {
    color: #8b7355;
    transition: transform 0.3s ease;
}

.neighbour-link:hover {
    color: #8b7355;
}

.neighbour-link:hover.prev i {
    transform: translateX(-4px);
}

.neighbour-link:hover.next i {
    transform: translateX(4px);
}

.neighbour-link strong {
    font-weight: 500;
    display: block;
    color: #2c2c2c;
    font-size: 17px;
    letter-spacing: 0.6px;
    text-transform: none;
    margin-top: 2px;
}

.neighbour-link span.dir {
    color: #8b7355;
    font-size: 12px;
}

.other-models {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 100%);
    padding: 80px 0;
}

.other-models h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.other-models h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: #8b7355;
    margin: 14px auto 0;
}

.other-models .sub {
    text-align: center;
    color: #7a7a7a;
    margin-bottom: 36px;
    font-size: 15px;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1100px) {
    .other-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.other-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1f1f23;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    isolation: isolate;
}

.other-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid transparent;
    border-image: linear-gradient(135deg, rgba(139, 115, 85, 0) 0%, rgba(212, 196, 176, 0) 50%, rgba(139, 115, 85, 0) 100%) 1;
    transition: border-image 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.other-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.other-card:hover::before {
    border-image: linear-gradient(135deg, #8b7355 0%, #d4c4b0 50%, #8b7355 100%) 1;
}

.other-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.other-card:hover img {
    transform: scale(1.06);
}

.other-card .overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 18px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
    color: #fff;
    z-index: 1;
}

.other-card .overlay h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.other-card .overlay span {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.4px;
}

/*------------------------ about --------------------*/

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.value-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 50px;
    color: #8b7355;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
    transition: all 0.3s ease;
}

.value-card h3:hover {
    color: #8b7355;
}

.value-card p {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
}

.team-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 100%);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 6px solid transparent;
    border-image: linear-gradient(135deg, #8b7355 0%, #d4c4b0 50%, #8b7355 100%) 1;
    transition: all 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 400;
    transition: all 0.3s ease;
}

.team-info h3:hover {
    color: #8b7355;
}

.team-info .position {
    color: #8b7355;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-info p {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.6;
}

/*------------------------- contacts ----------------------*/

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 35px 25px;
    }
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 20px;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.info-content p {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.7;
}

.info-content a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #a68968;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8e6e1;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #faf9f7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

/*------------------------ FAQ ----------------------*/

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #faf9f7;
}

.faq-question h3 {
    font-size: 19px;
    color: #2c2c2c;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #8b7355;
}

.faq-icon {
    font-size: 20px;
    color: #8b7355;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.8;
}

.faq-container .contact-cta {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 100%);
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    border-radius: 3px;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 400;
}

.contact-cta p {
    font-size: 17px;
    color: #6b6b6b;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #8b7355;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #a68968;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

/*----------------------- legal ---------------------*/

.legal-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.legal-content h1 {
    font-size: 32px;
    color: #3d3d3d;
    margin-bottom: 15px;
}

.legal-content h2 {
    font-size: 28px;
    color: #3d3d3d;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: #3d3d3d;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.legal-content a {
    text-decoration: underline;
}

.legal-content ul {
    padding: 0 0 0 20px;
    margin: 0 0 20px 0;
}


@media (max-width: 920px) {
    .burger {
        display: flex;
    }

    header {
        padding: 8px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin: 0;
        padding: 90px 28px 30px;
        background: linear-gradient(160deg, #f5f3f0 0%, #e8e6e1 100%);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        z-index: 1050;
        overflow-y: auto;
        text-align: left;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        order: 2;
    }

    .nav-links li.language-wrap {
        order: 1;
    }

    .nav-links__item {
        display: block;
        width: 100%;
        padding: 14px 4px;
        font-size: 17px;
        border-bottom: 1px solid rgba(139, 115, 85, 0.18);
    }

    .nav-links__item::after {
        display: none;
    }
}