*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button { -webkit-tap-highlight-color: transparent; }

:root {
    --red: #c0241f;
    --dark: #0a0a0f;
    --dark2: #111118;
    --white: #ffffff;
    --grey: #888;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: auto; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 48px;
    min-height: 56px;
    background: #000;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}
.navbar.scrolled {
    background: #000;
    backdrop-filter: blur(10px);
}
.brand {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo { width: 35px; height: 35px; object-fit: contain; border: 1px solid rgba(255,255,255,0.8); border-radius: 50%; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin-right: 150px;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 11px 26px;
    border-radius: 2px;
    letter-spacing: 1px;
}
.nav-links .nav-cta:hover { background: #a01e1a; color: var(--white); }
.nav-standalone-cta {
    position: absolute;
    right: 48px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--red);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 2px;
    transition: background 0.2s;
}
.nav-standalone-cta:hover { background: #a01e1a; }

/* ── NAV SOCIALS ── */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.15);
    margin-left: 8px;
}
.nav-socials a { display: flex; align-items: center; opacity: 0.6; transition: opacity 0.2s; }
.nav-socials a:hover { opacity: 1; }
.nav-socials img { width: 16px; height: 16px; }

/* ── HAMBURGER ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,15,0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    text-align: center;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    text-align: center;
}
.mobile-nav .nav-cta {
    background: var(--red);
    padding: 10px 28px;
    border-radius: 2px;
    font-size: 20px;
}
.mobile-nav-socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding-top: 0;
    border-top: none;
    width: 100%;
}
.mobile-nav-socials a { display: flex; align-items: center; }
.mobile-nav-socials img { width: 22px; height: 22px; }

/* ── SOCIAL SIDEBAR ── */
.social-sidebar { display: none; }
.social-sidebar a { display: flex; align-items: center; justify-content: center; opacity: 0.7; transition: opacity 0.2s; }
.social-sidebar a:hover { opacity: 1; }
.social-sidebar img { width: 20px; height: 20px; }

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-kapela.jpg');
    background-color: var(--dark);
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,15,0.2) 0%,
        rgba(10,10,15,0.1) 40%,
        rgba(10,10,15,0.7) 80%,
        rgba(10,10,15,0.95) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 96px 106px 48px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.hero-text {
    text-align: right;
    max-width: 600px;
}
.hero-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}
.hero-text h1 {
    font-family: var(--font-head);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 4px 64px rgba(0,0,0,0.6);
}

.hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: #a01e1a; transform: translateY(-2px); }
.hero-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ── HERO ANIMATION ── */
.hero-anim {
    opacity: 1;
}
.hero-line {
    display: inline;
}
.hero-line + .hero-line {
    margin-top: 0;
}
.hero-socials {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}
.hero-socials img { width: 25px; height: 25px; }

/* ── SECTION BASE ── */
.section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
#shows, #about, #music, #gallery, #contact { scroll-margin-top: 14px; }
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 52px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 48px;
    line-height: 1.1;
}
.divider {
    width: 48px;
    height: 2px;
    background: var(--red);
    margin-bottom: 20px;
}

/* ── SHOWS ── */
.shows-section { background: var(--dark2); }
.shows-inner { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.shows-inner .section-title { white-space: nowrap; }
.shows-grid { align-items: flex-start; }
.show-row { max-width: 800px; margin: 0; width: 100%; }
.shows-grid { display: flex; flex-direction: column; gap: 1px; margin-top: 48px; }
.show-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.show-date-col { text-align: left; }
.show-info-col { text-align: left; }
.show-ticket-col { text-align: right; }
.show-row:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.show-date-col {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 400;
    color: var(--red);
    letter-spacing: 1px;
}
.show-date-col span { display: none; }
.show-info-col h4 { font-family: var(--font-head); font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.show-info-col p { font-size: 13px; color: var(--grey); letter-spacing: 0.5px; }
.show-ticket-col a {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.show-ticket-col a:hover { background: var(--red); border-color: var(--red); }
.show-ticket-col a:focus,
.show-ticket-col a:active { outline: none; -webkit-tap-highlight-color: transparent; }
.show-ticket-col .no-ticket { font-size: 11px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.shows-cta { margin-top: 48px; text-align: center; }
.shows-cta a {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--red);
    transition: color 0.2s;
}
.shows-cta a:hover { color: var(--red); }
.partner-banner {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 40px;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.partner-banner:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.partner-banner-logo { width: 48px; height: 48px; flex-shrink: 0; opacity: 1; }
.partner-banner-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.partner-banner-text { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.partner-banner-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--grey);
    text-transform: uppercase;
}
.partner-banner-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}
.partner-banner:hover .partner-banner-name { color: var(--red); }
@media (max-width: 600px) {
    .partner-banner { justify-content: center; text-align: center; }
    .partner-banner-text { text-align: center; }
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 76px;
}
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    max-width: 420px;
}
.about-img-standalone {
    max-width: 100%;
    margin: 32px 0;
}
.about-img-mobile {
    display: none;
    width: 100%;
    margin: 24px 0;
}
.about-img-mobile img { width: 100%; border-radius: 4px; }
.about-img img { width: 100%; height: auto; display: block; filter: brightness(0.85); }
.about-img::after { display: none; }
.about-text .section-title { margin-bottom: 24px; }
.about-subheading { font-family: var(--font-head); font-size: 18px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin: 32px 0 12px; }
.about-text strong { color: var(--red); }
.about-header { display: grid; margin-bottom: 40px; }
.about-header .section-title { white-space: nowrap; margin-bottom: 8px; }
.about-lead { font-size: 25px !important; color: #fff !important; font-weight: 400; line-height: 1.4 !important; margin: 0 !important; }
.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    justify-content: center;
    text-align: center;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--red);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* ── MEMBERS ── */
.members-section { background: var(--dark2); }
.members-inner { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.event-cta-wrap { text-align: center; margin: 32px 0 0; }
.hero-ticket {
    position: absolute;
    bottom: 684px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.event-cta-btn {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 142px;
    border-radius: 2px;
    border: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    transition: background 0.2s;
}
.event-cta-btn:hover { background: #a01e1a; }
.event-cta-btn--db { background: #fff; color: #000; }
/* Divokej Bill CTA – připraveno, zatím neaktivní */
.hero-db-ticket {
    position: absolute;
    bottom: 600px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}
.db-cta-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-family: var(--font-head);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 142px;
    border-radius: 2px;
    white-space: nowrap;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.db-cta-btn:hover { background: #e0e0e0; }
.db-cta-btn.red { background: var(--red); color: #fff; }
.db-cta-btn.red:hover { background: #a01e1a; color: #fff; }
.event-cta-btn--db:hover { background: #e8e8e8; color: #000; }
.members-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 12px;
    margin: 48px auto 0;
    max-width: 1000px;
}
.member-card { text-align: center; min-width: 0; overflow: hidden; }
.name-br { display: none; }
.member-photo-wrap { display: contents; }
.member-photo {
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}
.member-card:hover .member-photo { filter: grayscale(20%); }
.member-name {
    display: block;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: none;
    margin-top: 10px;
    color: var(--white);
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}
.member-role {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ── MUSIC ── */
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.music-card {
    background: var(--dark2);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s;
}
.music-card:hover { border-color: rgba(192,36,31,0.4); }
.music-card iframe { width: 100%; display: block; }

/* ── CONTACT ── */
.contact-section { background: var(--dark2); }
.contact-info .section-title { white-space: nowrap; }
#about .section-title { white-space: nowrap; }
.contact-inner { padding: 80px 48px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}
.contact-link:hover { color: var(--red); }
.contact-link-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}
.contact-link:hover .contact-link-icon { border-color: var(--red); background: var(--red); }
.contact-socials { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.contact-socials-title { font-family: var(--font-head); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-links-contact { display: flex; flex-wrap: wrap; gap: 16px; }
.social-links-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.social-links-contact a:hover { color: #fff; }
.social-links-contact img { width: 18px; height: 18px; }
.sl-break-desktop { flex-basis: 100%; height: 0; }
.sl-break-mobile { display: none; }
.social-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.social-row a:hover { color: var(--white); }
.social-row img { width: 18px; height: 18px; }

/* ── MUSIC / TRACKLIST ── */
.tracklist {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.track-row {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}
.track-row:hover { background: rgba(255,255,255,0.02); }
.track-num { font-size: 12px; color: var(--grey); font-family: var(--font-head); letter-spacing: 1px; }
.track-name { font-size: 15px; font-weight: 500; }
.track-duration { font-size: 13px; color: var(--grey); }
.track-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1DB954;
    text-decoration: none;
    border: 1px solid rgba(29,185,84,0.3);
    padding: 6px 14px;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s;
}
.track-btn img { width: 13px; height: 13px; }
.track-btn:hover { background: rgba(29,185,84,0.1); }

.spotify-embed { margin-bottom: 56px; border-radius: 4px; overflow: hidden; }

.subsection-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 56px 0 28px;
    color: var(--white);
    text-align: center;
}

/* ── VIDEOS ── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 8px;
}
.video-item { }
.video-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--dark2);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    background: #ff0000;
    border-radius: 10px;
    pointer-events: none;
}
.video-play-btn::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 53%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── SHORTS ── */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.short-item { }
.short-wrap {
    position: relative;
    padding-bottom: 177%;
    background: var(--dark2);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.short-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.short-play { display: none; }

/* ── GALLERY ── */
.gallery-section { background: var(--dark2); }
.gallery-inner { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0;
    margin-top: 0;
}
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 3;
    aspect-ratio: unset;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s, filter 0.3s;
    filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ── LIGHTBOX ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.lb-close {
    position: fixed;
    top: 24px; right: 32px;
    background: none; border: none;
    color: #fff; font-size: 28px;
    cursor: pointer; opacity: 0.7;
    transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: none; border: none;
    color: #fff; font-size: 56px;
    cursor: pointer; opacity: 0.5;
    transition: opacity 0.2s;
    padding: 0 16px;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }

/* ── MANAGER CARD ── */
.manager-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    gap: 0;
    width: fit-content;
    margin: 0;
}
.manager-avatar { display: none; }
.manager-name { font-size: 18px !important; font-weight: 400 !important; color: #fff !important; margin: 0 !important; padding: 0 0 2px 0 !important; line-height: 1.3 !important; }
.manager-role { font-size: 16px; color: var(--grey); margin: 0 !important; padding: 0; line-height: 1.4; }
.manager-contact-line {
    font-size: 16px;
    color: var(--grey);
    text-decoration: none;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.manager-contact-line:hover,
.manager-contact-line:active { color: var(--red); }

/* ── FOOTER ── */
footer {
    background: #060608;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; display: block; text-align: left; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .navbar { padding: 12px 24px; top: 0; left: 0; right: 0; border-radius: 0; justify-content: flex-start; }
    .navbar.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .nav-socials { display: none; }
    .nav-standalone-cta { display: none; }
    .hamburger { display: block; position: absolute; right: 24px; }
    .hero-bg { background-size: cover; background-color: transparent; }
    .hero-content { padding: 0 24px 97px; }
    .hero-text { max-width: 100%; }
    .hero-ticket { bottom: 533px; }
    .hero-db-ticket { bottom: 487px; }
    .event-cta-btn { font-size: 14px; padding: 12px 28px; letter-spacing: 1px; display: inline-block; white-space: nowrap; }
    .db-cta-btn { font-size: 11px; padding: 12px 16px; letter-spacing: 1px; white-space: nowrap; }
    .event-cta-btn--db { font-size: 11px; white-space: normal; text-align: center; max-width: 280px; }
    .section { padding: 64px 24px; }
    .shows-inner, .members-inner, .gallery-inner, .contact-inner { padding: 64px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 38px; }
    .about-img { aspect-ratio: 16/9; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .members-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .name-br { display: none; }
    .member-photo { width: 100%; margin: 0; }
    .member-name { white-space: normal; font-size: 17px; overflow: hidden; margin-top: 4px; }
    .member-role { font-size: 15px; }
    .social-sidebar { display: none; }
    .show-row { grid-template-columns: 120px 1fr; }
    .show-ticket-col { grid-column: 1 / -1; padding-bottom: 8px; margin-top: 8px; }
    footer { flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
    .footer-copy { text-align: center; }
    .videos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .shorts-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .track-row { grid-template-columns: 32px 1fr auto; }
    .track-duration { display: none; }
}


@media (max-width: 480px) {
    .hero-bg { background-image: url('images/foto-kapely-skupina.jpg'); background-position: center top; }
    .hero-content { padding: 0 24px 113px; }
    .hero-socials { display: flex; bottom: 51px; }
    .hero-socials img { width: 20px; height: 20px; }
    .hero-btn { margin-top: 0px; font-size: 12px; padding: 12px 20px; }
    .hero-text p.hero-anim { margin-top: 12px; margin-bottom: 12px; }
    .hero-text h1 { font-size: 40px; }
    .show-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
    .show-date-col { font-size: 24px; text-align: center; }
    .show-info-col { text-align: center; }
    .show-ticket-col { text-align: center; }
    .members-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-img-mobile { display: block; }
    .about-grid .about-img { display: none; }
    .about-stats { flex-wrap: nowrap; flex-direction: row; gap: 8px; justify-content: center; text-align: center; }
    .about-stats > div { text-align: center; flex: 1; }
    .about-stats .stat-num { font-size: 34px; }
    .about-stats .stat-label { font-size: 9px; letter-spacing: 1px; text-align: center; }
    .videos-grid { grid-template-columns: 1fr; }
    .shorts-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .sl-break-desktop { display: none; }
    .sl-break-mobile { display: block; flex-basis: 100%; height: 0; }
}

/* ── ARTICLE PAGE (změna názvu) ── */
.article-page { padding-top: 56px; }
.article-page .section { max-width: 820px; padding-top: 64px; padding-bottom: 64px; }
.article-page .section-title { margin-bottom: 28px; }
.article-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 8px;
}
.article-lead strong { color: var(--red); }
.article-body h2 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 44px 0 14px;
}
.article-body h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 28px 0 8px;
}
.article-body p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.article-body strong { color: rgba(255,255,255,0.95); }
.article-body a { color: var(--red); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-list { margin: 0 0 16px; padding-left: 20px; }
.article-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}
.article-cta { margin-top: 40px; }
.article-cta a.article-cta-btn {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 2px;
    transition: background 0.2s;
}
.article-cta a.article-cta-btn:hover { background: #a01e1a; text-decoration: none; }
.footer-link {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
    text-decoration: none;
    margin-left: 24px;
}
.footer-link:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
    .article-page { padding-top: 0; }
    .article-page .section { padding: 40px 24px 56px; }
    .article-lead { font-size: 17px; }
    .article-body h2 { font-size: 20px; }
    .footer-link { margin-left: 0; }
}
