/*--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: #FDF8F3;
    --surface: #FFFFFF;
    --accent: #E8927C;
    --accent-hover: #D97B64;
    --accent-light: rgba(232, 146, 124, 0.12);
    --accent-glow: rgba(232, 146, 124, 0.25);
    --secondary: #B8C5AA;
    --secondary-light: rgba(184, 197, 170, 0.15);
    --text: #3D3832;
    --text-light: #7A7168;
    --soft: #F0E6DB;
    --soft-mid: #E8DDD2;
    --border: rgba(61, 56, 50, 0.08);
    --white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(61, 56, 50, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 56, 50, 0.08);
    --shadow-lg: 0 16px 50px rgba(61, 56, 50, 0.1);
    --shadow-float: 0 20px 60px rgba(232, 146, 124, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 50px;
    --radius-blob: 40% 60% 55% 45% / 60% 40% 45% 55%;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Quicksand', -apple-system, sans-serif;
}

/* --- Gradient Mesh Background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 146, 124, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(184, 197, 170, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(240, 230, 219, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 70% 40% at 80% 10%, rgba(232, 146, 124, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 70% at 20% 90%, rgba(184, 197, 170, 0.06) 0%, transparent 50%);
    background-color: var(--bg);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 30% 25% at 75% 30%, rgba(232, 146, 124, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 25% 35% at 25% 70%, rgba(184, 197, 170, 0.05) 0%, transparent 70%);
    animation: meshShift 30s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.03);
    }

    100% {
        transform: translate(-10px, 10px) scale(0.98);
    }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text);
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

p+p {
    margin-top: 1rem;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.mt-4 {
    margin-top: 2.5rem;
}

/* --- Floating Parallax Circles --- */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-el {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: floatDrift 20s ease-in-out infinite;
}

.floating-el:nth-child(1) {
    width: 140px;
    height: 140px;
    background: var(--accent-light);
    top: 12%;
    left: 4%;
    animation-delay: 0s;
    animation-duration: 24s;
}

.floating-el:nth-child(2) {
    width: 90px;
    height: 90px;
    background: var(--secondary-light);
    top: 35%;
    right: 6%;
    animation-delay: -5s;
    animation-duration: 19s;
}

.floating-el:nth-child(3) {
    width: 60px;
    height: 60px;
    background: rgba(240, 230, 219, 0.35);
    bottom: 25%;
    left: 10%;
    animation-delay: -10s;
    animation-duration: 26s;
}

.floating-el:nth-child(4) {
    width: 110px;
    height: 110px;
    background: var(--accent-light);
    bottom: 30%;
    right: 12%;
    animation-delay: -7s;
    animation-duration: 21s;
}

.floating-el:nth-child(5) {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    top: 65%;
    left: 45%;
    animation-delay: -12s;
    animation-duration: 23s;
}

.floating-el:nth-child(6) {
    width: 100px;
    height: 100px;
    background: rgba(240, 230, 219, 0.28);
    top: 8%;
    right: 28%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.floating-el:nth-child(7) {
    width: 70px;
    height: 70px;
    background: var(--accent-glow);
    top: 50%;
    left: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.floating-el:nth-child(8) {
    width: 45px;
    height: 45px;
    background: var(--secondary-light);
    bottom: 15%;
    right: 35%;
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -25px) scale(1.06);
    }

    50% {
        transform: translate(-20px, 18px) scale(0.94);
    }

    75% {
        transform: translate(22px, 12px) scale(1.03);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%;
    }

    25% {
        border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%;
    }

    50% {
        border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
    }

    75% {
        border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%;
    }
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes petalDrift {
    0% {
        transform: translateY(-10%) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 146, 124, 0.2);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(232, 146, 124, 0.1);
    }
}

/* --- Buttons (pill-shaped) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--bg);
    color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--soft-mid);
}

.btn-outline-dark:hover {
    background: var(--soft);
    border-color: var(--soft);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 4px 30px rgba(61, 56, 50, 0.06);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    z-index: 1001;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    border-radius: var(--radius-blob);
    animation: blobMorph 8s ease-in-out infinite, breathe 5s ease-in-out infinite;
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-float);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    font-variation-settings: 'WONK' 1;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

@media screen and (max-width: 768px) {
    .nav-item--lang {
        order: 1;
        margin: 0 0 20px 0;
    }

    .nav-item {
        order: 2;
    }
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-light);
}

/* Language */

.language-block {
    width: 90px;
    border-radius: 50px;
    background: var(--accent-light);
    position: relative;
    padding: 9px 15px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.language-block-head {
    font-family: sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: relative;
    transition: color .3s ease;
}

.language-block-head::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

.language-block-list {
    list-style: none;
    width: 90px;
    border-radius: 15px;
    background: #f9eae2;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: absolute;
    top: 101%;
    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: var(--text);
    text-align: left;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.toggle-bar {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 70% 50%, rgba(232, 146, 124, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 197, 170, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.hero-petal {
    position: absolute;
    width: 12px;
    height: 18px;
    background: var(--accent);
    opacity: 0;
    border-radius: 50% 0 50% 50%;
    animation: petalDrift linear infinite;
    z-index: 1;
}

.hero-petal:nth-child(2) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.hero-petal:nth-child(3) {
    left: 25%;
    animation-duration: 15s;
    animation-delay: -3s;
    width: 10px;
    height: 14px;
    background: var(--secondary);
}

.hero-petal:nth-child(4) {
    left: 45%;
    animation-duration: 11s;
    animation-delay: -6s;
}

.hero-petal:nth-child(5) {
    left: 65%;
    animation-duration: 14s;
    animation-delay: -2s;
    width: 8px;
    height: 12px;
    background: var(--soft-mid);
}

.hero-petal:nth-child(6) {
    left: 80%;
    animation-duration: 13s;
    animation-delay: -8s;
    background: var(--secondary);
}

.hero-petal:nth-child(7) {
    left: 55%;
    animation-duration: 16s;
    animation-delay: -4s;
    width: 14px;
    height: 20px;
}

.hero-petal:nth-child(8) {
    left: 35%;
    animation-duration: 10s;
    animation-delay: -9s;
    width: 9px;
    height: 13px;
    background: var(--secondary);
}

.hero-petal:nth-child(9) {
    left: 90%;
    animation-duration: 17s;
    animation-delay: -1s;
    background: var(--soft-mid);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    animation: breathe 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-variation-settings: 'WONK' 1, 'opsz' 72;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    font-variation-settings: 'WONK' 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Blob Image */
.hero-image-wrapper {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-blob {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-blob);
    overflow: hidden;
    animation: blobMorph 10s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.hero-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper .hero-deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero-deco-circle:nth-child(2) {
    width: 180px;
    height: 180px;
    background: var(--secondary-light);
    top: -30px;
    right: -30px;
    animation: breathe 5s ease-in-out infinite, pulseGlow 6s ease-in-out infinite;
}

.hero-deco-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent-light);
    bottom: -20px;
    left: -20px;
    animation: breathe 6s ease-in-out infinite 1s;
}

.hero-deco-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    background: var(--soft);
    top: 50%;
    left: -40px;
    animation: gentleBounce 4s ease-in-out infinite;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: var(--text-light);
    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);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-soft {
    background: var(--soft);
    border-radius: 60px;
    margin: 0 20px 40px 20px;
}

.section-light {
    background: var(--soft);
    border-radius: 60px;
    margin: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 48;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 30% at 30% 40%, rgba(232, 146, 124, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 70% 60%, rgba(184, 197, 170, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.page-hero>.container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 72;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   MODELS GRID — Blob clip-path images
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.model-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.model-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-blob);
    animation: blobMorph 12s ease-in-out infinite;
}

.model-card:nth-child(2) .model-card-img {
    animation-delay: -2s;
}

.model-card:nth-child(3) .model-card-img {
    animation-delay: -4s;
}

.model-card:nth-child(4) .model-card-img {
    animation-delay: -6s;
}

.model-card:nth-child(5) .model-card-img {
    animation-delay: -8s;
}

.model-card:nth-child(6) .model-card-img {
    animation-delay: -10s;
}

.model-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.model-card:hover .model-card-img img {
    transform: scale(1.05);
}

.model-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(61, 56, 50, 0.6), transparent);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 40% 45%;
}

.model-card:hover .model-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.model-card-category {
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

.model-card-info {
    padding: 20px;
    text-align: center;
}

.model-card-name {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.model-card-type {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SERVICES CASCADE — Overlapping cards
   ============================================ */
.services-cascade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-cascade-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-cascade-card:nth-child(even) {
    transform: translateY(20px);
}

.service-cascade-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-cascade-card:hover::before {
    opacity: 1;
}

.service-cascade-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.service-cascade-card:nth-child(even):hover {
    transform: translateY(14px);
}

.service-cascade-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: var(--radius-blob);
    margin: 0 auto 20px;
    animation: blobMorph 10s ease-in-out infinite;
    transition: var(--transition);
    position: relative;
}

.service-cascade-card:hover .service-cascade-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.service-cascade-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    font-variation-settings: 'WONK' 1;
}

.service-cascade-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-light);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--soft);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-variation-settings: 'WONK' 1;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    margin: 0 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background:
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 30% 50% at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 48;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    border-radius: var(--radius-blob);
    animation: blobMorph 12s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.about-story-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: var(--accent-light);
    border-radius: var(--radius-blob);
    animation: blobMorph 14s ease-in-out infinite reverse;
    z-index: -1;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.3rem;
    border-radius: var(--radius-blob);
    margin-bottom: 20px;
    animation: blobMorph 10s ease-in-out infinite;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.stat-card {
    background: var(--surface);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.team-card-img {
    overflow: hidden;
    aspect-ratio: 5 / 6;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.05);
}

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-variation-settings: 'WONK' 1;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.team-card-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.service-detail-reversed {
    direction: rtl;
}

.service-detail-reversed>* {
    direction: ltr;
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: var(--radius-blob);
    margin-bottom: 20px;
    animation: blobMorph 10s ease-in-out infinite;
}

.service-detail-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

.service-detail-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-detail:hover .service-detail-image img {
    box-shadow: var(--shadow-float);
    transform: scale(1.02);
}

.service-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--surface);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.4;
    font-variation-settings: 'WONK' 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PRICING PAGE — Pill-shaped pricing
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-pill);
    padding: 48px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.pricing-card-featured {
    background: var(--text);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card-featured .pricing-label,
.pricing-card-featured .pricing-desc,
.pricing-card-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-currency,
.pricing-card-featured .pricing-period {
    color: var(--white);
}

.pricing-card-featured .pricing-features li i.fa-check {
    color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text);
    line-height: 1;
    font-variation-settings: 'WONK' 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.fa-check {
    color: var(--secondary);
}

.pricing-features li i.fa-times {
    color: rgba(61, 56, 50, 0.2);
}

.pricing-features li.disabled {
    opacity: 0.45;
}

.pricing-card-featured .pricing-features li.disabled {
    opacity: 0.35;
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.month-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--soft);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.month-btn:hover,
.month-btn.active {
    background: var(--accent);
    color: var(--white);
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0;
    transition: var(--transition);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.event-card-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.event-card-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-variation-settings: 'WONK' 1;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.event-card-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    color: var(--accent);
    width: 16px;
    font-size: 0.75rem;
}

.event-card-price {
    display: inline-block;
    padding: 4px 16px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
}

/* Event Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 56, 50, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-variation-settings: 'WONK' 1, 'opsz' 36;
}

.modal-details {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-detail i {
    color: var(--accent);
    width: 20px;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-price {
    display: inline-block;
    padding: 8px 24px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 28px;
    font-variation-settings: 'WONK' 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--soft);
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    outline: none;
}

.form-group textarea {
    border-radius: var(--radius-md);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-check {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    border-radius: 6px;
}

.form-check label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-variation-settings: 'WONK' 1;
}

.form-success p {
    color: var(--text-light);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-variation-settings: 'WONK' 1;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-info-list li strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-info-list li p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-info-list li a {
    color: var(--accent);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.contact-social a i {
    width: 20px;
    color: var(--accent);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Map */
.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 20px;
    box-shadow: var(--shadow-md);
}

.map-section iframe {
    display: block;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--soft);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-variation-settings: 'WONK' 1;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 12px;
    font-variation-settings: 'WONK' 1;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 14px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th {
    background: var(--soft);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
}

.cookie-table td {
    padding: 12px 18px;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--soft-mid);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    font-variation-settings: 'WONK' 1;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 12px;
    font-variation-settings: 'WONK' 1;
}

.error-text {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 36px;
}

.error-links p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.error-links a {
    color: var(--accent);
    margin: 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 40px 0 0 0;
    margin: 0 0;
}

.pagination__link {
    display: inline-block;
    width: 50px;
    height: 50px;
    font-weight: 500;
    color: var(--text);
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
    border-radius: 50%;
    background-color: #fff;
    padding: 13px 10px;
    transition: all .3s ease;
}

.pagination__link.active,
.pagination__link:hover {
    text-decoration: none;
    color: #fff;
    background-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 48px 48px 0 0;
    margin-top: 40px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--bg);
    line-height: 0;
    display: none;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(232, 146, 124, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(184, 197, 170, 0.06) 0%, transparent 70%);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.footer-brand .brand-text {
    color: var(--white);
    font-size: 1.05rem;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
    font-size: 0.85rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-float);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    font-size: 0.9rem;
    animation: breathe 3s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cascade {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail,
    .service-detail-reversed {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card {
        border-radius: var(--radius-lg);
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cascade-card:nth-child(even) {
        transform: translateY(0);
    }

    .service-cascade-card:nth-child(even):hover {
        transform: translateY(-6px);
    }

    .cta-section,
    .section-soft,
    .section-light,
    .map-section {
        margin: 0 10px;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: var(--transition);
    }

    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 24px;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-cascade {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-section,
    .section-soft,
    .section-light,
    .map-section {
        border-radius: 28px;
        margin: 0;
    }

    .faq-item,
    .faq-item.active {
        border-radius: var(--radius-md);
    }

    .footer {
        border-radius: 32px 32px 0 0;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .pricing-badge {
        top: 14px;
        right: -32px;
    }

    .error-code {
        font-size: 5rem;
    }
}


/* ============================================
   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 .3s ease;
}

.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 .3s ease;
}

.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 .3s ease;
}

.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: 190px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    border-radius: 50px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    position: relative;
    padding: 14px 36px;
    overflow: hidden;
    transition: all .3s ease;
}

.page-nav-button:hover {
    text-decoration: none;
    color: var(--white);
    background: var(--accent);
    box-shadow: var(--shadow-float);
    transform: translateY(-3px);
}

.page-nav-button.button-prev {
    margin-right: 1px;
}

.page-nav-button.button-prev::before {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%) rotate(320deg);
    transition: border-color .3s ease;
}

.page-nav-button:hover::before {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.page-nav-button.button-next {
    margin-left: 1px;
}

.page-nav-button.button-next::before {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(132deg);
    transition: border-color .3s ease;
}

.page-nav-button:hover::before {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.page-nav-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.page-nav-button:hover::after {
    width: 200px;
    height: 200px;
}

/* ============================================
   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;
}

.single-social__link {
    min-width: 150px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2.5px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: var(--accent-light);
    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: 1px solid var(--accent);
    background: transparent;
    transform: translateY(-2px);
}

.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(--soft);
}

.model-profile__service-row:last-child {
    border-bottom: none;
}

.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(--soft);
}

/* CTA */
.model-profile__cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid-dating {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .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 {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    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: var(--gray);
    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;
}