        :root {
            --bg-color: #FBFBFA;
            --text-color: #475569;
            --text-dark: #1c1917;
            --amber-primary: #b45309;
            --amber-dark: #78350f;
            --amber-light: #fef3c7;
            --amber-selection: #fde68a;
            --stone-border: #e7e5e4;
            --stone-bg: #f5f5f4;
            --white: #ffffff;
            --success-bg: #ecfdf5;
            --success-border: #a7f3d0;
            --success-text: #065f46;
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
            
            --border-radius-sm: 6px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-stack);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }

        ::selection {
            background-color: var(--amber-selection);
            color: var(--amber-dark);
        }

        .max-width-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 2;
            stroke: currentColor;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            vertical-align: middle;
        }

        /* Header Navigation Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 40;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--stone-border);
            transition: all 0.3s ease;
        }

        .header-container {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: var(--text-dark);
            transition: color 0.2s ease;
        }

        .logo span {
            font-weight: 300;
        }

        .logo:hover {
            color: var(--amber-primary);
        }

        nav.desktop-nav {
            display: none;
        }

        nav.desktop-nav a {
            text-decoration: none;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            font-weight: 500;
            color: var(--text-color);
            padding: 8px 0;
            margin-left: 32px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        nav.desktop-nav a:hover {
            color: var(--amber-primary);
            border-bottom-color: var(--amber-primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .lang-switch-group {
            display: flex;
            align-items: center;
            background-color: var(--stone-bg);
            border: 1px solid var(--stone-border);
            border-radius: 20px;
            padding: 3px;
            gap: 2px;
        }

        .lang-btn {
            background: transparent;
            border: none;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-color);
            padding: 4px 8px;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .lang-btn:hover {
            color: var(--text-dark);
        }

        .lang-btn.active {
            background-color: var(--text-dark);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .social-link {
            color: var(--text-color);
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
        }

        .social-link:hover {
            color: var(--amber-primary);
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s ease;
        }

        .mobile-menu-btn:hover {
            color: var(--amber-primary);
        }

        .mobile-menu-btn .icon-close {
            display: none;
        }

        .mobile-menu-btn.is-open .icon-menu {
            display: none;
        }

        .mobile-menu-btn.is-open .icon-close {
            display: block;
        }

        .mobile-menu {
            display: none;
            background-color: var(--white);
            border-bottom: 1px solid var(--stone-border);
            padding: 16px 24px;
        }

        .mobile-menu.show {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu a {
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            color: var(--text-color);
            padding: 4px 0;
            transition: color 0.2s ease;
        }

        .mobile-menu a:hover {
            color: var(--amber-primary);
        }

        .mobile-lang-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--stone-border);
            margin-top: 4px;
        }

        .mobile-lang-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-color);
            text-transform: uppercase;
        }

        .header-buffer {
            height: 80px;
        }

        /* About Section */
        .about-section {
            padding: 64px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-portrait-container {
            display: flex;
            justify-content: center;
        }

        .about-portrait {
            position: relative;
            width: 100%;
            max-width: 384px;
            aspect-ratio: 3/4;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--stone-border);
            background-color: var(--stone-bg);
        }

        .about-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-portrait-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            text-align: center;
            color: var(--text-color);
            background-color: var(--stone-bg);
            z-index: 1;
        }

        .about-portrait-placeholder .icon {
            color: #94a3b8;
            margin-bottom: 16px;
        }

        .about-portrait-placeholder .title {
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .about-portrait-placeholder .subtitle {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .about-tag {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--amber-primary);
        }

        .about-title {
            font-size: 1.875rem;
            font-weight: 300;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .divider-small {
            height: 4px;
            width: 48px;
            background-color: var(--amber-primary);
            border-radius: 2px;
        }

        .about-text {
            color: var(--text-color);
            font-size: 1rem;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-buttons {
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--text-dark);
            color: var(--white);
            border: none;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background-color: var(--amber-dark);
        }

        .btn-primary .icon {
            margin-left: 8px;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-dark);
            border: 1px solid var(--stone-border);
        }

        .btn-secondary:hover {
            background-color: var(--stone-bg);
        }

        .gallery-section {
            padding: 64px 0;
            background-color: var(--stone-bg);
            border-top: 1px solid var(--stone-border);
            border-bottom: 1px solid var(--stone-border);
        }

        .section-header {
            text-align: center;
            max-width: 620px;
            margin: 0 auto 64px auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 0.875rem;
            color: var(--text-color);
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
        }

        .filter-btn {
            background-color: var(--white);
            color: var(--text-color);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 8px 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 9999px;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .filter-btn:hover {
            background-color: var(--stone-bg);
        }

        .filter-btn.active {
            background-color: var(--text-dark);
            color: var(--white);
            border-color: var(--text-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .artwork-card {
            background-color: var(--white);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            border: 1px solid rgba(231, 229, 228, 0.6);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .artwork-card:hover {
            box-shadow: var(--shadow-md);
        }

        .artwork-image-container {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
            background-color: var(--stone-bg);
            cursor: pointer;
        }

        .artwork-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .artwork-image-container:hover .artwork-img {
            transform: scale(1.03);
        }

        .image-fallback {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 16px;
            text-align: center;
            color: #94a3b8;
            background-color: var(--stone-bg);
        }

        .image-fallback .icon {
            margin-bottom: 8px;
            opacity: 0.6;
            width: 32px;
            height: 32px;
        }

        .image-fallback .title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .image-fallback .subtitle {
            font-size: 0.625rem;
            opacity: 0.75;
        }

        .artwork-hover-image {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .artwork-hover-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .artwork-image-container:hover .artwork-hover-image {
            opacity: 1;
        }

        .status-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 9999px;
            z-index: 10;
        }

        .status-available {
            background-color: #d1fae5;
            color: #065f46;
        }

        .status-sold {
            background-color: #e5e5e5;
            color: #404040;
        }

        .artwork-info {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .artwork-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
        }

        .artwork-card-title {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.125rem;
        }

        .artwork-card-code {
            color: #94a3b8;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .artwork-card-price {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--amber-primary);
        }

        .artwork-card-desc {
            color: var(--text-color);
            font-size: 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }

        .artwork-footer {
            padding-top: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--stone-bg);
        }

        .artwork-card-cat {
            font-size: 0.6875rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #94a3b8;
            font-weight: 600;
        }

        .artwork-card-btn {
            background: none;
            border: none;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--amber-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s ease;
        }

        .artwork-card-btn:hover {
            color: var(--amber-dark);
        }

        .load-more-container {
            text-align: center;
            margin-top: 64px;
        }

        .load-more-container.hidden {
            display: none;
        }

        .contact-section {
            padding: 64px 0;
            max-width: 896px;
            margin: 0 auto;
        }

        .contact-box {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--stone-border);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .contact-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-tag {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--amber-primary);
        }

        .contact-title {
            font-size: 1.75rem;
            font-weight: 300;
            color: var(--text-dark);
        }

        .contact-subtitle {
            font-size: 0.875rem;
            color: #64748b;
            max-width: 512px;
            margin: 0 auto;
        }

        .success-box {
            background-color: var(--success-bg);
            border: 1px solid var(--success-border);
            color: var(--success-text);
            padding: 16px;
            border-radius: 8px;
            display: none;
            align-items: flex-start;
            gap: 12px;
        }

        .success-box.show {
            display: flex;
        }

        .success-box .title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .success-box .desc {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #475569;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            background-color: var(--stone-bg);
            border: 1px solid var(--stone-border);
            border-radius: 8px;
            font-size: 0.875rem;
            font-family: var(--font-stack);
            color: var(--text-dark);
            transition: all 0.2s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--amber-primary);
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
            background-color: var(--white);
        }

        textarea.form-control {
            resize: vertical;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 8px;
            border: none;
            background-color: var(--text-dark);
            color: var(--white);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: background-color 0.2s ease;
        }

        .form-submit-btn:hover {
            background-color: var(--amber-dark);
        }

        footer {
            background-color: #0c0a09;
            color: #a8a29e;
            padding: 48px 0;
            border-top: 1px solid #1c1917;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col-title {
            color: #f5f5f4;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a, .footer-links button {
            color: #a8a29e;
            text-decoration: none;
            font-size: 0.875rem;
            background: none;
            border: none;
            padding: 0;
            text-align: left;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .footer-links a:hover, .footer-links button:hover {
            color: #f59e0b;
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid #1c1917;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }

        .footer-copy {
            font-size: 0.875rem;
        }

        .footer-copy .sub {
            color: #57534e;
            font-size: 0.75rem;
            margin-top: 4px;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .footer-socials a {
            color: #a8a29e;
            transition: color 0.2s ease;
        }

        .footer-socials a:hover {
            color: #f59e0b;
        }

        .info-modal-body {
            font-size: 0.875rem;
            color: var(--text-color);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 24px 32px 32px 32px;
        }

        .info-modal-body h2 {
            font-size: 1.5rem;
            color: var(--text-dark);
            font-weight: 300;
            margin-bottom: 8px;
        }

        .info-modal-body h3 {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.125rem;
            margin-top: 12px;
        }

        .info-modal-body ul {
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lightbox-backdrop {
            position: fixed;
            inset: 0;
            z-index: 50;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .lightbox-backdrop.flex {
            display: flex;
        }

        .lightbox-card {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            max-width: 896px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .lightbox-close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 15;
            padding: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close-btn:hover {
            background-color: var(--white);
        }

        .lightbox-grid {
            display: grid;
            grid-template-columns: 1fr;
        }

        .lightbox-image-side {
            background-color: var(--stone-bg);
            min-height: 300px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .lightbox-main-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            max-height: 450px;
        }

        .lightbox-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-dark);
            transition: background-color 0.2s;
            z-index: 10;
        }

        .lightbox-nav-btn:hover {
            background-color: var(--white);
        }

        .lightbox-nav-btn.prev {
            left: 16px;
        }

        .lightbox-nav-btn.next {
            right: 16px;
        }

        .lightbox-media-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            background-color: var(--stone-bg);
            z-index: 1;
        }

        .lightbox-media-info {
            text-align: center;
            color: #94a3b8;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .lightbox-media-info .icon {
            margin: 0 auto;
            width: 48px;
            height: 48px;
        }

        .lightbox-media-info .title {
            font-weight: 600;
            color: #475569;
            font-size: 0.875rem;
        }

        .lightbox-media-info .desc {
            font-size: 0.75rem;
            color: #64748b;
            max-width: 200px;
            margin: 0 auto;
        }

        .lightbox-carousel-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .carousel-dot {
            width: 100px;
            height: 10px;
            border-radius: 50%;
            width: 10px;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .carousel-dot.active {
            background-color: var(--amber-primary);
        }

        .lightbox-info-side {
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 32px;
        }

        .lightbox-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .lightbox-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lightbox-category {
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--amber-primary);
        }

        .lightbox-header {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .lightbox-title-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 16px;
        }

        .lightbox-title {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--text-dark);
        }

        .lightbox-code {
            color: #94a3b8;
            font-size: 0.875rem;
        }

        .lightbox-desc {
            font-size: 0.875rem;
            color: var(--text-color);
            line-height: 1.6;
        }

        .lightbox-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--stone-border);
        }

        .spec-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .spec-label {
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #94a3b8;
        }

        .spec-value {
            font-size: 0.75rem;
            font-weight: 500;
            color: #334155;
        }

        .care-card {
            background-color: var(--stone-bg);
            border: 1px solid rgba(231, 229, 228, 0.5);
            padding: 12px;
            border-radius: 8px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-top: 16px;
        }

        .care-card .icon {
            color: var(--amber-primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .care-card-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .care-label {
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #64748b;
        }

        .care-value {
            font-size: 0.6875rem;
            color: #475569;
            line-height: 1.4;
        }

        .lightbox-action-btn {
            width: 100%;
            padding: 14px;
            background-color: var(--text-dark);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .lightbox-action-btn:hover {
            background-color: var(--amber-dark);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (min-width: 640px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        @media (min-width: 768px) {
            nav.desktop-nav {
                display: block;
            }
            .mobile-menu-btn {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .lightbox-grid {
                grid-template-columns: repeat(12, minmax(0, 1fr));
            }
            .lightbox-image-side {
                grid-column: span 6 / span 6;
                min-height: 450px;
            }
            .lightbox-info-side {
                grid-column: span 6 / span 6;
            }
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: repeat(12, minmax(0, 1fr));
            }
            .about-portrait-container {
                grid-column: span 5 / span 5;
            }
            .about-content {
                grid-column: span 7 / span 7;
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .about-title {
                font-size: 2.25rem;
            }
        }

        /* ============================================================
   KONTAKTFORMAS PAZIŅOJUMI
   ============================================================ */
.form-notification {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 24px;
    padding: 18px 20px;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    max-height: 0;
    overflow: hidden;
    transition: opacity .35s ease, transform .35s ease, max-height .35s ease, visibility .35s ease;
}

.form-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 180px;
}

.form-notification-success {
    background: linear-gradient(135deg, rgba(46, 125, 50, .12), rgba(76, 175, 80, .06));
    border: 1px solid rgba(46, 125, 50, .28);
}

.form-notification-error {
    background: linear-gradient(135deg, rgba(198, 40, 40, .12), rgba(239, 83, 80, .06));
    border: 1px solid rgba(198, 40, 40, .28);
}

.form-notification-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
}

.form-notification-icon svg {
    width: 22px;
    height: 22px;
}

.form-notification-success .form-notification-icon {
    color: #2e7d32;
    background: rgba(46, 125, 50, .14);
}

.form-notification-error .form-notification-icon {
    color: #c62828;
    background: rgba(198, 40, 40, .14);
}

.form-notification .title {
    margin: 0 0 4px;
}

.form-notification .desc {
    margin: 0;
}

.form-submit-btn.is-loading {
    opacity: .7;
    cursor: wait;
}