/* ==========================================================================
   MASSIMILIANO FERRATI — Official Website
   Elegant & Refined Design for Classical Concert Pianist
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Palette */
    --color-black: #080808;
    --color-dark: #0e0e0e;
    --color-charcoal: #161616;
    --color-graphite: #222222;
    --color-muted: #999999;
    --color-light: #d4d0c8;
    --color-cream: #f5f0e8;
    --color-white: #f8f6f2;
    --color-gold: #c9a84c;
    --color-gold-light: #e2c97e;
    --color-gold-dark: #a6882e;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-display: 'Playfair Display', 'Georgia', serif;

    /* Spacing */
    --section-padding: 130px;
    --container-width: 1200px;

    /* Transitions */
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.4s var(--ease-elegant);
    --transition-slow: 0.8s var(--ease-elegant);
    --transition-ultra: 1.2s var(--ease-out-expo);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.section-header h2 span {
    color: var(--color-gold);
}

.section-header .subtitle {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 400;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto 0;
    opacity: 0.6;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.site-logo:hover {
    color: var(--color-gold);
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-light);
    position: relative;
    padding: 4px 0;
    font-weight: 400;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-gold);
}

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

/* Nav dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    padding: 6px 0;
    margin-top: 16px;
    background: rgba(14, 14, 14, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    z-index: 100;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 7px 24px;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-dropdown a::after {
    display: none !important;
}

.nav-dropdown a:hover {
    background: rgba(201, 168, 76, 0.08);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Language Switcher — Circular Flags */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    opacity: 0.6;
    transition: all var(--transition-base);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.lang-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-flag:hover {
    opacity: 0.85;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--color-gold);
    pointer-events: none;
    box-shadow: 0 0 0 1px var(--color-gold);
}

/* Desktop: switcher sits beside nav */
.lang-switch-desktop {
    margin-left: 0;
}

/* Inside mobile menu: hidden on desktop */
.main-nav .lang-switch {
    display: none;
}

/* Header Actions (social + search + lang) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.header-social a {
    color: var(--color-muted);
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
}

.header-social a:hover {
    color: var(--color-gold);
}

.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-base);
    position: relative;
}

.header-search-btn::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.header-search-btn:hover {
    color: var(--color-gold);
}

/* ---------- Search Overlay ---------- */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out-expo), visibility 0.35s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -48px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.search-close:hover {
    color: var(--color-gold);
}

.search-field-wrap {
    position: relative;
    width: 100%;
}

.search-field-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    padding: 18px 24px 18px 52px;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #fff;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.search-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.search-hint {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.03em;
}

.search-results {
    margin-top: 24px;
    max-height: 52vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 2px;
}

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

.search-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.search-section-title svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s;
}

.search-result-item:hover {
    background: rgba(201, 168, 76, 0.08);
}

.search-result-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-result-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-date {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.search-empty {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 32px 0;
}

@media (max-width: 640px) {
    .search-overlay {
        padding-top: 6vh;
    }

    .search-input {
        font-size: 1rem;
        padding: 14px 18px 14px 46px;
    }

    .search-close {
        top: -40px;
        right: 16px;
    }

    .search-results {
        max-height: 60vh;
    }

    .search-result-title {
        font-size: 0.92rem;
    }
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 20px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--color-gold-light);
    font-weight: 300;
}

@keyframes preloaderPulse {
    0%, 100% { width: 30px; opacity: 0.4; }
    50% { width: 60px; opacity: 1; }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s var(--ease-smooth);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.08);
    transition: transform 10s linear;
    filter: brightness(0.85);
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.35) 0%,
        rgba(8, 8, 8, 0.2) 30%,
        rgba(8, 8, 8, 0.3) 55%,
        rgba(8, 8, 8, 0.7) 80%,
        rgba(8, 8, 8, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 14%;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-content h1 span {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--color-gold-light);
    font-size: 1.15em;
    letter-spacing: 0.02em;
}

.hero-content .hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-style: italic;
    color: rgba(212, 208, 200, 0.7);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-light);
}

.btn-ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease-out-expo) 1.6s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 400;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

/* Hero slider navigation */
.hero-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-nav-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.hero-nav-dot:hover {
    border-color: var(--color-gold);
}

/* Hero slide counter */
.hero-slide-counter {
    position: absolute;
    bottom: 14%;
    left: 40px;
    z-index: 4;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    opacity: 0;
    animation: heroFadeIn 1s var(--ease-out-expo) 1.4s forwards;
}

.counter-current {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 400;
}

.counter-sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.2);
}

.counter-total {
    color: var(--color-muted);
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

/* ---------- Sections Common ---------- */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-dark);
}

.section-charcoal {
    background-color: var(--color-charcoal);
}

.section-cream {
    background-color: var(--color-cream);
    color: var(--color-dark);
}

.section-cream .section-header h2 {
    color: var(--color-dark);
}

.section-cream .section-header h2 span {
    color: var(--color-gold-dark);
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Events Section ---------- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--color-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-gold);
    transition: height var(--transition-base);
}

.event-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.event-card:hover::before {
    height: 100%;
}

.event-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.event-date .month-year {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.event-date-range {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(201, 168, 76, 0.75);
    margin-top: 3px;
}

.event-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--color-white);
}

.event-card .event-venue {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.event-card .event-location {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.event-card .event-type {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--color-gold-light);
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.event-card .event-time {
    font-size: 0.82rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

.event-card .btn-small {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.72rem;
    padding: 8px 24px;
}

.no-events {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-muted);
    grid-column: 1 / -1;
    padding: 40px 0;
}

/* ---------- Events Page ---------- */
.events-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.events-hero-bg {
    position: absolute;
    inset: 0;
}

.events-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.85) 100%);
}

.events-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.events-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-top: 8px;
}

.events-hero-content .subtitle {
    color: var(--color-gold);
}

/* Timeline section */
.events-timeline-section {
    background: var(--color-black);
    padding-bottom: var(--section-padding);
}

/* === Events Layout — Editorial Timeline === */
.events-layout {
    display: flex;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.timeline-sidebar {
    width: 140px;
    flex-shrink: 0;
    position: relative;
}

.timeline-sticky-date {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
}

/* Decorative frame */
.sticky-date-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 20px 16px;
    min-width: 100px;
}

/* Corner accents */
.sticky-date-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(201, 168, 76, 0.25);
    border-style: solid;
}

.sticky-date-corner--tl {
    top: 0; left: 0;
    border-width: 1px 0 0 1px;
}

.sticky-date-corner--tr {
    top: 0; right: 0;
    border-width: 1px 1px 0 0;
}

.sticky-date-corner--bl {
    bottom: 0; left: 0;
    border-width: 0 0 1px 1px;
}

.sticky-date-corner--br {
    bottom: 0; right: 0;
    border-width: 0 1px 1px 0;
}

.sticky-month {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-gold);
    line-height: 1;
    text-align: center;
    transition: opacity 0.4s var(--ease-elegant), transform 0.4s var(--ease-elegant);
}

.sticky-month.is-changing {
    opacity: 0;
    transform: translateY(-6px);
}

.sticky-divider {
    display: block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 10px auto;
    opacity: 0.35;
}

.sticky-year {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: rgba(201, 168, 76, 0.6);
    text-align: center;
    transition: opacity 0.4s var(--ease-elegant), transform 0.4s var(--ease-elegant);
}

.sticky-year.is-changing {
    opacity: 0;
    transform: translateY(4px);
}

.timeline-main {
    flex: 1;
    min-width: 0;
}

/* Fade overlay */
.timeline-fade {
    position: relative;
}

.timeline-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--color-black));
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.timeline-fade.all-loaded::after {
    opacity: 0;
}

/* Timeline container */
.timeline {
    position: relative;
    padding: 0 0 0 28px;
}

/* Vertical accent line */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.14) 4%, rgba(201, 168, 76, 0.14) 96%, transparent);
}

/* Event items */
.timeline-item {
    position: relative;
    width: 100%;
    padding: 0;
    text-align: left;
    opacity: 0;
    animation: eventReveal 0.6s var(--ease-out-expo) forwards;
}

@keyframes eventReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-item:nth-child(1)  { animation-delay: 0.02s; }
.timeline-item:nth-child(2)  { animation-delay: 0.06s; }
.timeline-item:nth-child(3)  { animation-delay: 0.10s; }
.timeline-item:nth-child(4)  { animation-delay: 0.14s; }
.timeline-item:nth-child(5)  { animation-delay: 0.18s; }
.timeline-item:nth-child(6)  { animation-delay: 0.22s; }
.timeline-item:nth-child(7)  { animation-delay: 0.26s; }
.timeline-item:nth-child(8)  { animation-delay: 0.30s; }

/* Event card */
.timeline-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 28px 28px 24px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 0;
    position: relative;
    transition: background 0.4s var(--ease-elegant);
}

/* Diamond marker on the line */
.timeline-card::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 40px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: rgba(201, 168, 76, 0.3);
    border: 1px solid var(--color-black);
    z-index: 2;
    transition: all 0.4s var(--ease-elegant);
}

.timeline-item:hover .timeline-card {
    background: rgba(201, 168, 76, 0.02);
}

.timeline-item:hover .timeline-card::before {
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.35);
}

/* Date block */
.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    flex-shrink: 0;
    padding-top: 2px;
}

/* Multi-day range layout */
.timeline-date--range {
    min-width: auto;
    align-items: flex-start;
    gap: 0;
    padding-top: 4px;
}

.timeline-date-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.4;
}

.timeline-date-label {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.7);
    min-width: 30px;
}

.timeline-date-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--color-gold);
    white-space: nowrap;
}

.timeline-duration {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.08);
    padding: 3px 10px;
    border-radius: 10px;
    margin-top: 6px;
    white-space: nowrap;
    display: inline-block;
}

/* Past events — range overrides */
.timeline-past .timeline-date-label {
    color: rgba(255, 255, 255, 0.3);
}

.timeline-past .timeline-date-value {
    color: var(--color-muted);
}

.timeline-day {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.timeline-month {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 6px;
}

.timeline-year {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
}

/* Body */
.timeline-body {
    flex: 1;
    min-width: 0;
}

.timeline-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.timeline-venue {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-accent);
    font-size: 0.88rem;
    color: var(--color-gold-light);
    margin-bottom: 4px;
}

.timeline-venue svg {
    flex-shrink: 0;
    color: var(--color-gold);
    opacity: 0.7;
}

.timeline-location {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.timeline-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 0;
}

.timeline-type {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.06);
    padding: 4px 12px;
    border-radius: 2px;
}

.timeline-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.timeline-time svg {
    color: var(--color-gold);
    opacity: 0.65;
}

.timeline-body .btn-small {
    margin-top: 14px;
}

/* Next imminent event — highlighted */
.timeline-next .timeline-card {
    background: rgba(201, 168, 76, 0.04);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    border-left: 2px solid var(--color-gold);
    padding-left: 22px;
    padding-top: 38px;
}

.timeline-next .timeline-card::before {
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5), 0 0 24px rgba(201, 168, 76, 0.15);
    width: 8px;
    height: 8px;
}

.timeline-next-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 3px 12px;
    border-radius: 2px;
    line-height: 1.4;
}

.timeline-next .timeline-day {
    font-size: 2.6rem;
}

.timeline-next .timeline-body h3 {
    font-size: 1.2rem;
    color: #fff;
}

.timeline-next .timeline-date-value {
    font-size: 0.95rem;
}

/* Ongoing events — in progress, pulsing accent */
.timeline-ongoing .timeline-card {
    background: rgba(201, 168, 76, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    border-left: 2px solid var(--color-gold);
    padding-left: 22px;
    padding-top: 38px;
}

.timeline-ongoing .timeline-card::before {
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5), 0 0 24px rgba(201, 168, 76, 0.15);
    width: 8px;
    height: 8px;
    animation: ongoingPulse 2s ease-in-out infinite;
}

@keyframes ongoingPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(201, 168, 76, 0.5), 0 0 24px rgba(201, 168, 76, 0.15); }
    50% { box-shadow: 0 0 18px rgba(201, 168, 76, 0.8), 0 0 36px rgba(201, 168, 76, 0.3); }
}

.timeline-ongoing-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 3px 12px;
    border-radius: 2px;
    line-height: 1.4;
}

.timeline-ongoing-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-black);
    animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes liveDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.timeline-ongoing .timeline-body h3 {
    color: #fff;
}

.timeline-ongoing .timeline-date-value {
    font-size: 0.95rem;
}

/* Past events — desaturated, no gold, fully readable */
.timeline-past .timeline-card {
    opacity: 1;
    border-bottom-color: rgba(255, 255, 255, 0.02);
}

.timeline-past .timeline-card::before {
    background: rgba(100, 100, 100, 0.3);
}

.timeline-past:hover .timeline-card {
    background: rgba(255, 255, 255, 0.015);
}

.timeline-past:hover .timeline-card::before {
    background: var(--color-muted);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.06);
}

.timeline-past .timeline-day {
    color: var(--color-muted);
}

.timeline-past .timeline-month,
.timeline-past .timeline-year {
    color: rgba(255, 255, 255, 0.3);
}

.timeline-past .timeline-range-sep {
    color: rgba(255, 255, 255, 0.2);
}

.timeline-past .timeline-duration {
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.04);
}

.timeline-past .timeline-body h3 {
    color: var(--color-light);
}

.timeline-past .timeline-venue {
    color: var(--color-muted);
}

.timeline-past .timeline-venue svg {
    color: var(--color-muted);
    opacity: 0.6;
}

.timeline-past .timeline-type {
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.05);
}

.timeline-past .timeline-time svg {
    color: var(--color-muted);
    opacity: 0.6;
}

/* "NOW" marker */
.timeline-now {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    margin-left: -28px;
    position: relative;
    z-index: 3;
}

.timeline-now-line {
    flex: 1;
    height: 1px;
}

.timeline-now-line:first-child {
    background: linear-gradient(90deg, var(--color-black), var(--color-gold));
}

.timeline-now-line:last-child {
    background: linear-gradient(90deg, var(--color-gold), var(--color-black));
}

.timeline-now-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-now-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    background: var(--color-black);
    padding: 5px 16px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 20px;
    white-space: nowrap;
}

.timeline-now-date {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(201, 168, 76, 0.75);
    margin-top: 5px;
    white-space: nowrap;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ---------- Album / Discography Section ---------- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.album-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-cover {
    position: relative;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}

.album-card:hover .album-cover-overlay {
    opacity: 1;
}

.album-play-label {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: .6rem 1.6rem;
    transition: background .25s, color .25s;
}

.album-card:hover .album-play-label {
    background: var(--color-gold);
    color: var(--color-black);
}

.album-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 1.2rem;
    margin-bottom: .25rem;
    letter-spacing: .02em;
}

.album-card-sub {
    font-family: var(--font-accent);
    font-size: .82rem;
    color: var(--color-gold);
    font-style: italic;
    letter-spacing: .01em;
}

.btn {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    transition: all var(--transition-base);
    cursor: pointer;
    background: none;
    font-family: var(--font-body);
}

.btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-filled {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-filled:hover {
    background: var(--color-gold-light);
}

/* ---------- Gallery Section ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    transition: background var(--transition-base);
    pointer-events: none;
}

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

.gallery-item:hover::after {
    background: rgba(10, 10, 10, 0.25);
}

/* ---------- Lightbox ---------- */
.lightbox {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(4, 4, 4, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0.5s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s 0s;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.45s ease;
    border-radius: 2px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}

.lightbox-img.loaded {
    opacity: 1;
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-light);
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease 0.15s;
}

.lightbox-counter {
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.12em;
    opacity: 0;
    transition: opacity 0.35s ease 0.15s;
}

.lightbox-img.loaded ~ .lightbox-caption,
.lightbox-img.loaded ~ .lightbox-counter {
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    z-index: 10001;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
    padding: 8px;
    opacity: 0;
}

.lightbox.active .lightbox-close {
    opacity: 1;
    transition-delay: 0.2s;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.15);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3.2rem;
    cursor: pointer;
    padding: 16px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
    user-select: none;
    opacity: 0;
}

.lightbox.active .lightbox-prev,
.lightbox.active .lightbox-next {
    opacity: 1;
    transition-delay: 0.25s;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .lightbox-prev { left: 4px; font-size: 2rem; padding: 10px; }
    .lightbox-next { right: 4px; font-size: 2rem; padding: 10px; }
    .lightbox-close { top: 10px; right: 14px; font-size: 2rem; }
}

/* ---------- Video Showcase (3 featured) ---------- */
.section-fullwidth {
    overflow: hidden;
}

.video-showcase {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 0;
    padding-bottom: 34%;
    margin: 0 auto;
}

.video-card {
    position: absolute;
    width: 52%;
    top: 50%;
    left: 0;
    right: auto;
    transform: translateY(-50%) scale(0.78);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.7s ease;
    cursor: pointer;
}

/* --- Slot: center (active) --- */
.video-card.pos-center {
    left: 24%;
    transform: translateY(-50%) scale(1);
    z-index: 3;
    opacity: 1;
    filter: brightness(1);
    cursor: default;
}

/* --- Slot: left --- */
.video-card.pos-left {
    left: 0;
    transform: translateY(-50%) scale(0.78);
    z-index: 1;
    opacity: 0.5;
    filter: brightness(0.55);
}

/* --- Slot: right --- */
.video-card.pos-right {
    left: 48%;
    transform: translateY(-50%) scale(0.78);
    z-index: 1;
    opacity: 0.5;
    filter: brightness(0.55);
}

.video-card-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-charcoal);
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    transition: box-shadow 0.7s ease;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    padding: 0;
}

.video-play-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card.pos-center .video-card-player {
    box-shadow: 0 8px 50px rgba(0,0,0,0.6);
}

.video-card-info {
    text-align: center;
    margin-top: 18px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.video-card.pos-center .video-card-info {
    opacity: 1;
    transform: translateY(0);
}

.video-piece {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.video-caption {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-muted);
}

/* Video Showcase Arrows */
.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-white);
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.video-arrow:hover {
    background: rgba(201,168,76,0.15);
    color: var(--color-gold);
    border-color: rgba(201,168,76,0.4);
}

.video-arrow-left {
    left: 16px;
}

.video-arrow-right {
    right: 16px;
}

/* Responsive video showcase */
@media (max-width: 1024px) {
    .video-showcase {
        padding-bottom: 38%;
    }
    .video-card {
        width: 54%;
    }
    .video-card.pos-left,
    .video-card.pos-right {
        transform: translateY(-50%) scale(0.75);
    }
}

@media (max-width: 768px) {
    .video-arrow {
        display: none;
    }
    .video-showcase {
        position: static;
        height: auto;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
    }
    .video-card,
    .video-card.pos-left,
    .video-card.pos-center,
    .video-card.pos-right {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        filter: none;
        order: 0;
        cursor: default;
        z-index: auto;
    }
    .video-card-player {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .video-card-info {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
}

/* ---------- Reviews Section ---------- */
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.review-slide {
    display: none;
    text-align: center;
    padding: 0 20px;
    animation: fadeSlide 0.6s var(--ease-elegant);
}

.review-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-quote {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    line-height: 1.9;
    color: var(--color-light);
    margin-bottom: 30px;
    position: relative;
}

.review-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.review-source img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.review-source .source-name {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.review-source .source-location {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    font-weight: 400;
}

.review-source .source-name::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    vertical-align: middle;
    margin: 0 10px;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.reviews-nav button {
    width: 30px;
    height: 2px;
    background: var(--color-graphite);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.reviews-nav button.active {
    background: var(--color-gold);
    width: 50px;
}

/* ---------- News Section ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: var(--color-charcoal);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

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

.news-card-date {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--color-white);
}

.news-card p {
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.news-card .read-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    position: relative;
}

.news-card .read-more::after {
    content: ' →';
    transition: transform var(--transition-base);
    display: inline-block;
}

.news-card:hover .read-more::after {
    transform: translateX(4px);
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-links a {
    font-size: 0.85rem;
    color: var(--color-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-links a:hover {
    color: var(--color-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* ---------- Contact Page ---------- */
.contact-page-header {
    background: var(--color-black);
    padding: 120px 0 40px;
    text-align: center;
}

.contact-page-section {
    background: var(--color-black);
    padding: 0 0 var(--section-padding);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-block-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-org {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
}

.contact-person {
    font-size: 0.95rem;
    color: var(--color-light);
    font-style: italic;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-light);
    line-height: 1.6;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
}

.contact-detail a {
    color: var(--color-light);
    transition: color var(--transition-base);
}

.contact-detail a:hover {
    color: var(--color-gold);
}

.contact-memberships {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-memberships p {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.contact-membership-label {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-right: 4px;
}

.contact-form-intro {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-form .btn-success {
    background: #2a7d4f;
    border-color: #2a7d4f;
}

.contact-form .btn-error {
    background: #8b2c2c;
    border-color: #8b2c2c;
}

/* ---------- Music / Discography Page ---------- */

/* -- Music Hero -- */
.music-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.music-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.08);
    animation: musicHeroZoom 20s ease-out forwards;
}

@keyframes musicHeroZoom {
    to { transform: scale(1); }
}

.music-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.55) 0%,
        rgba(8,8,8,0.85) 100%
    );
}

.music-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.music-hero-content .section-label {
    display: block;
    margin-bottom: 16px;
}

.music-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.music-hero-rule {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto;
}

.music-hero-count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
}

/* -- Disc Section -- */
.disc-section {
    background: var(--color-black);
}

/* -- Each album block -- */
.disc-album {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.disc-album--reverse {
    direction: rtl;
}

.disc-album--reverse > * {
    direction: ltr;
}

/* -- Visual side: cover -- */
.disc-album-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.disc-album:nth-child(odd) .disc-album-visual {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0e0e0e 100%);
}

.disc-album:nth-child(even) .disc-album-visual {
    background: linear-gradient(135deg, #0e0e0e 0%, #0a0a0a 50%, #111 100%);
}

.disc-cover {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(201,168,76,0.08),
        0 0 120px rgba(201,168,76,0.03);
    transition: transform 0.8s var(--ease-out-expo), box-shadow 0.8s var(--ease-out-expo);
}

.disc-cover:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(201,168,76,0.15),
        0 0 160px rgba(201,168,76,0.06);
}

.disc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disc-cover-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255,255,255,0.03) 50%,
        transparent 70%
    );
    pointer-events: none;
}

/* -- Content side -- */
.disc-album-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
}

.disc-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    opacity: 0.75;
    margin-bottom: 24px;
}

.disc-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.disc-title span {
    display: block;
    font-style: italic;
    color: var(--color-gold-light);
    font-size: 0.55em;
    letter-spacing: 0.02em;
    margin-top: 4px;
    font-weight: 300;
}

.disc-artist {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.disc-details {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.disc-details span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    position: relative;
}

.disc-details span + span::before {
    content: '·';
    position: absolute;
    left: -13px;
    color: var(--color-gold);
    opacity: 0.6;
}

.disc-tracks {
    margin-bottom: 36px;
}

.disc-tracks h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.85;
}

.disc-tracks ol {
    list-style: none;
    counter-reset: trk;
    padding: 0;
}

.disc-tracks li {
    counter-increment: trk;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: baseline;
    gap: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.disc-tracks li:hover {
    color: rgba(255,255,255,0.8);
}

.disc-tracks li::before {
    content: counter(trk, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(201,168,76,0.55);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    width: 22px;
}

.disc-tracks li:last-child {
    border-bottom: none;
}

/* -- Buy links -- */
.disc-buy {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.disc-buy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.4s ease;
}

.disc-buy-link:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-1px);
}

/* ---------- Bio Page ---------- */

/* -- Utility containers -- */
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* -- Hero: full viewport cinematic open -- */
.bio-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.bio-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.bio-hero-image img {
    display: block;
    width: 100%;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.05);
    animation: bioHeroZoom 20s ease-out forwards;
}

@keyframes bioHeroZoom {
    to { transform: scale(1); }
}

.bio-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.45) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.05) 40%, rgba(8,8,8,0.6) 100%);
}

.bio-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.bio-hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: bioFadeUp 1s 0.5s ease-out forwards;
}

.bio-hero-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bio-hero-first {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    opacity: 0;
    animation: bioFadeUp 1.2s 0.8s ease-out forwards;
}

.bio-hero-last {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    opacity: 0;
    animation: bioFadeUp 1.2s 1.1s ease-out forwards;
}

.bio-hero-rule {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 30px auto 0;
    opacity: 0;
    animation: bioFadeUp 1s 1.5s ease-out forwards;
}

.bio-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: bioFadeUp 1s 2s ease-out forwards;
}

.bio-hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.bio-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes bioFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* -- Opening quote -- */
.bio-opening {
    padding: 140px 0 120px;
    background: var(--color-black);
}

.bio-quote {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.bio-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-gold);
    opacity: 0.15;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.bio-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.bio-quote cite {
    display: block;
    margin-top: 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-style: normal;
}

/* -- Portrait + Intro grid -- */
.bio-intro-section {
    padding: 0 0 140px;
    background: var(--color-black);
}

.bio-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bio-intro-portrait {
    position: relative;
}

.bio-intro-portrait img {
    width: 100%;
    display: block;
    filter: grayscale(30%) brightness(0.95);
    transition: all 1.2s var(--ease-elegant);
}

.bio-intro-portrait:hover img {
    filter: grayscale(0%) brightness(1);
}

.bio-credit {
    margin-top: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.bio-dropcap {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 2;
    color: var(--color-light);
}

.bio-dropcap::first-letter {
    font-family: var(--font-display);
    font-size: 4.5rem;
    float: left;
    line-height: 0.75;
    margin: 8px 16px 0 0;
    color: var(--color-gold);
    font-weight: 400;
}

/* -- Cinematic image-text break -- */
.bio-cinematic {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.bio-cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bio-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.75) 50%,
        rgba(8,8,8,0.4) 100%
    );
}

.bio-cinematic--alt .bio-cinematic-overlay {
    background: linear-gradient(
        270deg,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.75) 50%,
        rgba(8,8,8,0.4) 100%
    );
}

.bio-cinematic-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 80px 80px 100px;
}

.bio-cinematic--alt .bio-cinematic-content {
    margin-left: auto;
    padding: 80px 100px 80px 80px;
}

.bio-cinematic-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 20px;
    margin-bottom: 30px;
}

.bio-cinematic-content p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2;
    color: var(--color-cream);
    letter-spacing: 0.01em;
}

/* -- Narrative text sections -- */
.bio-narrative {
    padding: 120px 0;
    background: var(--color-black);
}

.bio-narrative--final {
    padding-bottom: 140px;
}

.bio-chapter {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}

.bio-chapter-num {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-gold);
    opacity: 0.5;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.bio-chapter h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    position: relative;
    padding-left: 24px;
}

.bio-chapter h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--color-gold);
    opacity: 0.6;
}

.bio-prose p {
    font-size: 0.98rem;
    line-height: 2;
    color: var(--color-light);
    margin-bottom: 28px;
}

.bio-prose p:last-child {
    margin-bottom: 0;
}

/* -- Wide image break -- */
.bio-wide-image {
    position: relative;
    overflow: hidden;
}

.bio-wide-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.75);
}

/* -- Closing statement -- */
.bio-closing {
    margin-top: 80px;
    text-align: center;
}

.bio-closing-rule {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 40px;
    opacity: 0.5;
}

.bio-closing p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-gold-light);
    letter-spacing: 0.03em;
    line-height: 1.8;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    display: inline-block;
}

.footer-logo-first {
    display: block;
    font-size: 0.9em;
}

.footer-logo-last {
    display: block;
    color: var(--color-gold);
    font-style: italic;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-style: italic;
}

.footer-nav {
    text-align: center;
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color var(--transition-base);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-social a {
    color: var(--color-muted);
    transition: color var(--transition-base);
}

.footer-social a:hover {
    color: var(--color-gold);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color var(--transition-base);
}

.social-links a:hover {
    color: var(--color-gold);
}

.footer-line {
    width: 50px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin: 0 auto 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.08em;
}

/* ==========================================================================
   PHOTO GALLERY PAGE
   ========================================================================== */

/* ---------- Gallery Hero — Mosaic ---------- */
.gallery-hero {
    position: relative;
    height: calc(100vh - 57px);
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
}

.gallery-hero-tile {
    overflow: hidden;
    position: relative;
}

.gallery-hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transform: scale(1.1);
    animation: heroTileReveal 1.8s var(--ease-out-expo) forwards;
    opacity: 0;
}

.gallery-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-hero-tile--1 img { animation-delay: 0s; }

.gallery-hero-tile--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.gallery-hero-tile--2 img { animation-delay: 0.15s; }

.gallery-hero-tile--3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.gallery-hero-tile--3 img { animation-delay: 0.25s; }

.gallery-hero-tile--4 { grid-column: 5 / 7; grid-row: 1 / 2; }
.gallery-hero-tile--4 img { animation-delay: 0.1s; }

.gallery-hero-tile--5 { grid-column: 3 / 5; grid-row: 2 / 4; }
.gallery-hero-tile--5 img { animation-delay: 0.2s; }

.gallery-hero-tile--6 { grid-column: 5 / 6; grid-row: 2 / 3; }
.gallery-hero-tile--6 img { animation-delay: 0.35s; }

.gallery-hero-tile--7 { grid-column: 6 / 7; grid-row: 2 / 4; }
.gallery-hero-tile--7 img { animation-delay: 0.3s; }

.gallery-hero-tile--1:nth-child(n) { grid-column: 1 / 3; grid-row: 1 / 2; }

@keyframes heroTileReveal {
    0%   { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1.05); }
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.8) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.1) 40%, rgba(8,8,8,0.85) 100%);
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.gallery-hero-content .subtitle {
    color: var(--color-gold);
}

.gallery-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-top: 12px;
}

.gallery-hero-count {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 20px;
}

/* ---------- Gallery Section Nav (Sticky) ---------- */
.gallery-section-nav {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0;
}

.gallery-nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 40px;
}

.gallery-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    color: var(--color-muted);
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}

.gallery-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-out-expo);
}

.gallery-nav-link.active::after,
.gallery-nav-link:hover::after {
    width: 100%;
}

.gallery-nav-link.active,
.gallery-nav-link:hover {
    color: var(--color-gold);
}

.gallery-nav-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.gallery-nav-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.gallery-nav-sep {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- Cinematic Section Dividers ---------- */
.gallery-cinematic {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) brightness(0.5);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.gallery-cinematic.visible .gallery-cinematic-bg {
    transform: scale(1);
}

.gallery-cinematic-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.75) 100%),
        linear-gradient(180deg, rgba(8,8,8,0.6) 0%, transparent 30%, transparent 70%, rgba(8,8,8,0.8) 100%);
    pointer-events: none;
}

.gallery-cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.gallery-cinematic-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    margin-bottom: -20px;
}

.gallery-cinematic-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.gallery-cinematic-count {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 14px;
    font-weight: 400;
}

/* ---------- Masonry Grid ---------- */
.gallery-masonry-section {
    background: var(--color-black);
    padding: 60px 0 80px;
}

.gallery-masonry {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    columns: 4;
    column-gap: 12px;
}

.gm-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.gm-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-elegant), filter 0.5s ease;
    filter: brightness(0.9);
}

.gm-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

.gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gm-item:hover .gm-overlay {
    opacity: 1;
}

.gm-caption {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 400;
    position: relative;
    padding-left: 18px;
}

.gm-caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: var(--color-gold);
}

/* ---------- Responsive ---------- */
/* ---------- Tablet-nav breakpoint: burger menu ---------- */
@media (max-width: 1399px) {
    .site-logo {
        flex: 1;
        font-size: 1.15rem;
    }

    .menu-toggle {
        display: flex;
        order: 10;
        z-index: 1001;
    }

    .header-actions {
        gap: 12px;
    }

    .header-social,
    .lang-switch-desktop {
        display: none;
    }

    .header-search-btn::before {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-base);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .main-nav a {
        font-size: 0.9rem;
        letter-spacing: 0.25em;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        position: static;
        transform: none;
        background: none;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .has-dropdown.open .nav-dropdown {
        max-height: 200px;
        padding: 12px 0;
        margin-top: 0;
    }

    .nav-dropdown a {
        font-size: 0.75rem !important;
        padding: 8px 0;
        text-align: center;
        opacity: 0.7;
    }

    .nav-dropdown a:hover {
        background: none;
        opacity: 1;
    }

    .dropdown-toggle {
        cursor: pointer;
    }

    .main-nav .lang-switch {
        display: flex;
        margin-top: 32px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }

    /* Sticky date - reduce space on tablet */
    .timeline-sidebar {
        width: 110px;
    }

    .sticky-date-frame {
        padding: 14px 14px 12px;
        min-width: 80px;
    }

    .sticky-month {
        font-size: 1rem;
    }

    .sticky-year {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .bio-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .disc-album {
        min-height: auto;
    }

    .disc-album-content {
        padding: 60px 40px;
    }

    .disc-album-visual {
        padding: 60px 40px;
    }

    .disc-cover {
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .container {
        padding: 0 24px;
    }

    .header-inner {
        padding: 0 24px;
    }

    /* Bio */
    .container-narrow {
        padding: 0 24px;
    }

    /* Music / Discography */
    .disc-album {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .disc-album--reverse {
        direction: ltr;
    }

    .disc-album-visual {
        padding: 50px 24px;
    }

    .disc-cover {
        max-width: 300px;
    }

    .disc-album-content {
        padding: 40px 24px 60px;
        text-align: center;
    }

    .disc-details {
        justify-content: center;
    }

    .disc-tracks {
        text-align: left;
    }

    .disc-buy {
        justify-content: center;
    }

    .music-hero {
        height: 40vh;
        min-height: 280px;
    }

    .container-wide {
        padding: 0 24px;
    }

    .bio-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-intro-portrait {
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-opening {
        padding: 90px 0 80px;
    }

    .bio-cinematic {
        min-height: 50vh;
    }

    .bio-cinematic-bg {
        background-attachment: scroll;
    }

    .bio-cinematic-content {
        padding: 60px 30px;
    }

    .bio-cinematic--alt .bio-cinematic-content {
        padding: 60px 30px;
    }

    .bio-cinematic-overlay,
    .bio-cinematic--alt .bio-cinematic-overlay {
        background: rgba(8,8,8,0.85);
    }

    .bio-narrative {
        padding: 80px 0;
    }

    .bio-wide-image img {
        width: 100%;
    }

    .bio-hero {
        min-height: 500px;
    }

    .bio-hero-image img {
        object-position: 85% 25%;
    }

    /* Hero */
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-nav {
        right: 16px;
    }

    .hero-slide-counter {
        left: 24px;
        bottom: 8%;
    }

    .hero-slide:nth-child(1) img {
        object-position: 30% center;
    }

    .hero-slide:nth-child(5) img {
        object-position: 10% center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 200px;
        text-align: center;
    }

    /* Album */
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-grid .event-card:nth-child(n+5) {
        display: none;
    }

    /* Events page timeline - mobile (simplified) */
    .events-layout {
        display: block;
    }

    .timeline-sidebar {
        display: none;
    }

    .timeline {
        padding-left: 18px;
    }

    .timeline::before {
        left: 0;
    }

    /* Card: switch to vertical stack */
    .timeline-card {
        flex-direction: column;
        gap: 0;
        padding: 18px 14px;
    }

    .timeline-card::before {
        left: -21px;
        top: 26px;
        width: 5px;
        height: 5px;
    }

    /* Date: compact single-line */
    .timeline-date {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
        min-width: 0;
        padding-top: 0;
        margin-bottom: 6px;
    }

    .timeline-day {
        font-size: 1rem;
        font-weight: 400;
    }

    .timeline-month {
        font-size: 0.72rem;
        margin-top: 0;
    }

    .timeline-year {
        font-size: 0.68rem;
        margin-top: 0;
    }

    /* Date range: also single-line compact */
    .timeline-date--range {
        flex-direction: column;
        gap: 0;
    }

    .timeline-date-row {
        gap: 5px;
    }

    .timeline-date-label {
        font-size: 0.58rem;
        min-width: 26px;
    }

    .timeline-date-value {
        font-size: 0.78rem;
    }

    .timeline-duration {
        display: none;
    }

    /* Body: compact */
    .timeline-body h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .timeline-venue {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .timeline-venue svg {
        width: 12px;
        height: 12px;
    }

    /* Hide less critical info on mobile */
    .timeline-location {
        display: none;
    }

    .timeline-meta {
        gap: 10px;
        margin-bottom: 0;
    }

    .timeline-type {
        display: none;
    }

    .timeline-time {
        font-size: 0.78rem;
    }

    .timeline-time svg {
        width: 10px;
        height: 10px;
    }

    .timeline-body .btn-small {
        margin-top: 10px;
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    /* Badges: smaller */
    .timeline-next-badge,
    .timeline-ongoing-badge {
        font-size: 0.55rem;
        padding: 2px 8px;
        top: 6px;
        right: 8px;
    }

    /* Highlighted cards: less padding */
    .timeline-next .timeline-card,
    .timeline-ongoing .timeline-card {
        padding-left: 12px;
        padding-top: 32px;
    }

    .timeline-next .timeline-day {
        font-size: 1rem;
    }

    .timeline-next .timeline-body h3 {
        font-size: 1rem;
    }

    .timeline-next .timeline-date-value,
    .timeline-ongoing .timeline-date-value {
        font-size: 0.82rem;
    }

    .timeline-now {
        margin-left: -18px;
        gap: 12px;
        padding: 14px 0;
    }

    .timeline-now-label {
        font-size: 0.6rem;
        padding: 4px 12px;
    }

    .events-hero {
        height: 40vh;
        min-height: 280px;
    }

    .year-tab {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-page-header {
        padding: 90px 0 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   AUDIO PLAYER
   ========================================================================== */

/* Track hover & active state */
.disc-tracks li[data-src] {
    transition: color .25s, padding-left .25s;
    position: relative;
}

.disc-tracks li[data-src]:hover {
    color: var(--gold);
    padding-left: .6rem;
}

.disc-tracks li[data-src]::before {
    /* play triangle indicator */
    content: '';
    position: absolute;
    left: -1.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--gold);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    opacity: 0;
    transition: opacity .25s;
}

.disc-tracks li[data-src]:hover::before,
.disc-tracks li.track-active::before {
    opacity: 1;
}

.disc-tracks li.track-active {
    color: var(--gold);
    font-weight: 600;
}

/* Floating player bar */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, rgba(8,8,8,.97) 0%, #080808 100%);
    border-top: 1px solid var(--gold-dark);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.audio-player.active {
    transform: translateY(0);
}

.audio-player-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .9rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Close button */
.audio-player-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: 1.4rem;
    cursor: pointer;
    padding: .2rem .4rem;
    line-height: 1;
    transition: color .2s;
    flex-shrink: 0;
}

.audio-player-close:hover {
    color: var(--white);
}

/* Track info */
.audio-player-info {
    flex: 1;
    min-width: 0;
}

.audio-player-title {
    font-family: var(--font-accent);
    font-size: .95rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    letter-spacing: .02em;
}

/* Controls */
.audio-player-controls {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.audio-player-btn {
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: .35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
}

.audio-player-btn:hover {
    color: var(--gold);
}

.audio-player-play {
    background: var(--gold);
    color: var(--black);
    width: 36px;
    height: 36px;
}

.audio-player-play:hover {
    background: var(--gold-light);
    color: var(--black);
}

/* Progress bar */
.audio-player-progress {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1.5;
    min-width: 100px;
}

.audio-player-time {
    font-family: var(--font-body);
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    min-width: 2.6rem;
    text-align: center;
    letter-spacing: .04em;
}

.audio-player-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: height .15s;
}

.audio-player-bar:hover {
    height: 5px;
}

.audio-player-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0;
    transition: width .1s linear;
}

/* Responsive audio player */
@media (max-width: 768px) {
    .audio-player-inner {
        flex-wrap: wrap;
        padding: .7rem 1rem;
        gap: .5rem .8rem;
    }

    .audio-player-close {
        order: 4;
        position: absolute;
        top: .5rem;
        right: .8rem;
    }

    .audio-player-info {
        order: 1;
        flex-basis: calc(100% - 2rem);
    }

    .audio-player-controls {
        order: 2;
    }

    .audio-player-progress {
        order: 3;
        flex: 1;
        min-width: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   VIDEO GALLERY PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.vg-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 57px);
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vg-hero-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.vg-hero-tile {
    overflow: hidden;
}

.vg-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.vg-hero-tile--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.vg-hero-tile--3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.vg-hero-tile--4 { grid-column: 5 / 6; grid-row: 1 / 2; }
.vg-hero-tile--5 { grid-column: 3 / 6; grid-row: 2 / 3; }

.vg-hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: heroTileReveal 0.8s ease forwards;
}

.vg-hero-tile--1 img { animation-delay: 0.1s; }
.vg-hero-tile--2 img { animation-delay: 0.25s; }
.vg-hero-tile--3 img { animation-delay: 0.4s; }
.vg-hero-tile--4 img { animation-delay: 0.55s; }
.vg-hero-tile--5 img { animation-delay: 0.35s; }

.vg-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.85) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.4) 100%);
    z-index: 1;
}

.vg-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vg-hero-content .subtitle {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: var(--color-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vg-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.vg-hero-count {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--color-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Hero Scroll */
.vg-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vg-hero-scroll span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--color-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.vg-hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ── Filter Nav ── */
.vg-filter-nav {
    position: sticky;
    top: 68px;
    z-index: 90;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 0;
}

.vg-filter-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
}

.vg-filter-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.vg-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vg-filter-btn:hover {
    color: var(--color-white);
}

.vg-filter-btn.active {
    color: var(--color-gold);
}

.vg-filter-btn.active::after {
    width: 100%;
}

.vg-filter-count {
    font-size: 0.65rem;
    color: rgba(201,168,76,0.5);
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

/* ── Category Row Sections (Netflix full-width) ── */
.vg-row-section {
    padding: 36px 0 12px;
    background: var(--color-bg);
    overflow: hidden;
}

.vg-section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
    padding: 0 56px;
}

.vg-section-label {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.vg-section-count {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--color-muted);
    letter-spacing: 0.08em;
}

.vg-row-wrap {
    position: relative;
    padding: 0;
}

.vg-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 56px 8px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.vg-row::-webkit-scrollbar {
    display: none;
}

.vg-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* ── Video Card — Netflix style ── */
.vg-card {
    flex: 0 0 calc((100vw - 112px - 16px) / 3);
    min-width: 300px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s 0.35s;
    position: relative;
    z-index: 1;
}

.vg-card:hover {
    transform: scale(1.15);
    z-index: 10;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
}

.vg-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-charcoal);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: box-shadow 0.35s ease;
}

.vg-card:hover .vg-card-visual {
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    border-radius: 4px 4px 0 0;
}

.vg-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Card Overlay (info on hover) ── */
.vg-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vg-card:hover .vg-card-overlay {
    opacity: 1;
}

.vg-card-play {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 0;
    margin-bottom: auto;
    margin-top: auto;
}

.vg-card-play svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.vg-card:hover .vg-card-play {
    opacity: 1;
    transform: scale(1);
}

.vg-card-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 12px;
    text-align: left;
}

.vg-card-overlay-info .vg-card-composer {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    color: var(--color-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
}

.vg-card-overlay-info .vg-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.35;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vg-card-overlay-info .vg-card-event {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Row Arrows */
.vg-row-arrow {
    position: absolute;
    top: 0;
    bottom: 8px;
    z-index: 20;
    width: 56px;
    background: rgba(8,8,8,0.6);
    border: none;
    color: var(--color-white);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.vg-row-wrap:hover .vg-row-arrow {
    opacity: 1;
}

.vg-row-arrow:hover {
    background: rgba(8,8,8,0.85);
    color: var(--color-gold);
}

.vg-row-arrow-left {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.vg-row-arrow-right {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.vg-row-arrow.disabled {
    opacity: 0 !important;
    pointer-events: none;
}

/* ── Theater Overlay ── */
.vg-theater {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.vg-theater.active {
    opacity: 1;
    pointer-events: auto;
}

.vg-theater-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vg-theater-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 1;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vg-theater.active .vg-theater-content {
    transform: translateY(0) scale(1);
}

.vg-theater-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.vg-theater-close:hover {
    opacity: 1;
    color: var(--color-gold);
}

.vg-theater-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.vg-theater-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.vg-theater-meta {
    text-align: center;
    margin-top: 24px;
}

.vg-theater-composer {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.vg-theater-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 6px;
}

.vg-theater-event {
    font-family: var(--font-accent);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--color-muted);
}

/* Theater Nav */
.vg-theater-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.vg-theater-prev,
.vg-theater-next {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-white);
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.vg-theater-prev:hover,
.vg-theater-next:hover {
    background: rgba(201,168,76,0.15);
    color: var(--color-gold);
    border-color: rgba(201,168,76,0.4);
}

.vg-theater-counter {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.15em;
}

/* ── Channel CTA ── */
.vg-cta-section {
    padding: 80px 0 100px;
    text-align: center;
    background: var(--color-bg);
}

.vg-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.vg-cta-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.03em;
}

/* ── Video Gallery Responsive ── */
@media (max-width: 1024px) {
    .vg-section-header {
        padding: 0 40px;
    }

    .vg-row {
        padding: 0 40px 8px;
    }

    .vg-card {
        flex: 0 0 calc((100vw - 80px - 12px) / 2.5);
        min-width: 280px;
    }

    .vg-row-arrow {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .vg-hero {
        height: calc(100vh - 49px);
        min-height: 350px;
    }

    .vg-hero-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr;
    }

    .vg-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .vg-hero-tile--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .vg-hero-tile--3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .vg-hero-tile--4 { grid-column: 2 / 4; grid-row: 2 / 3; }
    .vg-hero-tile--5 { display: none; }

    .vg-hero-content {
        gap: 28px;
    }

    .vg-section-header {
        padding: 0 20px;
    }

    .vg-row {
        padding: 0 20px 8px;
    }

    .vg-card {
        flex: 0 0 calc((100vw - 40px - 8px) / 2);
        min-width: 260px;
    }

    .vg-card:hover {
        transform: none;
        z-index: 1;
    }

    .vg-card-overlay {
        opacity: 1;
        pointer-events: none;
        background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
    }

    .vg-card-overlay-info {
        pointer-events: none;
    }

    .vg-card-play {
        pointer-events: auto;
    }

    .vg-row-arrow {
        display: none;
    }

    .vg-filter-btn {
        padding: 16px 16px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .vg-filter-count {
        display: none;
    }

    .vg-theater-content {
        width: 96%;
    }

    .vg-theater-close {
        top: -44px;
        right: -4px;
    }

    .vg-theater-nav {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .vg-hero {
        height: calc(100vh - 43px);
        min-height: 280px;
    }

    .vg-hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .vg-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .vg-hero-tile--2 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .vg-hero-tile--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .vg-hero-tile--4, .vg-hero-tile--5 { display: none; }

    .vg-section-header {
        padding: 0 16px;
    }

    .vg-row {
        padding: 0 16px 8px;
    }

    .vg-card {
        flex: 0 0 calc((100vw - 32px - 6px) / 1.2);
        min-width: 260px;
    }

    .vg-filter-nav {
        top: 52px;
    }

    .vg-filter-btn {
        padding: 14px 10px;
        font-size: 0.65rem;
    }
}

/* ---------- Gallery Page — Responsive ---------- */
@media (max-width: 1024px) {
    .gallery-hero-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .gallery-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gallery-hero-tile--5 { grid-column: 3 / 5; grid-row: 2 / 3; }
    .gallery-hero-tile--7 { grid-column: 1 / 3; grid-row: 3 / 4; }

    .gallery-masonry {
        columns: 3;
        padding: 0 20px;
    }

    .gallery-nav-link {
        padding: 16px 20px;
    }

    .gallery-cinematic {
        height: 40vh;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: calc(100vh - 49px);
        min-height: 350px;
    }

    .gallery-hero-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .gallery-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gallery-hero-tile--4 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .gallery-hero-tile--5 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .gallery-hero-tile--6 { grid-column: 2 / 4; grid-row: 2 / 3; }
    .gallery-hero-tile--7 { display: none; }

    .gallery-masonry {
        columns: 2;
        padding: 0 16px;
        column-gap: 8px;
    }

    .gm-item {
        margin-bottom: 8px;
    }

    .gallery-nav-inner {
        padding: 0 16px;
        gap: 0;
    }

    .gallery-nav-link {
        padding: 14px 12px;
        gap: 6px;
    }

    .gallery-nav-num {
        display: none;
    }

    .gallery-nav-text {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .gallery-nav-sep {
        width: 16px;
    }

    .gallery-cinematic {
        height: 35vh;
        min-height: 240px;
    }

    .gallery-cinematic-num {
        font-size: clamp(3rem, 8vw, 5rem);
        margin-bottom: -12px;
    }

    /* Always show caption overlay on mobile (no hover) */
    .gm-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.75) 100%);
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        height: calc(100vh - 43px);
    }

    .gallery-hero-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .gallery-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gallery-hero-tile--2 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .gallery-hero-tile--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .gallery-hero-tile--4 { grid-column: 1 / 3; grid-row: 3 / 4; }
    .gallery-hero-tile--5,
    .gallery-hero-tile--6,
    .gallery-hero-tile--7 { display: none; }

    .gallery-masonry {
        columns: 2;
        column-gap: 6px;
    }

    .gm-item {
        margin-bottom: 6px;
    }

    .gallery-section-nav {
        top: 52px;
    }
}

/* ==========================================
   NEWS PAGE
   ========================================== */

/* --- News Page Header (compact, no hero) --- */
.news-page-header {
    background: var(--color-black);
    padding: 120px 0 40px;
    text-align: center;
}

.news-page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-top: 8px;
}

.news-page-header .subtitle {
    color: var(--color-gold);
}

/* --- News Page Grid --- */
.news-page-section {
    background: var(--color-black);
    padding: 0 0 var(--section-padding);
}

/* --- News Year Group --- */
.news-year-group {
    margin-bottom: 60px;
}

.news-year-group:last-of-type {
    margin-bottom: 0;
}

.news-year-heading {
    position: sticky;
    top: 62px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    padding: 16px 0 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    background: var(--color-black);
    transition: box-shadow 0.3s ease;
}

.news-year-heading.stuck {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

.news-page-grid .news-card {
    background: var(--color-charcoal);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.news-page-grid .news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-page-grid .news-card-image {
    height: 240px;
    overflow: hidden;
}

.news-page-grid .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-page-grid .news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-page-grid .news-card:hover {
    transform: translateY(-6px);
}

/* --- News Infinite Scroll Loader --- */
.news-loader {
    display: flex;
    justify-content: center;
    padding: 60px 0 20px;
}

.news-loader-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.08);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: newsSpinner 0.8s linear infinite;
}

@keyframes newsSpinner {
    to { transform: rotate(360deg); }
}

/* --- Article Hero --- */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.92) 100%);
}

.article-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding-bottom: 60px;
    max-width: 800px;
}

.article-hero-content .news-card-date {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.article-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin-top: 16px;
    line-height: 1.3;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.article-tag {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 2px;
}

/* --- Article Content --- */
.article-section {
    background: var(--color-black);
    padding: 80px 0;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-cream);
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.article-content li {
    margin-bottom: 0.6em;
    color: var(--color-cream);
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 2em 0;
}

.article-content strong {
    color: var(--color-white);
    font-weight: 500;
}

/* --- Article Navigation --- */
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.article-nav-link {
    text-decoration: none;
    max-width: 45%;
    transition: opacity var(--transition-base);
}

.article-nav-link:hover {
    opacity: 0.8;
}

.article-nav-next {
    text-align: right;
    margin-left: auto;
}

.article-nav-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.article-nav-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.4;
}

.article-back {
    text-align: center;
    margin-top: 60px;
}

/* --- News Responsive --- */
@media (max-width: 1024px) {
    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .news-year-group {
        margin-bottom: 48px;
    }
}

@media (max-width: 640px) {
    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-page-header {
        padding: 90px 0 30px;
    }

    .news-year-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
        top: 54px;
    }

    .news-year-group {
        margin-bottom: 40px;
    }

    .article-hero {
        height: 50vh;
    }

    .article-hero-content {
        padding: 0 20px 40px;
    }

    .article-nav {
        flex-direction: column;
        gap: 24px;
    }

    .article-nav-link {
        max-width: 100%;
    }

    .article-nav-next {
        text-align: left;
    }
}
