/*--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--*/

/* --- CSS Custom Properties --- */
:root {
    --primary: #000000;
    --bg: #FAFAF8;
    --accent: #C8B89A;
    --accent-dark: #A89878;
    --text: #1A1A1A;
    --subtle: #E8E4DE;
    --cream: #F3F0EB;
    --gray: #888888;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;
    --font-display: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Reset --- */
*,
*::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: 300;
    color: var(--text);
    background: #0a0a0a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h4 {
    font-size: 1.3rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* --- Custom Cursor (Desktop) --- */
.custom-cursor,
.custom-cursor-dot {
    display: none;
}

@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);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 44px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #222;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--sm {
    padding: 12px 28px;
    font-size: 0.75rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
  	background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  	max-width: 100vw;
}

.site-header.scrolled {
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.site-header.header-transparent .header-nav-list a {
    color: #fff;
}

.site-header.header-transparent .hamburger-line {
    background-color: #fff;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
  	min-height: 84px;
  	padding: 15px 5%;
}

.header-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.header-logo-image {
  max-width: 240px;
  max-height: 60px;
}

.header-logo-top {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.header-logo-top.dark {
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .header-logo-top.dark {
        color: #fff;
    }
}

.header-logo-bottom {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.header-nav {
    display: flex;
  	align-items: center;
}

.header-socials {
  	display: flex;
  	gap: 32px;
  	margin-right: 32px;
}

.header-socials-link {
  	display: flex;
  	height: 24px;
  	width: 24px;
}

.header-socials-link-icon {
  	height: 100%;
  	width: 100%;
  	object-fit: cover;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.header-nav-list a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.site-header.header-transparent .header-nav-list a:hover {
    color: #d2ae3d;
}

.header-nav-list a.active {
    font-weight: 500;
}

/* Language */

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 3px 10px;
    margin-left: 15px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

@media screen and (min-width: 1200px) {
    .language-block {
        order: 2;
    }
}

.language-block-head {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    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 #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

.language-block-list {
    list-style: none;
    width: 90px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--bg);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1010;
    display: none;
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background-color: #eee;
}

.language-block-list li a {
    display: block;
    color: #333;
    text-align: left;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 1px;
    background-color: var(--primary);
    margin: 7px 0;
    transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/*-------------- header-social --------------*/

.header__social {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 768px) {
    .header__social {
        display: flex;
    }
}

.header__social-link {
    width: 30px;
    height: 30px;
    background-color: rgb(255 255 255 / .2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__social-link.btn_wa {
    border: 1px solid #25D366;
}

.header__social-link.btn_wa svg {
    width: 16px;
    fill: #25D366;
}

.header__social-link.btn_tg {
    border: 1px solid #0088cc;
}

.header__social-link.btn_tg svg {
    width: 18px;
    fill: #0088cc;
}

.header__social-link.btn_ph {
    border: 1px solid #cb2845;
}

.header__social-link.btn_ph svg {
    width: 14px;
    fill: #cb2845;
}

/*-------------- hero -------------*/

	.hero {
        height: 100vh;
        background:
          linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.6)),
          url('./images/home-hero.jpg?v=1.1') top center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(212, 175, 55, 0.1) 0%,
          rgba(10, 10, 10, 0.8) 100%
        );
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 2rem;
      }

      .hero h1 {
        font-size: 4.5rem;
        font-weight: 200;
        letter-spacing: 8px;
        margin-bottom: 1.5rem;
        color: #d4af37;
        text-transform: uppercase;
      }

      .hero p {
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 3px;
        margin-bottom: 3rem;
        color: #e8e8e8;
      }

	@media (max-width: 768px) {
        .hero h1 {
          font-size: 2.5rem;
          letter-spacing: 4px;
        }

        .hero p {
          font-size: 1rem;
        }
      }

	  .section {
        padding: 8rem 5%;
        position: relative;
      }

      .section-title {
        display: flex;
        justify-content: center;
    	align-items: center;
    	gap: 12px;
        text-align: center;
        font-size: 3rem;
        font-weight: 200;
        letter-spacing: 5px;
        margin-bottom: 4rem;
        color: #d4af37;
        text-transform: uppercase;
      }

      .section-title i {
        margin-right: 1rem;
        font-size: 2.5rem;
      }

	  .section-title-image {
        height: 40px;  
	  }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
      }

      .feature-card {
        background: linear-gradient(
          135deg,
          rgba(20, 20, 20, 0.8) 0%,
          rgba(30, 30, 30, 0.6) 100%
        );
        padding: 3rem 2rem;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
        text-align: center;
      }

	  .feature-card-image {
	  	height: 48px;
        margin: 0 auto 1.5rem;
	  }

      .feature-card:hover {
        transform: translateY(-10px);
        border-color: #d4af37;
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
      }

      .feature-card h3 {
        font-size: 1.5rem;
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        color: #f5f5f5;
      }

      .feature-card p {
        color: #c0c0c0;
        line-height: 1.8;
        font-weight: 300;
      }

	  .geometric-pattern {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.03;
        background-image:
          repeating-linear-gradient(
            45deg,
            #d4af37 0px,
            #d4af37 1px,
            transparent 1px,
            transparent 60px
          ),
          repeating-linear-gradient(
            -45deg,
            #d4af37 0px,
            #d4af37 1px,
            transparent 1px,
            transparent 60px
          );
        pointer-events: none;
      }

	  .models-section {
        background: #050505;  
	  }

	  .models-section-title {
        display: flex;
        justify-content: center;
    	align-items: center;
    	gap: 32px;
	  }

	  .models-section-title-image {
      	height: 48px;  
	  }

	  .models-home-intro {
        text-align: center;
        max-width: 720px;
        margin: -2rem auto 2rem;
        color: #c0c0c0;
        font-weight: 300;
        letter-spacing: 1px;
      }

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs-wrap {
    padding: 10px 15px;
}

.breadcrumbs {
    list-style: none;
    color: var(--gray);
    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 Styles
   ============================================ */
.section {
    padding: 120px 5%;
}

.section--cream {
    background-color: var(--cream);
}

.section--dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-tag--light {
    color: var(--accent);
}

.section-header-editorial {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-editorial {
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title-editorial--light {
    color: var(--white);
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.section-subtitle {
    max-width: 500px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1rem;
}

/* ============================================
   Horizontal Scrolling Models
   ============================================ */
.section-models {
    padding: 120px 0 100px;
    overflow: hidden;
}

.section-models__header {
    text-align: center;
    margin-bottom: 50px;
}

.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);
}

/* ============================================
   Services Icon Grid
   ============================================ */
.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.services-icon-grid--page {
    gap: 2px;
}

.service-icon-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.service-icon-card--large {
    padding: 60px 40px;
}

.service-icon-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.service-icon-card__icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--accent);
    transition: all var(--transition);
}

.service-icon-card:hover .service-icon-card__icon {
    transform: scale(1.2);
}

.service-icon-card:hover .service-icon-card__icon svg {
    stroke: var(--primary);
}

.service-icon-card__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    transition: all var(--transition);
}

.service-icon-card__reveal {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.service-icon-card:hover .service-icon-card__reveal {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}

.service-icon-card__reveal p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-icon-card__price {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-icon-card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   Stats Editorial
   ============================================ */
.section-stats-editorial {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.section-stats-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 184, 154, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-stats-editorial__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-editorial {
    text-align: center;
}

.stat-editorial__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-editorial__divider {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px auto;
}

.stat-editorial__label {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Testimonials Slider
   ============================================ */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.testimonial-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 40px;
}

.testimonial-slide__quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-slide__text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.testimonial-slide__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-slide__name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.testimonial-slide__role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-slider__btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all var(--transition);
}

.testimonial-slider__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonial-slider__counter {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-slider__counter span:first-child {
    color: var(--white);
}

/* ============================================
   CTA Diagonal
   ============================================ */
.cta-diagonal {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.cta-diagonal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.cta-diagonal__content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.cta-diagonal__title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-diagonal__text {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   Page Heroes
   ============================================ */
/* Minimal (inner pages) */
.page-hero-minimal {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--cream);
    position: relative;
}

.page-hero-minimal__inner {
    position: relative;
}

.page-hero-minimal__title {
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.page-hero-minimal__line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.page-hero-minimal__sub {
    max-width: 500px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
}

/* Full-bleed (about page) */
.page-hero-bleed {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bleed__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bleed__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bleed__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.page-hero-bleed__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 2rem;
}

.page-hero-bleed__title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-bleed__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   About Story Editorial
   ============================================ */
.about-story-editorial {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story-editorial__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-story-editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-editorial__image-label {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 24px;
    writing-mode: vertical-lr;
}

.about-story-editorial__content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-story-editorial__content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pull-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.5;
    padding: 30px 0;
    margin: 20px 0;
    border-top: 1px solid var(--subtle);
    border-bottom: 1px solid var(--subtle);
    position: relative;
}

.pull-quote__mark {
    font-size: 3rem;
    color: var(--accent);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 4px;
}

/* Mission Editorial */
.mission-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.mission-editorial__card {
    background: var(--white);
    padding: 60px 50px;
    position: relative;
}

.mission-editorial__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--subtle);
    line-height: 1;
    margin-bottom: 16px;
}

.mission-editorial__card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.mission-editorial__card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Team Editorial */
.team-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-editorial__card {
    text-align: center;
}

.team-editorial__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter var(--transition-slow);
}

.team-editorial__card:hover .team-editorial__image img {
    filter: grayscale(0%);
}

.team-editorial__hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.team-editorial__card:hover .team-editorial__hover {
    transform: translateY(0);
}

.team-editorial__hover p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.7;
}

.team-editorial__info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.team-editorial__info span {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ============================================
   Process Timeline
   ============================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-timeline__line {
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--subtle);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Pricing Horizontal Table
   ============================================ */
.pricing-table-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pricing-table thead tr {
    border-bottom: 2px solid var(--primary);
}

.pricing-table__feature-head {
    text-align: left;
    padding: 30px 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    width: 28%;
    position: sticky;
    left: 0;
    background: var(--bg);
    z-index: 2;
}

.pricing-table__plan-head {
    text-align: center;
    padding: 30px 20px;
    vertical-align: bottom;
    position: relative;
}

.pricing-table__plan-head--featured {
    background: var(--cream);
}

.pricing-table__badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 14px;
    margin-bottom: 12px;
}

.pricing-table__plan-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-table__plan-price {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-table__plan-period {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--subtle);
}

.pricing-table tbody tr:hover {
    background: rgba(200, 184, 154, 0.06);
}

.pricing-table tbody td {
    padding: 18px 20px;
    text-align: center;
    color: var(--text);
    vertical-align: middle;
}

.pricing-table__feature {
    text-align: left !important;
    font-weight: 400;
    color: var(--primary);
    position: sticky;
    left: 0;
    background: var(--bg);
    z-index: 1;
}

.pricing-table__featured-col {
    background: var(--cream);
}

.pricing-table tfoot td {
    padding: 30px 20px;
    text-align: center;
}

.pricing-table tfoot .pricing-table__featured-col {
    background: var(--cream);
}

/* ============================================
   Events
   ============================================ */
.events-month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.month-pill {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    border: 1px solid var(--subtle);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 400;
}

.month-pill:hover,
.month-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.events-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-pill {
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    border: 1px solid var(--subtle);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
}

.category-pill:hover,
.category-pill.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* Masonry-style Events Grid */
.events-masonry {
    columns: 3;
    column-gap: 24px;
}

.event-card {
    break-inside: avoid;
    margin-bottom: 24px;
    border: 1px solid var(--subtle);
    background: var(--white);
    transition: all var(--transition);
    overflow: hidden;
}

.event-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.event-card__header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 24px 0;
}

.event-card__date {
    background: var(--primary);
    color: var(--white);
    padding: 12px 14px;
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.event-card__day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.event-card__month {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-card__category {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.event-card__header h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.event-card__body {
    padding: 16px 24px 24px;
}

.event-card__location {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card__body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.events-loading {
    text-align: center;
    padding: 80px 20px;
    column-span: all;
}

.events-loading__spinner {
    width: 30px;
    height: 30px;
    border: 1px solid var(--subtle);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.events-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    column-span: all;
}

.events-no-results h3 {
    color: var(--gray);
    margin-bottom: 8px;
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-editorial {
    background: var(--white);
    padding: 50px;
    max-width: 480px;
    width: 90%;
    position: relative;
    border: 1px solid var(--subtle);
}

.modal-editorial__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    transition: color var(--transition);
    padding: 4px;
}

.modal-editorial__close:hover {
    color: var(--primary);
}

.modal-editorial h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.modal-editorial__event-name {
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    border: 1px solid var(--subtle);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   Contact Split
   ============================================ */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-split__form h3,
.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--cream);
    padding: 50px;
    position: relative;
}

.contact-info-card__item {
    margin-bottom: 24px;
}

.contact-info-card__label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-card__item a,
.contact-info-card__item span {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-info-card__divider {
    width: 100%;
    height: 1px;
    background: var(--subtle);
    margin: 30px 0;
}

.contact-map-placeholder {
    background: var(--white);
    border: 1px solid var(--subtle);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder__inner {
    text-align: center;
    color: var(--gray);
}

.contact-map-placeholder__inner svg {
    stroke: var(--accent);
    margin-bottom: 8px;
}

.contact-map-placeholder__inner span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 32px;
    opacity: 0.6;
}

.faq-icon {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 200;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform var(--transition);
    color: var(--accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 0 28px 52px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* ============================================
   Legal Content
   ============================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 60px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--subtle);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 10px;
}

.legal-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--primary);
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   404 Page
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
}

.page-404__number {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 300;
    color: var(--subtle);
    line-height: 0.85;
    margin-bottom: 10px;
    letter-spacing: -0.05em;
}

.page-404__title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-404__text {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.page-404__links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.page-404__nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.page-404__nav span {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.page-404__nav a {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding-bottom: 2px;
}

.page-404__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.page-404__nav a:hover::after {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
}

.footer-decoration {
    padding: 0 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 184, 154, 0.3), transparent);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 2rem 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand-city {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-social a svg {
    width: 16px;
    fill: #807f80;
}

/* Footer Nav */
.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col h4,
.footer-nav-sub h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav-sub ul li {
    margin-bottom: 12px;
}

.footer-nav-sub ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-nav-sub ul a:hover {
    color: var(--accent);
}

/* Footer Contact */
.footer-contact-list li {
    margin-bottom: 18px;
}

.footer-contact-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
    font-weight: 500;
}

.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .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: 1025px) {
.hamburger {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        flex-direction: column-reverse;
        align-items: center;
      	justify-content: center;
      	gap: 24px;
        padding: 40px 20px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
      	background: rgba(10, 10, 10, 0.98);
      	max-width: 100vw;
      	overflow-x: hidden;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        order: 2;
      	width: 100%;
    }

    .header-nav-list li {
        width: 100%;
        text-align: center;
    }

    .header-nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--subtle);
    }

    .header-nav-list a::after {
        display: none;
    }

    .language-block {
        order: 1;
        padding: 3px 0px;
        margin: 0 0 20px 0;
    }
  
  	.language-block-list {
    	right: 50%;
      	transform: translateX(50%);
  	}
  
  	.header-socials {
      	order: 2;
      	margin-top: 12px;
      	margin-right: 0;
  	}
  
  .header-socials-link {
  		height: 28px;
    	width: 28px;
  }
}

@media (max-width: 768px) {
    /* Sections */
    .section {
        padding: 80px 5%;
    }

    .section-models {
        padding: 80px 5% 60px;
    }

    .models-hscroll__track {
        padding: 0 30px;
        gap: 20px;
    }

    .model-card-xl {
        width: 260px;
    }
  
  	.section-title {
      	font-size: 20px;
  	}
  
  	.section-title-image {
    	height: 24px;  
  	}

    /* 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: 35vh;
        min-height: 300px;
    }

    .cta-diagonal {
        padding: 100px 0;
    }

    .pricing-table__feature-head {
        position: static;
    }

    .pricing-table__feature {
        position: static;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 32px;
        font-size: 0.75rem;
    }
  
  	.container {
  		padding: 0;
  	}

    .section {
        padding: 60px 15px;
    }

    .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;
    }
  
  	.section-title {
    	margin-bottom: 30px;  
  	}
  
  	.feature-card {
    	padding: 35px 25px;  
  	}
  
  	.feature-card-image {
    	height: 32px;  
  	}
  
  	.feature-card h3 {
  		font-size: 20px;
  	}
  
  	.hero h1 {
      	font-size: 2rem;
  	}
  
  	.models-section-title-image {
      	height: 24px;
  	}
  
  	.models-home-intro {
      	font-size: 14px;
      	margin: 0 auto;
  	}
  
  	.header-inner {
       	padding: 15px;
      	margin: 0;
    	max-width: 100vw;
    	overflow-x: hidden;
  	}
}

/* ============================================
   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 {
        padding: 3rem 5% 5rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .model-card {
        position: relative;
        overflow: hidden;
        height: 420px;
        cursor: pointer;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
      }

      .model-card:hover {
        transform: translateY(-6px);
        border-color: #d4af37;
        box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
      }

      .model-card img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .model-card:hover img {
        transform: scale(1.08);
      }

      .model-card-link {
        display: block;
        width: 100%;
        height: 100%;
        color: inherit;
        text-decoration: none;
      }

      .model-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
        padding: 2.5rem 1.5rem 1.5rem;
        transform: translateY(0);
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

	  .model-info-subtitle {
      	color: #f5f5f5;
        font-size: 16px;
	  }

      .model-card:hover .model-info {
        opacity: 0;
        transform: translateY(20px);
      }

      .model-info h3 {
        color: #d4af37;
        font-size: 1.25rem;
        letter-spacing: 2px;
        margin-bottom: 0.35rem;
        font-weight: 400;
      }

      .model-info .stats {
        display: flex;
        gap: 1rem;
        margin-top: 0.75rem;
        font-size: 0.85rem;
        color: #c0c0c0;
      }

      .model-info .stats p {
        display: flex;
        align-items: center;
        gap: 0.35rem;
      }

	  .stats .stat-icon {
      	height: 14px;  
	  }

      .model-action {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border: 1px solid #d4af37;
        color: #d4af37;
        background: rgba(10, 10, 10, 0.45);
        width: max-content;
        height: max-content;
        margin: auto;
        padding: 0.9rem 1.6rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
      }

      .model-card:hover .model-action {
        opacity: 1;
        transform: translateY(0);
      }

.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: 20px;
}

.page-nav-button {
    width: 50%;
    max-width: 190px;
    color: var(--primary);
    line-height: 1.2;
    background: var(--cream);
    position: relative;
    padding: 8px 15px;
    transition: all .3s ease;
}

.page-nav-button.button-prev {
    text-align: left;
    padding-left: 45px;
    margin-right: 1px;
}

.page-nav-button.button-prev::before {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(320deg);
}

.page-nav-button.button-next {
    text-align: right;
    padding-right: 45px;
    margin-left: 1px;
}

.page-nav-button.button-next::after {
    content: '';
    display: inline-block;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(132deg);
}

.page-nav-button:hover {
    text-decoration: none;
}

.page-nav-name {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page-nav-rout {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   Dating Extensions — Model Profile
   ============================================ */

.model-profile {
 	display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: 2rem;
    align-items: start;
}

/* ============================================================
   GALLERY SLIDER + THUMBS SLIDER + LIGHTBOX
   ============================================================ */

.gallery-wrap {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.slider-main {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #111;
    overflow: hidden;
    box-sizing: border-box;
	border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(1.03);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    box-sizing: border-box;
    transition: background 0.2s;
	border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(10, 10, 10, 0.6);
}

.arrow-prev {
    left: 10px;
}

.arrow-next {
    right: 10px;
}

.arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    flex-shrink: 0;
}

.counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 10;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    letter-spacing: 0.05em;
    line-height: 1;
}

.zoom-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.zoom-hint svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    pointer-events: none;
}

.thumbs-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-top: 16px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.thumb {
    flex: 0 0 calc(25% - 5px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
    background: #111;
    flex-shrink: 0;
}

.thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.thumb:hover img {
    transform: scale(1.07);
}

.thumb.active {
    border-color: #c9a96e;
    opacity: 1;
}

.thumb:not(.active):hover {
    opacity: 0.9;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}

.lb-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.lightbox.open .lb-content {
    transform: scale(1);
}

.lb-img-wrap {
    display: block;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
}

.lb-img-wrap img {
    display: block;
    max-width: min(88vw, 1200px);
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.lb-caption {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    letter-spacing: 0.04em;
}

.lb-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: background 0.2s;
    box-sizing: border-box;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lb-close svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    pointer-events: none;
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: background 0.2s;
    box-sizing: border-box;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.16);
}

.lb-prev {
    left: 16px;
}

.lb-next {
    right: 16px;
}

.lb-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.lb-dots {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 7px;
    align-items: center;
}

.lb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lb-dot.active {
    background: #c9a96e;
    transform: scale(1.4);
}

.kb-hint {
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .lb-prev {
        left: 8px;
    }

    .lb-next {
        right: 8px;
    }

    .lb-arrow {
        width: 38px;
        height: 38px;
    }
}

/* --------------- */

.model-profile__details {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    background: radial-gradient(
        circle at top right,
        rgba(212, 175, 55, 0.09),
        transparent 50%
    ),
    rgba(14, 14, 16, 0.88);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 0;
}

.eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
}

.profile-head h1 {
        font-size: 3rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #f3f3f3;
        line-height: 1;
        margin-top: 0.35rem;
      }

      @media (max-width: 960px) {
        .profile-head h1 {
          font-size: 2.4rem;
        }
      }

.model-title-and-socials-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-profile-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.model-profile-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  width: 28px;
}

.model-profile-link-icon {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.model-profile-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.55rem;
  color: #d4af37;
  letter-spacing: 1px;
}

.model-profile-location-icon {
  height: 20px;
}

.model-profile-role {
    margin-top: 0.6rem;
    color: #c9c9c9;
}

.model-profile-location-meta-tags {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.model-profile-location-meta-tag {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.74rem;
  color: #ddd;
}

.model-profile-stats-title {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.model-profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 0.8rem;
}

.model-profile-stat {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 31, 0.95),
    rgba(18, 18, 20, 0.95)
  );
  padding: 0.95rem 0.85rem;
}

.model-profile-stat-name {
  color: #9f9f9f;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.model-profile-stat-value {
  margin-top: 0.3rem;
  color: #f5f5f5;
}

.model-profile-stat-lang-tag {
  display: inline-block;
  margin-right: 6px;
}

.model-profile-about-text {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: rgba(18, 18, 18, 0.75);
  padding: 1rem 1rem;
  color: #d4d4d4;
}

.model-profile-link-to-contacts {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  text-decoration: none;
  color: #0a0a0a;
  background: #d4af37;
  border: 1px solid #d4af37;
  padding: 0.75rem 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.model-profile-link-to-contacts:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.28);
  color: #0a0a0a;
}

.model-profile-link-to-contacts-icon {
  height: 20px;
}

.model-profile-prev-and-next {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.model-profile-prev-and-next-button {
  flex: 1;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 0.85rem;
  color: #f5f5f5;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.model-profile-prev-and-next-button:hover {
  color: initial;
}

.model-profile-prev-and-next-rout {
  color: #9f9f9f;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.model-profile-prev-and-next-name {
  margin-top: 0.2rem;
  color: #d4af37;
}

.model-profile-next {
  align-items: flex-end;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
}

.single-social__link {
    min-width: 150px;
    text-transform: uppercase;
    background: transparent;
    font-weight: 500;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2.5px;
    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 {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.single-social__link.btn_wa {
    background-color: #25D366;
}

.single-social__link.btn_tg {
    background-color: #0088cc;
}

.single-social__link.btn_ph {
    background-color: #cb2845;
}

.single-social__link svg {
    fill: #fff;
    width: 20px;
    transition: all .3s ease;
}

.single-social__link.btn_ph svg {
    width: 18px;
}

.single-social__link:hover {
    color: #fff;
}

.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;
    margin-bottom: 32px;
}

.model-profile__section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    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;
}

.model-profile__service-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--subtle);
}

.model-profile__service-row:last-child {
    border-bottom: none;
}

.model-profile__service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    white-space: nowrap;
}

.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;
    border-bottom: 1px solid var(--subtle);
}

.model-profile__rates-in {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
}

.model-profile__rates-out {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
}

/* CTA */
.model-profile__cta {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 40px 0;
    margin: 0 0;
}

.pagination__link {
    font-weight: 500;
    font-size: 0.8rem;
    text-align: center;
	padding: 0.6rem 1rem;
    min-width: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pagination__link.active,
.pagination__link:hover {
	background: #d4af37;
    color: #0a0a0a;
}

/* Responsive */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .models-grid {
      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;
    }
  
  	.model-profile-stats-grid {
    	grid-template-columns: repeat(2, minmax(130px, 1fr));
  	}
  	
  	.model-profile__details {
  		padding: 16px;
  	}
  
  	.profile-head h1 {
    	font-size: 28px;  
  	}
}

@media (max-width: 750px) {
	.models-grid {
      grid-template-columns: 1fr;
    }
}

	  footer {
        background: #050505;
        padding: 4rem 5%;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
      }

	  .footer-logo-image {
  		max-width: 200px;
  		max-height: 80px;
	  }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 4rem;
        max-width: 1400px;
        margin: 0 auto 3rem;
      }

      .footer-section h3 {
        color: #d4af37;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
        font-weight: 400;
      }

      .footer-section p,
      .footer-section a {
        color: #c0c0c0;
        text-decoration: none;
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 300;
        transition: color 0.3s ease;
      }

	  .footer-section .footer-section-p-with-icon,
	  .footer-section .footer-section-span-with-icon {
	    display: flex;
		align-items: center;
        gap: 8px;
	  }

	  .footer-section-p-with-icon-image,
	  .footer-section-span-with-icon-image {
		height: 20px;
	  }

      .footer-section a:hover {
        color: #d4af37;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        color: #808080;
        font-size: 0.9rem;
      }

.footer-socials {
  	display: flex;
  	gap: 24px;
}

.footer-socials-link {
  	display: flex;
  	height: 24px;
  	width: 24px;
}

.footer-socials-link-icon {
  	height: 100%;
  	width: 100%;
  	object-fit: cover;
}

.model-page-main {
  color: #fff;
}
  
.model-profile-section {
  padding-top: 150px; 
}
  
.model-profile-discover {
  margin-top: 4rem;
}

.model-profile-discover-title {
  text-align: center;
  color: #d4af37;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.model-profile-discover-subtitle {
  text-align: center;
  color: #b9b9b9;
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}

.model-profile-discover-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.model-profile-discover-model-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.model-profile-discover-model-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 14px 38px rgba(212, 175, 55, 0.22);
}

.model-profile-discover-model-card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.model-profile-discover-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.model-profile-discover-model-card:hover img {
  transform: scale(1.08);
}

.model-profile-discover-model-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
  padding: 2rem 1rem 1rem;
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.model-profile-discover-model-card:hover
  .model-profile-discover-model-card-info {
  opacity: 0;
  transform: translateY(20px);
}

.model-profile-discover-model-card-info h3 {
  color: #d4af37;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.model-profile-discover-model-card-info p {
  color: #d8d8d8;
  font-size: 0.85rem;
}

.model-action {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #d4af37;
  color: #d4af37;
  background: rgba(10, 10, 10, 0.45);
  width: max-content;
  height: max-content;
  margin: auto;
  padding: 0.75rem 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.model-profile-discover-model-card:hover .model-action {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .model-profile-discover-models {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-nav-list a {
  	padding: 12px 0;  
  }
  
  .model-profile-section {
  	padding-top: 130px;
  }
  
  .model-profile-discover-models {
    grid-template-columns: 1fr;
  }
  
  footer {
  	padding: 30px 15px;
  }
  
  .footer-content {
  	gap: 32px;
    margin-bottom: 16px;
  }
  
  .footer-socials-link {
    	height: 28px;
    	width: 28px;
   		margin: 0 ;
  }
}
  
  
  
  