:root {
    --color-bg: #f8f7f5;
    --color-surface: #fff;
    --color-text: #1a1a1a;
    --color-text-muted: #4a4a4a;
    --color-accent: #c2410c;
    --color-accent-hover: #9a3309;
    --color-accent-light: #fff7ed;
    --color-border: #e5e2de;
    --color-header: #0d0d0d;
    --color-header-accent: #ea580c;
    --font-sans: 'Source Sans 3', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.site-header {
    background: var(--color-header);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--color-header-accent);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.logo {
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo:hover {
    color: #fff;
    opacity: 0.9;
}

.logo-image {
    background: none;
}

.logo-image:hover {
    opacity: 0.92;
}

.logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-sub {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-header-accent);
    opacity: 0.95;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.nav a {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav a:hover {
    color: var(--color-header-accent);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.lang-btn {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
}

.lang-btn.active {
    color: var(--color-header-accent);
    font-weight: 600;
}

.lang-sep {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
    display: none;
}

.nav-toggle i {
    font-size: 1.25rem;
    color: var(--color-header-accent);
}

.main {
    flex: 1;
    min-height: 40vh;
}

/* Home slideshow (project images) */
.home-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    max-height: 50vh;
    overflow: hidden;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--color-accent);
}

.home-slideshow-inner {
    position: absolute;
    inset: 0;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.home-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: var(--space-lg);
}

.home-slide-category {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.home-slide-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    max-width: 42em;
}

.slideshow-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slideshow-dot:hover {
    background: rgba(255,255,255,0.4);
}

.slideshow-dot.active {
    background: var(--color-header-accent);
    border-color: var(--color-header-accent);
}

@media (max-width: 767px) {
    .home-slideshow {
        aspect-ratio: 4/3;
        max-height: 45vh;
    }
}

/* Home about blocks */
.home-about-blocks {
    display: grid;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .home-about-blocks {
        grid-template-columns: 1fr 1fr;
    }
}

.home-about-block {
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.home-about-block-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 var(--space-md);
    color: var(--color-text);
}

.home-about-block-title i {
    margin-right: 0.35em;
    color: var(--color-accent);
}

.home-about-block p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.hero {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
    color: #fff;
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--color-accent);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234,88,12,0.3), transparent);
    opacity: 0.6;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 var(--space-md);
    line-height: 1.2;
}

.hero p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.section {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.section + .section {
    border-top: 1px solid var(--color-border);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.section-sub {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xl);
    font-size: 1.05rem;
    line-height: 1.55;
}

.diensten-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.diensten-section:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-xl);
}

.diensten-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.diensten-section-title i {
    color: var(--color-accent);
}

.diensten-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diensten-sublist li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-text);
}

.diensten-sublist li i {
    position: absolute;
    left: 0;
    color: var(--color-accent);
    top: 0.5em;
}

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn:hover {
    background: var(--color-accent-hover);
    color: #fff;
}

.btn:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--color-accent-light);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.form-block {
    max-width: 560px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

.form-row-dates {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-surface);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.2);
}

.form-hint {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.image-upload-group .image-input-wrap {
    margin-bottom: var(--space-sm);
}

.image-upload-group .image-input {
    padding: var(--space-sm);
}

.btn-add-image {
    margin-top: var(--space-sm);
}

.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
    border: 1px solid transparent;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.project-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.project-card-image {
    aspect-ratio: 4/3;
    background: var(--color-border);
    overflow: hidden;
    border-bottom: 3px solid var(--color-accent);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-body {
    padding: var(--space-lg);
}

.project-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 var(--space-xs);
    color: var(--color-text);
    font-weight: 600;
}

.project-card-category {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-sm);
}

.project-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.projects-filter-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.projects-filter-label {
    font-weight: 500;
    color: var(--color-text);
}

.projects-filter-form {
    display: inline-block;
}

.projects-filter-select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    min-width: 180px;
}

.project-card .meta {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.project-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.project-detail {
    padding-top: var(--space-xl);
}

.project-detail .project-header {
    margin-bottom: var(--space-lg);
}

.project-detail .project-title {
    margin-bottom: var(--space-sm);
}

.project-detail-category {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xs);
}

.project-detail .project-date-range {
    font-weight: 500;
    color: var(--color-accent);
    margin: 0;
}

.project-detail .project-text {
    margin-top: 0;
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg) 0;
    color: var(--color-text);
    line-height: 1.65;
    max-width: 60ch;
}

.project-detail .project-gallery-wrap {
    margin-top: var(--space-xl);
}

.project-detail .project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: 0;
}

@media (min-width: 768px) {
    .project-detail .project-gallery {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .project-detail .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-detail .gallery-thumb {
        aspect-ratio: 3/2;
        min-height: 280px;
    }
}

.project-detail .gallery-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-detail .gallery-thumb:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.lightbox-open {
    opacity: 1;
    visibility: visible;
}

body.lightbox-active {
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-xl);
}

.lightbox-next {
    right: var(--space-xl);
}

.lightbox-content {
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.site-footer {
    background: var(--color-header);
    color: rgba(255,255,255,0.8);
    padding: var(--space-sm) var(--space-lg);
    text-align: center;
    margin-top: auto;
    border-top: 2px solid var(--color-header-accent);
}

.footer-inner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8rem;
}

.footer-copy {
    grid-column: 2;
    text-align: center;
    margin: 0;
    opacity: 0.85;
}

.footer-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-right--desktop .footer-user-icon {
    display: none;
}

.footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--color-header-accent);
}

.footer-link i {
    margin-right: 0.25rem;
}

.footer-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.25em;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}

.footer-user-icon:hover {
    color: var(--color-header-accent);
    background: rgba(255,255,255,0.1);
}

.footer-user-icon i {
    font-size: 1em;
}

@media (min-width: 769px) {
    .footer-right--desktop .footer-user-icon {
        display: flex;
    }
}

.login-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: var(--space-2xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.login-box h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 var(--space-xl);
    text-align: center;
    color: var(--color-text);
}

.login-toggle {
    margin: var(--space-lg) 0 0;
    text-align: center;
}

.login-toggle .link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--color-accent);
    cursor: pointer;
    text-decoration: underline;
}

.login-toggle .link-btn:hover {
    color: var(--color-accent-hover);
}

.staff-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.staff-layout h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

.dashboard-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
}

.dashboard-section-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 var(--space-md);
    color: var(--color-text);
}

.dashboard-section-title i {
    margin-right: 0.4em;
    color: var(--color-accent);
}

.dashboard-section-desc {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
    font-size: 0.95rem;
}

.staff-actions {
    margin-bottom: var(--space-xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.staff-actions .btn i {
    margin-right: 0.35em;
}

.upload-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.upload-list li {
    padding: var(--space-md) var(--space-md);
    font-size: 0.95rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    background: var(--color-surface);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow);
}

.upload-list li a {
    font-size: 0.9rem;
}

.upload-list li strong {
    flex: 1;
    min-width: 0;
}

.nav a i,
.nav-toggle i {
    margin-right: 0.35em;
    opacity: 0.9;
}

.nav-toggle .fa-bars {
    margin-right: 0;
}

.project-card .meta i {
    margin-right: 0.25rem;
}

.contact-info-card {
    display: grid;
    gap: var(--space-lg);
    max-width: 560px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.contact-info-item i {
    width: 2rem;
    text-align: center;
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.contact-info-item a {
    word-break: break-all;
}

.staff-edit-contact-link {
    margin-top: var(--space-lg);
}

.image-input-hidden {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.image-upload-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.project-images-current,
.project-images-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.project-images-current .img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 1;
}

.project-images-current .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-images-current .img-wrap .btn-remove-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0,0,0,0.75);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: none;
}

.project-images-current .btn-remove-img:hover {
    background: var(--color-accent);
}

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

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .lang-switch {
        order: 2;
        width: auto;
        padding-top: 0;
    }

    .nav-toggle {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: var(--space-md);
    }

    .nav.is-open {
        display: flex;
    }

    .hero {
        padding: var(--space-2xl) var(--space-md);
    }

    .section {
        padding: var(--space-2xl) var(--space-md);
    }

    .form-row-dates {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        display: block;
        text-align: center;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
    }

    .footer-copy {
        grid-column: auto;
    }

    .footer-right {
        grid-column: auto;
        justify-self: auto;
    }
}
