* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1a1612;
            --secondary-dark: #2d2520;
            --gold: #d4af37;
            --gold-light: #f4d58d;
            --cream: #f5f0e8;
            --stone-grey: #8b8680;
            --accent: #6b5d52;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--primary-dark);
            color: var(--cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(107, 93, 82, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--stone-grey));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--stone-grey);
            font-weight: 200;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 3rem;
        }

        .divider {
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 4rem auto;
        }

        /* Section Styles */
        section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--stone-grey);
            margin-bottom: 5rem;
            font-weight: 200;
            letter-spacing: 0.1em;
        }

        /* Description */
        .description-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.15rem;
            line-height: 2;
            text-align: center;
            color: var(--cream);
            font-weight: 300;
        }

        .description-content p {
            margin-bottom: 2rem;
        }

        /* Comparison Section */
        .comparison-grid {
            display: grid;
            gap: 8rem;
            margin-top: 6rem;
        }

        .comparison-example {
            background: rgba(45, 37, 32, 0.3);
            padding: 4rem 3rem;
            border-radius: 2px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .comparison-title {
            font-size: 2rem;
            margin-bottom: 3rem;
            color: var(--gold-light);
            text-align: center;
        }

        .technique-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        @media (max-width: 1200px) {
            .technique-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .technique-item {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            transition: transform 0.5s ease;
            cursor: pointer;
        }

        .technique-item:hover {
            transform: translateY(-8px);
        }

        .technique-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .technique-item:hover img {
            transform: scale(1.05);
        }

        .technique-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(26, 22, 18, 0.95), transparent);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 0.05em;
        }

        .author-technique .technique-label {
            color: var(--gold);
            font-weight: 600;
        }

        .author-technique {
            position: relative;
        }

        .author-technique::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 2px;
            z-index: -1;
            opacity: 0.5;
        }

        .author-technique::after {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 2px;
            z-index: -1;
            filter: blur(10px);
            opacity: 0.3;
        }

        /* Applications Section */
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .application-category {
            margin-bottom: 4rem;
        }

        .category-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--gold-light);
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
        }

        .category-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .application-item {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .application-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.9);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.4s ease;
            z-index: 2;
            pointer-events: none;
        }

        .application-item::after {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 1.5rem;
            z-index: 3;
            transition: transform 0.4s ease 0.1s;
            pointer-events: none;
        }

        .application-item:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .application-item:hover::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .application-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .application-item:hover img {
            transform: scale(1.1);
            filter: brightness(0.7);
        }

        /* Modal for images */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            animation: modalZoom 0.4s ease;
        }

        @keyframes modalZoom {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 2rem;
            right: 3rem;
            font-size: 3rem;
            color: var(--gold);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .modal-close:hover {
            transform: rotate(90deg);
        }

        /* Advantages Section */
        .advantages-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .advantage-block {
            margin-bottom: 4rem;
        }

        .advantage-block h3 {
            font-size: 2rem;
            color: var(--gold-light);
            margin-bottom: 2rem;
            text-align: center;
        }

        .advantage-list {
            list-style: none;
            padding: 0;
        }

        .advantage-list li {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 1.1rem;
            font-weight: 300;
            display: flex;
            align-items: flex-start;
        }

        .advantage-list li::before {
            content: '◆';
            color: var(--gold);
            margin-right: 1.5rem;
            font-size: 0.8rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 2rem;
            background: rgba(45, 37, 32, 0.3);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--gold-light);
            transition: background 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background: rgba(212, 175, 55, 0.05);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 2rem;
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--cream);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 2rem 2rem;
        }

        /* Contact Section */
        .contact-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            line-height: 2;
            color: var(--cream);
        }

        .partners-container {
            display: grid;
            gap: 2rem;
        }

        .partner-card {
            background: rgba(45, 37, 32, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 2px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .partner-header {
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .partner-header:hover {
            background: rgba(212, 175, 55, 0.05);
        }

        .partner-info {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            background: white;
            padding: 0.5rem;
            border-radius: 2px;
        }

        .partner-main {
            flex: 1;
        }

        .partner-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
        }

        .partner-name a {
            color: var(--gold-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .partner-name a:hover {
            color: var(--gold);
        }

        .partner-phone {
            font-size: 1.3rem;
            color: var(--cream);
            text-decoration: none;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .partner-phone:hover {
            color: var(--gold);
        }

        .partner-toggle {
            font-size: 2rem;
            color: var(--gold);
            transition: transform 0.3s ease;
            user-select: none;
        }

        .partner-card.active .partner-toggle {
            transform: rotate(180deg);
        }

        .partner-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .partner-card.active .partner-details {
            max-height: 300px;
        }

        .partner-contacts {
            padding: 0 2rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .contact-label {
            font-size: 1rem;
            color: var(--stone-grey);
            min-width: 120px;
        }

        .contact-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.2rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 2px;
            color: var(--cream);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .partner-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .partner-logo {
                width: 60px;
                height: 60px;
            }

            .contact-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .contact-label {
                min-width: auto;
            }
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 5%;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: var(--stone-grey);
            font-size: 0.9rem;
            letter-spacing: 0.1em;
        }

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

        .fade-in {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Paintings */
        .painting-container {
            max-width: 1400px;
            margin: 60px auto;
            padding: 40px 5%;
        }

        .painting-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .painting-gallery {
            width: 100%;
        }

        .carousel-wrapper {
            position: relative;
            background: var(--secondary-dark);
            border-radius: 2px;
            overflow: hidden;
            border: 1px solid var(--accent);
        }

        .carousel-slides {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .carousel-slide.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            width: 100%;
            height: 100%;
        }

        .carousel-main {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .carousel-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .carousel-thumbs-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 12px;
            background: rgba(0, 0, 0, 0.3);
        }

        .carousel-thumbs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            flex: 1;
            scroll-behavior: smooth;
            padding: 4px 0;
        }

        .carousel-thumbs::-webkit-scrollbar {
            height: 4px;
        }

        .carousel-thumbs::-webkit-scrollbar-track {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 2px;
        }

        .carousel-thumbs::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 2px;
        }

        .carousel-thumb {
            width: 80px;
            height: 80px;
            border: 2px solid transparent;
            border-radius: 2px;
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.3s;
            opacity: 0.6;
        }

        .carousel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-thumb.active {
            border-color: var(--gold);
            opacity: 1;
        }

        .carousel-thumb:hover {
            opacity: 0.8;
        }

        .carousel-prev-thumb,
        .carousel-next-thumb {
            position: relative;
        }

        .carousel-btn {
            position: relative;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            width: 44px;
            height: 44px;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            font-weight: bold;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: var(--gold-light);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-prev {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-next {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0.6;
        }

        .dot.active {
            opacity: 1;
            transform: scale(1.2);
        }

        .painting-info h1 {
            font-size: 3rem;
            margin: 0 0 30px 0;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        .painting-price {
            font-size: 1.8rem;
            color: var(--gold);
            margin: 30px 0;
            padding: 20px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--accent);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .painting-price:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold);
        }

        #painting-price-btn p {
            font-size: 0.85rem;
            margin: 8px 0 0 0;
        }

        .price-label {
            font-weight: 400;
            color: var(--stone-grey);
            margin-right: 15px;
            font-size: 1rem;
        }

        .price-value {
            font-weight: 400;
            color: var(--gold);
        }

        .painting-details {
            margin: 40px 0;
            border-top: 1px solid var(--accent);
            border-bottom: 1px solid var(--accent);
            padding: 30px 0;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-size: 0.95rem;
        }

        .detail-label {
            font-weight: 400;
            color: var(--stone-grey);
            min-width: 140px;
        }

        .detail-value {
            color: var(--cream);
            text-align: right;
            flex: 1;
        }

        .painting-description {
            margin: 40px 0;
            color: var(--cream);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .painting-description p {
            margin: 0 0 20px 0;
        }

        .painting-contacts {
            margin: 40px 0;
            padding: 30px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--accent);
            border-radius: 2px;
        }

        .contact-section p {
            margin: 15px 0;
            font-size: 0.95rem;
        }

        .contact-section a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s;
        }

        .contact-section a:hover {
            color: var(--gold-light);
        }

        .painting-contacts h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--cream);
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        #painting-fullscreen-modal {
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        #painting-fullscreen-container {
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); }
            to { transform: scale(1); }
        }

        .fullscreen-nav-btn {
            transition: background 0.3s;
        }

        .fullscreen-nav-btn:hover {
            background: var(--gold-light) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 5rem 5%;
            }

            .technique-grid {
                grid-template-columns: 1fr !important;
            }

            .category-images {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .painting-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .painting-info h1 {
                font-size: 2rem;
            }

            .painting-price {
                font-size: 1.5rem;
            }

            .detail-item {
                flex-direction: column;
                gap: 8px;
            }

            .detail-label {
                min-width: auto;
            }

            .detail-value {
                text-align: left;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-prev {
                left: 10px;
            }

            .carousel-next {
                right: 10px;
            }

            .carousel-thumbs {
                gap: 6px;
            }

            .carousel-thumb {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .painting-container {
                margin: 30px auto;
                padding: 20px 5%;
            }

            .painting-info h1 {
                font-size: 1.5rem;
            }

            .painting-price {
                font-size: 1.2rem;
            }

            .detail-item {
                font-size: 0.9rem;
            }

            .carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .price-label {
                font-size: 0.9rem;
            }

            .carousel-thumb {
                width: 50px;
                height: 50px;
            }

            .carousel-thumbs-container {
                gap: 8px;
                padding: 12px 8px;
            }
        }
    
        /* Works Gallery */
        .works-container {
            max-width: 768px;
            margin: 60px auto;
            padding: 40px 24px;
        }

        .works-wrapper {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .works-gallery {
            width: 100%;
        }

        @media (min-width: 601px) {
            .works-gallery {
                max-width: 700px;
                margin: 0 auto;
            }
        }

        .gallery-main-wrapper {
            position: relative;
            background: var(--secondary-dark);
            border: 1px solid var(--accent);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .gallery-main {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .gallery-fullscreen-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 2px;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .gallery-fullscreen-btn::before {
            content: '⛶';
        }

        .gallery-fullscreen-btn:hover {
            background: var(--gold-light);
        }

        .gallery-thumbs-wrapper {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 12px;
            align-items: center;
        }

        .gallery-thumb-nav {
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 2px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .gallery-thumb-nav:hover {
            background: var(--gold-light);
        }

        .gallery-thumbs-container {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            padding: 5px 0;
        }

        .gallery-thumb {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border: 2px solid transparent;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s;
            overflow: hidden;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumb.active {
            border-color: var(--gold);
        }

        .gallery-thumb:hover {
            border-color: var(--gold);
            opacity: 0.9;
        }

        /* Fullscreen Gallery */
        .fullscreen-gallery {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-gallery.active {
            display: flex;
        }

        .fullscreen-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 32px;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-close:hover {
            background: var(--gold-light);
        }

        .fullscreen-image-wrapper {
            position: relative;
            width: 90%;
            height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .fullscreen-image-wrapper img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            cursor: zoom-in;
            transition: transform 0.3s ease;
        }

        .fullscreen-image-wrapper img:active {
            cursor: zoom-out;
        }

        .fullscreen-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 4px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10000;
            font-weight: bold;
            transition: all 0.3s;
        }

        .fullscreen-nav:hover {
            background: var(--gold-light);
        }

        .fullscreen-prev {
            left: 20px;
        }

        .fullscreen-next {
            right: 20px;
        }

        .fullscreen-info {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: var(--gold);
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 14px;
            z-index: 10000;
        }

        .works-info h1 {
            font-size: 2rem;
            margin: 0 0 30px 0;
            font-weight: 300;
            letter-spacing: 0.05em;
            color: var(--gold);
        }

        .works-title-label {
            color: var(--stone-grey);
            font-weight: 400;
            font-size: 0.95rem;
            margin-right: 8px;
        }

        .works-price {
            font-size: 1.8rem;
            color: var(--gold);
            margin: 30px 0;
            padding: 20px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--accent);
            border-radius: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .works-price:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold);
        }

        .price-label {
            font-weight: 400;
            color: var(--stone-grey);
            margin-right: 15px;
            font-size: 1rem;
        }

        .price-value {
            font-weight: 400;
            color: var(--gold);
        }

        .works-details {
            margin: 40px 0;
            border-top: 1px solid var(--accent);
            border-bottom: 1px solid var(--accent);
            padding: 30px 0;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            font-size: 0.95rem;
        }

        .detail-label {
            font-weight: 400;
            color: var(--stone-grey);
            min-width: 140px;
        }

        .detail-value {
            color: var(--cream);
            text-align: right;
            flex: 1;
        }

        .works-description {
            margin: 40px 0;
            color: var(--cream);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .works-description-label {
            display: block;
            color: var(--stone-grey);
            font-weight: 400;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .works-description p {
            margin: 0 0 20px 0;
        }

        .works-contacts {
            margin: 40px 0;
            padding: 30px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--accent);
            border-radius: 2px;
        }

        .works-contacts h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--cream);
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: center;
        }

        .contact-section p {
            margin: 10px 0;
            font-size: 0.95rem;
        }

        .contact-section a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s;
        }

        .contact-section a:hover {
            color: var(--gold-light);
        }

        @media (max-width: 768px) {
            .works-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .works-info h1 {
                font-size: 1.33rem;
            }

            .works-price {
                font-size: 1.5rem;
            }

            .detail-item {
                flex-direction: row;
                justify-content: space-between;
                gap: 8px;
            }

            .detail-label {
                min-width: auto;
            }

            .detail-value {
                text-align: right;
            }

            .gallery-thumb {
                width: 60px;
                height: 60px;
            }

            .fullscreen-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .fullscreen-prev {
                left: 10px;
            }

            .fullscreen-next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .works-container {
                margin: 30px auto;
                padding: 20px 5%;
            }

            .works-info h1 {
                font-size: 1rem;
            }

            .works-price {
                font-size: 1.2rem;
            }

            .detail-item {
                font-size: 0.9rem;
            }

            .price-label {
                font-size: 0.9rem;
            }

            .gallery-thumbs-wrapper {
                grid-template-columns: 1fr;
            }

            .gallery-thumb-nav {
                display: none;
            }
        }

        /* Смартфоны: страница строго в один столбец */
        @media (max-width: 600px) {
            .works-container {
                padding: 20px 4%;
            }

            .works-wrapper {
                display: flex;
                flex-direction: column;
                gap: 24px;
            }

            .works-gallery,
            .works-info {
                width: 100%;
                max-width: 100%;
            }

            .works-details {
                display: flex;
                flex-direction: column;
                gap: 6px;
                width: 100%;
            }

            .detail-item {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                gap: 4px;
                width: 100%;
                padding: 4px 0;
            }

            .works-price {
                width: 100%;
                box-sizing: border-box;
                text-align: center;
            }

            .works-contacts,
            .contact-section {
                width: 100%;
            }

            .contact-section p {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                gap: 8px;
                flex-wrap: nowrap;
            }
        }