:root {
    /* Color Palette - Organic & Earthy */
    --bg-color: #f5f2eb; /* Premium Bone color */
    --text-color: #2c3e38;
    --text-light: #5a6e65;
    --accent-color: #a47e53; /* Warm earth tone */
    --accent-hover: #866542;
    --card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 6rem 2rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

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

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.text-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* White logo when at the very top (transparent nav over dark image) */
.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-links a:not(.btn-primary) {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-shadow: none !important;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(164, 126, 83, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.6);
    text-shadow: none !important;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Beautiful wildlife/nature painting background with dark top gradient for readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 15%, transparent 40%),
                url('https://lancekhoury.co.za/wp-content/uploads/2026/04/IMG_4996-scaled.jpeg') center/cover no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections General */
.section {
    padding: var(--section-padding);
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

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

/* Blur Callouts */
.blur-callouts {
    background-color: var(--bg-color);
    padding: 4rem 2rem;
}

.blur-callouts-top {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.blur-callouts-bottom {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.blur-callouts .section-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blur-card {
    background: rgba(255, 255, 255, 0.45); /* White frosted glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(164, 126, 83, 0.12);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.01);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.blur-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(164, 126, 83, 0.05);
    border-color: rgba(164, 126, 83, 0.25);
}

.blur-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(164, 126, 83, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.blur-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials {
    background-color: #eae5dc; /* Slightly darker shade than bone page background */
    overflow: hidden; /* Prevent horizontal container overflow */
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
}

.testimonial-nav-btn {
    background: var(--card-bg);
    border: 1px solid rgba(164, 126, 83, 0.2);
    color: var(--accent-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.testimonial-nav-btn svg {
    display: block;
    transition: transform 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(164, 126, 83, 0.15);
}

.testimonial-nav-btn.prev-btn:hover svg {
    transform: translateX(-2px);
}

.testimonial-nav-btn.next-btn:hover svg {
    transform: translateX(2px);
}

.testimonial-nav-btn:active {
    transform: translateY(0);
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden; /* Prevent vertical scrolling */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1.5rem 0.5rem; /* Space for box-shadow hover */
    scrollbar-width: thin;
    scrollbar-color: rgba(164, 126, 83, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar Styling */
.testimonial-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonial-grid::-webkit-scrollbar-track {
    background: rgba(164, 126, 83, 0.05);
    border-radius: 10px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: rgba(164, 126, 83, 0.25);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.testimonial-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.testimonial-card {
    background-color: var(--card-bg);
    /* Very faint, premium canvas-like fiber texture */
    background-image: 
        repeating-linear-gradient(0deg, rgba(44, 62, 56, 0.007) 0px, rgba(44, 62, 56, 0.007) 1px, transparent 1px, transparent 8px),
        repeating-linear-gradient(90deg, rgba(44, 62, 56, 0.007) 0px, rgba(44, 62, 56, 0.007) 1px, transparent 1px, transparent 8px);
    padding: 2.2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(44, 62, 56, 0.04), 0 2px 6px rgba(44, 62, 56, 0.02);
    border: 1px solid rgba(164, 126, 83, 0.06);
    position: relative;
    transition: var(--transition);
    flex: 0 0 calc((100% - 4rem) / 3); /* Exactly 3 cards visible on desktop */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(44, 62, 56, 0.08), 0 4px 12px rgba(44, 62, 56, 0.03);
    border-color: rgba(164, 126, 83, 0.15);
}

.testimonial-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #eae5dc;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.02);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.quote-icon {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.08;
    line-height: 0;
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.quote-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    flex-grow: 1; /* Pushes client name to the bottom of the card */
}

.client-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* Instagram Feed */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ig-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 56, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.ig-overlay span {
    color: #fff;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.ig-item:hover .ig-overlay span {
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: #fff;
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-info h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

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

/* Scroll Animations */
.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: var(--transition);
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background: #fff;
}

.mobile-menu-btn span:first-child { top: 0; }
.mobile-menu-btn span:last-child { bottom: 0; }

.mobile-menu-btn.active span:first-child {
    transform: translateY(9px) rotate(45deg);
    background: var(--text-color) !important;
}
.mobile-menu-btn.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--text-color) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 calc((100% - 2rem) / 2); /* 2 cards visible at a time */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-color) !important;
        font-size: 1.2rem;
        text-shadow: none !important;
    }
}

/* Small screens fix: remove left offset and disable fixed hero background */
@media (max-width: 600px) {
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* Reduce horizontal padding so content truly centers on small viewports */
    .nav-container,
    .section-container,
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Disable parallax fixed background on mobile (can cause rendering/offset issues) */
    .hero {
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
    }

    /* Ensure mobile nav panel doesn't introduce horizontal overflow */
    .nav-links {
        max-width: 100%;
        right: -100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* 1 card visible at a time */
    }
    
    .testimonial-grid {
        gap: 1.5rem;
    }
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(rgba(34, 34, 34, 0.93), rgba(34, 34, 34, 0.93)), var(--bg-color);
    padding: var(--section-padding);
}

.portfolio .section-title {
    color: #ffffff;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.portfolio-tab-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.portfolio-tab-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(164, 126, 83, 0.25);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Portfolio Item visibility */
.portfolio-item {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.portfolio-item.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 62, 56, 0.03);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(164, 126, 83, 0.05);
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 24, 23, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-view-btn {
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hover effects */
.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-view-btn {
    transform: translateY(0);
}

.portfolio-info {
    padding-left: 0.5rem;
}

.portfolio-item-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.portfolio-item-category {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 24, 23, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

#lightbox-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

#lightbox-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* Lightbox Close and Nav Buttons */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    z-index: 2010;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-nav svg {
    display: block;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-close { top: 1rem; right: 1rem; }
}
