/* Modern Elite Design System */

/* ===== FOUC PREVENTION ===== */
/* Показываем страницу после загрузки этого CSS файла */
html {
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 180px;
    height: auto;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-spinner {
    position: relative;
    width: 50px;
    height: 50px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #c9a961;
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

.spinner-ring::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: rgba(201, 169, 97, 0.4);
    border-radius: 50%;
    animation: preloaderSpin 1.5s linear infinite reverse;
}

.preloader-text {
    color: #c9a961;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

:root {
    /* Colors */
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #8a8a8a;
    --dark-gray: #4a4a4a;
    --accent-gold: #c9a961;
    --accent-gold-light: #d4b571;
    --accent-gold-dark: #b89851;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Layout */
    --container-max: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    font-family: var(--font-secondary);
}

.brand-r {
    font-size: 0.4em;
    vertical-align: super;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 0.1em;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
    margin: 1rem 0 1.25rem;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.form-consent > span {
    flex: 1;
    min-width: 0;
}

.form-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.2em;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.form-consent a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-consent a:hover {
    opacity: 0.85;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.section-label {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

/* Section spacing */
.philosophy-section {
    margin-top: 6rem;
}

.projects-showcase {
    margin-top: 6rem;
}

.awards-section {
    margin-top: 6rem;
}

.awards-recognition {
    /* merged into main definition below */
}

.cta-section {
    margin-top: 6rem;
}

/* Awards Recognition Section */
.awards-recognition {
    background: var(--bg-light);
    padding: 6rem 0;
    margin-top: 6rem;
}

.awards-hero {
    text-align: center;
    margin-bottom: 4rem;
}

/* merged into main definition below */
.awards-showcase {}

.main-award-display {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.main-awards-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    background: white;
    padding: 2rem;
}

.award-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.award-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.award-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.awards-details {
    margin: 4rem 0;
}

.awards-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.award-highlight {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-left: 4px solid var(--accent-gold);
}

.award-highlight h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.award-highlight p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.additional-awards {
    margin-top: 4rem;
    text-align: center;
}

.additional-awards h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.awards-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-gold);
}

/* Mobile styles for awards section */
@media (max-width: 768px) {
    .main-awards-image {
        max-height: 300px;
        padding: 1rem;
    }

    .award-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .award-overlay h3 {
        font-size: 1.25rem;
    }

    .award-overlay p {
        font-size: 1rem;
    }

    .awards-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .award-highlight {
        padding: 1.5rem;
    }

    .award-highlight h4 {
        font-size: 1.1rem;
    }

    .awards-list {
        grid-template-columns: 1fr;
    }

    .awards-recognition {
        padding: 4rem 0;
    }

    /* Additional mobile spacing */
    .philosophy-section {
        margin-top: 4rem;
    }

    .projects-showcase {
        margin-top: 4rem;
    }

    .awards-section {
        margin-top: 4rem;
    }

    .awards-recognition {
        margin-top: 4rem;
    }

    .cta-section {
        margin-top: 4rem;
    }
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-sm);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: var(--space-xl);
        padding: 0;
    }
}

.section-header.centered {
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: background var(--transition-normal);
    padding: var(--space-md) 0;
    width: 100%;
    box-sizing: border-box;
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--space-sm);
    }
}

.logo-img {
    height: 26px;
    width: auto;
    transition: all var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
    justify-content: flex-end;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Price button in navigation */
.nav-price .nav-btn-price {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.35rem 0.8rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.nav-price .nav-btn-price:hover {
    background: var(--accent-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + var(--space-md));
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    list-style: none;
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-var(--space-sm));
    transition: all var(--transition-normal);
    min-width: 280px;
    z-index: 1001;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(201, 169, 97, 0.08);
    color: var(--accent-gold);
    padding-left: var(--space-lg);
    transform: translateX(4px);
}

/* Dropdown sections for categorization */
.dropdown-section {
    margin-bottom: var(--space-sm);
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section-title {
    display: block;
    padding: var(--space-xs) var(--space-md);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.dropdown-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-submenu a {
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.8rem;
    border-radius: var(--border-radius);
}

.dropdown-submenu a:hover {
    padding-left: var(--space-xl);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Intermediate breakpoints to prevent text wrapping */
@media (max-width: 1200px) and (min-width: 1101px) {
    .nav-menu {
        gap: var(--space-lg);
    }
}

@media (max-width: 1100px) and (min-width: 969px) {
    .nav-menu {
        gap: var(--space-md);
    }
    
    .nav-link {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 1000px) and (min-width: 969px) {
    .nav-menu {
        gap: var(--space-sm);
    }
    
    .nav-link {
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

@media (max-width: 968px) {
    .nav-price .nav-btn-price {
        background: var(--accent-gold);
        color: var(--primary-black);
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        display: inline-block;
        margin-top: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
        padding-top: 45px;
        padding-bottom: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.mobile-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.15rem 0.75rem;
        display: block;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        line-height: 1;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        backdrop-filter: none;
        margin: 0;
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 0.1rem 0.75rem;
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .dropdown-section {
        margin-bottom: 0.1rem;
    }
    
    .dropdown-section:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-section-title {
        padding: 0.05rem 0.75rem;
        font-size: 0.6rem;
        margin-bottom: 0;
        line-height: 1;
    }
    
    .dropdown-submenu {
        margin: 0;
        padding: 0;
    }
    
    .dropdown-submenu a {
        padding: 0.05rem 1rem;
        font-size: 0.7rem;
        line-height: 0.9;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: -2;
}

/* Mobile hero image positioning to show the woman on the right */
@media (max-width: 768px) {
    .hero-image {
        object-position: 70% center; /* Shift to show right side where woman is */
    }
}

@media (max-width: 480px) {
    .hero-image {
        object-position: 75% center; /* More shift for smaller screens */
    }
}

@media (max-width: 360px) {
    .hero-image {
        object-position: 80% center; /* Maximum shift for very small screens */
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Затемнение шапки: усилено сверху для читаемости меню, плавно к низу */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
    z-index: 2;
}

/* Специфические правила для коллекций */
.collection-hero .hero-background .hero-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.5) 100%) !important;
}

.collection-hero .hero-background .hero-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 var(--space-sm);
    }
}

.hero-text {
    max-width: 800px;
    width: 100%;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    text-align: center;
    padding: 0 var(--space-sm);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .hero-text {
        padding: 0;
    }
}

.collection-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 3;
    text-align: center;
}

.collection-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 3;
    text-align: center;
}

.collection-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 3;
    text-align: center;
}

.collection-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--space-lg);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.collection-badge {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-bottom: 8px;
}

.collection-badge.designer {
    color: var(--accent-gold);
}

.collection-badge.category {
    color: var(--white);
}

.collection-badge.tier {
    color: var(--accent-gold);
}

.collection-badge.award {
    background: none;
    border: none;
    padding: 4px 8px;
    display: flex;
    align-items: center;
}

/* Mobile enhancements for better text readability */
@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
        z-index: 1;
    }

    .hero-overlay {
        background: transparent; /* Отключен на мобильных */
        z-index: 2;
    }

    /* Специфические правила для мобильных коллекций */
    .collection-hero .hero-background .hero-gradient {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%) !important;
    }

    .collection-hero .hero-background .hero-overlay {
        background: transparent !important;
    }

    .collection-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        text-align: center;
    }

    .collection-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        text-align: center;
    }

    .collection-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .collection-badges {
        gap: 0.75rem;
        margin-bottom: var(--space-md);
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .collection-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 6px;
    }

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-features {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
}

.feature-item {
    position: relative;
}

.feature-text {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-badges {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-badges {
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
}

.badge {
    padding: var(--space-sm) var(--space-lg);
}

.badge span {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    min-height: 40px;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.cta-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.cta-primary svg {
    transition: transform var(--transition-fast);
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

/* Telegram Bot CTA */
.telegram-bot-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-normal);
    cursor: pointer;
    min-height: 40px;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.telegram-bot-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.telegram-bot-cta svg {
    flex-shrink: 0;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .hero-cta-group .cta-primary,
    .hero-cta-group .telegram-bot-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Promotions Section */
.promotions-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.promotions-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.promotion-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.promotion-visual {
    overflow: hidden;
    background: #1c2530;
    min-height: 380px;
}

.promotion-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.promotion-card:hover .promotion-visual img {
    transform: scale(1.04);
}

.promotion-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl) var(--space-2xl);
}

.promotion-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.promotion-title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.2;
    margin: 0;
}

.promotion-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.65;
    margin: 0;
}

.promotion-text {
    color: var(--dark-gray);
    line-height: 1.8;
}

.promotion-greeting {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: var(--space-sm);
}

.promotion-message {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.promotion-wishes {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: var(--space-md) 0;
}

.promotion-signature {
    font-size: 1rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-top: var(--space-md);
}

.promotion-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .promotion-card {
        grid-template-columns: 1fr;
    }

    .promotion-visual {
        min-height: 240px;
        max-height: 320px;
    }

    .promotion-info {
        padding: var(--space-xl) var(--space-lg);
    }

    .promotion-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: var(--space-2xl) 0;
    }
    .promotion-description {
        font-size: 0.95rem;
    }
}

/* About Section */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

@media (max-width: 480px) {
    .about-section {
        padding: var(--space-2xl) 0;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    letter-spacing: 0.02em;
}

.about-visual {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 480px) {
    .about-image img {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Designers Section */
.designers-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

@media (max-width: 480px) {
    .designers-section {
        padding: var(--space-2xl) 0;
    }
}

.designers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .designers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .designers-grid {
        gap: var(--space-lg);
    }
}

.designer-card {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-normal);
}

@media (max-width: 480px) {
    .designer-card {
        padding: var(--space-lg);
    }
}

.designer-card:hover {
    transform: translateY(-8px);
}

.designer-header {
    margin-bottom: var(--space-lg);
}

.designer-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.designer-location {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.designer-description {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.designer-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (max-width: 480px) {
    .designer-achievements {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

.achievement {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--border-radius);
}

.achievement-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

.achievement-text {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.designer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (max-width: 480px) {
    .designer-specialties {
        gap: var(--space-xs);
        justify-content: center;
    }
}

.specialty {
    background: transparent;
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
}

@media (max-width: 480px) {
    .specialty {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

/* Collection Premium Gradient - Gold Theme */
/* removed duplicate in favor of consolidated definition below */
.collection-card.tier-premium {}

.collection-card.tier-luxury {
    border: 2px solid var(--accent-gold-light);
    box-shadow: 0 3px 8px rgba(201, 169, 97, 0.15);
}

.tier-luxury .collection-tier-badge {
    background: var(--accent-gold-light);
    color: var(--primary-black);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.tier-classic .collection-tier-badge {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a0a0a0 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.5);
    border: 0px solid rgba(255, 255, 255, 0.3);
}

.collection-card.tier-classic {
    border: 2px solid var(--accent-gold-dark);
    box-shadow: 0 2px 6px rgba(201, 169, 97, 0.1);
}

/* Designer Top Row - New Layout */
.designer-top-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 480px) {
    .designer-top-row {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

.designer-visual-compact {
    flex-shrink: 0;
    width: 160px;
    height: 184px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--white);
}

@media (max-width: 480px) {
    .designer-visual-compact {
        width: 120px;
        height: 138px;
    }
}

.designer-visual-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* Specific styling for Claudio Bellini image to fix white margins */
.claudio-image {
    object-position: center 15% !important;
    object-fit: cover !important;
    padding: 0 !important;
    background: transparent !important;
    width: 105% !important;
    height: 105% !important;
    margin: -2.5% !important;
}

.designer-title-section h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.designer-title-section .designer-location {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* Designer Visual Styles */
.designer-visual {
    margin-bottom: var(--space-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px; /* Увеличено с 200px для прямоугольного формата */
    width: 100%;
    max-width: 400px; /* Ограничение максимальной ширины */
}

.designer-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* Управление размерами фото через CSS переменные и классы */
:root {
    --designer-photo-height: 320px; /* Основная высота фото */
    --designer-photo-width: 400px;  /* Основная ширина фото */
    --designer-photo-max-width: 500px; /* Максимальная ширина */
}

/* Управление высотой */
.designer-visual.large {
    height: var(--designer-photo-height);
}

.designer-visual.medium {
    height: 280px;
}

.designer-visual.small {
    height: 200px;
}

.designer-visual.extra-large {
    height: 400px;
}

.designer-visual.compact {
    height: 240px;
}

/* Управление шириной */
.designer-visual.wide {
    width: 100%;
    max-width: var(--designer-photo-max-width);
}

.designer-visual.narrow {
    max-width: 300px;
}

.designer-visual.extra-wide {
    width: 100%;
    max-width: 600px;
}

/* Пользовательские размеры через data-атрибуты */
.designer-visual[data-height] {
    height: attr(data-height);
}

.designer-visual[data-width] {
    width: attr(data-width);
}

/* Awards Showcase */
.awards-showcase {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    margin-top: var(--space-xl);
    padding: var(--space-xs) var(--space-lg) var(--space-lg);
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    text-align: left;
}

@media (max-width: 480px) {
    .awards-showcase {
        margin: 2rem 0;
        padding: var(--space-md);
    }
}

.awards-header {
    margin-bottom: var(--space-xl);
}

.awards-header h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-black);
}

.awards-header p {
    color: var(--dark-gray);
    font-size: 1.125rem;
}

/* Премиальная структура наград */
.awards-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-top: var(--space-2xl);
    align-items: center;
}

/* Трехколоночная структура наград */
.awards-content-layout-three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-top: var(--space-2xl);
}

.awards-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.awards-title-section h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--primary-black);
    line-height: 1.3;
}

/* Левая колонка - заголовок и картинка */
.awards-left-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.awards-left-section h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--primary-black);
    line-height: 1.3;
    text-align: left;
}

/* Левая колонка - картинка без бокса */
.awards-image-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.awards-main-image {
    max-width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: contain;
    display: block;
    border: none;
    border-radius: 0;
}

/* Правая колонка - премиальные награды */
.awards-items-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    justify-content: center;
}

.award-item-premium {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    background: transparent;
    border: none;
    transition: transform var(--transition-fast);
}

.award-item-premium:hover {
    transform: translateX(8px);
}

.award-icon-premium {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all var(--transition-fast);
}

.award-item-premium:hover .award-icon-premium {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-color: rgba(201, 169, 97, 0.4);
    transform: scale(1.05);
}

.award-icon-premium svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
}

.award-content-premium h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--primary-black);
    font-weight: 600;
    line-height: 1.3;
}

.award-content-premium p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Мобильные стили для awards */
@media (max-width: 768px) {
    .awards-content-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-top: var(--space-xl);
    }

    .awards-image-section {
        order: 1;
        margin-bottom: var(--space-lg);
    }

    .awards-main-image {
        max-height: 250px;
    }

    .awards-items-section {
        order: 2;
        gap: var(--space-lg);
        align-items: center;
    }

    .award-item-premium {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .award-icon-premium {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }

    .award-icon-premium svg {
        width: 28px;
        height: 28px;
    }

    .award-content-premium h4 {
        font-size: 1rem;
        margin-bottom: var(--space-xs);
    }

    .award-content-premium p {
        font-size: 0.8rem;
    }
}

.award-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

/* iF Award Images */
.award-badge-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.award-title-image {
    height: 1.2em;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 var(--space-xs);
}

.award-large-image {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.award-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-md) 0;
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all var(--transition-normal);
}

.award-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    transition: all var(--transition-normal);
}

.award-item:hover .award-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-color: rgba(201, 169, 97, 0.4);
    transform: scale(1.05);
}

.award-item:hover .award-icon svg {
    color: var(--accent-gold-dark);
}

.award-badge-item span {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .designers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .designer-top-row {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .designer-visual-compact {
        width: 140px;
        height: 161px;
        margin: 0 auto;
    }

    .designer-title-section {
        text-align: center;
    }

    .designer-title-section h3 {
        font-size: 1.3rem;
    }

    .designer-achievements {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .award-badge-item {
        padding: var(--space-md);
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .designer-visual {
        height: 150px;
    }
}

/* Collections Section */
.collections-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

@media (max-width: 480px) {
    .collections-section {
        padding: var(--space-2xl) 0;
    }
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 380px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

.collection-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card:hover {
    transform: translateY(-12px);
    text-decoration: none;
    color: inherit;
}

.collection-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* Adjust vertical framing for LEVIA card image */
/*
   How to tweak:
   - First value = horizontal: set to 'left | center | right' or %/px
   - Second value = vertical: increase to move image DOWN (e.g. 55%, 65%, 75%)
   Examples:
   - center 55%  → slightly down
   - center 65%  → medium down (current)
   - center 75%  → strong down
*/
a[data-collection="levia"] .collection-image img {
    object-position: center 30%; /* change 65% here to adjust vertical shift */
}

/* Increase vertical space for LEVIA thumbnail */
a[data-collection="levia"] .collection-image {
    height: 400px; /* increase to show more of the umbrella vertically */
}

@media (max-width: 768px) {
    a[data-collection="levia"] .collection-image {
        height: 390px; /* keep more vertical area on mobile too */
    }
}

/* Match TEKNO R framing with LEVIA */
a[data-collection="tekno-r"] .collection-image img {
    object-position: center 30%;
}

a[data-collection="tekno-r"] .collection-image {
    height: 400px;
}

@media (max-width: 768px) {
    a[data-collection="tekno-r"] .collection-image {
        height: 390px;
    }
}

/* Match svetilniki framing with other luxury accessories */
a[data-collection="svetilniki"] .collection-image {
    height: 400px;
}

@media (max-width: 768px) {
    a[data-collection="svetilniki"] .collection-image {
        height: 390px;
    }
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.collection-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.collection-theme {
    display: inline-block;
    background: rgba(201, 169, 97, 0.9);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.collection-info {
    padding: var(--space-xl);
}

.collection-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.collection-info p {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.collection-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.collection-link:hover {
    color: var(--accent-gold-dark);
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .collection-card {
        margin: 0 var(--space-md);
    }
}

/* Price Request Section */
.price-request-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.price-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.price-image {
    width: 100%;
    height: auto;
    display: block;
}

.price-info {
    padding: var(--space-lg);
}

.price-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--space-xl);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.price-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--secondary-black);
}

.price-feature svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .price-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .price-info {
        padding: var(--space-md);
    }

    .price-description {
        font-size: 1rem;
    }
}

/* Projects Section */
.projects-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    overflow-x: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    width: 100%;
    box-sizing: border-box;
}

.project-card {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card.featured {
    grid-column: span 2;
}

.project-image {
    height: 308px;
    overflow: hidden;
}

.project-card.featured .project-image {
    height: 350px;
}

.yacht-showcase .project-image {
    height: auto;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Yacht Showcase - Asymmetric Luxury Layout */
.yacht-showcase {
    position: relative;
    overflow: hidden;
}

.yacht-gallery {
    position: relative;
    height: 420px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1.4fr 0.6fr;
    gap: 0;
    padding: 0;
    background: linear-gradient(145deg, #fefefe 0%, #f9f9f9 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.yacht-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
}

.yacht-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.yacht-main-image:hover::before {
    opacity: 1;
}

.yacht-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.yacht-main-image:hover img {
    transform: scale(1.02);
}

.yacht-secondary-images {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.yacht-image-small {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    border: none;
    flex: 1;
}

.yacht-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.yacht-image-small:hover {
    transform: translateY(-2px) scale(1.01);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.yacht-image-small:hover::before {
    opacity: 1;
}

.yacht-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.yacht-image-small:hover img {
    transform: scale(1.03);
}

/* Premium badge positioning */
.yacht-main-image .project-badge,
.egypt-main-image .project-badge,
.dubai-main-image .project-badge,
.shanghai-main-image .project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-family: var(--font-secondary);
}

/* =============================================== */
/* EGYPT GALLERY - Premium Project Showcase */
/* =============================================== */

.egypt-showcase {
    position: relative;
    overflow: hidden;
}

.egypt-gallery {
    position: relative;
    height: 420px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1.4fr 0.6fr;
    gap: 0;
    padding: 0;
    background: linear-gradient(145deg, #fefefe 0%, #f9f9f9 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.egypt-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
}

.egypt-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.egypt-main-image:hover::before {
    opacity: 1;
}

.egypt-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.egypt-main-image:hover img {
    transform: scale(1.02);
}

.egypt-secondary-images {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.egypt-image-small {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    border: none;
    flex: 1;
}

.egypt-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.egypt-image-small:hover {
    transform: translateY(-2px) scale(1.01);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.egypt-image-small:hover::before {
    opacity: 1;
}

.egypt-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.egypt-image-small:hover img {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .yacht-gallery {
        height: 380px;
        grid-template-columns: 1fr;
        grid-template-rows: 1.8fr 1fr;
        gap: 0;
        padding: 0;
    }
    
    .yacht-main-image {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    
    .yacht-secondary-images {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }
    
    .yacht-image-small {
        flex: 1;
    }
    
    
    .yacht-image-small:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .yacht-gallery {
        height: 320px;
    }
    
    .yacht-secondary-images {
        gap: 0;
    }
    
    .yacht-image-small:last-child {
        display: none;
    }
}

/* Egypt Gallery Responsive */
@media (max-width: 768px) {
    .egypt-gallery {
        height: 380px;
        grid-template-columns: 1fr;
        grid-template-rows: 1.8fr 1fr;
        gap: 0;
        padding: 0;
    }
    
    .egypt-main-image {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    
    .egypt-secondary-images {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }
    
    .egypt-image-small {
        flex: 1;
    }
    
    .egypt-image-small:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .egypt-gallery {
        height: 320px;
    }
    
    .egypt-secondary-images {
        gap: 0;
    }
    
    .egypt-image-small:last-child {
        display: none;
    }
}

/* =============================================== */
/* DUBAI GALLERY - Premium Project Showcase */
/* =============================================== */

.dubai-showcase {
    position: relative;
    overflow: hidden;
}

.dubai-gallery {
    position: relative;
    height: 420px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1.4fr 0.6fr;
    gap: 0;
    padding: 0;
    background: linear-gradient(145deg, #fefefe 0%, #f9f9f9 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.dubai-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
}

.dubai-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.dubai-main-image:hover::before {
    opacity: 1;
}

.dubai-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.dubai-main-image:hover img {
    transform: scale(1.02);
}

.dubai-secondary-images {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.dubai-image-small {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    border: none;
    flex: 1;
}

.dubai-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.dubai-image-small:hover {
    transform: translateY(-2px) scale(1.01);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dubai-image-small:hover::before {
    opacity: 1;
}

.dubai-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.dubai-image-small:hover img {
    transform: scale(1.03);
}

/* Dubai Gallery Responsive */
@media (max-width: 768px) {
    .dubai-gallery {
        height: 380px;
        grid-template-columns: 1fr;
        grid-template-rows: 1.8fr 1fr;
        gap: 0;
        padding: 0;
    }
    
    .dubai-main-image {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    
    .dubai-secondary-images {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }
    
    .dubai-image-small {
        flex: 1;
    }
    
    .dubai-image-small:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .dubai-gallery {
        height: 320px;
    }
    
    .dubai-secondary-images {
        gap: 0;
    }
    
    .dubai-image-small:last-child {
        display: none;
    }
}

/* =============================================== */
/* SHANGHAI GALLERY - Premium Project Showcase */
/* =============================================== */

.shanghai-showcase {
    position: relative;
    overflow: hidden;
}

.shanghai-gallery {
    position: relative;
    height: 420px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1.4fr 0.6fr;
    gap: 0;
    padding: 0;
    background: linear-gradient(145deg, #fefefe 0%, #f9f9f9 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.shanghai-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
}

.shanghai-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.shanghai-main-image:hover::before {
    opacity: 1;
}

.shanghai-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.shanghai-main-image:hover img {
    transform: scale(1.02);
}

.shanghai-secondary-images {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.shanghai-image-small {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    border: none;
    flex: 1;
}

.shanghai-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.shanghai-image-small:hover {
    transform: translateY(-2px) scale(1.01);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shanghai-image-small:hover::before {
    opacity: 1;
}

.shanghai-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.shanghai-image-small:hover img {
    transform: scale(1.03);
}

/* Shanghai Gallery Responsive */
@media (max-width: 768px) {
    .shanghai-gallery {
        height: 380px;
        grid-template-columns: 1fr;
        grid-template-rows: 1.8fr 1fr;
        gap: 0;
        padding: 0;
    }
    
    .shanghai-main-image {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    
    .shanghai-secondary-images {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }
    
    .shanghai-image-small {
        flex: 1;
    }
    
    .shanghai-image-small:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .shanghai-gallery {
        height: 320px;
    }
    
    .shanghai-secondary-images {
        gap: 0;
    }
    
    .shanghai-image-small:last-child {
        display: none;
    }
}

.project-info {
    padding: var(--space-xl);
}

@media (max-width: 480px) {
    .project-info {
        padding: var(--space-lg);
    }
    
    .project-info h3 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
}

.project-location {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.project-info p {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.project-collections {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.project-collections span {
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .project-collections span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

@media (max-width: 480px) {
    .contact-section {
        padding: var(--space-2xl) 0;
    }
}

/* Showrooms */
/* Interactive hotspots on hero photos */
.hero-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
}

.hotspot {
    position: absolute;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
    z-index: 7;
    -webkit-tap-highlight-color: transparent;
}

/* Let clicks pass through hero-content background to hotspots; keep buttons clickable */
.hero .hero-content { pointer-events: none; }
.hero .hero-content a,
.hero .hero-content button,
.hero .hero-content .cta-primary,
.hero .hero-content .telegram-bot-cta { pointer-events: auto; }

.hotspot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.55);
    animation: hotspot-pulse 2.4s ease-out infinite;
}

@keyframes hotspot-pulse {
    0% { transform: scale(0.7); opacity: 0.7; }
    70% { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

.hotspot-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.hotspot:hover .hotspot-icon {
    background: var(--accent-gold-light);
    transform: scale(1.1);
}

.hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-normal);
    pointer-events: none;
}

.hotspot-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.85);
}

.hotspot:hover .hotspot-tooltip,
.hotspot:focus .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 768px) {
    .hotspot {
        width: 32px;
        height: 32px;
    }
    .hotspot-icon {
        font-size: 1.15rem;
    }
    .hotspot-tooltip {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Loyalty / discounts */
.loyalty-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #faf8f3 0%, #f4eee0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.loyalty-tier {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.loyalty-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--accent-gold);
}

.loyalty-tier--featured {
    border: 1px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.12);
    transform: translateY(-6px);
}

.loyalty-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 0.25rem 0.85rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.loyalty-percent {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.loyalty-range {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.loyalty-note {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.loyalty-footnote {
    margin-top: var(--space-2xl);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {
    .loyalty-grid { grid-template-columns: repeat(2, 1fr); }
    .loyalty-tier--featured { transform: none; }
}

@media (max-width: 600px) {
    .loyalty-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .loyalty-percent { font-size: 2.25rem; }
}

/* Fitting service announce */
.fitting-promo-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.fitting-promo {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: linear-gradient(135deg, #1c2530 0%, #2c3845 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.fitting-promo-text {
    padding: var(--space-3xl) var(--space-2xl);
    color: var(--white);
}

.fitting-promo-text .section-label {
    color: var(--accent-gold-light);
}

.fitting-promo-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.fitting-promo-description {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
}

.fitting-promo-text .cta-primary {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-normal), transform var(--transition-normal);
}

.fitting-promo-text .cta-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

.fitting-promo-visual {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.fitting-promo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .fitting-promo {
        grid-template-columns: 1fr;
    }
    .fitting-promo-visual {
        order: -1;
        min-height: 240px;
        max-height: 280px;
    }
    .fitting-promo-text {
        padding: var(--space-2xl) var(--space-xl);
    }
}

.showrooms-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.showroom-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--off-white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.showroom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.showroom-city {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.showroom-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}

.showroom-address {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.showroom-hours {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.showroom-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--transition-normal);
}

.showroom-cta:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .showrooms-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .showroom-city {
        font-size: 1.5rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-details {
    margin-top: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-black);
}

/* AI Bot Contact Item */
.contact-item-bot {
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b878 100%);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    margin-top: var(--space-md);
}

.contact-item-bot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.contact-item-bot .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item-bot .contact-label {
    color: var(--white);
}

.contact-item-bot .contact-value {
    color: var(--white);
}

/* AI Bot in Modal */
.ai-bot-option {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4b878 100%) !important;
    border: none !important;
}

.ai-bot-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

.ai-bot-option .contact-option-title,
.ai-bot-option .contact-option-subtitle {
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
}

@media (max-width: 480px) {
    .contact-form {
        padding: var(--space-lg);
    }
}

.form-group {
    margin-bottom: var(--space-lg);
}

/* Homepage contact form - premium inputs */
.contact-form .form input:not([type="checkbox"]):not([type="hidden"]),
.contact-form .form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--primary-black);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-form .form input::placeholder,
.contact-form .form textarea::placeholder {
    color: var(--medium-gray);
    opacity: 0.9;
}

.contact-form .form input:focus,
.contact-form .form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12), 0 2px 10px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.contact-form .form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Form inputs for modal (if needed) */
.modal-content .form input,
.modal-content .form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.modal-content .form input:focus,
.modal-content .form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.modal-content .form input::placeholder,
.modal-content .form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: var(--medium-gray);
    line-height: 1.7;
}

.footer-partnership {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-partnership a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity var(--transition-normal);
}

.footer-partnership a:hover {
    opacity: 0.8;
}

.about-partnership {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--accent-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    .footer-column li {
        margin-bottom: 0;
        padding: 0;
        line-height: 1.15;
    }
}

.footer-column a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--tertiary-black);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 1rem;
    }
    
    .footer-column h4 {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-column ul {
        margin: 0;
        padding: 0;
    }
    
    .footer-column li {
        margin-bottom: 0;
        padding: 0;
        line-height: 1.15;
    }
    
    .footer-column a {
        font-size: 0.85rem;
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .footer-column li {
        margin-bottom: 0;
        padding: 0;
        line-height: 1.2;
    }
    
    .footer-column a {
        font-size: 0.8rem;
        display: block;
    }
}

/* Global mobile overflow fix */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        overflow-x: hidden;
    }
    
    p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Enhanced Mobile Responsiveness */
/* MacBook Optimization */
@media (max-width: 1440px) {
    .container,
    .nav-container {
        max-width: 1200px;
        padding: 0 var(--space-md);
    }
}

@media (max-width: 1280px) {
    .container,
    .nav-container {
        max-width: 1100px;
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 1000px) {
    .nav-container {
        padding: 0 var(--space-xs);
    }
    
    .nav-menu {
        gap: var(--space-md);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: var(--space-sm);
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.75rem);
    }
    
    /* Improved text contrast on mobile */
    .collection-overlay h3,
    .collection-overlay p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        color: var(--white);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero-features {
        gap: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .hero-badges {
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .badge {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8rem;
    }

    .badge span {
        color: var(--white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
    }
    
    .cta-primary {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9rem;
        min-height: 56px; /* Better touch target on mobile */
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--dark-gray);
    }
    
    /* Improved text contrast for mobile collection cards */
    .collection-info p {
        color: var(--primary-black);
        font-weight: 500;
    }
    
    /* Better readability for project descriptions */
    .project-info p {
        color: var(--primary-black);
        font-weight: 500;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .hero-content {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 0.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-features {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    .feature-item {
        flex: 1;
    }

    .feature-text {
        font-size: 0.95rem;
        line-height: 1;
    }

    .hero-badges {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }

    .badge {
        width: auto;
        flex: 0 1 auto;
        text-align: center;
        padding: 0.3rem 0.6rem;
    }
    
    .badge span {
        font-size: 0.6rem;
        line-height: 1;
    }
    
    .cta-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        min-height: 40px;
        margin-top: 0.5rem;
    }

    /* Designer cards mobile optimization */
    .designer-top-row {
        gap: var(--space-sm);
    }

    .designer-visual-compact {
        width: 120px;
        height: 138px;
    }

    .designer-title-section h3 {
        font-size: 1.25rem;
    }

    .designer-title-section .designer-location {
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .collections-grid,
    .projects-grid {
        gap: var(--space-md);
    }
    
    .collection-card,
    .project-card {
        margin: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .designer-achievements {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .nav-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-features {
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .hero-badges {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .badge {
        padding: 0.25rem 0.5rem;
    }
    
    .badge span {
        font-size: 0.55rem;
    }
    
    .cta-primary {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        min-height: 36px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
}

/* Touch-Friendly Enhancements */
@media (hover: none) and (pointer: coarse) {
    .collection-card:hover,
    .project-card:hover,
    .designer-card:hover {
        transform: none;
    }
    
    .nav-link,
    .dropdown-menu a,
    .collection-link,
    .footer-column a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: var(--space-sm) var(--space-md);
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Premium Modal Design - 16:9 Format */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 0;
    border-radius: 20px;
    width: 770px;
    height: auto;
    max-width: 90vw;
    max-height: 88vh;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 85vh;
        width: 95vw;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .modal-content {
        border-radius: 16px;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 0px;
    right: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    padding: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .modal-close {
        right: 16px;
        top: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

.modal-close:hover {
    color: var(--white);
    background: rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.4);
    transform: scale(1.05);
}

/* Left Panel - Header */
.modal-header {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .modal-header {
        padding: 30px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 60px 20px 20px;
    }
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.modal-brand {
    margin-top: auto;
    opacity: 0.6;
}

.modal-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Right Panel - Contact Options */
.contact-options {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow-y: auto;
    min-height: 0;
}

@media (max-width: 768px) {
    .contact-options {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-options {
        padding: 20px;
        gap: 12px;
    }
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
    .contact-option {
        padding: 16px;
        min-height: 60px;
    }
}

.contact-option:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.15);
    text-decoration: none;
    color: var(--white);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    background: #25D366;
}

.telegram-icon {
    background: #0088cc;
}

.phone-icon {
    background: var(--accent-gold);
}

.contact-option-text {
    flex: 1;
}

.contact-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-option-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.2;
    color: var(--white);
}

.contact-option-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
}

/* Remove quick-form completely for premium design */
.quick-form {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-row .form-group {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: auto;
        max-height: 85vh;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .modal-header {
        padding: 30px 25px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(180deg, 
            rgba(201, 169, 97, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 100%);
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .modal-brand {
        display: none;
    }
    
    .contact-options {
        padding: 25px;
        gap: 12px;
    }
    
    .contact-option {
        padding: 16px 18px;
    }
    
    .contact-option-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 14px;
    }
    
    .contact-option-title {
        font-size: 15px;
    }
    
    .contact-option-subtitle {
        font-size: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .contact-option {
        padding: var(--space-md);
    }
    
    .contact-option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Collection Premium Tiers */
.collection-card.tier-premium {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.2);
}

.collection-card.tier-mid {
    border: 3px solid var(--medium-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.collection-card.tier-basic {
    border: 3px solid var(--light-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.collection-tier-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .collection-tier-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: var(--space-sm);
        left: var(--space-sm);
    }
}

.tier-premium .collection-tier-badge {
    background: var(--primary-black);
    color: var(--white);
   
}

.tier-mid .collection-tier-badge {
    background: var(--medium-gray);
    color: var(--white);
}

.tier-basic .collection-tier-badge {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.award-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 480px) {
    .award-badge {
        width: 32px;
        height: 32px;
        top: var(--space-sm);
        right: var(--space-sm);
    }
}

/* Print Styles */
@media print {
    .navigation,
    .mobile-menu-toggle,
    .cta-primary,
    .contact-form,
    .modal-overlay {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-text {
        color: var(--primary-black) !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }

    /* Award images mobile optimization */
    .award-badge-image {
        height: 30px;
    }

    .award-title-image {
        height: 1em;
        margin: 0 var(--space-xs);
    }

    .award-large-image {
        width: 100px;
        height: 60px;
    }

    /* Enhanced text visibility for mobile */
    .collection-description,
    .philosophy-description,
    .designer-description,
    .awards-description {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        color: var(--primary-black) !important;
        font-weight: 500 !important;
    }

    .collection-title,
    .section-title {
        color: var(--primary-black) !important;
        font-weight: 600 !important;
    }

    .collection-subtitle {
        color: var(--dark-gray) !important;
        font-weight: 600 !important;
    }

    /* Mobile optimization for designer-visual */
    .designer-visual {
        height: 352px !important; /* Уменьшено для мобильных */
        max-width: 100% !important;
        margin: 0 auto;
    }

    .designer-visual.large {
        height: 260px !important;
    }

    .designer-visual.extra-large {
        height: 300px !important;
    }

    /* Mobile optimization for project badge */
    .project-badge {
        top: 10px !important;
        right: 10px !important;
        padding: var(--space-xs) var(--space-sm) !important;
        font-size: 0.7rem !important;
    }
}

/* Cookie banner — снизу страницы при первом визите */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    background: rgba(15, 13, 10, 0.96);
    color: #ece5d3;
    border-top: 1px solid rgba(201, 165, 103, 0.4);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 240px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #ece5d3;
}

.cookie-banner__text a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    opacity: 0.85;
}

.cookie-banner__btn {
    flex-shrink: 0;
    background: var(--accent-gold);
    color: #1a1510;
    border: 0;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.cookie-banner__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* CTA-section на страницах материалов (tabletops, aluminum, materials/index) */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    color: #fff;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1rem;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: #1a1a2e;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity var(--transition-normal);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
    opacity: 0.95;
    color: #1a1a2e;
    text-decoration: none;
}

@media (max-width: 600px) {
    .cookie-banner__inner {
        padding: 14px 16px;
        gap: 14px;
    }
    .cookie-banner__text { font-size: 0.85rem; }
    .cookie-banner__btn { width: 100%; }
}