:root {
    --color-bg: #070604;
    --color-bg-alt: #0d0a07;
    --color-surface: #15100b;
    --color-surface-soft: #21170f;
    --color-text: #fff7ea;
    --color-muted: #c9b89f;
    --color-subtle: #8f7f69;
    --color-gold: #c99332;
    --color-gold-soft: #efc76f;
    --color-copper: #9d5730;
    --color-smoke: rgba(255, 247, 234, 0.08);
    --color-border: rgba(255, 247, 234, 0.12);

    --font-body: 'Archivo', Arial, Helvetica, sans-serif;
    --font-display: 'Oswald', 'Archivo', Arial, Helvetica, sans-serif;

    --container: 1180px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --header-height: 96px;

    --section-padding: 88px;
    --section-padding-mobile: 56px;

    --title-xl: clamp(3.6rem, 9vw, 7.8rem);
    --title-lg: clamp(1.9rem, 3.1vw, 3.1rem);
    --title-md: clamp(1.45rem, 2.4vw, 2rem);
    --text-base: 1rem;
    --text-sm: 0.92rem;
    --text-xs: 0.76rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 15% 0%, rgba(201, 147, 50, 0.11), transparent 32rem),
        radial-gradient(circle at 90% 15%, rgba(157, 87, 48, 0.1), transparent 28rem),
        var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

img,
svg,
iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding: var(--section-padding) 0;
    scroll-margin-top: var(--header-height);
}

.section:nth-of-type(even) {
    background: var(--color-bg-alt);
}

.section h1,
.section h2 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: var(--title-lg);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.section p {
    color: var(--color-muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: var(--title-lg);
}

.section-heading p {
    max-width: 620px;
    margin: 14px 0 0;
    font-size: var(--text-base);
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.9fr);
    gap: 44px;
    align-items: end;
}

.section-heading-split > p {
    margin: 0;
    justify-self: end;
}

.eyebrow,
.card-meta {
    margin: 0 0 8px;
    color: var(--color-gold-soft);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(7, 6, 4, 0.96), rgba(7, 6, 4, 0.82));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(239, 199, 111, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.header-split {
    position: relative;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(54px, 6vw, 76px);
    max-width: min(220px, 64vw);
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav-left {
    justify-content: flex-end;
}

.main-nav-right {
    justify-content: flex-start;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    padding: 8px 0;
    color: var(--color-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-toggle,
.mobile-nav {
    display: none;
}

.hero-cover {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 28%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 48%, rgba(239, 199, 111, 0.12), transparent 28rem),
        linear-gradient(180deg, rgba(7, 6, 4, 0.02), rgba(7, 6, 4, 0.44));
}

.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-cover-layout {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--container));
    min-height: calc(100svh - var(--header-height));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 460px);
    gap: 56px;
    align-items: center;
    padding: 48px 0;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: var(--title-xl);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.055em;
    max-width: 720px;
    text-transform: uppercase;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-tagline {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--color-gold-soft);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 2.35rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.hero-description {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 247, 234, 0.82);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-spacer {
    display: none;
}

.hero-player-card {
    justify-self: end;
    width: 100%;
    max-width: 460px;
    padding: 18px;
    border: 1px solid rgba(239, 199, 111, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(21, 16, 11, 0.92), rgba(11, 8, 5, 0.88));
    backdrop-filter: blur(14px);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-player-top {
    margin-bottom: 14px;
}

.hero-player-top span {
    display: block;
    margin-bottom: 7px;
    color: #1db954;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-player-top h2 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.spotify-player-frame {
    overflow: hidden;
    border-radius: 18px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotify-player-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

.spotify-lazy-player {
    width: 100%;
    min-height: 352px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 28px;
    border: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(29, 185, 84, 0.22), transparent 18rem),
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(7, 6, 4, 0.96));
    color: var(--color-text);
    text-align: center;
}

.spotify-lazy-player:hover {
    transform: none;
}

.spotify-lazy-kicker {
    color: #1db954;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.spotify-lazy-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.spotify-lazy-text {
    color: rgba(255, 247, 234, 0.68);
    font-size: 0.88rem;
    font-weight: 700;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
    color: #080706;
    box-shadow: 0 12px 28px rgba(201, 147, 50, 0.18);
}

.btn-secondary {
    background: rgba(255, 247, 234, 0.04);
    color: var(--color-text);
    border: 1px solid rgba(255, 247, 234, 0.18);
}

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(201, 147, 50, 0.08), transparent 26rem),
        linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 247, 234, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 247, 234, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

.about-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 52px;
    align-items: center;
}

.about-statement h2 {
    max-width: 600px;
    margin: 0;
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.about-signature {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.about-signature span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-gold-soft);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transform: rotate(-2deg);
    text-shadow:
        1px 1px 0 rgba(7, 6, 4, 0.95),
        0 0 18px rgba(239, 199, 111, 0.18);
}

.about-signature span:nth-child(even) {
    transform: rotate(1.6deg);
}

.about-signature span:nth-child(3n) {
    color: rgba(255, 247, 234, 0.86);
}

.about-panel {
    display: grid;
    gap: 22px;
}

.editorial-text {
    max-width: 720px;
    padding: 0 0 0 26px;
    border-left: 1px solid rgba(239, 199, 111, 0.28);
}

.editorial-text p {
    margin: 0;
    color: rgba(255, 247, 234, 0.76);
    font-size: 1rem;
    line-height: 1.82;
}

.editorial-text p + p {
    margin-top: 18px;
}

.music-section,
.videos-section,
.gallery-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.music-section .section-heading h2,
.videos-section .section-heading h2,
.gallery-section .section-heading h2 {
    letter-spacing: -0.055em;
}

.content-carousel-wrap {
    position: relative;
}

.content-carousel {
    min-width: 0;
}

.content-carousel-page {
    display: none;
}

.content-carousel-page.is-active {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    animation: fadeSlideIn 0.24s ease both;
}

.catalog-card {
    min-width: 0;
}

.catalog-card-link {
    height: 100%;
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 247, 234, 0.09);
    border-radius: 22px;
    background: rgba(255, 247, 234, 0.028);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.catalog-card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 199, 111, 0.28);
    background: rgba(239, 199, 111, 0.045);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
}

.catalog-card-gallery .catalog-card-link:hover {
    transform: translateY(-4px) scale(1.035);
    z-index: 3;
}

.catalog-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 247, 234, 0.1);
    color: var(--color-muted);
}

.catalog-card-media img,
.catalog-card-media iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
    border-radius: inherit;
}

.catalog-card-media iframe {
    pointer-events: none;
}

.catalog-card-media span {
    color: var(--color-gold-soft);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.catalog-card-body {
    display: grid;
    gap: 8px;
    padding: 0 2px 2px;
}

.catalog-card-body h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.45vw, 1.38rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.catalog-card-body p {
    margin: 0;
    color: rgba(255, 247, 234, 0.62);
    font-size: 0.88rem;
    line-height: 1.5;
}

.catalog-card-body > span {
    width: fit-content;
    margin-top: 4px;
    color: var(--color-gold-soft);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(239, 199, 111, 0.24);
    border-radius: 999px;
    background: rgba(21, 16, 11, 0.82);
    color: var(--color-gold-soft);
    font-size: 1.65rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    background: var(--color-gold);
    color: #080706;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 45%;
    z-index: 4;
    transform: translateY(-50%);
}

.carousel-prev {
    left: -58px;
}

.carousel-next {
    right: -58px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.24);
    transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    width: 24px;
    background: var(--color-gold-soft);
}

.agenda-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.agenda-timeline,
.agenda-list {
    display: grid;
    gap: 12px;
}

.agenda-item {
    display: grid;
    grid-template-columns: minmax(92px, 0.18fr) minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 247, 234, 0.09);
    border-radius: 18px;
    background: rgba(255, 247, 234, 0.028);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.agenda-item:hover {
    transform: translateX(3px);
    border-color: rgba(239, 199, 111, 0.24);
    background: rgba(239, 199, 111, 0.035);
}

.agenda-item strong,
.agenda-date strong {
    display: block;
    color: var(--color-gold-soft);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.agenda-item span,
.agenda-info p {
    color: var(--color-muted);
    font-size: var(--text-sm);
}

.agenda-info h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.agenda-info p {
    margin: 4px 0 0;
}

.agenda-status {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(239, 199, 111, 0.18);
    border-radius: 999px;
    color: var(--color-gold-soft);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.form-message {
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: var(--text-sm);
}

.form-message-success {
    border-color: rgba(224, 189, 114, 0.45);
}

.form-message-invalid,
.form-message-invalid_email,
.form-message-error {
    border-color: rgba(255, 255, 255, 0.22);
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    color: var(--color-gold-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(8, 7, 6, 0.55);
    color: var(--color-text);
    outline: none;
}

.form-field input,
.form-field select {
    min-height: 46px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 130px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(185, 171, 152, 0.7);
}

.form-field-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.84);
    backdrop-filter: blur(10px);
}

.contact-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 600px);
    max-height: calc(100svh - 48px);
    overflow: auto;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 1.8rem;
    line-height: 1;
}

.contact-modal-close:hover {
    color: var(--color-gold-soft);
}

.contact-modal-heading {
    margin-bottom: 18px;
    padding-right: 42px;
}

.contact-modal-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: var(--title-md);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.contact-modal-heading p {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: var(--text-sm);
}

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

.site-footer {
    padding: 64px 0 28px;
    background: #050403;
    border-top: 1px solid var(--color-border);
}

.footer-clean {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: var(--color-gold-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 7px;
}

.footer-links a {
    width: fit-content;
    color: var(--color-text);
    font-size: clamp(0.86rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-gold-soft);
    transform: translateX(3px);
}

.footer-column-social {
    justify-self: end;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.footer-social-icons svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.social-icon-instagram {
    color: #e4405f;
}

.social-icon-youtube {
    color: #ff0000;
}

.social-icon-spotify {
    color: #1db954;
}

.social-icon-facebook {
    color: #1877f2;
}

.footer-clean-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 18px;
    color: var(--color-muted);
    border-top: 1px solid var(--color-border);
    font-size: 0.74rem;
}

.footer-clean-bottom small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-clean-bottom a {
    color: var(--color-gold-soft);
    font-weight: 800;
}

.footer-clean-bottom a:hover {
    color: var(--color-text);
}

.not-found-section {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    background: var(--color-bg);
}

.not-found-box {
    max-width: 720px;
}

.not-found-box h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.not-found-box p {
    max-width: 560px;
    margin: 20px 0 30px;
    color: var(--color-muted);
    font-size: 1rem;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1240px) {
}

@media (max-width: 980px) {
    :root {
        --header-height: 92px;
    }

    .header-split {
        min-height: var(--header-height);
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .main-nav-left,
    .main-nav-right {
        display: none;
    }

    .brand {
        justify-content: flex-start;
    }

    .brand-logo {
        height: clamp(50px, 12vw, 70px);
    }

    .nav-toggle {
        justify-self: end;
        display: inline-grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        background: transparent;
        color: var(--color-text);
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 3px auto;
        background: var(--color-text);
    }

    .mobile-nav {
        position: absolute;
        top: var(--header-height);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-surface);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    }

    .mobile-nav.is-open {
        display: flex;
    }

    .mobile-nav a {
        color: var(--color-muted);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .mobile-nav a:hover {
        color: var(--color-gold-soft);
    }

    .section {
        min-height: auto;
        padding: var(--section-padding-mobile) 0;
    }

    .hero-cover {
        min-height: auto;
        padding: 96px 0 54px;
        align-items: end;
    }

    .hero-bg img {
        object-position: center top;
    }

    .hero-cover-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-copy h1 {
        font-size: clamp(3.2rem, 16vw, 5.8rem);
    }

    .hero-description {
        max-width: none;
    }

    .hero-player-card {
        justify-self: stretch;
        max-width: none;
    }
    .about-layout,
    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading-split > p {
        justify-self: start;
    }

    .content-carousel-page.is-active {
        grid-template-columns: 1fr;
    }

    .content-carousel-wrap {
        padding: 0 48px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

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

    .gallery-item:hover {
        transform: translateY(-4px);
    }

    .footer-clean {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column-social {
        justify-self: start;
    }

    .footer-clean-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-clean-bottom small {
        display: block;
    }

    .footer-clean-bottom a {
        display: inline-block;
        margin-top: 4px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-cover {
        padding-top: 76px;
        background-position: center top;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .content-carousel-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
    }

    .content-carousel {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .carousel-prev,
    .carousel-next {
        position: static;
        transform: none;
    }

    .carousel-prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .carousel-next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .carousel-dots {
        margin-top: 18px;
    }

    .hero-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-player-card,
    .contact-modal-dialog {
        padding: 20px;
    }
}

.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.newsletter-modal.is-open {
    display: flex;
}

.newsletter-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.84);
    backdrop-filter: blur(10px);
}

.newsletter-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    max-height: calc(100svh - 48px);
    overflow: auto;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.newsletter-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 1.8rem;
    line-height: 1;
}

.newsletter-modal-close:hover {
    color: var(--color-gold-soft);
}

.newsletter-modal-heading {
    margin-bottom: 18px;
    padding-right: 42px;
}

.newsletter-modal-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: var(--title-md);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.newsletter-modal-heading p {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: var(--text-sm);
}

.newsletter-modal-form {
    display: grid;
    gap: 14px;
}

.hero-player-top {
    display: block;
    margin-bottom: 14px;
}

.hero-player-top h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.store-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.store-modal.is-open {
    display: flex;
}

.store-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.84);
    backdrop-filter: blur(10px);
}

.store-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    max-height: calc(100svh - 48px);
    overflow: auto;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.store-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 1.8rem;
    line-height: 1;
}

.store-modal-close:hover {
    color: var(--color-gold-soft);
}

.store-modal-heading {
    margin-bottom: 20px;
    padding-right: 42px;
}

.store-modal-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: var(--title-md);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.store-modal-heading p {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: var(--text-sm);
}

.footer-social-icons {
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 360px;
    gap: 8px;
}

.footer-social-icons a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 247, 234, 0.1);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.026);
    color: var(--color-muted);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.footer-social-icons a:hover {
    color: var(--color-gold-soft);
    border-color: rgba(239, 199, 111, 0.26);
    background: rgba(239, 199, 111, 0.045);
    transform: translateY(-1px);
}

.footer-dev-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-gold-soft);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-dev-trigger:hover {
    color: var(--color-text);
}

.oslab-contact-widget {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 90;
    width: min(360px, calc(100vw - 32px));
    display: none;
}

.oslab-contact-widget.is-open {
    display: block;
}

.oslab-contact-card {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(239, 199, 111, 0.18);
    border-radius: 22px;
    background: rgba(12, 9, 6, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.oslab-contact-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 1.6rem;
    line-height: 1;
}

.oslab-contact-close:hover {
    color: var(--color-gold-soft);
}

.oslab-contact-heading {
    padding-right: 34px;
    margin-bottom: 14px;
}

.oslab-contact-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.oslab-contact-heading p {
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

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

.oslab-contact-form label {
    display: grid;
    gap: 6px;
    color: var(--color-gold-soft);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.oslab-contact-form input,
.oslab-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 247, 234, 0.12);
    border-radius: 12px;
    background: rgba(7, 6, 4, 0.64);
    color: var(--color-text);
    outline: none;
}

.oslab-contact-form input {
    min-height: 40px;
    padding: 0 12px;
}

.oslab-contact-form textarea {
    min-height: 84px;
    padding: 10px 12px;
    resize: vertical;
}

.oslab-contact-form input:focus,
.oslab-contact-form textarea:focus {
    border-color: rgba(239, 199, 111, 0.5);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 80;
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid rgba(239, 199, 111, 0.26);
    border-radius: 999px;
    background: rgba(12, 9, 6, 0.9);
    color: var(--color-gold-soft);
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.back-to-top.is-visible {
    display: grid;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: var(--color-gold);
    color: #080706;
}

@media (max-width: 560px) {
    .oslab-contact-widget {
        right: 14px;
        bottom: 82px;
    }

    .back-to-top {
        right: 14px;
        bottom: 22px;
    }
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 260px;
    gap: 12px;
}

.footer-social-icons a,
.social-icon {
    width: 38px;
    height: 38px;
    min-height: 0;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 247, 234, 0.1);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.035);
    color: var(--color-muted);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social-icons a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.footer-social-icons svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    color: var(--color-gold-soft);
    border-color: rgba(239, 199, 111, 0.34);
    background: rgba(239, 199, 111, 0.07);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.social-icon-instagram:hover { color: #e4405f; }
.social-icon-youtube:hover { color: #ff2b2b; }
.social-icon-spotify:hover { color: #1db954; }
.social-icon-facebook:hover { color: #4d8dff; }
.social-icon-soundcloud:hover { color: #ff7700; }
.social-icon-deezer:hover { color: #a970ff; }
.social-icon-apple-music:hover { color: #fa586a; }

.btn,
button.btn,
a.btn,
.oslab-contact-form .btn {
    position: relative;
    isolation: isolate;
    min-height: 50px;
    overflow: hidden;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn::before,
button.btn::before,
a.btn::before,
.oslab-contact-form .btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
    opacity: 0.55;
    pointer-events: none;
}

.btn::after,
button.btn::after,
a.btn::after,
.oslab-contact-form .btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -55%;
    z-index: -1;
    width: 42%;
    transform: skewX(-18deg);
    background: rgba(255, 255, 255, 0.22);
    opacity: 0;
    transition: left 0.35s ease, opacity 0.35s ease;
}

.btn:hover,
button.btn:hover,
a.btn:hover,
.oslab-contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn:hover::after,
button.btn:hover::after,
a.btn:hover::after,
.oslab-contact-form .btn:hover::after {
    left: 115%;
    opacity: 1;
}

.btn-primary,
.oslab-contact-form .btn-primary {
    border: 1px solid rgba(239, 199, 111, 0.58);
    background:
        linear-gradient(135deg, #f5d98b 0%, var(--color-gold-soft) 36%, var(--color-gold) 100%);
    color: #080706;
}

.btn-primary:hover,
.oslab-contact-form .btn-primary:hover {
    border-color: rgba(255, 247, 234, 0.48);
    background:
        linear-gradient(135deg, #ffe6a3 0%, #efc76f 42%, #c99332 100%);
}

.btn-secondary {
    border: 1px solid rgba(255, 247, 234, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 247, 234, 0.07), rgba(255, 247, 234, 0.025));
    color: var(--color-text);
}

.btn-secondary:hover {
    border-color: rgba(239, 199, 111, 0.34);
    background:
        linear-gradient(180deg, rgba(239, 199, 111, 0.09), rgba(255, 247, 234, 0.035));
    color: var(--color-gold-soft);
}

.catalog-card-body > span,
.music-card-cta,
.visual-card-cta,
.text-link {
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-soft);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.catalog-card-body > span::after,
.music-card-cta::after,
.visual-card-cta::after,
.text-link::after {
    content: "→";
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.catalog-card-link:hover .catalog-card-body > span,
.release-card-link:hover .music-card-cta,
.text-link:hover {
    color: var(--color-text);
    transform: translateX(2px);
}

.catalog-card-link:hover .catalog-card-body > span::after,
.release-card-link:hover .music-card-cta::after,
.text-link:hover::after {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .footer-social-icons {
        justify-content: flex-start;
        max-width: none;
    }
}

.footer-column-social {
    justify-self: end;
    width: fit-content;
}

.footer-column-social h2 {
    width: 184px;
    margin-left: auto;
    text-align: left;
}

.footer-social-icons {
    width: 184px;
    display: grid;
    grid-template-columns: repeat(4, 38px);
    justify-content: start;
    align-items: center;
    gap: 12px 10px;
    margin-left: auto;
}

.footer-social-icons a,
.footer-social-icons .social-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 247, 234, 0.12);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.035);
    color: var(--color-muted);
    line-height: 1;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social-icons a:hover,
.footer-social-icons .social-icon:hover {
    transform: translateY(-3px);
    color: var(--color-gold-soft);
    border-color: rgba(239, 199, 111, 0.34);
    background: rgba(239, 199, 111, 0.07);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.footer-social-icons svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.footer-social-icons a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.social-icon-instagram:hover { color: #e4405f; }
.social-icon-youtube:hover { color: #ff2b2b; }
.social-icon-spotify:hover { color: #1db954; }
.social-icon-facebook:hover { color: #4d8dff; }
.social-icon-soundcloud:hover { color: #ff7700; }
.social-icon-deezer:hover { color: #a970ff; }
.social-icon-apple-music:hover { color: #fa586a; }

@media (max-width: 980px) {
    .footer-column-social {
        justify-self: start;
        width: auto;
    }

    .footer-column-social h2,
    .footer-social-icons {
        width: 184px;
        margin-left: 0;
    }
}

.footer-column-social {
    justify-self: end;
    width: fit-content;
}

.footer-column-social h2 {
    width: 184px;
    margin-left: auto;
    text-align: left;
}

.footer-social-icons {
    width: 184px;
    display: grid;
    grid-template-columns: repeat(4, 38px);
    justify-content: start;
    align-items: center;
    gap: 12px 10px;
    margin-left: auto;
}

.footer-social-icons a,
.footer-social-icons .social-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 247, 234, 0.12);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.035);
    color: var(--color-muted);
    line-height: 1;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social-icons a:hover,
.footer-social-icons .social-icon:hover {
    transform: translateY(-3px);
    color: var(--color-gold-soft);
    border-color: rgba(239, 199, 111, 0.34);
    background: rgba(239, 199, 111, 0.07);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.footer-social-icons svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.footer-social-icons a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.social-icon-instagram:hover { color: #e4405f; }
.social-icon-youtube:hover { color: #ff2b2b; }
.social-icon-spotify:hover { color: #1db954; }
.social-icon-facebook:hover { color: #4d8dff; }
.social-icon-soundcloud:hover { color: #ff7700; }
.social-icon-deezer:hover { color: #a970ff; }
.social-icon-apple-music:hover { color: #fa586a; }

@media (max-width: 980px) {
    .footer-column-social {
        justify-self: start;
        width: auto;
    }

    .footer-column-social h2,
    .footer-social-icons {
        width: 184px;
        margin-left: 0;
    }
}

.footer-dev-trigger {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-gold-soft);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-dev-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-dev-trigger:hover {
    color: var(--color-text);
}

.footer-dev-trigger:hover::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.oslab-contact-widget {
    right: 22px;
    bottom: 86px;
}

.oslab-contact-card {
    width: 100%;
    border-radius: 18px;
}

.oslab-contact-form .btn {
    width: 100%;
}

@media (max-width: 560px) {
    .oslab-contact-widget {
        right: 14px;
        bottom: 78px;
        width: min(340px, calc(100vw - 28px));
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.catalog-card-link:focus-visible,
.social-icon:focus-visible,
.footer-dev-trigger:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid var(--color-gold-soft);
    outline-offset: 4px;
    border-radius: 12px;
}

.btn:focus-visible,
.carousel-btn:focus-visible,
.catalog-carousel-btn:focus-visible,
.back-to-top:focus-visible {
    outline-offset: 5px;
    border-radius: 999px;
}

.catalog-card-link:focus-visible {
    border-color: rgba(239, 199, 111, 0.46);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(239, 199, 111, 0.32);
}

.main-nav a:focus-visible,
.mobile-nav a:focus-visible,
.footer-links a:focus-visible {
    color: var(--color-gold-soft);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.oslab-contact-form input:focus,
.oslab-contact-form textarea:focus {
    border-color: rgba(239, 199, 111, 0.58);
    box-shadow: 0 0 0 3px rgba(239, 199, 111, 0.09);
}

.contact-modal-close:focus-visible,
.newsletter-modal-close:focus-visible,
.store-modal-close:focus-visible,
.oslab-contact-close:focus-visible {
    color: var(--color-gold-soft);
    outline: 2px solid rgba(239, 199, 111, 0.72);
    outline-offset: 3px;
    border-radius: 999px;
}

::selection {
    background: rgba(239, 199, 111, 0.32);
    color: var(--color-text);
}

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

    .catalog-card-link:hover,
    .catalog-card-gallery .catalog-card-link:hover,
    .footer-social-icons a:hover,
    .btn:hover,
    .back-to-top:hover {
        transform: none;
    }
}

.content-carousel {
    overflow: visible;
}

.gallery-section {
    overflow-x: clip;
}

.catalog-card-gallery {
    transform-origin: center;
}

.panel-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.panel-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.panel-table th,
.panel-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 247, 234, 0.09);
    text-align: left;
    vertical-align: middle;
}

.panel-table th {
    color: var(--color-gold-soft);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-table td {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.panel-actions a,
.panel-actions button {
    border: 0;
    background: transparent;
    color: var(--color-gold-soft);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-actions a:hover,
.panel-actions button:hover {
    color: var(--color-text);
}

.music-section,
.videos-section,
.gallery-section {
    overflow-x: clip;
    overflow-y: visible;
}

.content-carousel-wrap {
    position: relative;
    padding-inline: 56px;
}

.content-carousel {
    position: relative;
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(239, 199, 111, 0.34);
    border-radius: 999px;
    background: rgba(12, 9, 6, 0.92);
    color: var(--color-gold-soft);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
}

.carousel-btn span {
    display: block;
    transform: translateY(-1px);
    pointer-events: none;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn:hover {
    background: var(--color-gold);
    color: #080706;
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.98);
}

@media (max-width: 980px) {
    .content-carousel-wrap {
        padding-inline: 48px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

@media (max-width: 560px) {
    .content-carousel-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-inline: 0;
    }

    .content-carousel {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .carousel-prev,
    .carousel-next {
        position: static;
        transform: none;
    }

    .carousel-prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .carousel-next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .carousel-btn:hover,
    .carousel-btn:active {
        transform: none;
    }
}

.panel-date-input {
    cursor: pointer;
}

.panel-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.85;
    filter: invert(1) sepia(1) saturate(2) hue-rotate(350deg);
}

.panel-date-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.footer-social-icons .social-icon span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    color: inherit;
    font-size: 0;
}

.footer-social-icons .social-icon span::first-letter {
    font-size: 0;
}

.footer-social-icons .social-icon:not(:has(svg)) {
    font-size: 0;
}

.footer-social-icons .social-icon:not(:has(svg))::before {
    content: attr(aria-label);
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    color: currentColor;
    font-size: 0.58rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.footer-social-icons {
    width: 184px;
    display: grid;
    grid-template-columns: repeat(4, 38px);
    justify-content: start;
    align-items: center;
    gap: 12px 10px;
    margin-left: auto;
}

.footer-social-icons .social-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 247, 234, 0.12);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.035);
    color: var(--color-muted);
    font-size: 0;
    line-height: 1;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.footer-social-icons .social-icon span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.footer-social-icons .social-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.footer-social-icons .social-icon::before,
.footer-social-icons .social-icon::after {
    content: none !important;
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 199, 111, 0.34);
    background: rgba(239, 199, 111, 0.07);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.social-icon-instagram:hover { color: #e4405f; }
.social-icon-youtube:hover { color: #ff2b2b; }
.social-icon-spotify:hover { color: #1db954; }
.social-icon-facebook:hover { color: #4d8dff; }
.social-icon-soundcloud:hover { color: #ff7700; }
.social-icon-deezer:hover { color: #a970ff; }
.social-icon-apple-music:hover,
.social-icon-apple_music:hover { color: #fa586a; }

@media (max-width: 980px) {
    .footer-social-icons {
        margin-left: 0;
    }
}

.seo-page-hero {
    min-height: 54vh;
    display: grid;
    align-items: end;
    padding-top: 170px;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.54), rgba(8, 7, 6, 0.9)),
        url("../img/optimized/cover-hero.webp") center / cover no-repeat;
}

.seo-page-hero h1 {
    max-width: 980px;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.82;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.seo-page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 22px;
    color: var(--color-muted-strong);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}

@media (max-width: 760px) {
    .seo-page-hero {
        min-height: 46vh;
        padding-top: 130px;
    }
}

.seo-page-hero {
    min-height: 46vh;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 72px;
}

.seo-page-hero .container {
    display: grid;
    gap: 18px;
}

.seo-page-hero h1 {
    max-width: 860px;
    font-size: clamp(2.7rem, 7vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.seo-page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 0;
    font-size: clamp(0.98rem, 1.25vw, 1.1rem);
    line-height: 1.62;
}

@media (max-width: 760px) {
    .seo-page-hero {
        min-height: 40vh;
        padding-top: 118px;
        padding-bottom: 54px;
    }

    .seo-page-hero h1 {
        font-size: clamp(2.25rem, 13vw, 3.8rem);
        line-height: 0.94;
        letter-spacing: -0.045em;
    }
}

.seo-page-hero {
    min-height: 34vh;
    align-items: end;
    padding-top: 120px;
    padding-bottom: 48px;
}

.seo-page-hero .container {
    gap: 14px;
}

.seo-page-hero h1 {
    max-width: 720px;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.seo-page-hero p:not(.eyebrow) {
    max-width: 700px;
    font-size: clamp(0.94rem, 1.1vw, 1.04rem);
    line-height: 1.58;
}

@media (max-width: 760px) {
    .seo-page-hero {
        min-height: 30vh;
        padding-top: 108px;
        padding-bottom: 40px;
    }

    .seo-page-hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        line-height: 1.02;
    }
}

.seo-section-page main {
    position: relative;
    min-height: 72vh;
    isolation: isolate;
}

.seo-section-page main::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.74), rgba(8, 7, 6, 0.94)),
        var(--page-bg-image) center / cover no-repeat;
    transform: scale(1.02);
}

.seo-section-page main::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.72), transparent 34%, rgba(8, 7, 6, 0.62)),
        linear-gradient(180deg, rgba(8, 7, 6, 0.28), rgba(8, 7, 6, 0.78));
}

.seo-section-page main > .section:first-child {
    min-height: 72vh;
    display: grid;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 96px;
    background: transparent !important;
}

.seo-section-page .section-heading {
    margin-bottom: 28px;
}

.seo-section-page .section-heading h2 {
    font-size: clamp(2.2rem, 5.6vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.seo-section-page .section-heading p {
    max-width: 660px;
}

.seo-section-page .site-footer {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .seo-section-page main > .section:first-child {
        min-height: 68vh;
        padding-top: 128px;
        padding-bottom: 64px;
    }

    .seo-section-page .section-heading h2 {
        font-size: clamp(2rem, 11vw, 3.3rem);
    }
}

body.seo-section-page {
    background: #080706;
}

.seo-section-page main {
    position: relative;
    min-height: 72vh;
    isolation: isolate;
}

.seo-section-page main::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.48), rgba(8, 7, 6, 0.9)),
        linear-gradient(90deg, rgba(8, 7, 6, 0.76), transparent 42%, rgba(8, 7, 6, 0.58)),
        var(--page-bg-image) center center / cover no-repeat;
    transform: scale(1.02);
}

.seo-section-page main::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(239, 199, 111, 0.08), transparent 28rem),
        linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.72));
}

.seo-section-page main > .section:first-child {
    min-height: 72vh;
    display: grid;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 96px;
    background: transparent !important;
}

.seo-section-page .about-section,
.seo-section-page .music-section,
.seo-section-page .videos-section,
.seo-section-page .gallery-section,
.seo-section-page .section {
    background-color: transparent !important;
}

.seo-section-page .section::before,
.seo-section-page .section::after {
    opacity: 0.18;
}

.seo-section-page .section-heading {
    margin-bottom: 28px;
}

.seo-section-page .section-heading h2 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.seo-section-page .section-heading p {
    max-width: 660px;
}

@media (max-width: 760px) {
    .seo-section-page main > .section:first-child {
        min-height: 68vh;
        padding-top: 128px;
        padding-bottom: 64px;
    }

    .seo-section-page .section-heading h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
}

.back-to-top.back-to-home {
    display: grid;
}

.back-to-top.back-to-home svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.seo-section-page main::before {
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.48), rgba(8, 7, 6, 0.9)),
        linear-gradient(90deg, rgba(8, 7, 6, 0.76), transparent 42%, rgba(8, 7, 6, 0.58)),
        var(--page-bg-image) center 28% / cover no-repeat;
}

@media (max-width: 760px) {
    .seo-section-page main::before {
        background:
            linear-gradient(180deg, rgba(8, 7, 6, 0.5), rgba(8, 7, 6, 0.92)),
            linear-gradient(90deg, rgba(8, 7, 6, 0.72), transparent 48%, rgba(8, 7, 6, 0.58)),
            var(--page-bg-image) center 24% / cover no-repeat;
    }
}

.press-kit-section {
    background: transparent !important;
}

.press-kit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 22px;
    align-items: start;
}

.press-kit-main,
.press-kit-sidebar {
    display: grid;
    gap: 18px;
}

.press-kit-card {
    padding: 22px;
    border: 1px solid rgba(255, 247, 234, 0.1);
    border-radius: 24px;
    background: rgba(12, 9, 6, 0.56);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.press-kit-card h3 {
    margin: 0 0 12px;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.press-kit-card p {
    color: var(--color-muted-strong);
    line-height: 1.65;
}

.press-kit-tags,
.press-kit-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.press-kit-tags span,
.press-kit-links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(255, 247, 234, 0.1);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.035);
    color: var(--color-muted);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.press-kit-links a:hover {
    color: var(--color-gold-soft);
    border-color: rgba(239, 199, 111, 0.3);
    background: rgba(239, 199, 111, 0.06);
}

@media (max-width: 920px) {
    .press-kit-layout {
        grid-template-columns: 1fr;
    }
}

.lazy-embed {
    width: 100%;
    min-height: 152px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239, 199, 111, 0.2);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(239, 199, 111, 0.08), rgba(255, 247, 234, 0.028)),
        rgba(8, 7, 6, 0.72);
    color: var(--color-gold-soft);
    cursor: pointer;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.lazy-embed span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(239, 199, 111, 0.12);
    color: var(--color-gold-soft);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lazy-embed:hover {
    border-color: rgba(239, 199, 111, 0.42);
    background:
        linear-gradient(180deg, rgba(239, 199, 111, 0.12), rgba(255, 247, 234, 0.032)),
        rgba(8, 7, 6, 0.8);
}

.video-embed .lazy-embed,
.video-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 9;
    border: 0;
}

.spotify-player-frame .lazy-embed,
.spotify-player-frame iframe {
    width: 100%;
    min-height: 152px;
    border: 0;
    border-radius: 12px;
}

.hero-cover {
    background-image:
        linear-gradient(180deg, rgba(8, 7, 6, 0.38), rgba(8, 7, 6, 0.84)),
        url("../img/optimized/cover-hero.webp");
}

.news-section,
.news-post-section {
    background: transparent !important;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    overflow: hidden;
    border: 1px solid rgba(255, 247, 234, 0.1);
    border-radius: 24px;
    background: rgba(12, 9, 6, 0.56);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.news-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 247, 234, 0.04);
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-card h3 {
    margin: 0 0 12px;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.news-card h3 a {
    color: inherit;
}

.news-card p {
    color: var(--color-muted-strong);
    line-height: 1.58;
}

.news-post-layout {
    display: grid;
    gap: 22px;
    max-width: 920px;
}

.news-post-header h1 {
    max-width: 860px;
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 6vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.news-post-header > p:not(.card-meta) {
    max-width: 760px;
    margin-top: 18px;
    color: var(--color-muted-strong);
    font-size: 1.08rem;
    line-height: 1.65;
}

.news-post-cover {
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 247, 234, 0.1);
}

.news-post-cover img {
    width: 100%;
    display: block;
}

.news-post-content {
    font-size: 1.03rem;
}

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

.site-footer .footer-column h2 {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    font-weight: 950;
}

.site-footer .footer-links {
    gap: 8px;
}

.site-footer .footer-links a {
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    font-weight: 750;
    opacity: 0.82;
}

.site-footer .footer-links a:hover {
    opacity: 1;
}

.site-footer .footer-clean-bottom small,
.site-footer .footer-clean-bottom a,
.site-footer .footer-dev-trigger {
    font-size: 0.68rem;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .site-footer .footer-column h2 {
        font-size: 0.78rem;
    }

    .site-footer .footer-links a,
    .site-footer .footer-clean-bottom small,
    .site-footer .footer-clean-bottom a,
    .site-footer .footer-dev-trigger {
        font-size: 0.66rem;
    }
}

.home-landing .home-landing-main {
    min-height: calc(100svh - var(--header-height));
}

.home-landing .hero-cover {
    min-height: calc(100svh - var(--header-height));
}

.home-landing .hero-cover-layout {
    min-height: calc(100svh - var(--header-height));
    padding-block: clamp(28px, 5vh, 56px);
}

.home-landing .hero-copy h1 {
    font-size: clamp(3.1rem, 8.2vw, 7.2rem);
}

.home-landing .hero-tagline {
    font-size: clamp(1.2rem, 2.1vw, 2.15rem);
}

.home-landing .hero-description {
    font-size: clamp(0.94rem, 1.15vw, 1.05rem);
}

.home-landing .spotify-player-frame iframe {
    height: clamp(260px, 38vh, 352px);
}

.gallery-lightbox-trigger {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.gallery-lightbox-trigger img {
    transition: transform 0.24s ease, filter 0.24s ease;
}

.gallery-lightbox-trigger:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.88);
    backdrop-filter: blur(10px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 1120px);
    max-height: calc(100svh - 48px);
    display: grid;
    gap: 12px;
    margin: 0;
}

.gallery-lightbox-dialog img {
    width: 100%;
    max-height: calc(100svh - 118px);
    object-fit: contain;
    border-radius: 22px;
    border: 1px solid rgba(255, 247, 234, 0.12);
    background: #050403;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-dialog figcaption {
    color: var(--color-muted);
    font-size: 0.86rem;
    text-align: center;
}

.gallery-lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(239, 199, 111, 0.28);
    border-radius: 999px;
    background: rgba(7, 6, 4, 0.92);
    color: var(--color-gold-soft);
    font-size: 1.8rem;
    line-height: 1;
}

.gallery-lightbox-close:hover {
    background: var(--color-gold);
    color: #080706;
}

@media (max-width: 980px) {
    .home-landing .hero-cover {
        min-height: calc(100svh - var(--header-height));
        padding: 0;
        align-items: center;
    }

    .home-landing .hero-cover-layout {
        min-height: calc(100svh - var(--header-height));
        padding-block: clamp(22px, 4vh, 42px);
    }

    .home-landing .spotify-player-frame iframe {
        height: clamp(220px, 34vh, 320px);
    }
}

@media (max-width: 560px) {
    .home-landing .hero-copy h1 {
        font-size: clamp(2.8rem, 15vw, 4.8rem);
    }

    .home-landing .hero-tagline {
        margin-top: 18px;
    }

    .home-landing .hero-description {
        margin-top: 16px;
        line-height: 1.55;
    }

    .home-landing .hero-actions {
        margin-top: 22px;
    }

    .gallery-lightbox {
        padding: 14px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .gallery-lightbox-dialog img {
        max-height: calc(100svh - 96px);
        border-radius: 16px;
    }
}

.catalog-card-gallery-lightbox {
    cursor: default;
}

.catalog-card-gallery-lightbox .gallery-lightbox-trigger {
    cursor: zoom-in;
}

.seo-section-page {
    background-size: min(1100px, 92vw) auto, cover;
    background-position: center top, center center;
    background-repeat: no-repeat;
}

.seo-section-page::before {
    background-size: min(1100px, 92vw) auto;
    background-position: center top;
    background-repeat: no-repeat;
}

.gallery-lightbox-close {
    width: auto;
    min-width: 42px;
    padding: 0 14px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-lightbox-close strong {
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 560px) {
    .gallery-lightbox-close span {
        display: none;
    }

    .gallery-lightbox-close {
        width: 42px;
        min-width: 42px;
        padding: 0;
    }
}

.home-landing .hero-player-card {
    backdrop-filter: none;
}

.home-landing .hero-grain {
    opacity: 0.06;
}

.hero-cover .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 6, 4, calc(var(--hero-overlay-strength, 0.42) + 0.28)) 0%,
            rgba(7, 6, 4, var(--hero-overlay-strength, 0.42)) 48%,
            rgba(7, 6, 4, max(calc(var(--hero-overlay-strength, 0.42) - 0.22), 0)) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 6, 4, 0.04),
            rgba(7, 6, 4, 0.24)
        ),
        radial-gradient(
            circle at 18% 48%,
            rgba(239, 199, 111, 0.10),
            transparent 28rem
        );
}

.home-landing .hero-bg img {
    filter: none;
}

.home-landing .hero-player-card {
    backdrop-filter: none;
}

.home-landing .hero-grain {
    opacity: 0.06;
}

@media (max-width: 980px) {
    .hero-cover .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 6, 4, max(calc(var(--hero-overlay-strength, 0.42) - 0.12), 0)) 0%,
                rgba(7, 6, 4, calc(var(--hero-overlay-strength, 0.42) + 0.12)) 100%
            ),
            linear-gradient(
                90deg,
                rgba(7, 6, 4, var(--hero-overlay-strength, 0.42)),
                rgba(7, 6, 4, 0.12)
            );
    }

    .home-landing .hero-bg img {
        filter: none;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.hero-cover {
    --hero-bg-position: center 28%;
}

.hero-bg img {
    object-position: var(--hero-bg-position);
}

.spotify-player-frame iframe {
    height: clamp(280px, 42vh, 352px);
}

@media (max-width: 1100px) {
    :root {
        --container: 1040px;
    }

    .hero-cover-layout {
        gap: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    }

    .hero-copy h1 {
        max-width: 680px;
    }

    .carousel-prev {
        left: -18px;
    }

    .carousel-next {
        right: -18px;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 88px;
    }

    .section {
        min-height: auto;
        padding: 64px 0;
    }

    .hero-cover {
        min-height: calc(100svh - var(--header-height));
        padding: 72px 0 44px;
        align-items: center;
        --hero-bg-position: center top;
    }

    .hero-cover-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-copy h1 {
        font-size: clamp(3.1rem, 13vw, 5.6rem);
        line-height: 0.9;
    }

    .hero-tagline {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .hero-description {
        max-width: 680px;
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-player-card {
        justify-self: stretch;
        max-width: 620px;
        width: 100%;
    }

    .spotify-player-frame iframe {
        height: 300px;
    }

    .about-layout,
    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading-split > p {
        justify-self: start;
    }

    .content-carousel-page.is-active {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-carousel-wrap {
        padding: 0 42px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .footer-clean {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column-social {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 84px;
        --section-padding-mobile: 52px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-header {
        background: linear-gradient(180deg, rgba(7, 6, 4, 0.98), rgba(7, 6, 4, 0.9));
    }

    .header-split {
        min-height: var(--header-height);
        padding: 10px 0;
    }

    .brand-logo {
        height: clamp(48px, 14vw, 64px);
        max-width: min(190px, 58vw);
    }

    .mobile-nav {
        left: 14px;
        right: 14px;
        max-height: calc(100svh - var(--header-height) - 24px);
        overflow: auto;
    }

    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .section h1,
    .section h2,
    .section-heading h2 {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .hero-cover {
        min-height: calc(100svh - var(--header-height));
        padding: 54px 0 36px;
        --hero-bg-position: center top;
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 50% 22%, rgba(239, 199, 111, 0.12), transparent 18rem),
            linear-gradient(180deg, rgba(7, 6, 4, 0.18), rgba(7, 6, 4, 0.72));
    }

    .hero-grain {
        opacity: 0.08;
        mask-image: linear-gradient(180deg, black, transparent 86%);
    }

    .hero-cover-layout {
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: clamp(2.85rem, 17vw, 4.45rem);
        line-height: 0.9;
        letter-spacing: -0.05em;
    }

    .hero-tagline {
        margin-top: 18px;
    }

    .hero-description {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 46px;
    }

    .hero-player-card {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-player-top {
        margin-bottom: 10px;
    }

    .hero-player-top h2 {
        font-size: clamp(1.2rem, 7vw, 1.55rem);
    }

    .spotify-player-frame {
        border-radius: 16px;
    }

    .spotify-player-frame iframe {
        height: 280px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading p {
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .editorial-text {
        padding-left: 18px;
    }

    .editorial-text p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .content-carousel-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
    }

    .content-carousel {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .content-carousel-page.is-active {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalog-card-link {
        padding: 12px;
        border-radius: 20px;
    }

    .catalog-card-media {
        border-radius: 16px;
    }

    .carousel-prev,
    .carousel-next {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
    }

    .carousel-prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .carousel-next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .carousel-dots {
        margin-top: 18px;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .contact-modal,
    .newsletter-modal {
        padding: 14px;
    }

    .contact-modal-dialog,
    .newsletter-modal-dialog {
        max-height: calc(100svh - 28px);
        padding: 20px;
        border-radius: 22px;
    }

    .footer-clean-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-clean-bottom small {
        display: block;
    }

    .footer-clean-bottom a {
        display: inline-block;
        margin-top: 4px;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 18vw, 3.6rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .spotify-player-frame iframe {
        height: 260px;
    }

    .btn {
        padding-inline: 16px;
        font-size: 0.72rem;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.hero-cover {
    --hero-bg-position: center 28%;
}

.hero-bg img {
    object-position: var(--hero-bg-position);
}

.spotify-player-frame iframe {
    height: clamp(280px, 42vh, 352px);
}

@media (max-width: 1100px) {
    :root {
        --container: 1040px;
    }

    .hero-cover-layout {
        gap: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    }

    .hero-copy h1 {
        max-width: 680px;
    }

    .carousel-prev {
        left: -18px;
    }

    .carousel-next {
        right: -18px;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 88px;
    }

    .section {
        min-height: auto;
        padding: 64px 0;
    }

    .hero-cover {
        min-height: calc(100svh - var(--header-height));
        padding: 72px 0 44px;
        align-items: center;
        --hero-bg-position: center top;
    }

    .hero-cover-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-copy h1 {
        font-size: clamp(3.1rem, 13vw, 5.6rem);
        line-height: 0.9;
    }

    .hero-tagline {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .hero-description {
        max-width: 680px;
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-player-card {
        justify-self: stretch;
        max-width: 620px;
        width: 100%;
    }

    .spotify-player-frame iframe {
        height: 300px;
    }

    .about-layout,
    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading-split > p {
        justify-self: start;
    }

    .content-carousel-page.is-active {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-carousel-wrap {
        padding: 0 42px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .footer-clean {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column-social {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 84px;
        --section-padding-mobile: 52px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-header {
        background: linear-gradient(180deg, rgba(7, 6, 4, 0.98), rgba(7, 6, 4, 0.9));
    }

    .header-split {
        min-height: var(--header-height);
        padding: 10px 0;
    }

    .brand-logo {
        height: clamp(48px, 14vw, 64px);
        max-width: min(190px, 58vw);
    }

    .mobile-nav {
        left: 14px;
        right: 14px;
        max-height: calc(100svh - var(--header-height) - 24px);
        overflow: auto;
    }

    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .section h1,
    .section h2,
    .section-heading h2 {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .hero-cover {
        min-height: calc(100svh - var(--header-height));
        padding: 54px 0 36px;
        --hero-bg-position: center top;
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 50% 22%, rgba(239, 199, 111, 0.12), transparent 18rem),
            linear-gradient(180deg, rgba(7, 6, 4, 0.18), rgba(7, 6, 4, 0.72));
    }

    .hero-grain {
        opacity: 0.08;
        mask-image: linear-gradient(180deg, black, transparent 86%);
    }

    .hero-cover-layout {
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: clamp(2.85rem, 17vw, 4.45rem);
        line-height: 0.9;
        letter-spacing: -0.05em;
    }

    .hero-tagline {
        margin-top: 18px;
    }

    .hero-description {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 46px;
    }

    .hero-player-card {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-player-top {
        margin-bottom: 10px;
    }

    .hero-player-top h2 {
        font-size: clamp(1.2rem, 7vw, 1.55rem);
    }

    .spotify-player-frame {
        border-radius: 16px;
    }

    .spotify-player-frame iframe {
        height: 280px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading p {
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .editorial-text {
        padding-left: 18px;
    }

    .editorial-text p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .content-carousel-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
    }

    .content-carousel {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .content-carousel-page.is-active {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalog-card-link {
        padding: 12px;
        border-radius: 20px;
    }

    .catalog-card-media {
        border-radius: 16px;
    }

    .carousel-prev,
    .carousel-next {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
    }

    .carousel-prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .carousel-next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .carousel-dots {
        margin-top: 18px;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .contact-modal,
    .newsletter-modal {
        padding: 14px;
    }

    .contact-modal-dialog,
    .newsletter-modal-dialog {
        max-height: calc(100svh - 28px);
        padding: 20px;
        border-radius: 22px;
    }

    .footer-clean-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-clean-bottom small {
        display: block;
    }

    .footer-clean-bottom a {
        display: inline-block;
        margin-top: 4px;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 18vw, 3.6rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .spotify-player-frame iframe {
        height: 260px;
    }

    .btn {
        padding-inline: 16px;
        font-size: 0.72rem;
    }
}


/* Final polish — contact and event modal */
.contact-direct-box {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid rgba(239, 199, 111, 0.18);
    border-radius: 18px;
    background: rgba(255, 247, 234, 0.04);
}

.contact-direct-box strong {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.contact-direct-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-direct-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(239, 199, 111, 0.22);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.event-modal.is-open {
    display: flex;
}

.event-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 6, 4, 0.78);
    backdrop-filter: blur(14px);
}

.event-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100svh - 44px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(239, 199, 111, 0.22);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(23, 19, 13, 0.98), rgba(8, 7, 5, 0.98));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.event-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 247, 234, 0.12);
    border-radius: 999px;
    background: rgba(255, 247, 234, 0.05);
    color: var(--color-text);
    cursor: pointer;
}

.event-modal-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.event-modal-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 6vw, 2.6rem);
    line-height: 0.95;
}

.event-modal-heading p {
    margin: 0;
    color: var(--color-muted);
}

.event-modal-body {
    color: var(--color-muted);
    line-height: 1.75;
    white-space: pre-wrap;
}

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

.agenda-detail-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 560px) {
    .event-modal-dialog {
        padding: 22px;
        border-radius: 22px;
    }

    .event-modal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .event-modal-actions .btn {
        width: 100%;
    }
}

/* === Contact modal form-only polish === */
.contact-modal-dialog .contact-form {
    margin-top: 0;
}

.contact-modal-dialog .form-message {
    margin-bottom: 16px;
}

/* === Contact modal form-only === */
.contact-modal-dialog .contact-direct-box {
    display: none !important;
}

.contact-modal-dialog .contact-form {
    margin-top: 0;
}
