:root {
    --bg: #f5f1e8;
    --surface: #fdfbf6;
    --ink: #1f1a17;
    --muted: #6f675d;
    --accent: #c4622d;
    --accent-deep: #8f3f1a;
    --line: #d9cfbf;
    --charcoal: #2b241f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 15% 20%, #fff8e9 0%, var(--bg) 45%, #ece4d6 100%);
    min-height: 100vh;
}

.skip-link {
    position: fixed;
    top: -44px;
    left: 12px;
    z-index: 1800;
    background: #1f1a17;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 1700;
    background: linear-gradient(90deg, #8f3f1a, #c4622d 45%, #f0a372);
    box-shadow: 0 0 12px rgba(196, 98, 45, 0.45);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1f1a17;
    box-shadow: 0 10px 26px rgba(20, 15, 9, 0.3);
    cursor: pointer;
    z-index: 1300;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent);
}

.no-scroll {
    overflow: hidden;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
    background-image: radial-gradient(rgba(0,0,0,0.08) 0.4px, transparent 0.4px);
    background-size: 4px 4px;
}

.site-wrap {
    position: relative;
    z-index: 1;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(253, 251, 246, 0.85);
    border-bottom: 1px solid var(--line);
}

.topbar {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: grid;
    place-items: center;
    font-size: 14px;
}

.brand span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 1.2px;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-cta {
    text-decoration: none;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.menu-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s ease;
}

.menu-btn span:nth-child(1) { transform: translateY(-6px); }
.menu-btn span:nth-child(2) { transform: translateY(0); }
.menu-btn span:nth-child(3) { transform: translateY(6px); }

.menu-btn.open span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: linear-gradient(165deg, #fcf8ef 0%, #f4ecde 48%, #ede3d3 100%);
    border-right: 1px solid var(--line);
    padding: 84px 24px 24px;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    z-index: 1100;
    box-shadow: 8px 0 30px rgba(22, 16, 10, 0.16);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer nav {
    display: grid;
    gap: 10px;
}

.mobile-drawer a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d8cdbd;
    background: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer a:hover {
    background: #fff8ef;
    border-color: #c7b9a3;
}

.mobile-drawer a::after {
    content: '\2192';
    font-size: 13px;
    color: var(--accent-deep);
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(22, 18, 14, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1090;
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 6px 24px 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    position: relative;
}

.hero-copy {
    position: relative;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #d8c8b1;
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 0 10px 30px rgba(93, 60, 29, 0.06);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent-deep);
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    margin-top: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 122px);
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero h1 span {
    display: block;
}

.hero p {
    margin-top: 20px;
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-highlights {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid #ddd1bf;
    border-radius: 16px;
    padding: 16px;
    min-height: 120px;
}

.hero-highlight strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--accent-deep);
}

.hero-highlight p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
}

.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid var(--ink);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-solid {
    background: var(--ink);
    color: #fff;
}

.btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--ink);
    background: transparent;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: #ede3d4;
}

.hero-panel {
    background: linear-gradient(145deg, #241f1a, #140f0d 58%, #2d1710 100%);
    color: #fef4df;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #3c332b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27, 15, 8, 0.18);
}

.hero-panel::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 98, 45, 0.42) 0%, rgba(196, 98, 45, 0) 70%);
    top: -80px;
    right: -70px;
}

.hero-panel::after {
    content: '';
    position: absolute;
    inset: auto 24px 18px;
    height: 28px;
    background: rgba(18, 10, 6, 0.25);
    filter: blur(18px);
    border-radius: 50%;
}

.hero-panel-inner {
    position: relative;
    z-index: 1;
}

.hero-panel-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #f5b48b;
    font-weight: 800;
}

.hero-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.6vw, 48px);
    letter-spacing: 0.04em;
    line-height: 0.95;
}

.hero-panel-copy {
    margin-top: 10px;
    color: #ebdbc9;
    font-size: 14px;
    line-height: 1.65;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.hero-stat strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d9cab2;
}

.hero-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-note p {
    margin: 0;
    color: #efdfce;
    font-size: 13px;
    line-height: 1.5;
}

.hero-note strong {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5b48b;
}

.section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 24px 10px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.section-title h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: 0.5px;
}

.section-title p {
    color: var(--muted);
    max-width: 520px;
    text-align: right;
    font-size: 14px;
}

.songs {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.song-card {
    grid-column: span 4;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.song-cover {
    aspect-ratio: 16 / 11;
    width: 100%;
    object-fit: cover;
}

.song-content {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.song-content h3 {
    font-size: 18px;
    line-height: 1.25;
}

.song-content p {
    color: var(--muted);
    font-size: 14px;
}

.song-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: var(--accent-deep);
}

.tracks-filter {
    margin-bottom: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
}

.tracks-filter strong {
    display: block;
    font-size: 11px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.filter-chip {
    text-decoration: none;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
}

.filter-chip.active {
    border-color: var(--accent);
    color: #7f3415;
    background: #f4e1d2;
}

.tracks-filter-meta {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.genre-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.genre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.genre-header {
    padding: 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.genre-name {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.genre-content {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.genre-content p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.category-preview .genre-header {
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-preview .genre-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 14, 10, 0.55), rgba(18, 14, 10, 0.1));
}

.category-preview .genre-name {
    position: relative;
    z-index: 1;
}

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}

.about-text {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.mini-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mini-item {
    border: 1px dashed var(--line);
    border-radius: 10px;
    padding: 12px;
}

.mini-item strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 4px;
}

.mini-item span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-list {
    display: grid;
    gap: 10px;
}

.news-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    background: #fff;
}

.news-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.news-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.news-item small {
    display: block;
    margin-top: 8px;
    color: var(--accent-deep);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 2px 12px;
    scroll-snap-type: x mandatory;
}

.gallery-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 10px;
}

.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.gallery-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-deep);
}

.gallery-scroll {
    display: flex;
    gap: 12px;
    padding: 2px 0;
    width: min-content;
}

@media (min-width: 1025px) {
    .gallery-scroll-wrapper {
        overflow: visible;
        padding: 0;
    }

    .gallery-scroll {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .gallery-item {
        width: 100%;
    }
}

@media (min-width: 761px) and (max-width: 1024px) {
    .gallery-scroll-wrapper {
        overflow: visible;
        padding: 0;
    }

    .gallery-scroll {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-item {
        width: 100%;
    }
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: clamp(180px, 20vw, 260px);
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    flex-shrink: 0;
    background: #1a1614;
    cursor: zoom-in;
    scroll-snap-align: start;
    box-shadow: 0 8px 22px rgba(23, 16, 12, 0.12);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    pointer-events: none;
    z-index: 2;
}

.gallery-item.loaded::after {
    display: none;
    animation: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.4s ease-in;
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 12, 9, 0.86), rgba(15, 12, 9, 0.06) 54%, rgba(15, 12, 9, 0));
    opacity: 0.95;
    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 7px 8px;
    border-radius: 8px;
    background: rgba(31, 26, 23, 0.6);
    backdrop-filter: blur(1px);
    color: #f4ead8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.2;
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    background: rgba(8, 6, 4, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 30px 14px;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-dialog {
    position: relative;
    width: min(96vw, 1040px);
    max-height: calc(100vh - 40px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: #17120f;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-image-wrap {
    background: #0f0b08;
}

.lightbox-image-wrap img {
    width: 100%;
    max-height: min(75vh, 900px);
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    color: #f4ead8;
    padding: 12px 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-btn,
.lightbox-close {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-btn:hover,
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.lightbox-prev {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    top: 12px;
    right: 12px;
}

.contact-wrap {
    padding-bottom: 52px;
}

.contact-card {
    background: linear-gradient(145deg, #201b18, #130f0d);
    border: 1px solid #3a3129;
    color: #f6ebd8;
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-copy h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 0.5px;
    line-height: 0.95;
    margin-bottom: 12px;
}

.contact-copy p {
    color: #d8c9b1;
    line-height: 1.8;
    font-size: 14px;
}

.contact-list {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.contact-list a,
.contact-list span {
    color: #f7d7ba;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #4f4338;
    background: rgba(255, 255, 255, 0.04);
    color: #fff8eb;
    font: inherit;
    padding: 12px;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #c4b9a7;
}

.contact-form button {
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    cursor: pointer;
}

footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-inner p {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
}

.social {
    display: flex;
    gap: 8px;
}

.social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    place-items: center;
    text-decoration: none;
}

.social a:hover {
    background: #ebdfcb;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .songs .song-card {
        grid-column: span 6;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

    .contact-card {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .song-content h3 {
        font-size: 16px;
    }

    .song-content p {
        font-size: 13px;
    }

    .contact-copy h3 {
        font-size: 36px;
    }

    .banner-wrapper {
        gap: 20px;
    }

    .banner-content h2 {
        font-size: 36px;
    }
}

.singer-banner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 6px 24px 26px;
}

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fdfbf6 0%, #f5f1e8 50%, #efe6d8 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.banner-photo {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-wrapper:hover .banner-photo img {
    transform: scale(1.05);
}

.banner-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-deep);
    width: fit-content;
}

.banner-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    color: var(--ink);
}

.banner-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 6px 0;
}

.banner-highlight {
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 760px) {
    .nav,
    .header-cta {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
        border-radius: 50%;
        border-color: #bfa585;
        background: linear-gradient(180deg, #fff6eb, #f1e2cc);
        box-shadow: 0 4px 12px rgba(45, 31, 19, 0.15);
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .topbar {
        padding: 14px 16px;
        border-radius: 0 0 14px 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 241, 228, 0.85));
        flex-wrap: nowrap;
    }

    .brand span {
        font-size: 26px;
    }

    .hero {
        padding: 6px 16px 8px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 0.92;
        margin-top: 10px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 14px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .hero-highlight {
        min-height: 0;
    }

    .hero-actions {
        margin-top: 16px;
        gap: 8px;
    }

    .btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 12px;
        min-height: 44px;
    }

    .hero-panel {
        padding: 16px;
        border-radius: 16px;
    }

    .hero-panel h2 {
        font-size: 36px;
    }

    .hero-panel-copy {
        font-size: 13px;
    }

    .hero-panel-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-stat {
        padding: 10px;
        border-radius: 8px;
    }

    .hero-stat strong {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .hero-stat span {
        font-size: 11px;
    }

    .section {
        padding: 16px 16px 6px;
    }

    .section-title {
        display: block;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        text-align: left;
        margin-top: 8px;
        font-size: 13px;
    }

    .songs .song-card {
        grid-column: span 12;
    }

    .genres-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .genre-card {
        border-radius: 12px;
    }

    .genre-header {
        padding: 20px 12px;
        min-height: 90px;
    }

    .genre-name {
        font-size: 14px;
    }

    .genre-content p {
        font-size: 12px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mini-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .mini-item {
        padding: 12px;
        font-size: 12px;
        min-height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mini-item strong {
        font-size: 18px;
    }

    .mini-item span {
        font-size: 11px;
    }

    .banner-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 16px;
        padding: 20px;
    }

    .banner-photo {
        min-height: 220px;
        border-radius: 12px;
    }

    .banner-label {
        font-size: 11px;
    }

    .banner-content {
        padding: 0;
        gap: 12px;
    }

    .banner-content h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 16px;
        border-radius: 14px;
        padding-bottom: 24px;
    }

    .contact-copy h3 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1;
    }

    .contact-copy p {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-list {
        gap: 6px;
        margin-top: 12px;
    }

    .contact-list a,
    .contact-list span {
        font-size: 12px;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .contact-form {
        gap: 8px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
        padding: 10px;
        min-height: 40px;
    }

    .contact-form textarea {
        min-height: 80px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 12px;
        min-height: 44px;
    }

    .admin-footer {
        font-size: 11px;
        padding: 16px;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .panel {
        border-radius: 14px;
        padding: 20px;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .gallery-scroll-wrapper {
        padding-bottom: 8px;
    }

    .gallery-scroll {
        gap: 10px;
    }

    .gallery-item {
        width: min(56vw, 210px);
    }

    .gallery-item figcaption {
        font-size: 9px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .lightbox-dialog {
        width: min(98vw, 760px);
    }

    .lightbox-btn,
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .social a {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
}

@media (max-width: 640px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .songs .song-card {
        grid-column: span 12;
    }

    .genres-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

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

    .tracks-filter {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .filter-chips {
        flex-direction: column;
    }

    .filter-chip {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --touch-target: 44px;
        font-size: 14px;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    html, body {
        font-size: 14px;
    }

    .topbar {
        padding: 12px 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .brand span {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .menu-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }

    .menu-btn span {
        width: 18px;
        height: 2px;
    }

    .hero {
        padding: 4px 12px 6px;
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
        margin-top: 8px;
    }

    .hero h1 em {
        display: inline;
    }

    .hero p {
        font-size: 13px;
        margin-top: 10px;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-actions {
        margin-top: 12px;
        gap: 8px;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 11px;
        gap: 6px;
        border-radius: 22px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-highlights {
        margin-top: 16px;
        gap: 10px;
    }

    .hero-highlight {
        padding: 12px;
        border-radius: 12px;
    }

    .hero-highlight strong {
        font-size: 11px;
    }

    .hero-highlight p {
        font-size: 12px;
    }

    .section {
        padding: 14px 12px 6px;
    }

    .section-title h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .section-title p {
        font-size: 12px;
        line-height: 1.4;
    }

    .hero-panel {
        padding: 14px;
        border-radius: 12px;
        margin-top: 12px;
    }

    .hero-panel::before {
        width: 160px;
        height: 160px;
        top: -40px;
        right: -40px;
    }

    .hero-panel h2 {
        font-size: 30px;
    }

    .hero-panel-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-stat {
        padding: 8px;
        border-radius: 6px;
    }

    .hero-stat strong {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .hero-stat span {
        font-size: 10px;
    }

    .hero-note {
        display: block;
    }

    .hero-note strong {
        display: block;
        margin-bottom: 6px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .mini-item {
        padding: 10px;
        border-radius: 8px;
        font-size: 11px;
    }

    .mini-item strong {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .songs .song-card {
        border-radius: 12px;
        padding: 0;
    }

    .song-cover {
        aspect-ratio: 16 / 10;
    }

    .song-content {
        padding: 10px;
        gap: 6px;
    }

    .song-content h3 {
        font-size: 14px;
        line-height: 1.2;
    }

    .song-content p {
        font-size: 12px;
    }

    .song-link {
        font-size: 9px;
        gap: 4px;
        margin-top: 3px;
    }

    .genres-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .genre-card {
        border-radius: 10px;
        overflow: hidden;
    }

    .genre-header {
        padding: 16px 10px;
        min-height: 80px;
        border-radius: 10px;
    }

    .genre-name {
        font-size: 12px;
        line-height: 1.3;
    }

    .genre-content {
        padding: 10px;
    }

    .genre-content p {
        font-size: 11px;
        line-height: 1.4;
    }

    .banner-wrapper {
        grid-template-columns: 1fr;
        border-radius: 12px;
        padding: 14px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .banner-photo {
        min-height: 160px;
        border-radius: 8px;
    }

    .banner-label {
        font-size: 10px;
        gap: 4px;
    }

    .banner-content {
        padding: 0;
        gap: 10px;
    }

    .banner-content h2 {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: 0.3px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    .banner-content div {
        font-size: 12px;
        margin-top: 4px;
    }

    .contact-wrap {
        padding-bottom: 48px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 12px;
        border-radius: 12px;
        background: linear-gradient(135deg, #1a1510 0%, #0f0a08 100%);
    }

    .contact-copy h3 {
        font-size: 22px;
        line-height: 1.1;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

    .contact-copy p {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-list {
        gap: 6px;
        margin-top: 10px;
    }

    .contact-list a,
    .contact-list span {
        font-size: 11px;
        gap: 4px;
    }

    .contact-form {
        gap: 8px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
        border-radius: 6px;
        min-height: 40px;
    }

    .contact-form textarea {
        min-height: 80px;
        resize: vertical;
    }

    .contact-form button {
        padding: 12px;
        font-size: 12px;
        min-height: 44px;
        font-weight: 700;
    }

    .panel {
        padding: 14px;
        border-radius: 10px;
        border: none;
    }

    .about-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .split {
        gap: 12px;
    }

    .gallery-scroll-wrapper {
        padding-bottom: 6px;
        padding-left: 0;
        padding-right: 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .gallery-scroll {
        gap: 8px;
    }

    .gallery-item {
        width: 62vw;
        max-width: 190px;
        border-radius: 6px;
    }

    .gallery-item figcaption {
        font-size: 8px;
        padding: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-radius: 6px;
        line-height: 1.15;
    }

    .lightbox {
        padding: 20px 8px;
    }

    .lightbox-dialog {
        border-radius: 10px;
        max-height: calc(100vh - 24px);
    }

    .lightbox-image-wrap img {
        max-height: 72vh;
    }

    .lightbox-caption {
        font-size: 10px;
        padding: 9px 10px;
    }

    .admin-footer {
        font-size: 10px;
        padding: 12px;
        text-align: center;
    }

    .mobile-drawer {
        width: 80vw;
        padding: 80px 16px 16px;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .sidebar nav a {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 2px;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    input[type="color"] {
        height: 44px;
        min-height: 44px;
        cursor: pointer;
    }

    .section {
        padding: 14px 12px 6px;
        overflow-x: hidden;
    }

    .section-title h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .section-title p {
        font-size: 12px;
        line-height: 1.4;
    }

    .hero-card {
        padding: 12px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .hero-card::before {
        width: 140px;
        height: 140px;
        top: -30px;
        right: -30px;
    }

    .hero-meta h3 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-stat {
        padding: 8px;
        border-radius: 6px;
    }

    .hero-stat strong {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .hero-stat span {
        font-size: 9px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .mini-item {
        padding: 10px;
        border-radius: 8px;
        font-size: 11px;
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mini-item strong {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .mini-item span {
        font-size: 10px;
    }

    .song-card {
        border-radius: 10px;
        padding: 0;
    }

    .song-cover {
        aspect-ratio: 16 / 10;
    }

    .song-content {
        padding: 10px;
        gap: 6px;
    }

    .song-content h3 {
        font-size: 13px;
        line-height: 1.2;
    }

    .song-content p {
        font-size: 11px;
    }

    .song-link {
        font-size: 9px;
        gap: 4px;
        margin-top: 3px;
    }

    .genres-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
    }

    .genre-card {
        border-radius: 10px;
        overflow: hidden;
    }

    .genre-header {
        padding: 14px 10px;
        min-height: 80px;
        border-radius: 10px;
    }

    .genre-name {
        font-size: 12px;
        line-height: 1.3;
    }

    .genre-content {
        padding: 10px;
    }

    .genre-content p {
        font-size: 11px;
        line-height: 1.4;
    }

    .tracks-filter {
        padding: 10px;
        border-radius: 10px;
        gap: 10px;
    }

    .tracks-filter strong {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .filter-chips {
        gap: 6px;
    }

    .filter-chip {
        font-size: 10px;
        padding: 6px 10px;
        min-height: 36px;
        display: flex;
        align-items: center;
    }

    .banner-wrapper {
        grid-template-columns: 1fr;
        border-radius: 12px;
        padding: 12px;
        gap: 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .banner-photo {
        min-height: 150px;
        border-radius: 8px;
    }

    .banner-label {
        font-size: 10px;
        gap: 4px;
    }

    .banner-content {
        padding: 0;
        gap: 10px;
    }

    .banner-content h2 {
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: 0.3px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    .banner-content div {
        font-size: 11px;
        margin-top: 4px;
    }

    .contact-wrap {
        padding-bottom: 44px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
        border-radius: 10px;
        background: linear-gradient(135deg, #1a1510 0%, #0f0a08 100%);
    }

    .contact-copy h3 {
        font-size: 20px;
        line-height: 1.1;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

    .contact-copy p {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-list {
        gap: 6px;
        margin-top: 10px;
    }

    .contact-list a,
    .contact-list span {
        font-size: 11px;
        gap: 4px;
        min-height: 36px;
        display: flex;
        align-items: center;
    }

    .contact-form {
        gap: 8px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px;
        border-radius: 6px;
        min-height: 44px;
        width: 100%;
    }

    .contact-form textarea {
        min-height: 80px;
        resize: vertical;
    }

    .contact-form button {
        padding: 14px;
        font-size: 12px;
        min-height: 48px;
        font-weight: 700;
        cursor: pointer;
    }

    .panel {
        padding: 12px;
        border-radius: 10px;
        border: 1px solid var(--line);
    }

    .about-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .split {
        gap: 12px;
    }

    .gallery-scroll-wrapper {
        padding-bottom: 6px;
        padding-left: 0;
        padding-right: 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .gallery-scroll {
        gap: 8px;
    }

    .gallery-item {
        width: 60vw;
        max-width: 180px;
        border-radius: 6px;
    }

    .gallery-item figcaption {
        font-size: 8px;
        padding: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-radius: 4px;
        line-height: 1.15;
    }

    .lightbox {
        padding: 16px 8px;
    }

    .lightbox-dialog {
        border-radius: 10px;
        max-height: calc(100vh - 20px);
    }

    .lightbox-image-wrap img {
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 10px;
        padding: 9px 10px;
    }

    .admin-footer {
        font-size: 10px;
        padding: 12px;
        text-align: center;
    }

    .mobile-drawer {
        width: 78vw;
        padding: 76px 14px 14px;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .mobile-drawer a {
        padding: 12px;
        font-size: 11px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    input[type="color"] {
        height: 44px;
        cursor: pointer;
        min-height: 44px;
    }

    .footer-inner {
        padding: 14px 12px 16px;
        gap: 12px;
    }

    .footer-inner p {
        font-size: 11px;
    }

    .social {
        gap: 6px;
    }

    .social a {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        font-size: 14px;
    }
}

/* ═══════════════════════════════════════
   UI ENHANCEMENTS
═══════════════════════════════════════ */

/* ── Ticker strip ── */
.ticker-wrap {
    background: var(--charcoal);
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--accent);
}
.ticker-inner {
    display: flex;
    width: max-content;
    animation: tickerScroll 34s linear infinite;
}
.ticker-inner:hover {
    animation-play-state: paused;
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    color: #f5dcc5;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Song card play overlay ── */
.song-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.3s ease;
}
.song-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(22, 10, 4, 0.16);
}
.song-cover-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    text-decoration: none;
}
.song-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}
.song-card:hover .song-cover-wrap img {
    transform: scale(1.07);
}
.song-cover-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 6, 2, 0.82) 0%, rgba(12, 6, 2, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.song-card:hover .song-cover-wrap::after {
    opacity: 1;
}
.song-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.song-play-btn-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-deep);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
    transform: scale(0.65);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stream-btn-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
    flex-wrap: wrap;
    align-content: center;
    padding: 20px;
}
.song-card:hover .stream-btn-container, .song:hover .stream-btn-container {
    opacity: 1;
}
.stream-btn-inner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
    transform: scale(0.65) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
    text-decoration: none;
    color: var(--ink);
}
.song-card:hover .stream-btn-inner, .song:hover .stream-btn-inner {
    transform: scale(1) translateY(0);
}
.stream-btn-inner:hover {
    background: #fff;
    transform: scale(1.15) !important;
}
.stream-btn-inner.yt { color: #ff0000; }
.stream-btn-inner.sp { color: #1DB954; }
.stream-btn-inner.sa { color: #2bc5b4; }
.stream-btn-inner.ap { color: #fa243c; }
.song-card:hover .song-play-btn {
    opacity: 1;
}
.song-card:hover .song-play-btn-inner {
    transform: scale(1);
}

/* ── Song badges ── */
.song-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}
.song-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    background: #f4e1d2;
    color: #7f3415;
    border: 1px solid #e8cbbb;
    border-radius: 999px;
    padding: 3px 9px;
}
.song-badge-cat {
    background: #eaf0f4;
    color: #2b4d6f;
    border-color: #c2d8e8;
}

/* ── Section title accent ── */
.section-title h2 {
    position: relative;
    padding-bottom: 14px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 54px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), transparent);
    border-radius: 2px;
}

/* ── Section kicker ── */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-deep);
    margin-bottom: 4px;
}
.section-kicker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ── Genre card hover lift ── */
.genre-card {
    transition: transform 0.28s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.28s ease;
}
.genre-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

/* ── Hero depth: orbs behind hero ── */
.hero {
    position: relative;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(196, 98, 45, 0.10) 0%, transparent 68%);
    top: -100px;
    right: -80px;
}
.hero-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(143, 63, 26, 0.07) 0%, transparent 70%);
    bottom: 0;
    left: -40px;
}
.hero > * {
    position: relative;
    z-index: 1;
}

/* ── Header subtle glow on scroll ── */
header.scrolled {
    box-shadow: 0 4px 20px rgba(25, 15, 8, 0.10);
}

/* ── Filter row horizontal scroll on mobile ── */
.filter-group {
    margin-bottom: 10px;
}
.filter-group:last-child {
    margin-bottom: 0;
}
.filter-group strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}
.filter-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.filter-row::-webkit-scrollbar {
    display: none;
}
.filter-row .filter-chips {
    flex-wrap: nowrap;
    width: max-content;
}

/* ── Improved hero card ── */
.hero-card {
    position: relative;
    overflow: visible;
}
.hero-card-glow {
    position: absolute;
    bottom: -12px;
    left: 16px;
    right: 16px;
    height: 24px;
    background: rgba(28, 20, 14, 0.28);
    filter: blur(16px);
    border-radius: 50%;
    z-index: 0;
}

/* ── Footer enhancement ── */
.footer-inner {
    flex-direction: row;
    justify-content: space-between;
}
.footer-credit {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-credit p {
    text-align: left;
}
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
    }
    .footer-credit p {
        text-align: center;
    }
    .ticker-item {
        padding: 0 20px;
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        right: 12px;
        bottom: 12px;
    }

    .skip-link {
        left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
