

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --navy:          #232d3b; 
    --navy-dark:     #1d2632;
    --forest:        #c8801a;
    --forest-light:  #e8a040;
    --accent:        #f0c060;
    --white:         #ffffff;
    --light-grey:    #f7f5f0;
    --text-main:     #1c2b3a;
    --text-muted:    #5a6b7a;
    --border-radius: 10px;
    --radius-lg:     18px;
    --shadow:        0 4px 20px rgba(28,43,58,0.10);
    --shadow-lg:     0 12px 40px rgba(28,43,58,0.16);
    --transition:    0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.75; }

.container          { max-width: 1200px; margin: auto; padding: 2rem 1.5rem; }
.bg-light           { background-color: var(--light-grey); }
.bg-navy            { background-color: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.text-white         { color: var(--white); }
.text-accent        { color: var(--accent); }
.center-text        { text-align: center; }
.bg-light-section   { background-color: #ede9e0; }

.grid-layout, .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 769px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-2-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 901px) { 
    .grid-2-text { 
        grid-template-columns: 1.15fr 0.85fr; 
        gap: 3rem;
        align-items: center; 
    } 
    .container { padding: 3rem 1.5rem; }
    
    .about-img {
        height: auto;
        width: 100%;
        max-width: 300px;
        border-radius: var(--radius-lg);
        margin: 0 auto;
        display: block;
    }
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    background: var(--navy);
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.main-header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.logo i {
    color: var(--accent);
    font-size: 1.2rem;
}
.hero-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


@media (max-width: 768px) {
    .hero-logo { max-width: 220px; }
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: hue-rotate(180deg) invert(1) brightness(1.2);
    mix-blend-mode: lighten;
    clip-path: inset(0 2% 0 2%);

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;

}


.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}



.nav-links { display: flex; gap: 1.5rem; align-items: center; }

.nav-links > li > a {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 1;
    color: var(--white);
    transition: opacity var(--transition), color var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { opacity: 1; color: var(--accent); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.cta-nav {
    background: var(--forest) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    color: var(--white) !important;
    opacity: 1 !important;
    transition: background var(--transition), transform var(--transition) !important;
}
.cta-nav:hover { background: var(--forest-light) !important; transform: translateY(-2px); }
.cta-nav::after { display: none !important; }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }



.logo-mobile {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero {
    min-height: 88vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--navy);
    animation: kenBurns 18s ease-in-out infinite alternate;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 6rem 1.5rem 4rem;
}

@keyframes kenBurns {
    0%   { background-size: 110%; background-position: 50% 50%; }
    100% { background-size: 120%; background-position: 55% 45%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(17, 29, 40, 0.45) 0%,
        rgba(17, 29, 40, 0.75) 60%,
        rgba(17, 29, 40, 0.92) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    animation: heroReveal 1s ease-out both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 128, 26, 0.15);
    border: 1px solid rgba(200, 128, 26, 0.35);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: heroReveal 1s 0.15s ease-out both;
}

.hero h1 {
    color: #ffffff !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    margin-bottom: 1.25rem;
    animation: heroReveal 1s 0.3s ease-out both;
}
.hero h1 em, .text-accent {
    font-style: italic;
    color: var(--accent);
}

.hero p.hero-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 0;
    animation: heroReveal 1s 0.45s ease-out both;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.25rem;
    animation: heroReveal 1s 0.6s ease-out both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.65;
    transition: opacity var(--transition);
}
.scroll-indicator:hover { opacity: 1; }
.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    display: block;
    position: relative;
}
.scroll-dot::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    75%       { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.trust-band {
    background: var(--navy);
    padding: 1rem 0;
    border-bottom: 2px solid var(--forest);
}
.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    padding: 0.75rem 1.5rem;
}

@media (min-width: 769px) {
    .trust-grid {
        gap: 1.5rem 4rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.trust-item i { color: var(--accent); font-size: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-width: 200px;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (min-width: 480px) { .btn { min-width: 230px; } }

.btn-primary {
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200,128,26,0.35);
}
.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200,128,26,0.45);
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}
.btn-outline-navy {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-navy {
    background: var(--navy);
    border: 2px solid var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-dark, #0b141e);
    border-color: var(--navy-dark, #0b141e);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-small {
    padding: 0.6rem !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
    width: 100%;
}

.pulse-btn {
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(200,128,26,0.35); }
    50%       { box-shadow: 0 6px 30px rgba(200,128,26,0.65); }
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--forest);
}
.value-card i {
    font-size: 2.2rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
    display: block;
}
.value-card h3 { font-size: 1.1rem; }

.rounded-section {
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .testimonial-img {
        max-height: 550px;
        width: auto;
        display: inline-block;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover .card-image { transform: scale(1.05); }
.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}



.card-body { 
    padding: 1.5rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}
.card-body h3 { margin-bottom: 0.5rem; }
.card-accent-line {
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.story-section { overflow: hidden; }
.rounded-shadow {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    transition: transform 0.5s ease;
}
.image-content:hover .rounded-shadow { transform: scale(1.02); }

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1.25rem; }

.anders-contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.cta-helper-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    max-width: 320px;
}

@media (min-width: 901px) {
    .anders-contact {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
}


.faq-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--forest);
    transition: transform var(--transition), box-shadow var(--transition);
}
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.faq-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-card i { color: var(--forest); }

.contact-section { padding: 5rem 1rem; }
.text-white-opacity { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.75; }

.direct-contact { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.dc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}
.dc-item i {
    font-size: 1.1rem;
    color: var(--navy);
    background: var(--accent);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-card-dark {
    background: white;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem;
    border: 1.5px solid #d8d0c4;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--light-grey);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group label {
    position: absolute;
    top: 0.95rem;
    left: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.22s ease;
    background: transparent;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,128,26,0.12);
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.full-width { width: 100%; max-width: 100%; min-width: 0; }
#form-status { margin-top: 0.75rem; font-size: 0.9rem; color: var(--forest); text-align: center; }

.main-footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1922 100%);
    color: rgba(255,255,255,0.55);
    padding: 0 1rem 2rem;
    text-align: center;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.logo-img-footer {
    height: 140px;
    width: auto;
    filter: hue-rotate(180deg) invert(1) brightness(1.2);
    mix-blend-mode: lighten;
    clip-path: inset(0 2% 0 2%);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}



.footer-tagline {
    font-style: italic;
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-copy { font-size: 0.95rem; margin-top: 1rem; }

@media (min-width: 901px) {
    .main-footer { padding: 0 1rem 1rem; }
    .footer-tagline { font-size: 1.6rem; margin-bottom: 0.5rem; }
    .footer-copy { font-size: 1.2rem; margin-top: 0.5rem; }
    .logo-img-footer { height: 160px; }
    #kontakt .container { padding-bottom: 0; }
    .social-icons a { font-size: 3rem; margin: 0 1.5rem; }
}

.social-icons { margin-top: 1.5rem; }
.social-icons a {
    color: rgba(255,255,255,0.5);
    font-size: 2.2rem;
    margin: 0 15px;
    transition: color var(--transition), transform var(--transition);
    display: inline-block;
}
.social-icons a:hover { color: var(--accent); transform: translateY(-3px); }

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .main-header { padding: 0.6rem 0; background: var(--navy); }
    nav { 
        justify-content: space-between; 
        flex-direction: row; 
        padding: 0 1.5rem; 
        width: 100%; 
        position: relative;
    }    
    
    .menu-toggle { 
        display: block !important; 
        position: absolute; 
        right: 1.5rem; 
        top: 14px; 
        z-index: 1100;
        cursor: pointer;
        transform: none !important;
    }


    .nav-links { display: none !important; }

    nav.active {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-bottom: 0.6rem !important;
        background: var(--navy);
    }
    
    nav.active .nav-links { 
        display: flex !important; 
        flex-direction: column !important;
        gap: 5px;
        width: 100% !important;
        margin: 1.5rem 0 !important;
        padding: 0 1rem;
    }
    
    nav.active .nav-links > li.hide-on-desktop {
        margin-top: 15px;
        width: 100%;
    }

    .nav-links > li > a:not(.cta-nav) { 
        color: var(--white) !important;
        font-size: 1.2rem !important; 
        font-weight: 500;
        padding: 0.6rem 0 !important;
        display: block;
        width: 100%;
        text-align: center !important;
    }

    .mobile-cta-wrapper {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .cta-nav {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0 !important;
        padding: 0.8rem 1rem !important;
        flex: 1;
        min-width: 0 !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
    }



    .card-image { height: 400px; }
    .hero { 
        min-height: 65vh; 
        padding: 5.5rem 1.5rem 3rem; 
        display: flex; 
        align-items: center; 
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(17, 29, 40, 0.3) 0%,
            rgba(17, 29, 40, 0.5) 60%,
            rgba(17, 29, 40, 0.85) 100%
        ) !important;
    }

    .hero-content { width: 100%; }
    .hero h1 { font-size: 2.4rem !important; line-height: 1.15; margin-bottom: 1.5rem; }
    .hero p.hero-text { font-size: 1.05rem !important; margin-bottom: 2rem; }
    .hero-eyebrow { font-size: 0.75rem !important; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
    .cta-group { flex-direction: column; gap: 0.8rem; width: 100%; max-width: 320px; margin: 2rem auto 0; }
    .cta-group .btn { width: 100%; padding: 1rem; justify-content: center; }

    .btn-primary, .pulse-btn {
        padding: 1rem !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        width: 100% !important;
    }

    .main-footer { padding-top: 1rem !important; padding-bottom: 0 !important; }
    #kontakt { padding-top: 3rem !important; padding-bottom: 1rem !important; }
    #kontakt .section-header { margin-bottom: 2rem !important; }
    .social-icons a { font-size: 1.6rem !important; margin: 0 1.2rem !important; }
}





.service-card { cursor: pointer; }
.gallery-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    margin-top: auto;
    padding-top: 1rem;
    opacity: 0.7;
    transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .gallery-hint {
    opacity: 1;
    transform: translateX(4px);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 29, 40, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    flex-direction: column;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }

.lightbox-header {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.lightbox-close {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.lightbox-close:hover { 
    background: var(--accent); 
    border-color: var(--accent);
    color: var(--navy);
    transform: rotate(90deg);
}

.lightbox-content {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0 1rem;
}
.lightbox-content img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-footer {
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.lightbox-nav {
    display: flex;
    gap: 20px;
}
.lightbox-nav button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.lightbox-nav button:hover { background: var(--forest); border-color: var(--forest); }

.lightbox-counter {
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .hide-on-mobile { display: none !important; }
}
@media (min-width: 901px) {
    .hide-on-desktop { display: none !important; }
}
