/* ---------- Variables / Design tokens ---------- */
:root {
    --bg: #0a0a0b;
    --surface: #131215;
    --surface-2: #1b191e;
    --line: rgba(230, 185, 77, 0.16);
    --line-soft: rgba(236, 230, 216, 0.09);

    --gold: #e6b94d;
    /* dorado principal */
    --gold-soft: #f4dca0;
    /* dorado pastel */
    --cream: #ece6d8;
    /* texto claro pastel */
    --muted: #8f897d;
    /* texto secundario */
    --on-gold: #0a0a0b;

    --radius: 14px;
    --radius-sm: 9px;
    --maxw: 1200px;
    --nav-h: 72px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    background: var(--bg);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
}

::selection {
    background: var(--gold);
    color: var(--on-gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(64px, 10vw, 128px) 0;
    position: relative;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 18px 0 0;
    text-wrap: balance;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-head p {
    color: var(--muted);
    margin-top: 16px;
    text-wrap: pretty;
}

.text-gold {
    color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gold);
    color: var(--on-gold);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--cream);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Skip link ---------- */
.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 200;
    background: var(--gold);
    color: var(--on-gold);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 12px;
}

/* ----------- Efecto Ruido Animado -------------- */
body::after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.07;
    /* Nivel sutil */
    animation: noise-anim 0.3s steps(1) infinite;
}

@keyframes noise-anim {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -5%);
    }

    20% {
        transform: translate(-10%, 5%);
    }

    30% {
        transform: translate(5%, -10%);
    }

    40% {
        transform: translate(-5%, 15%);
    }

    50% {
        transform: translate(-10%, 5%);
    }

    60% {
        transform: translate(15%, 0);
    }

    70% {
        transform: translate(0, 10%);
    }

    80% {
        transform: translate(-15%, 0);
    }

    90% {
        transform: translate(10%, 5%);
    }

    100% {
        transform: translate(5%, 0);
    }
}

/* ---------- Navbar ---------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 11, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line-soft);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}



.brand .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--on-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
}

.brand .name {
    font-size: 1.05rem;
}

.brand .name b {
    color: var(--gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s var(--ease);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    
}

/* Hamburger */
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line-soft);
    position: relative;
}

.burger span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease);
}

.burger span:nth-child(1) {
    top: 15px;
}

.burger span:nth-child(2) {
    top: 21px;
}

.burger span:nth-child(3) {
    top: 27px;
}

.burger.open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: 99;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 40px 28px;
    gap: 6px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu a span {
    color: var(--gold);
    font-size: 0.85rem;
}

.mobile-menu .btn {
    margin-top: 24px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 80% 10%, rgba(230, 185, 77, 0.14), transparent 55%),
        linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.82) 55%, var(--bg) 100%),
        linear-gradient(90deg, var(--bg) 8%, transparent 65%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 70%);
}

.hero-inner {
    width: 80vw;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.hero-inner>img {
    width: clamp(180px, 40vw, 420px);
    margin-top: 13px;
}

.hero .tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(230, 185, 77, 0.05);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-top: 35px;
    margin-left: 8px;
}

.hero .tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(230, 185, 77, 0.18);
}

.hero h1 {
    font-size: clamp(2.8rem, 11vw, 8.2rem);
    line-height: 0.9;
    margin: 26px 0 0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero h1 .line2 {
    color: transparent;
    -webkit-text-stroke: 1.4px var(--gold);
}

.hero .lead {
    font-size: clamp(1rem, 2.4vw, 1.3rem);
    color: var(--muted);
    max-width: 540px;
    margin-top: 16px;
    text-wrap: pretty;
    text-align: center;
    font-size: 0.9rem;
}

.hero .lead b {
    color: var(--cream);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 56px;
}

.hero-meta .item .n {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-meta .item .l {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-cue .bar {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--gold), transparent);
    animation: cue 2s var(--ease) infinite;
    transform-origin: top;
}

@keyframes cue {

    0%,
    100% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ---------- Marquee ---------- */
.marquee {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
    background: var(--surface);
    margin-top: 50px;
}

.marquee-track {
    display: flex;
    gap: 48px;
    padding: 18px 0;
    white-space: nowrap;
    animation: scrollx 32s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 48px;
}

.marquee-track span::after {
    content: "◆";
    color: var(--gold);
    font-size: 0.7rem;
}

@keyframes scrollx {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Player ---------- */
.player-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.player {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.player-top {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cover {
    width: 118px;
    height: 118px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--on-gold);
    background: linear-gradient(150deg, var(--gold), #b98a24);
    font-family: var(--font-display);
    font-weight: 700;
}

.cover .ini {
    font-size: 2.1rem;
    letter-spacing: -0.03em;
}

.cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%);
    mix-blend-mode: overlay;
}

.player-info .yr {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.player-info h3 {
    font-size: 1.5rem;
    margin: 6px 0 4px;
}

.player-info .art {
    color: var(--muted);
    font-size: 0.95rem;
}

.player-unavailable {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.player-unavailable .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b06a5a;
}

.progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress .time {
    font-size: 0.72rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    min-width: 38px;
}

.bar {
    flex: 1;
    height: 5px;
    border-radius: 999px;
    background: rgba(236, 230, 216, 0.12);
    position: relative;
    cursor: pointer;
}

.bar .fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: var(--gold);
    border-radius: 999px;
}

.bar .knob {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(230, 185, 77, 0.18);
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.controls-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ctrl {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-soft);
    color: var(--cream);
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}

.ctrl:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.ctrl:active {
    transform: scale(0.92);
}

.ctrl svg {
    width: 18px;
    height: 18px;
}

.play-btn {
    width: 58px;
    height: 58px;
    background: var(--gold);
    color: var(--on-gold);
    border: none;
}

.play-btn:hover {
    background: var(--gold-soft);
    color: var(--on-gold);
}

.play-btn svg {
    width: 22px;
    height: 22px;
}

.volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.volume input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: rgba(236, 230, 216, 0.15);
}

.volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.volume input[type="range"]::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.playlist {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.playlist h4 {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 14px;
}

.playlist-scroll {
    overflow-y: auto;
    max-height: 340px;
}

.track {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s var(--ease);
}

.track:hover {
    background: var(--surface-2);
}

.track.active {
    background: rgba(230, 185, 77, 0.08);
}

.track .idx {
    font-size: 0.8rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.track.active .idx {
    color: var(--gold);
}

.track .t-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track .t-art {
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track .t-yr {
    font-size: 0.76rem;
    color: var(--muted);
}

.track.active .eq {
    display: flex;
}

.eq {
    display: none;
    gap: 2px;
    align-items: flex-end;
    height: 14px;
}

.eq i {
    width: 3px;
    background: var(--gold);
    animation: eq 0.9s ease-in-out infinite;
}

.eq i:nth-child(2) {
    animation-delay: 0.2s;
}

.eq i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes eq {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 14px;
    }
}

/* ---------- Cards / Featured ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
    background: var(--surface-2);
}

.card:hover::before {
    transform: scaleY(1);
}

.card .yr {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    line-height: 1;
}

.card:hover .yr {
    -webkit-text-stroke: 1px var(--gold);
}

.card .fmt {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
}

.card h3 {
    font-size: 1.35rem;
    margin: 20px 0 6px;
    text-wrap: balance;
}

.card .art {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(236, 230, 216, 0.06);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 5px 11px;
}

.chip.prod {
    color: var(--gold-soft);
    border-color: var(--line);
}

/* ---------- Filters ---------- */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.fbtn {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line-soft);
    color: var(--muted);
    transition: all 0.25s var(--ease);
}

.fbtn:hover {
    color: var(--cream);
    border-color: var(--line);
}

.fbtn.active {
    background: var(--gold);
    color: var(--on-gold);
    border-color: var(--gold);
}

/* ---------- Discography ---------- */
.disco-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 10px 18px;
    flex: 1;
    min-width: 220px;
    max-width: 360px;
    transition: border-color 0.25s var(--ease);
}

.search:focus-within {
    border-color: var(--gold);
}

.search svg {
    width: 17px;
    height: 17px;
    color: var(--muted);
    flex-shrink: 0;
}

.search input {
    background: none;
    border: none;
    color: var(--cream);
    width: 100%;
    outline: none;
}

.search input::placeholder {
    color: var(--muted);
}

.disco-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sel {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 0;
    overflow: hidden;
}

.sel select {
    appearance: none;
    background: none;
    border: none;
    color: var(--cream);
    padding: 10px 38px 10px 16px;
    outline: none;
    font-size: 0.84rem;
    cursor: pointer;
}

.sel::after {
    content: "▾";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    font-size: 0.7rem;
}

.sel select option {
    background: var(--surface-2);
    color: var(--cream);
}

.disco-list {
    border-top: 1px solid var(--line-soft);
}

.row {
    display: grid;
    grid-template-columns: 84px 1.6fr 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 8px;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}

.row:hover {
    background: var(--surface);
    padding-left: 18px;
    padding-right: 18px;
}

.row .r-yr {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold);
}

.row .r-rel {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
}

.row .r-rel small {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 3px;
}

.row .r-role {
    font-size: 0.86rem;
    color: var(--cream);
}

.row .r-fmt {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.status {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

.status.pub {
    color: var(--gold);
    background: rgba(230, 185, 77, 0.1);
}

.status.conf {
    color: #a8d5b5;
    background: rgba(120, 200, 140, 0.09);
}

.status.pend {
    color: var(--muted);
    background: rgba(236, 230, 216, 0.06);
}

.disco-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.disco-count {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

/* ---------- Services ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
}

.service {
    padding: 38px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    transition: background 0.35s var(--ease);
    background: var(--surface);
}

.service:hover {
    background: var(--surface-2);
}

.service .num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.service .ic {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(230, 185, 77, 0.08);
    border: 1px solid var(--line);
    color: var(--gold);
    margin: 18px 0;
}

.service .ic svg {
    width: 22px;
    height: 22px;
}

.service h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service p {
    color: var(--muted);
    font-size: 0.94rem;
    text-wrap: pretty;
}

/* ---------- About ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    aspect-ratio: 4 / 5;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 11, 0.85));
}

.about-media .badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
}

.about-media .badge .b1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-media .badge .b2 {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-body p {
    color: var(--muted);
    margin-top: 18px;
    text-wrap: pretty;
}

.about-body p b {
    color: var(--cream);
    font-weight: 600;
}

.about-body .quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    line-height: 1.3;
    margin-top: 8px;
    text-wrap: balance;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

/* ---------- Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat {
    background: var(--bg);
    padding: 34px 24px;
    text-align: center;
}

.stat .n {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat .l {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
}

/* ---------- Timeline ---------- */
.timeline {
    position: relative;
    padding-left: 8px;
}

.tl-year {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 8px 0 40px;
    position: relative;
}

.tl-year::before {
    content: "";
    position: absolute;
    left: 140px;
    top: 14px;
    bottom: -6px;
    width: 1px;
    background: var(--line-soft);
}

.tl-year:last-child::before {
    display: none;
}

.tl-y {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--gold);
    position: relative;
}

.tl-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 30px;
}

.tl-item {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.tl-item:hover {
    transform: translateX(6px);
    border-color: var(--line);
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 22px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(230, 185, 77, 0.14);
}

.tl-item .ti-rel {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.tl-item .ti-art {
    color: var(--muted);
    font-size: 0.84rem;
    margin-top: 3px;
}

.tl-item .ti-role {
    font-size: 0.74rem;
    color: var(--gold-soft);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* ---------- Contact ---------- */
.contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
}

.contact-aside h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
}

.contact-aside p {
    color: var(--muted);
    margin-top: 18px;
    text-wrap: pretty;
}

.contact-points {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cpoint {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cpoint .ic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    color: var(--gold);
    flex-shrink: 0;
}

.cpoint .ic svg {
    width: 18px;
    height: 18px;
}

.cpoint .l {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.cpoint .v {
    font-family: var(--font-display);
    font-weight: 600;
}

form {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 32px;
}

.field {
    margin-bottom: 20px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 9px;
}

label .req {
    color: var(--gold);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    color: var(--cream);
    transition: border-color 0.25s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #5f5b53;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--gold);
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field select {
    appearance: none;
    cursor: pointer;
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
    border-color: #c0705f;
}

.err {
    color: #d98a78;
    font-size: 0.76rem;
    margin-top: 7px;
    display: none;
}

.field.invalid .err {
    display: block;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

.check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.check label {
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.form-status {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-top: 18px;
    display: none;
}

.form-status.ok {
    display: block;
    background: rgba(120, 200, 140, 0.1);
    color: #a8d5b5;
    border: 1px solid rgba(120, 200, 140, 0.25);
}

.form-status.fail {
    display: block;
    background: rgba(200, 110, 90, 0.1);
    color: #d98a78;
    border: 1px solid rgba(200, 110, 90, 0.25);
}

.btn-submit {
    width: 100%;
}

.btn-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--line-soft);
    padding: 64px 0 32px;
    background: var(--surface);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.foot-brand .brand {
    margin-bottom: 18px;
}

.foot-brand p {
    color: var(--muted);
    max-width: 320px;
    text-wrap: pretty;
}

.foot-col h4 {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.foot-col a {
    display: block;
    color: var(--muted);
    padding: 6px 0;
    transition: color 0.2s var(--ease);
    font-size: 0.92rem;
}

.foot-col a:hover {
    color: var(--cream);
}

.foot-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.8rem;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line-soft);
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: all 0.25s var(--ease);
}

.socials a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.socials a svg {
    width: 18px;
    height: 18px;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].in {
    opacity: 1;
    transform: none;
}

[data-reveal-delay="1"] {
    transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.24s;
}

/* ---------- Loading skeleton ---------- */
.loading {
    padding: 40px;
    text-align: center;
    color: var(--muted);
}

.spinner {
    width: 34px;
    height: 34px;
    border: 2px solid var(--line-soft);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 14px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 890px) {
    .player-wrap {
        grid-template-columns: 1fr;
    }

    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .row {
        grid-template-columns: 64px 1fr auto;
        row-gap: 6px;
    }

    .row .r-role,
    .row .r-fmt {
        grid-column: 2 / 4;
    }
}

@media (max-width: 760px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .service {
        border-right: none;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tl-year {
        grid-template-columns: 70px 1fr;
        gap: 16px;
    }

    .tl-year::before {
        left: 84px;
    }

    .frow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .mobile-menu a{
        padding:10px 50px 10px 20px;
        border-radius:50px 0 0 50px;
    }
    
    .hero .tag {
        font-size:0.6rem;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-right: 45px;
    }
    .cards {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-meta {
        gap: 22px;
    }

    .player,
    form {
        padding: 20px;
    }

    .disco-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search {
        max-width: none;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}