.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: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #f5f5f5;
    line-height: 1.7;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(10px);
    min-height: 82px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  	color: #fff;
  	transition: all 0.3s ease-in-out;
}

.logo:hover {
	color: #d4af37;  
}

.logo img {
    width: 200px;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .nav-language {
        order: 1;
    }

    .nav-links__item {
        order: 2;
    }
}

.nav-links__item a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links__item a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e5c3);
    transition: width 0.3s ease;
}

.nav-links__item a:hover:after,
.nav-links__item a.active:after {
    width: 100%;
}

.nav-links__item a:hover,
.nav-links__item a.active {
    color: #d4af37;
}

/*---------------- language-block ---------------*/

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 10px 10px;
    background-color: transparent;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.language-block-head {
    text-transform: uppercase;
    font-size: 14px;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: relative;
}

.language-block-head::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #f5f5f5;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.language-block-list {
    list-style: none;
    width: 90px;
    border-radius: 5px;
    background-color: #121212;
    border: 1px solid rgba(212, 175, 55, 0.2);
    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: 768px) {
    .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: #000000;
}

.language-block-list li a {
    display: block;
    text-decoration: none;
    color: #c9b580;
    text-align: left;
}

/*----------------- Burger -------------*/

.burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    gap: 6px;
    padding: 0;
}

.burger-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.burger-btn.active span {
    background: #d4af37;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/*------------------- social-mobile ----------------*/

.social-mobile {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 768px) {
    .social-mobile {
        display: flex;
    }
}

.social-mobile__link {
    text-decoration: none;
    color: #c9b580;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    text-transform: uppercase;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-subtitle {
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #f4e5c3;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media screen and (max-width: 640px) {
    .cta-button {
        font-size: 14px;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.section {
    padding: 7rem 5%;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #c9b580;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 40, 40, 0.6) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4e5c3;
    font-weight: 500;
}

.feature-card p {
    color: #c9b580;
    line-height: 1.8;
}

.featured-models-section {
    padding: 5.5rem 5%;
    background:
        radial-gradient(circle at top left,
            rgba(212, 175, 55, 0.12),
            transparent 30%),
        linear-gradient(180deg, #050505 0%, #111 100%);
}

.featured-models-section--after-hero {
    padding-top: 3rem;
}

.featured-models-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.featured-kicker {
    color: #d4af37;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.featured-models-head h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.featured-models-head p:last-child {
    color: #c9b580;
    font-size: 1.05rem;
}

.featured-models-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.featured-model-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.95);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    min-height: 530px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.featured-model-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0b0b0b;
}

.featured-model-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.35s ease;
}

.profile-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    padding: 0.85rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
    .featured-model-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 175, 55, 0.85);
        box-shadow: 0 28px 70px rgba(212, 175, 55, 0.18);
    }

    .featured-model-card:hover .featured-model-photo img {
        transform: scale(1.06);
        filter: brightness(0.45);
    }

    .featured-model-card:hover .profile-pill {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .featured-model-card:hover .featured-model-body {
        opacity: 0;
        pointer-events: none;
        transform: translateY(6px);
    }
}

.featured-model-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.96) 0%,
            rgba(5, 5, 5, 0.55) 45%,
            transparent 100%);
    transition:
        opacity 0.34s ease,
        transform 0.34s ease;
}

.featured-model-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.featured-model-title h3 {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 600;
    margin: 0;
    min-width: 0;
}

.featured-model-title span {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.featured-model-card .model-card-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.featured-model-card .model-card-stats div {
    min-width: 0;
    padding: 0.65rem 0.45rem;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.42);
}

.featured-model-card .model-card-stats span {
    display: block;
    color: #c9b580;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.55px;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.featured-model-card .model-card-stats strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.models-pagination {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 3rem;
}

.models-pagination a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.models-pagination a:hover,
.models-pagination a.active {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.model-profile-page {
    padding: 8rem 5% 5rem;
    background:
        radial-gradient(circle at top right,
            rgba(212, 175, 55, 0.14),
            transparent 28%),
        linear-gradient(180deg, #050505 0%, #111 100%);
}

.model-profile-layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
}

.profile-gallery {
    position: sticky;
    top: 104px;
}

.profile-main-image {
    position: relative;
    overflow: hidden;
    height: 680px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 26px;
    background: #111;
}

.profile-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-arrow.prev {
    left: 1rem;
}

.gallery-arrow.next {
    right: 1rem;
}

.profile-social-links {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin: 0 0 1.35rem;
    display: none;
}

.model-profile-page .profile-social-links {
    display: grid;
}

.profile-social-link {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-radius: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.profile-social-link i {
    font-size: 1.3rem;
}

.profile-social-link--whatsapp {
    background: #22d466;
}

.profile-social-link--telegram {
    background: #2ea8e6;
}

.profile-social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.profile-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.profile-thumb {
    height: 92px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.profile-thumb.active {
    border-color: #d4af37;
}

.profile-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.profile-info-panel {
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 28px;
    background: rgba(18, 18, 18, 0.9);
    padding: 2.5rem;
}

.profile-info-panel .featured-kicker {
    margin-bottom: 0.5rem;
}

.profile-name {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.profile-location {
    color: #c9b580;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-stat {
    padding: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.profile-stat span {
    display: block;
    color: #c9b580;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.profile-stat strong {
    color: #fff;
    font-size: 1.2rem;
}

.profile-bio {
    color: #cfcfcf;
    margin-bottom: 2rem;
}

.contact-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #000;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 1rem 1.8rem;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.page-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 32%),
        linear-gradient(135deg, #050505 0%, #1a1a1a 55%, #050505 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.page-kicker {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-title {
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.page-subtitle {
    max-width: 740px;
    margin: 0 auto;
    color: #c9b580;
    font-size: 1.1rem;
}

.content-section {
    padding: 5rem 5%;
    background: #050505;
}

.content-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.content-card {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 26px;
    background: rgba(18, 18, 18, 0.9);
    padding: 2.4rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.content-card h2 {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.content-card p {
    color: #d8d8d8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    gap: 1rem;
}

.highlight-item {
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.4rem;
}

.highlight-item span {
    display: block;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.highlight-item strong {
    color: #fff;
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: 3rem;
}

.value-card {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    background: linear-gradient(180deg,
            rgba(24, 24, 24, 0.96),
            rgba(10, 10, 10, 0.96));
    padding: 1.8rem;
}

.value-card i {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.value-card p {
    color: #bfbfbf;
}

.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #f7f4ed 0%, #fffaf1 100%);
    color: #161616;
}

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-card,
.form-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
}

.contact-card {
    padding: 2.2rem;
}

.card-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #111;
}

.card-copy {
    color: #666;
    margin-bottom: 2rem;
}

.info-list {
    display: grid;
    gap: 1.1rem;
}

.info-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee3c9;
    border-radius: 18px;
    background: #fffaf1;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #111;
    font-size: 1.1rem;
}

.info-item h3 {
    color: #111;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-item p,
.info-item a {
    color: #666;
    font-size: 0.95rem;
    text-decoration: none;
}

.info-item a:hover {
    color: #b89220;
}

.form-card {
    padding: 2.4rem;
}

.contact-form {
    display: grid;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row.long-row {
    grid-template-columns: 1fr;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.form-row.long-row label,
.field label {
    color: #222;
    font-size: 0.85rem;
    font-weight: 700;
}

.field input,
.field select,
.form-row input,
.field textarea {
    width: 100%;
    border: 1px solid #eadfca;
    border-radius: 12px;
    background: #fffdf8;
    color: #111;
    font: inherit;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.submit-button {
    width: fit-content;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #111;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

@media (max-width: 900px) {
    .page-hero {
        padding-top: 8.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 8rem 1rem 4rem;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .content-card {
        padding: 1.4rem;
    }
}


@media (max-width: 980px) {
    .featured-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .model-profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-gallery {
        position: static;
    }

    .profile-main-image {
        height: 560px;
    }
}

@media (max-width: 640px) {

    .featured-models-section,
    .model-profile-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .featured-model-card {
        min-height: 520px;
    }

    .featured-models-grid {
        grid-template-columns: 1fr;
    }

    .featured-model-body {
        padding: 1.1rem;
    }

    .featured-model-title {
        margin-bottom: 0;
    }

    .featured-model-title h3 {
        font-size: 1.45rem;
    }

    .featured-model-card .model-card-stats {
        gap: 0.4rem;
        margin-top: 0.65rem;
    }

    .featured-model-card .model-card-stats div {
        padding: 0.55rem 0.3rem;
    }

    .featured-model-card .model-card-stats strong {
        font-size: 0.8rem;
    }

    .featured-model-card:hover .featured-model-photo img {
        filter: none;
    }

    .featured-model-card:hover .profile-pill {
        opacity: 0;
    }

    .profile-stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-main-image {
        height: 520px;
    }

    .profile-social-links {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1300;
        gap: 0.45rem;
        margin: 0;
        padding: 0.5rem 0.9rem calc(0.5rem + env(safe-area-inset-bottom));
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.56) 56%,
                rgba(0, 0, 0, 0) 100%);
        backdrop-filter: blur(8px);
        display: grid;
    }

    .profile-social-link {
        min-height: 52px;
        font-size: 0.92rem;
        letter-spacing: 2.1px;
    }

    .profile-social-link i {
        font-size: 1.15rem;
    }

    .model-profile-page {
        padding-bottom: 5.8rem;
    }

    .profile-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .profile-info-panel {
        padding: 1.4rem;
    }
}

.testimonials {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 7rem 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    color: #c9b580;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.custom-list {
    list-style: none;
    margin-top: 2rem;
}

.custom-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c9b580;
    line-height: 1.8;
}

.custom-list li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    margin: 0 0 15px 0;
}

.footer__logo img {
    width: 150px;
    max-width: 100%;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    color: #c9b580;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #888;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.legal-content {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 26px;
    background: rgba(18, 18, 18, 0.9);
    padding: 2.4rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #d8d8d8;
    margin-bottom: 1rem;
}

.legal-content a {
    color: #c9b580;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar {
        min-height: 72px;
        padding: 0 1rem;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 1rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem;
        background: rgba(5, 5, 5, 0.98);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links__item {
        width: 100%;
    }

    .nav-links__item a {
        display: block;
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .nav-links__item a:hover {
        background: rgba(212, 175, 55, 0.12);
    }

    .nav-links__item a:after {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 620px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-card,
    .form-card {
        padding: 1.4rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }
}