/* ============================================
   FARBTECHNIK KÖFINGER — Modern Website 2025
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #2c2c2c;
    --dark: #363636;
    --mid: #4a4a4a;
    --text: #eeebe6;
    --muted: #918b85;
    --accent: #d4a84b;
    --accent-light: #e8c96e;
    --cream: #fdfcfa;
    --white: #fff;
    --radius: 16px;
    --radius-sm: 8px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

em { font-family: 'Instrument Serif', serif; font-style: italic; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav.stuck {
    background: rgba(30,30,30,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 44px; transition: height 0.3s var(--ease); }
.nav.stuck .nav-logo img { height: 34px; }

.nav-menu {
    display: flex; align-items: center; gap: 36px; list-style: none;
}

.nav-menu a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em;
    color: var(--white); opacity: 0.7;
    transition: opacity 0.3s;
    text-transform: uppercase;
}
.nav-menu a:hover { opacity: 1; }

.nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
    opacity: 1 !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

/* Burger */
.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; z-index: 101;
}
.burger span {
    display: block; width: 100%; height: 2px; background: var(--white);
    position: absolute; left: 0; transition: all 0.35s var(--ease);
}
.burger span:first-child { top: 4px; }
.burger span:last-child { bottom: 4px; }
.burger.open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(110px, 13vh, 150px) 0 clamp(48px, 6vh, 80px);
    position: relative;
    overflow: hidden;
}

.hero-klecks {
    position: absolute;
    width: 500px;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    animation: klecks-pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes klecks-pulse {
    0%, 100% { filter: brightness(0.50); }
    50%      { filter: brightness(0.75); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    padding-left: max(clamp(20px, 4vw, 48px), calc((100vw - 1280px) / 2 + clamp(20px, 4vw, 48px)));
}

.hero-text {
    max-width: 520px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 7px 16px;
    border: 1.5px solid rgba(200,164,92,0.25);
    border-radius: 100px;
}

.hero-title-icon {
    display: inline-block;
    vertical-align: baseline;
    width: 1em;
    height: 1em;
    margin-left: 0.15em;
    color: var(--accent);
    animation: paintBrush 3s ease-in-out infinite;
}

@keyframes paintBrush {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-12deg); }
    75% { transform: rotate(12deg); }
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title em {
    color: var(--accent);
    font-family: 'Instrument Serif', serif;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.2vw, 0.98rem);
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
}

/* Hero Image — ragt bis zum rechten Bildschirmrand */
.hero-image {
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.35s var(--ease);
    border: none; cursor: pointer;
}

.btn-primary {
    background: var(--accent); color: var(--black);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,164,92,0.3); }

.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-outline-dark {
    background: transparent; color: var(--black);
    border: 1.5px solid rgba(0,0,0,0.2);
}
.btn-outline-dark:hover { border-color: var(--black); background: rgba(0,0,0,0.04); }

.btn-white {
    background: var(--white); color: var(--black);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* (hero scroll indicator removed — split layout) */

/* ===== MARQUEE ===== */
.marquee {
    background: var(--black);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex; align-items: center; gap: 32px;
    animation: scroll 25s linear infinite;
}
.marquee-track span {
    font-size: 0.8rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.5);
}
.marquee-track .dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: clamp(80px, 12vw, 140px) 0; }
.section-dark { background: var(--dark); color: var(--text); }
.section-soft { background: #eee8dc; }

.section-intro { margin-bottom: clamp(40px, 6vw, 72px); }
.section-intro .label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-intro h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.section-dark .section-intro h2 { color: var(--white); }

/* ===== SERVICES ===== */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(28px, 3vw, 44px);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-num {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/9;
}
.service-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.05); }

/* ===== GALLERY ===== */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
}

.filter {
    padding: 10px 22px; border: 1px solid rgba(255,255,255,0.12);
    background: transparent; color: var(--muted);
    border-radius: 100px; font-size: 0.82rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s var(--ease);
    font-family: inherit;
}
.filter:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.filter.active { background: var(--accent); border-color: var(--accent); color: var(--black); }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative; border-radius: var(--radius-sm);
    overflow: hidden; aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-size: 0.8rem; font-weight: 500; color: var(--white);
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.35s var(--ease);
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ===== CTA STRIPE ===== */
.cta-stripe {
    background: var(--accent);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
}

.cta-stripe h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.cta-stripe h2 em { color: var(--black); }
.cta-stripe p {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.6);
    margin-bottom: 32px;
}

/* ===== ABOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
}

.about-person {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.about-person img {
    width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--accent);
}
.about-person h3 { font-size: 1.15rem; font-weight: 700; }
.about-role { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.about-col p { color: #5a5a5a; font-size: 0.95rem; margin-bottom: 16px; }

.steps {
    list-style: none;
    padding-left: 20px;
    border-left: 2px solid rgba(200,164,92,0.25);
}
.steps li {
    position: relative;
    padding: 8px 0 8px 16px;
    font-size: 0.88rem;
    color: #666;
}
.steps li::before {
    content: '';
    position: absolute; left: -7px; top: 16px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--accent);
}

/* ===== TEAM ===== */
.team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.team-row-leaders {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.team-row-leaders .team-card img {
    width: 96px; height: 96px;
    border-width: 3px;
}
.team-row-leaders .team-card h4 {
    font-size: 0.82rem;
}
.team-label {
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 20px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-3px); }

.team-card img {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 8px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: border-color 0.3s;
}
.team-card:hover img, .team-card:hover .team-placeholder { border-color: var(--accent); }

.team-placeholder {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 8px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: border-color 0.3s;
    background: #e0e0e0;
    display: flex; align-items: center; justify-content: center;
}
.team-placeholder svg { width: 38px; height: 38px; fill: #999; }

.team-card h4 { font-size: 0.72rem; font-weight: 600; margin-bottom: 1px; }
.team-card span { font-size: 0.65rem; color: var(--muted); }


/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.contact-block { margin-bottom: 28px; }
.contact-block h4 {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.contact-block p, .contact-block a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem; line-height: 1.7;
}
.contact-block a:hover { color: var(--white); }

.social-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.social-link:hover { color: var(--accent) !important; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
}
.contact-map iframe {
    width: 100%; height: 100%; border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black); color: rgba(255,255,255,0.4);
    padding: 60px 0 0;
}

.footer-top {
    display: flex; justify-content: space-between; gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { max-width: 300px; }
.footer-logo { height: 36px; margin-bottom: 16px; opacity: 0.7; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.footer-cols { display: flex; gap: 64px; }
.footer-cols h5 {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.footer-cols p { font-size: 0.85rem; line-height: 1.8; }
.footer-cols a { transition: color 0.3s; }
.footer-cols a:hover { color: var(--accent); }

.footer-bottom {
    padding: 20px 0;
    font-size: 0.75rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--accent-light);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 20px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-decline {
    border-color: var(--muted) !important;
    color: var(--muted) !important;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 260px;
    background: #e8e4df;
    border-radius: var(--radius);
    text-align: center;
    padding: 32px;
}
.map-placeholder p {
    font-size: 0.88rem;
    color: var(--mid);
    margin-bottom: 16px;
}

/* ===== LIGHTBOX ===== */
.lb {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(16px);
    align-items: center; justify-content: center;
    padding: 48px;
}
.lb.open { display: flex; }
.lb img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius-sm); }

.lb-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; border: none;
    background: rgba(255,255,255,0.08); color: var(--white);
    font-size: 1.5rem; border-radius: 50%; cursor: pointer;
    transition: background 0.3s;
}
.lb-close:hover { background: var(--accent); color: var(--black); }

.lb-arr {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border: none;
    background: rgba(255,255,255,0.08); color: var(--white);
    font-size: 1.4rem; border-radius: 50%; cursor: pointer;
    transition: background 0.3s;
}
.lb-arr:hover { background: rgba(255,255,255,0.15); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

/* ===== DSE MODAL ===== */
.dse-overlay {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 24px;
}
.dse-overlay.open { display: flex; }

.dse-box {
    background: var(--white); border-radius: var(--radius);
    max-width: 680px; width: 100%; max-height: 80vh; overflow-y: auto;
    padding: clamp(28px, 4vw, 48px);
    position: relative;
}
.dse-box h3 { font-size: 1.6rem; margin-bottom: 20px; font-weight: 700; }
.dse-box h4 {
    font-size: 0.95rem; font-weight: 700;
    margin: 24px 0 8px;
    color: var(--black);
}
.dse-box p { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 8px; }
.dse-meta { color: #aaa !important; font-size: 0.78rem !important; margin-top: 24px !important; }

.dse-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border: none;
    background: #f0f0f0; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.dse-close:hover { background: var(--accent); color: var(--white); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services { grid-template-columns: 1fr 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed; inset: 0;
        background: rgba(12,12,12,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center; justify-content: center;
        gap: 28px; z-index: 100;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a {
        font-size: 1.3rem;
        opacity: 1;
        color: var(--white);
    }
    .nav-cta { font-size: 1rem !important; padding: 14px 32px; }

    .burger { display: block; }

    .hero { padding-top: 100px; }
    .hero-grid { grid-template-columns: 1fr; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }
    .team-row { grid-template-columns: repeat(3, 1fr); }
    .hero-image { order: -1; border-radius: var(--radius); }
    .hero-stats { gap: 20px; }
    .hero-stat strong { font-size: 1.3rem; }

    .services { grid-template-columns: 1fr; }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-top { flex-direction: column; gap: 32px; }
    .footer-cols { flex-direction: column; gap: 28px; }

    .cookie-banner { flex-direction: column; text-align: center; padding: 16px 20px; }
    .cookie-actions { justify-content: center; }

    .lb-arr { display: none; }
    .lb { padding: 20px; }
}

@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr 1fr; gap: 6px; }
    .gallery-item { border-radius: 6px; }
    .team-row { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
    .team-card img, .team-placeholder { width: 56px; height: 56px; }
    .team-placeholder svg { width: 28px; height: 28px; }
    .team-row-leaders .team-card img { width: 72px; height: 72px; }
    .team-card h4 { font-size: 0.65rem; }
    .filter-bar { gap: 6px; }
    .filter { padding: 8px 14px; font-size: 0.72rem; }
}
