:root {
    --muted-black: #1a1a1a;
    --muted-black-light: #252525;
    --muted-blue: #5d7a99;
    --muted-blue-dark: #3d5a7a;
    --muted-blue-light: #7a9bbd;
    --muted-gold: #b8923f;
    --muted-gold-light: #d4ac5a;
    --muted-gold-dark: #8a6d2f;
    --off-white: #f0ede8;
    --text-light: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--muted-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted-black);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted-gold);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem 5%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--muted-gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--muted-blue-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--muted-blue), var(--muted-gold));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--muted-gold);
}

.nav-links a:hover::before {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-gold);
    transition: transform 0.3s ease;
}

.mobile-menu:hover {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--muted-black);
    position: relative;
    overflow: hidden;
}

/* Background Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted-black);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.35);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(61, 90, 122, 0.4) 50%,
        rgba(26, 26, 26, 0.7) 100%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(93, 122, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 146, 63, 0.1) 0%, transparent 50%);
    animation: pulseBackground 8s ease-in-out infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Slider navigation dots */
.slider-dots {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--muted-blue);
}

.slider-dot.active {
    background: var(--muted-gold);
    border-color: var(--muted-gold);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: var(--muted-blue-light);
    transform: scale(1.1);
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--muted-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 11s; }

.particle.blue {
    background: var(--muted-blue-light);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    z-index: 10;
    padding: 0 2rem;
    position: relative;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--off-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h1 span {
    color: var(--muted-gold);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--muted-blue);
    transform: scaleX(0);
    animation: expandLine 0.8s ease forwards;
    animation-delay: 1.2s;
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

.hero-content .tagline {
    font-size: 1.2rem;
    color: var(--muted-blue-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.1s;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--muted-gold);
    color: var(--muted-gold);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--muted-gold);
    color: var(--muted-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 146, 63, 0.3);
}

.btn-primary {
    background: var(--muted-gold);
    color: var(--muted-black);
}

.btn-primary:hover {
    background: var(--muted-gold-light);
    border-color: var(--muted-gold-light);
}

.btn-blue {
    border-color: var(--muted-blue);
    color: var(--muted-blue-light);
}

.btn-blue:hover {
    background: var(--muted-blue);
    color: var(--off-white);
    box-shadow: 0 10px 30px rgba(93, 122, 153, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--muted-blue-light);
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--muted-blue);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--muted-gold);
    border-radius: 2px;
    animation: scrollMouse 1.5s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* Section Styles */
section {
    padding: 7rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--off-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-blue), var(--muted-gold));
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-header .divider::before,
.section-header .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.section-header .divider::before {
    left: -15px;
    background: var(--muted-blue);
}

.section-header .divider::after {
    right: -15px;
    background: var(--muted-gold);
}

.section-header p {
    color: var(--muted-blue-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--muted-black) 0%, var(--muted-black-light) 50%, var(--muted-black) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted-blue), var(--muted-gold), var(--muted-blue), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--muted-blue);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--muted-gold);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
}

.about-image:hover::after {
    bottom: -30px;
    right: -30px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.about-text h3 span {
    color: var(--muted-blue-light);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
}

.about-text .highlight {
    color: var(--muted-blue-light);
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--muted-blue-dark);
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--muted-gold);
    font-weight: 700;
    line-height: 1;
}

.stat-number span {
    color: var(--muted-blue-light);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Gallery Section */
.gallery {
    background: var(--muted-black);
}

/* Recent Work / Instagram Promo */
.recent-work-link {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.instagram-promo {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(252, 176, 69, 0.1) 100%);
    border: 1px solid rgba(253, 29, 29, 0.3);
    border-radius: 4px;
}

.instagram-promo > i {
    font-size: 3rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-text {
    flex: 1;
}

.instagram-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--off-white);
    margin-bottom: 0.3rem;
}

.instagram-text p {
    color: var(--muted-blue-light);
    font-size: 0.95rem;
}

.instagram-promo .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .instagram-promo {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .instagram-promo > i {
        font-size: 2.5rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 146, 63, 0.15);
    z-index: 10;
}

/* Shine effect on hover */
.gallery-item::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 ease;
    z-index: 5;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Gold border glow */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 6;
}

.gallery-item:hover::after {
    border-color: var(--muted-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(20%) brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(61, 90, 122, 0.2) 60%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--muted-gold);
    margin-bottom: 0.8rem;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 20px rgba(184, 146, 63, 0.5);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0) scale(1);
}

.gallery-overlay span {
    color: var(--off-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-overlay .style-tag {
    color: var(--muted-blue-light);
    font-size: 0.75rem;
    margin-top: 0.4rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    background: rgba(61, 90, 122, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}

.gallery-item:hover .gallery-overlay .style-tag {
    transform: translateY(0);
}

/* Staggered animation for grid items */
.gallery-item.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }
.gallery-item:nth-child(9) { transition-delay: 0.45s; }

/* Styles Section */
.styles {
    background: linear-gradient(135deg, var(--muted-black-light) 0%, var(--muted-blue-dark) 50%, var(--muted-black-light) 100%);
    position: relative;
}

.styles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235d7a99' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.style-card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--muted-blue-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-blue), var(--muted-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.style-card:hover::before {
    transform: scaleX(1);
}

.style-card:hover {
    border-color: var(--muted-blue);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.style-card i {
    font-size: 3rem;
    color: var(--muted-blue-light);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.style-card:hover i {
    color: var(--muted-gold);
    transform: scale(1.2);
}

.style-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.style-card p {
    font-size: 0.9rem;
    color: var(--muted-blue-light);
    line-height: 1.7;
}

/* Process Section */
.process {
    background: var(--muted-black);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--muted-blue), var(--muted-gold));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--muted-black);
    border: 2px solid var(--muted-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--muted-gold);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--muted-blue);
    border-color: var(--muted-gold);
    transform: scale(1.1);
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--muted-blue-light);
    max-width: 180px;
    margin: 0 auto;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--muted-blue-dark) 0%, var(--muted-black) 50%, var(--muted-blue-dark) 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(184, 146, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(93, 122, 153, 0.1) 0%, transparent 50%);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.75rem;
    background: var(--muted-black);
    padding: 0 0.5rem;
    color: var(--muted-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--muted-blue-dark);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--muted-gold);
    box-shadow: 0 0 20px rgba(184, 146, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235d7a99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.booking-form .btn {
    grid-column: span 2;
    justify-self: center;
    margin-top: 1rem;
    min-width: 250px;
}

/* Consultation Info */
.consultation-info {
    margin-bottom: 3rem;
}

.consultation-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--muted-blue-dark);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-blue), var(--muted-gold), var(--muted-blue));
}

.consultation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--muted-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-icon i {
    font-size: 2rem;
    color: var(--muted-gold);
}

.consultation-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.consultation-schedule {
    font-size: 1.2rem;
    color: var(--muted-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.consultation-description {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.deposit-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(184, 146, 63, 0.1);
    border: 1px solid var(--muted-gold-dark);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.deposit-info i {
    color: var(--muted-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.deposit-info span {
    color: var(--text-light);
    line-height: 1.6;
}

.shop-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(93, 122, 153, 0.1);
    border: 1px solid var(--muted-blue-dark);
    padding: 1.5rem;
    text-align: left;
}

.shop-address i {
    color: var(--muted-blue-light);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.shop-address span {
    color: var(--text-light);
    line-height: 1.6;
}

/* Square Booking */
.square-booking {
    text-align: center;
    padding: 3rem;
    background: rgba(93, 122, 153, 0.1);
    border: 1px solid var(--muted-blue-dark);
    margin-bottom: 3rem;
}

.square-booking h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.square-booking p {
    color: var(--muted-blue-light);
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* Consultation Form Wrapper */
.consultation-form-wrapper {
    margin-bottom: 3rem;
}

.consultation-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.consultation-form-wrapper > p {
    color: var(--muted-blue-light);
    text-align: center;
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--muted-blue-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--muted-blue-light);
    width: 50px;
    height: 50px;
    border: 1px solid var(--muted-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--muted-gold);
    border-color: var(--muted-gold);
}

.contact-item span {
    color: var(--text-light);
}

/* Address Link */
.address-link {
    color: var(--muted-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--muted-blue-light);
    text-decoration: underline;
}

.contact-item .address-link {
    display: block;
}

.contact-item .address-link span {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-item .address-link:hover span {
    color: var(--muted-gold);
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    background: var(--muted-black);
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid var(--muted-blue-dark);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted-blue), var(--muted-gold), var(--muted-blue), transparent);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--muted-gold);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--muted-blue-light);
}

.footer-tagline {
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

/* Artist Photo in Footer */
.footer-artist-photo {
    margin-bottom: 1.5rem;
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--muted-gold);
    box-shadow: 0 5px 20px rgba(184, 146, 63, 0.3);
    transition: all 0.3s ease;
}

.artist-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(184, 146, 63, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--muted-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-blue-light);
    transition: all 0.4s ease;
}

.social-links a:hover {
    border-color: var(--muted-gold);
    color: var(--muted-gold);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(184, 146, 63, 0.2);
}

.copyright {
    color: var(--muted-blue-light);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--muted-gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(180deg, var(--muted-black) 0%, var(--muted-blue-dark) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .styles-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .booking-form .btn {
        grid-column: span 1;
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stats {
        justify-content: center;
    }
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth hover for all interactive elements */
a, button, .btn {
    -webkit-tap-highlight-color: transparent;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* File Upload */
.upload-label {
    display: block;
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    position: static !important;
}

.upload-label i {
    margin-right: 0.5rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    background: rgba(26, 26, 26, 0.8);
    border: 2px dashed var(--muted-blue-dark);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.file-upload-box i {
    font-size: 2rem;
    color: var(--muted-blue-light);
    margin-bottom: 0.75rem;
    display: block;
}

.file-upload-box span {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.file-upload-box small {
    color: var(--muted-blue-light);
    font-size: 0.8rem;
}

.file-upload-wrapper:hover .file-upload-box,
.file-upload-wrapper.dragover .file-upload-box {
    border-color: var(--muted-gold);
    background: rgba(184, 146, 63, 0.1);
}

.file-upload-box.processing {
    border-color: var(--muted-blue);
    background: rgba(99, 140, 181, 0.1);
}

.file-upload-box.processing i::before {
    content: "\f110";
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--muted-blue-dark);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item .remove-file {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.file-preview-item .remove-file:hover {
    transform: scale(1.1);
}

/* Captcha */
.captcha-label {
    display: block;
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    position: static !important;
}

.captcha-label i {
    margin-right: 0.5rem;
}

.captcha-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-question {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(93, 122, 153, 0.15);
    padding: 1rem 1.5rem;
    border: 1px solid var(--muted-blue-dark);
    border-radius: 4px;
}

.captcha-question span {
    color: var(--text-light);
}

.captcha-question strong {
    color: var(--muted-gold);
}

.captcha-refresh {
    background: transparent;
    border: none;
    color: var(--muted-blue-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    color: var(--muted-gold);
    transform: rotate(180deg);
}

.captcha-wrapper input {
    width: 120px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Submit Button States */
#submit-btn {
    position: relative;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submit-btn .btn-loading {
    display: none;
}

#submit-btn.loading .btn-text {
    display: none;
}

#submit-btn.loading .btn-loading {
    display: inline-block !important;
}

@media (max-width: 768px) {
    .captcha-wrapper {
        flex-direction: column;
    }

    .captcha-wrapper input {
        width: 100%;
    }
}

/* Enhanced Mobile Responsive */
@media (max-width: 480px) {
    /* Navigation */
    nav {
        padding: 0.75rem 4%;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    /* Sections */
    section {
        padding: 3rem 4%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* About */
    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        text-align: center;
    }

    /* Gallery - 2 columns on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .gallery-item {
        height: auto;
        aspect-ratio: 1;
        border-radius: 6px;
    }

    .gallery-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .gallery-item::after {
        border-radius: 6px;
    }

    .gallery-overlay {
        padding: 0.5rem;
        border-radius: 6px;
        opacity: 1;
        background: linear-gradient(to top,
            rgba(26, 26, 26, 0.85) 0%,
            transparent 60%);
    }

    .gallery-overlay i {
        display: none;
    }

    .gallery-overlay span {
        font-size: 0.6rem;
        letter-spacing: 1px;
        transform: none;
    }

    .gallery-overlay .style-tag {
        font-size: 0.5rem;
        margin-top: 0.2rem;
        transform: none;
        padding: 0.1rem 0.4rem;
    }

    /* Styles */
    .style-card {
        padding: 1.5rem;
    }

    .style-card h3 {
        font-size: 1.1rem;
    }

    .style-card p {
        font-size: 0.9rem;
    }

    /* Process */
    .process-step {
        padding: 1.5rem;
    }

    /* Booking */
    .booking-container {
        padding: 1.5rem;
    }

    .booking-info h2 {
        font-size: 1.5rem;
    }

    .consultation-info {
        padding: 1rem;
    }

    .consultation-day {
        font-size: 1.3rem;
    }

    .deposit-info,
    .shop-address {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.9rem 1rem;
    }

    /* Map */
    .map-container {
        margin-top: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Footer */
    footer {
        padding: 2rem 4% 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Contact Info */
    .contact-item {
        padding: 1rem;
        width: 100%;
    }

    .contact-item i {
        font-size: 1.5rem;
    }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-container {
        padding: 2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 80px;
    }

    .nav-links {
        width: 50%;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin: 0 auto;
    }

    section {
        padding: 6rem 10%;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================
   Lightbox / Image Modal
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid var(--muted-blue-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--muted-blue-dark);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--muted-gold);
    color: var(--muted-black);
    border-color: var(--muted-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--muted-blue-dark);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--muted-blue);
    color: var(--off-white);
    border-color: var(--muted-blue);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10001;
}

.lightbox-title {
    color: var(--off-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.lightbox-style {
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lightbox-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    color: var(--muted-blue-light);
    font-size: 0.9rem;
    z-index: 10001;
}

/* Lightbox loading spinner */
.lightbox-loading {
    position: absolute;
    color: var(--muted-gold);
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Lightbox Mobile */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    .lightbox-info {
        bottom: 15px;
        padding: 0 50px;
    }

    .lightbox-title {
        font-size: 1rem;
    }

    .lightbox-style {
        font-size: 0.8rem;
    }
}

/* Touch swipe indicator for mobile */
@media (max-width: 768px) {
    .lightbox-content {
        touch-action: pan-y;
    }
}
