/* meisterlotse2 – Static component styles.
   CSS variables are defined inline per-page (css_variables.html.twig + _css.html.twig :root block)
   so they can be overridden by customer design settings. */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body); color: var(--clr-text);
    background: var(--clr-bg); line-height: 1.7; font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--clr-anthrazit); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===================== BUTTONS ===================== */
.btn-primary {
    background: var(--clr-cta); color: #fff; padding: 14px 30px;
    border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
    border: none; cursor: pointer; transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover { background: var(--clr-cta-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,83,63,0.35); }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.3); color: #fff; background: none;
    padding: 12px 28px; border-radius: var(--radius-sm); font-size: 15px;
    font-weight: 600; cursor: pointer; transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); color: #fff; }

/* ===================== HEADER ===================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--clr-text); }
.logo-img { height: 44px; width: auto; }
.logo-icon {
    width: 42px; height: 42px; background: var(--clr-anthrazit); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 18px; font-family: var(--font-display);
}
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; color: var(--clr-anthrazit); }
.logo-sub { font-size: 12px; color: var(--clr-grau); font-weight: 400; letter-spacing: 0.02em; }
.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
    padding: 8px 16px; border-radius: var(--radius-sm); font-size: 14.5px;
    font-weight: 500; color: var(--clr-text); transition: all var(--transition); text-decoration: none;
}
.nav-desktop a:hover { background: var(--clr-surface-alt); color: var(--clr-accent); }
.nav-desktop a.active { color: var(--clr-anthrazit); background: var(--clr-accent-light); font-weight: 600; }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    padding: 8px 16px; border-radius: var(--radius-sm); font-size: 14.5px;
    font-weight: 500; color: var(--clr-text); cursor: pointer; display: flex;
    align-items: center; gap: 4px; transition: all var(--transition); background: none; border: none;
    font-family: var(--font-body);
}
.nav-dropdown-trigger:hover { background: var(--clr-surface-alt); color: var(--clr-accent); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-md); padding: 8px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.2s ease; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
    display: block; padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--clr-text); text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--clr-accent-light); color: var(--clr-accent); }
.header-cta {
    background: var(--clr-cta); color: #fff !important; padding: 10px 22px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    transition: all var(--transition); border: none; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.header-cta:hover { background: var(--clr-cta-hover); color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px; background: var(--clr-text);
    position: absolute; left: 9px; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 13px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 25px; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 19px; }
.nav-mobile {
    display: none; background: var(--clr-surface); border-top: 1px solid var(--clr-border);
    padding: 16px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
    display: block; padding: 12px 0; font-size: 15px; font-weight: 500;
    color: var(--clr-text); border-bottom: 1px solid var(--clr-border); text-decoration: none;
}
.nav-mobile a:last-child { border: none; }
@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    .nav-desktop, .header-cta-wrap { display: none; }
}

/* ===================== HERO (Homepage) ===================== */
.hero {
    margin-top: 72px; min-height: 560px; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--clr-header-bg) 0%, color-mix(in srgb, var(--clr-header-bg) 72%, #000) 100%);
    position: relative; overflow: hidden; text-align: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 100%);
}
.hero-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 40px 40px;
}
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.15; }
.hero-glow-1 { background: var(--clr-accent); top: -200px; right: -100px; }
.hero-glow-2 { background: #8C8C8C; bottom: -200px; left: -100px; opacity: 0.1; }
.hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 80px 24px 60px; width: 100%; }
.hero-content { color: #fff; max-width: 720px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px; padding: 6px 16px; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.85); margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--clr-accent); border-radius: 50%; }
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 em { color: var(--clr-accent); font-style: normal; }
.hero p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-services-line {
    margin-top: 40px; font-size: 13px; color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-services-line span { color: rgba(255,255,255,0.15); margin: 0 10px; }
@media (max-width: 600px) {
    .hero-inner { padding: 36px 24px 24px; }
    .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: center; }
}

/* ===================== PAGE HERO (Unterseiten) ===================== */
.page-hero {
    margin-top: 72px; padding: 80px 0 60px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--clr-header-bg) 0%, color-mix(in srgb, var(--clr-header-bg) 75%, #000) 100%);
    color: #fff;
}
.page-hero-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.7; }

/* ===================== SECTION GLOBAL ===================== */
section { padding: 64px 0; }
.section-label {
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--clr-accent); margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: var(--clr-text); margin-bottom: 16px;
}
.section-desc { font-size: 16.5px; color: var(--clr-text-muted); max-width: 560px; line-height: 1.7; }

/* ===================== LOGO TICKER ===================== */
.logo-ticker {
    background: var(--clr-surface); border-bottom: 1px solid var(--clr-border);
    padding: 20px 0; overflow: hidden; position: relative;
}
.logo-ticker::before, .logo-ticker::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.logo-ticker::before { left: 0; background: linear-gradient(90deg, var(--clr-surface), transparent); }
.logo-ticker::after { right: 0; background: linear-gradient(270deg, var(--clr-surface), transparent); }
.ticker-track {
    display: flex; align-items: center; gap: 60px; width: max-content;
    animation: ticker 25s linear infinite;
}
.ticker-item {
    font-size: 15px; font-weight: 700; color: var(--clr-grau);
    letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clr-border); flex-shrink: 0; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== ABOUT ===================== */
.about { background: var(--clr-surface); padding: 48px 0 64px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
    aspect-ratio: 4/3; background: linear-gradient(135deg, var(--clr-surface-alt), #ddd);
    border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--clr-text-muted); font-size: 14px; gap: 8px;
}
.about-image-placeholder svg { opacity: 0.4; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.about-value { background: var(--clr-bg); border-radius: var(--radius-sm); padding: 20px; }
.about-value h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.about-value p { font-size: 13.5px; color: var(--clr-text-muted); line-height: 1.55; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===================== SERVICES ===================== */
.services { background: var(--clr-bg); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-md); padding: 36px 28px;
    transition: all var(--transition); position: relative; overflow: hidden;
    text-decoration: none; color: var(--clr-text); display: block;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--clr-accent); transform: scaleX(0);
    transition: transform var(--transition); transform-origin: left;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); color: var(--clr-text); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.service-card:nth-child(1) .service-icon { background: var(--clr-accent-light); }
.service-card:nth-child(2) .service-icon { background: var(--clr-warm-light); }
.service-card:nth-child(3) .service-icon { background: var(--clr-green-light); }
.service-card:nth-child(4) .service-icon { background: #F3E8FF; }
.service-card:nth-child(5) .service-icon { background: #FFE4E6; }
.service-card:nth-child(6) .service-icon { background: #F0FDF4; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { font-size: 14.5px; color: var(--clr-text-muted); line-height: 1.65; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px; font-size: 14px;
    font-weight: 600; color: var(--clr-anthrazit); margin-top: 16px; transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }
.more-services { margin-top: 48px; }
.more-services-header { margin-bottom: 20px; }
.more-services-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--clr-text); margin-bottom: 4px; }
.more-services-desc { font-size: 14px; color: var(--clr-text-muted); }
.more-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.mini-card {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm); padding: 16px 18px;
    display: flex; align-items: center; gap: 12px; transition: all var(--transition);
}
.mini-card:hover { border-color: var(--clr-accent); background: var(--clr-accent-light); }
.mini-card-icon { font-size: 20px; flex-shrink: 0; }
.mini-card-text { font-size: 14px; font-weight: 500; color: var(--clr-text); }
.mini-card-desc { font-size: 12.5px; color: var(--clr-text-muted); margin-top: 1px; }

/* ===================== SERVICE AREA ===================== */
.service-area { background: var(--clr-bg); }
.service-area-header { text-align: center; margin-bottom: 48px; }
.service-area-header .section-desc { margin: 0 auto; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.area-tag {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm); padding: 16px 20px;
    display: flex; align-items: center; gap: 10px; transition: all var(--transition);
}
.area-tag:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-sm); }
.area-tag-dist {
    font-size: 11px; font-weight: 700; color: var(--clr-anthrazit);
    background: var(--clr-accent-light); padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}
.area-tag-name { font-size: 14.5px; font-weight: 500; }
.area-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--clr-text-muted); }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--clr-surface); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 32px 28px; }
.testimonial-stars { color: var(--clr-accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--clr-text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--clr-accent-light);
    display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; color: var(--clr-anthrazit);
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-loc { font-size: 13px; color: var(--clr-text-muted); }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--clr-header-bg) 0%, color-mix(in srgb, var(--clr-header-bg) 75%, #000) 100%);
    color: #fff; text-align: center; padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section .hero-pattern { opacity: 0.04; }
.cta-section .section-label { color: #F0D04A; }
.cta-section .section-title { color: #fff; }
.cta-section .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-info { display: flex; justify-content: center; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.cta-info-item { text-align: center; }
.cta-info-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.cta-info-value { font-size: 16px; font-weight: 600; color: #fff; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--clr-surface); border-top: 1px solid var(--clr-border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-text); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--clr-text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--clr-accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--clr-text-muted); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid var(--clr-border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom small { font-size: 13px; color: var(--clr-text-muted); }
.footer-bottom a { font-size: 13px; color: var(--clr-text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--clr-accent); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== EMERGENCY BAR ===================== */
.emergency-bar { background: var(--clr-warm); color: #fff; text-align: center; padding: 10px 24px; font-size: 14px; font-weight: 500; }
.emergency-bar a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ===================== PAGE CONTENT ===================== */
.page-content { padding: 80px 0 100px; }
.content-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }
.content-main h2 {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
    margin-bottom: 14px; margin-top: 40px; letter-spacing: -0.01em;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 15.5px; color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 16px; }

/* Feature cards */
.feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 36px; }
@media (max-width: 600px) { .feature-cards { grid-template-columns: 1fr; } }
.feature-card {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-md); padding: 28px 24px;
}
.feature-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }
.feature-cards-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 800px) { .feature-cards-3 { grid-template-columns: 1fr; } }

/* Content CTA */
.content-cta {
    background: var(--clr-accent-light); border-radius: var(--radius-md); padding: 32px; margin-top: 36px;
}
.content-cta h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.content-cta p { font-size: 14.5px; color: var(--clr-text-muted); margin-bottom: 16px; }

/* Sidebar */
.content-sidebar { position: sticky; top: 96px; }
.sidebar-card {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-md); padding: 28px 24px; margin-bottom: 20px;
}
.sidebar-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }
.sidebar-card-dark { background: linear-gradient(135deg, var(--clr-header-bg), color-mix(in srgb, var(--clr-header-bg) 75%, #000)); color: #fff; border: none; }
.sidebar-card-dark h4 { color: #fff; }
.sidebar-card-dark p { color: rgba(255,255,255,0.7); }
.check-list { list-style: none; }
.check-list li {
    padding: 8px 0; font-size: 14px; color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border); display: flex; align-items: start; gap: 10px;
}
.check-list li:last-child { border: none; }
.check-list li::before { content: '✓'; color: var(--clr-green); font-weight: 700; flex-shrink: 0; }

/* ===================== FACTS BAR (Ueber-uns) ===================== */
.facts-bar { background: var(--clr-anthrazit); padding: 40px 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .facts-grid { grid-template-columns: 1fr 1fr; } }
.fact-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--clr-accent); line-height: 1.1; margin-bottom: 4px; }
.fact-label { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===================== VALUES SECTION ===================== */
.values-section { background: var(--clr-bg); padding: 64px 0; }
.values-header { text-align: center; margin-bottom: 48px; }
.values-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-card { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 32px 28px; text-align: center; }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }

/* ===================== TEAM SECTION ===================== */
.team-section { background: var(--clr-surface); padding: 64px 0; }
.team-header { text-align: center; margin-bottom: 48px; }
.team-header .section-desc { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card { background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: all .3s ease; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo { height: 220px; background: var(--clr-surface-alt); display: flex; align-items: center; justify-content: center; color: var(--clr-grau); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo svg { opacity: .25; }
.team-info { padding: 22px 24px; }
.team-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 2px; }
.team-role { font-size: 13px; color: var(--clr-accent); font-weight: 500; margin-bottom: 8px; }
.team-desc { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; }

/* ===================== TIMELINE SECTION ===================== */
.timeline-section { background: var(--clr-bg); padding: 64px 0; }
.timeline { max-width: 640px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: var(--clr-border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -33px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--clr-accent); border: 3px solid var(--clr-bg); }
.timeline-year { font-size: 13px; font-weight: 700; color: var(--clr-accent); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.timeline-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-text { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

/* ===================== PARTNERS SECTION ===================== */
.partners-section { background: var(--clr-surface); padding: 48px 0; }
.partners-inner { text-align: center; }
.partners-label { font-size: 13px; color: var(--clr-grau); margin-bottom: 20px; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-badge {
    background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-sm);
    padding: 14px 28px; font-weight: 700; font-size: 14px; color: var(--clr-grau); letter-spacing: .06em; text-transform: uppercase;
}

/* ===================== CAREER SECTION ===================== */
.career-section { background: var(--clr-bg); padding: 64px 0; }
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .career-grid { grid-template-columns: 1fr; } }
.career-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
@media (max-width: 500px) { .career-perks { grid-template-columns: 1fr; } }
.career-perk {
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm); padding: 16px; display: flex; align-items: start; gap: 10px; font-size: 14px;
}
.career-perk-icon { font-size: 18px; flex-shrink: 0; }

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== FORM ===================== */

/* Shared background section */
.m2-form-section { padding: 72px 0 80px; background: var(--clr-surface-alt); }

/* Funnel: narrow centered card */
.m2-form-wrap { max-width: 600px; margin: 0 auto; padding: 0 24px; }

/* Content block: 2-column grid (contact info + form card) */
.m2-block-form-grid {
    display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}

/* Contact sidebar */
.m2-contact-headline {
    font-family: var(--font-display); font-size: 26px; font-weight: 700;
    color: var(--clr-anthrazit); line-height: 1.3; margin-bottom: 24px;
}
.m2-contact-info { display: flex; flex-direction: column; gap: 24px; }
.m2-contact-item { display: flex; gap: 16px; align-items: flex-start; }
.m2-contact-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--clr-surface); display: flex; align-items: center;
    justify-content: center; color: var(--clr-accent); flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.m2-contact-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--clr-text-muted); margin-bottom: 4px;
}
.m2-contact-value {
    font-size: 15px; font-weight: 600; color: var(--clr-anthrazit); line-height: 1.5;
}
.m2-contact-value a { color: var(--clr-anthrazit); text-decoration: none; }
.m2-contact-value a:hover { color: var(--clr-accent); }

/* Form card (used by both funnel and content block) */
.m2-form-card {
    background: var(--clr-surface); border-radius: var(--radius-md); padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.m2-form-card-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--clr-anthrazit); margin-bottom: 28px;
}

/* Form field styling – scoped to both card and funnel wrap */
.m2-form-card .formrow,
.m2-form-wrap .formrow { margin-bottom: 20px; }

.m2-form-card .formrow label,
.m2-form-wrap .formrow label {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--clr-anthrazit); margin-bottom: 6px;
}
.m2-form-card .formrow input,
.m2-form-card .formrow textarea,
.m2-form-card .formrow select,
.m2-form-wrap .formrow input,
.m2-form-wrap .formrow textarea,
.m2-form-wrap .formrow select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 15px; color: var(--clr-text);
    background: var(--clr-surface); transition: border-color .15s; box-sizing: border-box;
    -webkit-appearance: none; appearance: none;
}
.m2-form-card .formrow input:focus,
.m2-form-card .formrow textarea:focus,
.m2-form-card .formrow select:focus,
.m2-form-wrap .formrow input:focus,
.m2-form-wrap .formrow textarea:focus,
.m2-form-wrap .formrow select:focus {
    outline: none; border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--clr-accent) 12%, transparent);
}
.m2-form-card .formrow textarea,
.m2-form-wrap .formrow textarea { resize: vertical; min-height: 130px; }

.m2-form-card .formrow .req,
.m2-form-wrap .formrow .req { color: var(--clr-cta); }

/* Submit button */
.m2-form-card .formrow button[type="submit"],
.m2-form-wrap .formrow button[type="submit"] {
    width: 100%; padding: 14px 24px;
    background: var(--clr-cta); color: #fff;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    transition: background var(--transition); margin-top: 8px;
    letter-spacing: 0.01em;
}
.m2-form-card .formrow button[type="submit"]:hover,
.m2-form-wrap .formrow button[type="submit"]:hover {
    background: var(--clr-cta-hover); transform: translateY(-1px);
}

/* Legal / privacy note */
.m2-form-card .legalnote,
.m2-form-wrap .legalnote {
    font-size: 12px; color: var(--clr-text-muted);
    line-height: 1.6; text-align: center; margin-bottom: 0;
}
.m2-form-card .legalnote a,
.m2-form-wrap .legalnote a { color: var(--clr-text-muted); text-decoration: underline; }

/* Honeypot */
.m2-form-card .hp,
.m2-form-wrap .hp { display: none !important; }

/* Error message */
.m2-form-card #errormessage,
.m2-form-wrap #errormessage {
    display: none; background: #fff0f0; border: 1px solid #ffaaaa;
    border-radius: var(--radius-sm); padding: 12px 16px;
    color: #c00; font-size: 14px; margin-bottom: 16px;
}

@media (max-width: 900px) {
    .m2-block-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .m2-form-card { padding: 28px 20px; }
    .m2-form-wrap { padding: 0 16px; }
}

/* ─── CONTACT INFO TILES ─── */
.contact-info-block { padding: 72px 0; }
.contact-info-header { text-align: center; margin-bottom: 48px; }
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-info-tile {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .18s, border-color .18s;
}
.contact-info-tile:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.contact-info-tile-icon {
    font-size: 28px;
    line-height: 1;
}
.contact-info-tile-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
}
.contact-info-tile-value {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--clr-text);
    line-height: 1.6;
    white-space: pre-line;
}
.contact-info-tile-value a {
    color: var(--clr-accent);
    text-decoration: none;
    font-weight: 700;
}
.contact-info-tile-value a:hover { text-decoration: underline; }
.contact-info-tile-note {
    font-size: 12.5px;
    color: var(--clr-text-muted);
    margin-top: -4px;
}
@media (max-width: 900px) {
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-info-block { padding: 48px 0; }
}

/* ===================== HERO SPLIT (Reinigung-Stil) ===================== */
.hero.hero-split { text-align: left; }
.hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(30,20,10,0.6); }
.hero-split-inner {
    position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto;
    padding: 80px 24px 60px; width: 100%;
    display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center;
}
.hero-split-content { color: #fff; }
.hero-split-content h1 {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-split-content h1 span { color: var(--clr-accent); }
.hero-split-content > p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.btn-phone {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 12px 22px;
    border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
    transition: all var(--transition); text-decoration: none;
}
.btn-phone:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: rgba(255,255,255,0.75); }
.hero-trust-icon { color: var(--clr-green); font-weight: 700; }
.hero-review-card {
    background: var(--clr-surface); border-radius: var(--radius-md); padding: 28px 24px;
    box-shadow: var(--shadow-lg); color: var(--clr-text);
}
.hero-card-stars { color: var(--clr-accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.hero-card-rating { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; }
.hero-card-rating small { font-size: 14px; font-weight: 400; color: var(--clr-text-muted); }
.hero-card-source { font-size: 12px; color: var(--clr-text-muted); margin-bottom: 16px; }
.hero-card-quotes { display: flex; flex-direction: column; gap: 12px; }
.mini-quote { background: var(--clr-bg); border-radius: var(--radius-sm); padding: 14px 16px; }
.mini-quote-text { font-size: 13px; color: var(--clr-text); line-height: 1.55; font-style: italic; margin-bottom: 6px; }
.mini-quote-author { font-size: 11.5px; color: var(--clr-text-muted); font-weight: 500; }
@media (max-width: 900px) {
    .hero-split-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-review-card { max-width: 400px; }
}
@media (max-width: 600px) {
    .hero-split-inner { padding: 36px 24px 24px; }
    .hero-split-content h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
    background: var(--clr-surface); border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border); padding: 24px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.trust-text { font-size: 14px; font-weight: 600; color: var(--clr-text); }
.trust-sub { font-size: 12px; color: var(--clr-text-muted); margin-top: 1px; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; } }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--clr-bg); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header .section-desc { margin: 0 auto; }
.reviews-summary {
    display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
    background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-md);
    padding: 32px 36px; margin-bottom: 32px;
}
.reviews-score { text-align: center; min-width: 140px; }
.reviews-score-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--clr-text); line-height: 1; }
.reviews-score-stars { color: var(--clr-accent); font-size: 18px; letter-spacing: 2px; margin: 6px 0 4px; }
.reviews-score-count { font-size: 13px; color: var(--clr-text-muted); }
.reviews-bars { display: flex; flex-direction: column; gap: 6px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; }
.review-bar-label { font-size: 13px; font-weight: 600; color: var(--clr-text-muted); width: 14px; text-align: right; }
.review-bar { flex: 1; height: 10px; background: var(--clr-surface-alt); border-radius: 5px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--clr-accent); border-radius: 5px; transition: width 0.6s ease; }
.review-bar-count { font-size: 12px; color: var(--clr-text-muted); width: 28px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card {
    background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-md);
    padding: 24px 22px;
}
.review-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%; background: var(--clr-accent-light);
    display: flex; align-items: center; justify-content: center; font-weight: 700;
    font-size: 15px; color: var(--clr-anthrazit); flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--clr-text-muted); }
.review-stars { color: var(--clr-accent); font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.review-text { font-size: 14px; line-height: 1.65; color: var(--clr-text-muted); margin-bottom: 12px; }
.review-service {
    display: inline-block; font-size: 11px; font-weight: 600; color: var(--clr-accent);
    background: var(--clr-accent-light); padding: 3px 10px; border-radius: 100px;
    letter-spacing: 0.03em;
}
.reviews-google { text-align: center; margin-top: 28px; }
.reviews-google a { font-size: 14px; font-weight: 600; color: var(--clr-anthrazit); }
.reviews-google a:hover { color: var(--clr-accent); }
@media (max-width: 600px) { .reviews-summary { grid-template-columns: 1fr; text-align: center; } }

/* ===================== FAQ ===================== */
.faq-section { background: var(--clr-bg); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--clr-text);
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font-body); transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-accent); }
.faq-chevron { font-size: 14px; color: var(--clr-text-muted); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px; color: var(--clr-text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 20px; }

/* ===================== PROJECTS GRID ===================== */
.projects { background: var(--clr-bg); }
.projects-header { text-align: center; margin-bottom: 48px; }
.projects-header .section-desc { margin: 0 auto; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.project-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 4/3; background: var(--clr-surface-alt); cursor: pointer;
    transition: transform 0.3s;
}
.project-card:hover { transform: translateY(-4px); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-card-img {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--clr-grau);
    font-size: 12px; gap: 4px;
}
.project-card-img svg { opacity: 0.25; }
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(30,20,10,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px; color: #fff;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
    font-size: 10px; font-weight: 600; background: rgba(255,255,255,0.15);
    padding: 3px 10px; border-radius: 100px; display: inline-block;
    margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.project-overlay h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 3px; }
.project-overlay p { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 300; }
.projects-cta { text-align: center; margin-top: 28px; }
.projects-cta a { font-size: 15px; font-weight: 600; color: var(--clr-anthrazit); }
.projects-cta a:hover { color: var(--clr-accent); }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

/* ===================== BEFORE/AFTER SLIDER ===================== */
.ba-section { background: var(--clr-surface); }
.ba-header { text-align: center; margin-bottom: 48px; }
.ba-header .section-desc { margin: 0 auto; }
.ba-slider {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    aspect-ratio: 16/9; background: var(--clr-surface-alt); cursor: ew-resize;
    user-select: none; -webkit-user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-after { z-index: 1; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--clr-grau); background: var(--clr-surface-alt);
}
.ba-before .ba-placeholder { background: color-mix(in srgb, var(--clr-surface-alt) 85%, #000); }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(-50%); width: 4px; cursor: ew-resize;
}
.ba-handle-line { flex: 1; width: 2px; background: #fff; }
.ba-handle-btn {
    width: 44px; height: 44px; border-radius: 50%; background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--clr-text);
}
.ba-labels { display: flex; justify-content: space-between; margin-top: 12px; }
.ba-label { font-size: 13px; font-weight: 600; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===================== FILTERABLE GALLERY ===================== */
.gallery-section { background: var(--clr-bg); }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.filter-btn {
    padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500;
    border: 1px solid var(--clr-border); background: var(--clr-surface); color: var(--clr-text);
    cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.filter-btn.active { background: var(--clr-anthrazit); color: #fff; border-color: var(--clr-anthrazit); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 4/3; background: var(--clr-surface-alt); cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-item-img {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--clr-grau);
    font-size: 12px; gap: 4px;
}
.gallery-item-img svg { opacity: 0.25; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(30,20,10,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
    font-size: 10px; font-weight: 600; background: rgba(255,255,255,0.15);
    padding: 3px 10px; border-radius: 100px; display: inline-block;
    margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.gallery-overlay h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.gallery-overlay p { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 300; }
