/*--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--*/

:root {
    --bg: #FAFAF7;
    --text: #1A1A1A;
    --accent: #DF2A48;
    --muted: #757575;
    --line: #E0DDD5;
    --white: #FFFFFF;
    --heading-font: 'Noto Serif JP', serif;
    --body-font: 'Zen Kaku Gothic New', sans-serif;
    --transition: 0.3s ease;
    --transition-slow: 1.2s ease;
    --container: 1000px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 36px;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.72rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    border-bottom-color: var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 0;
}

.logo:hover {
    color: var(--text);
}

.logo img {
    width: 200px;
    max-width: 100%;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a {
    display: block;
    padding: 8px 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text);
}

/* Language */

.language-block {
    width: 75px;
    position: relative;
    padding: 3px 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .language-block {
        order: 1;
        width: 60px;
        padding: 3px 0;
        margin: 0 0 20px 0;
    }
}

.language-block-head {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.12em;
    line-height: 1.1;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .3s ease;
}

.language-block-head:hover {
    color: var(--text);
}

.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 var(--muted);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

.language-block-head:hover::after {
    border-top: 4px solid var(--text);
}

.language-block-list {
    list-style: none;
    width: 90px;
    background-color: var(--text);
    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: var(--accent);
}

.language-block-list li a {
    display: block;
    color: #fff;
    text-align: left;
}

/* Hamburger — minimal two-line */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text);
    margin: 5px 0;
    transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 0);
}

.hamburger.active .hamburger-line:nth-child(2) {
    transform: rotate(-45deg) translate(4px, 0);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 140px 15px 80px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

.hero-actions {
    text-align: center;
}

.hero-btn {
    color: #fff;
    background-color: var(--accent);
    transition: background-color .3s ease;
}

.hero-btn:hover {
    color: #fff;
    background-color: var(--text);
}

/* --- Page Hero --- */

.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background-color: #fff;
}

.page-hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0;
}

.breadcrumbs li {
    position: relative;
    padding: 0;
}

.breadcrumbs li:not(:last-child) {
    margin-right: 25px;
}

.breadcrumbs li:first-child {
    padding-left: 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    position: absolute;
    top: 0;
    right: -15px;
}

.breadcrumbs li a {
    color: var(--accent);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.section-cta {
    text-align: center;
    margin-top: 64px;
}

/* --- Gallery: One Large Image at a Time --- */
.gallery-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    min-height: 540px;
}

.gallery-stage {
    position: relative;
    width: 380px;
    flex-shrink: 0;
}

.gallery-slide {
    display: none;
    text-align: center;
}

.gallery-slide.active {
    display: block;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-slide.active .gallery-image img {
    animation: galleryFadeIn 0.8s ease;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.gallery-info span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--line);
    cursor: pointer;
    color: var(--text);
    font-size: 0.85rem;
    transition: all var(--transition);
    flex-shrink: 0;
}

.gallery-arrow:hover {
    border-color: var(--text);
}

.gallery-counter {
    text-align: center;
    margin-top: 40px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 4px;
    font-family: var(--body-font);
}

/* --- Services Preview: Minimal Single Column --- */
.services-minimal {
    max-width: 600px;
    margin: 0 auto;
}

.service-minimal-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.service-minimal-item:first-child {
    border-top: 1px solid var(--line);
}

.service-minimal-icon {
    color: var(--accent);
    font-size: 1rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.service-minimal-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- Services Accordion (services page) --- */
.services-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.service-accordion-item {
    border-bottom: 1px solid var(--line);
}

.service-accordion-item:first-child {
    border-top: 1px solid var(--line);
}

.service-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text);
    text-align: left;
    transition: color var(--transition);
}

.service-accordion-header:hover {
    color: var(--accent);
}

.service-accordion-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-accordion-left i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 24px;
    text-align: center;
}

.service-accordion-toggle {
    font-size: 1.2rem;
    color: var(--muted);
    transition: transform var(--transition);
    font-weight: 300;
}

.service-accordion-item.active .service-accordion-toggle {
    transform: rotate(45deg);
}

.service-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.service-accordion-body p {
    padding: 0 0 20px 44px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 24px 44px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

.services-preview {
    background: var(--bg);
}

/* --- Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.process-step {
    text-align: center;
    padding: 24px 0;
}

.process-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* --- Testimonials: Minimal --- */
.testimonials-minimal {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-minimal {
    padding: 48px 0;
    position: relative;
}

.testimonial-hairline {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 32px;
}

.testimonial-text {
    font-family: var(--heading-font);
    font-size: 1.05rem;
    color: var(--text);
    line-height: 2;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* --- Stats --- */
.stats-section {
    background: var(--text);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(250, 250, 247, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Seo-articles --- */

.light-border {
    border-bottom: 1px solid #e0ddd5;
}

.seo-articles h1 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 400;
    margin-bottom: 15px;
}

.seo-articles h2 {
    font-size: clamp(26px, 3.6vw, 30px);
    font-weight: 400;
    margin-bottom: 15px;
}

.seo-articles h3 {
    font-size: clamp(20px, 3.2vw, 28px);
    font-weight: 400;
    margin-bottom: 15px;
}

.seo-articles p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* --- CTA Section --- */

.cta-section {
    padding: 120px 0;
    background: var(--bg);
}

.cta-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.cta-content p {
    color: #737373;
    margin-bottom: 40px;
    font-size: 0.88rem;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-image img {
    width: 100%;
}

.about-text h2 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* --- Team --- */

.team-section {
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.team-card {
    text-align: center;
}

.team-card-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.6s ease;
}

.team-card:hover .team-card-image img {
    filter: grayscale(0%);
}

.team-card-info h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-card-info p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* --- Pricing: Horizontal Scrolling Cards --- */
.pricing-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 40px;
}

.pricing-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.pricing-scroll {
    display: flex;
    gap: 80px;
    padding: 0 calc(50vw - 480px);
    min-width: min-content;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 48px 40px;
    min-width: 320px;
    max-width: 340px;
    flex-shrink: 0;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--text);
}

.pricing-highlighted {
    border-color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 40px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 16px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pricing-description {
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.pricing-amount {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--muted);
}

.pricing-hairline {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 24px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(224, 221, 213, 0.4);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--muted);
    font-size: 0.82rem;
}

.pricing-note a {
    color: var(--accent);
}

/* --- Events --- */
.events-filters {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.filter-select {
    padding: 10px 16px;
    font-family: var(--body-font);
    font-size: 0.85rem;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    min-width: 200px;
    cursor: pointer;
    transition: border-color var(--transition);
    appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: var(--text);
}

.events-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.event-card {
    display: flex;
    gap: 24px;
    padding: 28px 24px;
    background: var(--bg);
    transition: all var(--transition);
}

.event-card:hover {
    background: var(--white);
}

.event-card.hidden {
    display: none;
}

.event-date-badge {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text);
}

.event-month-short {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.event-info {
    flex: 1;
}

.event-category-tag {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-info h3 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.event-meta span {
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--accent);
    font-size: 0.7rem;
}

.event-info p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.no-events-message {
    text-align: center;
    color: var(--muted);
    padding: 80px 0;
    font-size: 0.9rem;
}

/* --- FAQ / Accordion --- */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item:first-child {
    border-top: 1px solid var(--line);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    text-align: left;
    transition: color var(--transition);
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-icon {
    font-size: 1rem;
    color: var(--muted);
    transition: transform var(--transition);
    flex-shrink: 0;
    font-weight: 300;
    font-style: normal;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-body p {
    padding: 0 0 24px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.9;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
}

.contact-form-wrapper h2 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--body-font);
    font-size: 0.88rem;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    background: transparent;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text);
}

.form-group textarea {
    resize: vertical;
    border: 1px solid var(--line);
    padding: 12px;
}

.form-group textarea:focus {
    border-color: var(--text);
}

/*----------------- form-success -----------------*/

.form-success {
    text-align: center;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.form-success__check {
	width: 55px;
    height: 55px;
  	border-radius: 50%;
  	border: 2px solid #14bf1b;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}

.form-success__check svg {
	width: 40px;
  	fill: #14bf1b;
}

/*----------------- form-success -----------------*/

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    padding: 0;
}

.contact-info-card h3 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.contact-info-list li {
    margin-bottom: 20px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-info-list p {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0;
}

.contact-info-list a {
    color: var(--text);
}

.contact-info-list a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: all var(--transition);
    font-size: 0.82rem;
}

.contact-social a:hover {
    border-color: var(--text);
    color: var(--text);
}

/* --- Legal / Policy Pages --- */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.9;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    list-style: disc;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 6px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.82rem;
}

.cookie-table th,
.cookie-table td {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.cookie-table th {
    font-weight: 500;
    color: var(--text);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table td {
    color: var(--muted);
}

/* --- 404 --- */
.error-section {
    padding: 240px 0 160px;
    text-align: center;
}

.error-code {
    display: block;
    font-family: var(--heading-font);
    font-size: 6rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.1;
}

.error-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 24px;
}

.error-content h1 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.error-content p {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 0.88rem;
}

.error-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg);
    padding: 48px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    border: 1px solid var(--line);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
    font-weight: 300;
}

.modal-close:hover {
    color: var(--text);
}

.modal h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.modal-event-name {
    color: var(--accent);
    font-size: 0.82rem;
    margin-bottom: 32px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

/* --- Pagination --- */

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 40px 0;
    margin: 0 0;
}

.pagination__link {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-weight: 500;
    color: var(--text);
    font-size: 16px;
    text-align: center;
    line-height: 1.3;
    border: 1px solid var(--line);
    background-color: transparent;
    padding: 10px 10px;
    transition: all .3s ease;
}

.pagination__link.active,
.pagination__link:hover {
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--accent);
    background-color: var(--accent);
}

/* --- Footer --- */

.site-footer {
    background: var(--text);
    color: #979796;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bg);
    margin-bottom: 20px;
}

.footer-logo:hover {
    color: var(--bg);
}

.footer-logo img {
    width: 150px;
    max-width: 100%;
}

.footer-logo .logo-dot {
    background: var(--accent);
}

.footer-description {
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 250, 247, 0.15);
    color: rgba(250, 250, 247, 0.5);
    transition: all var(--transition);
    font-size: 0.78rem;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-heading {
  	display: block;
    color: var(--bg);
    font-family: var(--body-font);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #979796;
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.82rem;
}

.footer-contact a {
    color: #979796;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 250, 247, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #979796;
}

/* --- Responsive: 1200px --- */
@media (max-width: 1200px) {
    .hero-inner {
        gap: 48px;
    }

    .pricing-scroll {
        padding: 0 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
    .vertical-section-label {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        transition: right var(--transition);
        z-index: 999;
        border-left: 1px solid var(--line);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        order: 2;
    }

    .nav-list a {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    /* Hero responsive */
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-hero {
        padding: 120px 0 48px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Gallery responsive */
    .gallery-showcase {
        min-height: auto;
        gap: 24px;
    }

    .gallery-stage {
        width: 280px;
    }

    /* Services */
    .services-minimal {
        max-width: 100%;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Mission */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Pricing */
    .pricing-scroll {
        padding: 0 24px;
        gap: 32px;
    }

    .pricing-card {
        min-width: 280px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Events */
    .events-filters {
        flex-direction: column;
    }

    .filter-select {
        min-width: 100%;
    }

    .event-card {
        flex-direction: column;
        gap: 12px;
    }

    .event-date-badge {
        width: auto;
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- Responsive: 480px --- */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .gallery-stage {
        width: 240px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .error-code {
        font-size: 4rem;
    }

    .error-content h1 {
        font-size: 1.4rem;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal {
        padding: 32px 24px;
    }

    .event-meta {
        flex-direction: column;
        gap: 4px;
    }

    .pricing-scroll {
        padding: 0 16px;
        gap: 24px;
    }

    .pricing-card {
        min-width: 260px;
        padding: 36px 28px;
    }
}

/* ============================================
   Dating Extensions — Models Grid
   ============================================ */

.model-card-xl--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card-xl__params {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* Models Grid */
.models-grid-dating {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-grid-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--transition);
}

.model-grid-card:hover {
    transform: translateY(-6px);
    color: inherit;
}

.model-grid-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 0;
}

.model-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.model-grid-card:hover .model-grid-card__image img {
    transform: scale(1.05);
}

.model-grid-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.model-grid-card:hover .model-grid-card__overlay {
    opacity: 1;
}

.model-grid-card__view {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 24px;
    border: 1px solid #fff;
}

.model-grid-card__info {
    padding: 16px 0;
}

.model-grid-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.model-grid-card__spec {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.model-grid-card__params {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 6px;
}

.model-grid-card__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray);
}

/* ============================================
   Page navigation
   ============================================ */

.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.page-nav-button {
    width: 50%;
    max-width: 170px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    line-height: 1.2;
    border: 1px solid var(--line);
    background-color: #fff;
    position: relative;
    padding: 10px 40px;
    transition: all .3s ease;
}

.page-nav-button:hover {
    text-decoration: none;
    color: var(--bg);
    border: 1px solid var(--text);
    background-color: var(--text);
}

.page-nav-button.button-prev {
    text-align: left;
    margin-right: 1px;
}

.page-nav-button.button-prev::before {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--text);
    border-left: 2px solid var(--text);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(320deg);
    transition: border-color .3s ease;
}

.page-nav-button:hover::before {
    border-top: 2px solid var(--bg);
    border-left: 2px solid var(--bg);
}

.page-nav-button.button-next {
    text-align: right;
    margin-left: 1px;
}

.page-nav-button.button-next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--text);
    border-left: 2px solid var(--text);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(132deg);
    transition: border-color .3s ease;
}

.page-nav-button:hover::after {
    border-top: 2px solid var(--bg);
    border-left: 2px solid var(--bg);
}

.page-nav-name {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page-nav-rout {
    display: block;
    font-size: 14px;
    color: var(--accent);
}

/* ============================================
   Dating Extensions — Model Profile
   ============================================ */

.model-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.model-profile__details {
    min-width: 0;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 992px) {
    .single-social {
        display: none;
    }
}

.single-social__link {
    min-width: 130px;
    text-transform: uppercase;
    background: transparent;
    font-weight: 500;
    color: var(--bg);
    font-size: 12px;
    letter-spacing: 2.5px;
    border: 1px solid var(--text);
    background-color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 10px 15px;
    transition: all .3s ease;
    margin: 0 0 15px 0;
}

.single-social__link:hover {
    border-color: var(--line);
    color: var(--accent);
    background-color: transparent;
}

.single-social__link .fab,
.single-social__link .fa {
    font-size: 18px;
}

.model-profile__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.model-profile__specialty {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 24px;
}

.model-profile__bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.model-profile__section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--subtle);
}

/* Parameters Grid */
.model-profile__params {
    margin-bottom: 40px;
}

.model-profile__params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.model-profile__param {
    text-align: center;
    padding: 16px 8px;
    background: var(--cream);
}

.model-profile__param-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 6px;
}

.model-profile__param-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
}

/* Services & Pricing */
.model-profile__services {
    margin-bottom: 40px;
}

.model-profile__services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 20px 0;
}

.model-profile__service-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__service-row:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.model-profile__service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.model-profile__service-line {
    flex: 1;
    border-bottom: 1px dotted var(--gray-light);
    min-width: 40px;
}

.model-profile__service-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.model-profile__rates-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
}

.model-profile__rates-row:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

/*--------------------- booking-form ----------------*/

#contact-form-wrapper .card-title {
    margin: 0 0 15px 0;
}

#form-container .btn-block {
    display: block;
    width: 100%;
    font-size: 12px;
    color: #fff;
    border: 1px solid var(--text);
    background: var(--text);
    padding: 15px 15px;
    transition: all .3s ease;
}

#form-container .btn-block:hover {
    border: 1px solid var(--accent);
    background: var(--accent);
}

.alert-success {
    font-size: 14px;
    color: #22c55e;
    text-align: center;
    padding: 5px 0
}

/* CTA */

.model-profile__cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.model-profile__cta .btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid-dating {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .models-grid-dating {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .model-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .model-profile__params-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-profile__cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .models-grid-dating {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === Models Carousel & Cards (from d001) === */

.models-hscroll {
    overflow: hidden;
    cursor: grab;
    position: relative;
    padding: 0 0 20px;
}

.models-hscroll:active {
    cursor: grabbing;
}

.models-hscroll__track {
    display: flex;
    gap: 30px;
    padding: 0 80px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.model-card-xl {
    flex-shrink: 0;
    width: 320px;
    position: relative;
}

.model-card-xl__image {
    width: 100%;
    aspect-ratio: 3/4.2;
    overflow: hidden;
    position: relative;
}

.model-card-xl__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: grayscale(20%);
}

.model-card-xl:hover .model-card-xl__image img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.model-card-xl__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.model-card-xl__name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 4px;
}

.model-card-xl__spec {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    color: var(--accent);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.models-hscroll__track {
    padding: 0 50px;
}

.model-card-xl {
    width: 280px;
}

.models-hscroll__track {
    padding: 0 30px;
    gap: 20px;
}

.model-card-xl {
    width: 260px;
}

.models-hscroll__track {
    padding: 0 20px;
}

.model-card-xl {
    width: 240px;
}

.model-card-xl--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card-xl__params {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 4px;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s;
        mix-blend-mode: difference;
    }

    .custom-cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
    }

    .custom-cursor.cursor-hover {
        width: 60px;
        height: 60px;
        border-color: var(--white);
    }
}

@media (max-width: 1200px) {
    .hero-split__left {
        padding: 120px 40px 80px 50px;
    }

    .models-hscroll__track {
        padding: 0 50px;
    }

    .model-card-xl {
        width: 280px;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline__line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 110px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header-nav-list li {
        width: 100%;
    }

    .header-nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--subtle);
        color: var(--primary) !important;
    }

    .header-nav-list a::after {
        display: none;
    }

    /* Hero Split */
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split__left {
        padding: 140px 30px 60px;
        order: 2;
    }

    .hero-split__right {
        height: 55vh;
        min-height: 400px;
        order: 1;
    }

    .hero-split__image-wrap {
        clip-path: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-split__title span {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-models {
        padding: 80px 0 60px;
    }

    .models-hscroll__track {
        padding: 0 30px;
        gap: 20px;
    }

    .model-card-xl {
        width: 260px;
    }

    /* Grids */
    .services-icon-grid {
        grid-template-columns: 1fr;
    }

    .section-stats-editorial__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-editorial {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-editorial {
        grid-template-columns: 1fr;
    }

    .team-editorial {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .events-masonry {
        columns: 2;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero-minimal {
        padding: 130px 0 60px;
    }

    .page-hero-bleed {
        height: 50vh;
        min-height: 400px;
    }

    .cta-diagonal {
        padding: 100px 0;
    }

    .pricing-table__feature-head {
        position: static;
    }

    .pricing-table__feature {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-split__left {
        padding: 130px 20px 50px;
    }

    .hero-split__title span {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero-split__right {
        height: 45vh;
        min-height: 320px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header-editorial {
        margin-bottom: 50px;
    }

    .section-stats-editorial {
        padding: 70px 0;
    }

    .section-stats-editorial__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-editorial__number {
        font-size: 3rem;
    }

    .models-hscroll__track {
        padding: 0 20px;
    }

    .model-card-xl {
        width: 240px;
    }

    .events-masonry {
        columns: 1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer-inner {
        padding-left: 0;
    }

    .faq-number {
        display: none;
    }

    .testimonial-slide {
        padding: 0 10px;
    }

    .page-404__number {
        font-size: 8rem;
    }

    .cta-diagonal__bg {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    }

    .contact-info-card {
        padding: 35px 25px;
    }

    .modal-editorial {
        padding: 35px 25px;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* === Model Gallery Thumbnails === */
.model-gallery {
    margin-top: 4rem;
}

.model-gallery__title {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.model-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.model-gallery__thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.model-gallery__thumb:hover {
    transform: scale(1.03);
    opacity: 0.85;
}

.model-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .model-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   GALLERY SLIDER 
============================================================ */

.gallery {
    width: 100%;
    min-width: 0;
}

.main-slider {
    position: relative;
    overflow: hidden;
}

.main-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.prev::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(314deg);
}

.next {
    right: 10px;
}

.next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.thumbs {
    overflow: hidden;
    margin-top: 8px;
}

.thumb-track {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.thumb {
    flex: 0 0 calc(25% - 5px);
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    display: block;
}

/*-------------------- fixed-social -----------------*/

.fixed-social {
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 15px;
    display: none;
}

@media screen and (max-width: 992px) {
    .fixed-social {
        display: flex;
    }
}

.fixed-social__link {
    flex: 1;
    color: #fff;
    font-size: 16px;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.2), 1px -1px 0 rgba(0,0,0,0.2), -1px 1px 0 rgba(0,0,0,0.2), 1px 1px 0 rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    transition: all .3s ease;
    padding: 10px 20px;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
}

.fixed-social__link.btn_wa {
    background-color: #25D366;
}

.fixed-social__link.btn_tg {
    background-color: #0088cc;
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}

/*------------------- privat popup -----------------*/

.body-scroll-lock {
    overflow: hidden;
    height: 100%;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    text-align: center;
    color: #1c1c1c;
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 50px 30px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #1c1c1c;
    font-size: 24px;
    cursor: pointer;
}

.popup__title {
    font-size: 24px;
    color: #1c1c1c;
    margin: 0 0 20px 0;
}

.popup__subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.popup-buttons .btn {
  	font-weight: 700;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.2), 1px -1px 0 rgba(0,0,0,0.2), -1px 1px 0 rgba(0,0,0,0.2), 1px 1px 0 rgba(0,0,0,0.2);
}

.popup-buttons .btn-tg {
    background-color: #0088cc;
}

.popup-buttons .btn-wa {
    background-color: #25d366;
}

.popup-buttons .btn:hover {
    color: #fff;
}