*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9962A;
    --gold-light: #E8C46A;
    --gold-pale: #F5E5B8;
    --amber: #B87333;
    --cream: #FBF6EC;
    --cream-dark: #F2E8D0;
    --sepia: #3A2A14;
    --sepia-mid: #5C4025;
    --sepia-light: #8B6840;
    --burgundy: #6B1F2A;
    --white: #FFFDF7;
    --text: #2A1A08;
    --text-muted: #7A6548;
    --shadow: rgba(58, 42, 20, 0.10);
    --shadow-lg: rgba(58, 42, 20, 0.20);

    
    --saffron: #C9962A;
    --saffron-light: #E8C46A;
    --saffron-deep: #F5E5B8;
    --gold: #cfcfcf;
    --gold-light: #C0C0C0;
    --cream: #d8d8d8;
    --cream-dark: #d8d8d8;
    --bark: #3D2B1F;
    --bark-light: #5C4033;
    --sage: #7A8B6F;
    --sage-light: #A8B89E;
    --white: #FFFCF7;
    --text: #2C1810;
    --text-muted: #7A6B60;
    --shadow: rgba(60, 40, 20, 0.08);
    --shadow-lg: rgba(60, 40, 20, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.nav.scrolled {
    background: rgba(251, 246, 236, 0.93);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px var(--shadow);
    padding: 0.75rem 2.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nav-logo-vinyl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    animation: spin 8s linear infinite;
    animation-play-state: paused;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-logo-vinyl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.nav-logo-vinyl:hover {
    animation-play-state: running;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-text .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.4s;
}

.nav-logo-text .tagline {
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.4s;
}

.nav.scrolled .nav-logo-text .name {
    color: var(--sepia);
}

.nav.scrolled .nav-logo-text .tagline {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav.scrolled .nav-links a {
    color: var(--text-muted);
}

.nav.scrolled .nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--sepia);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--sepia);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1rem;
    }
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a0f05 0%, #2e1a08 40%, #3a2210 60%, #1f120a 100%);
}

/* Vinyl record decoration */
.hero-vinyl {
    position: absolute;
    right: -8vw;
    top: 50%;
    transform: translateY(-50%);
    width: 65vw;
    max-width: 700px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: none;
    opacity: 0.45;
    animation: slowSpin 30s linear infinite;
    overflow: hidden;
}

.hero-vinyl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

@keyframes slowSpin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Decorative lines */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg,
            transparent 0px, transparent 3px,
            rgba(201, 150, 42, 0.015) 3px, rgba(201, 150, 42, 0.015) 4px);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(15, 8, 2, 0.85) 0%, rgba(15, 8, 2, 0.5) 55%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem 5vw;
    color: var(--white);
    max-width: 680px;
}

.hero-year {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s 0.3s ease forwards;
}

.hero-year span {
    width: 40px;
    height: 1px;
    background: var(--gold-light);
    display: block;
}

.hero-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s 0.4s ease forwards;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s 0.55s ease forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-title .sinhala {
    display: block;
    font-size: 0.55em;
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    margin-top: 0.3rem;
}

.hero-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    max-width: 500px;
    margin: 1.5rem 0 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s 0.75s ease forwards;
}

.hero-bio strong {
    color: var(--gold-light);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s 0.95s ease forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--sepia);
    box-shadow: 0 6px 25px rgba(201, 150, 42, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
    box-shadow: 0 10px 35px rgba(201, 150, 42, 0.45);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(201, 150, 42, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.hero-live {
    position: absolute;
    bottom: 8rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 150, 42, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 1s 1.1s ease forwards;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ── SECTIONS ── */
.section {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    display: block;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    color: var(--sepia);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 2.5rem;
}

/* ── PLAYER SECTION ── */
.player-section {
    margin-top: -5rem;
    position: relative;
    z-index: 20;
    padding: 0 1.5rem 3rem;
}

.player-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 20px 60px var(--shadow-lg), 0 0 0 1px rgba(201, 150, 42, 0.12);
    overflow: hidden;
    border-top: 4px solid var(--gold);
}

.player-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2.25rem 0.75rem;
    border-bottom: 1px solid rgba(201, 150, 42, 0.1);
}

.player-top-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-live-dot {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.player-top h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sepia);
}

.player-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--gold);
    padding: 0.35rem 0.9rem;
    border-radius: 3px;
    border: 1px solid rgba(201, 150, 42, 0.2);
}

.player-embed {
    padding: 1rem 2.25rem 2rem;
}

.player-embed iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 8px;
    background: #1a1008;
}

/* App store */
.player-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2.25rem 2rem;
    flex-wrap: wrap;
}

.app-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.app-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.app-links a img {
    height: 46px;
}

/* ── BIOGRAPHY ── */
.bio-section {
    background: var(--sepia);
    color: var(--white);
    padding: 5rem 1.5rem;
}

.bio-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.bio-portrait {
    position: relative;
}

.bio-portrait-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 340px;
    background: linear-gradient(145deg, var(--sepia-mid), #1a0f05);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 150, 42, 0.2);
}

.bio-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-portrait-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    aspect-ratio: 3/4;
    border: 2px solid rgba(201, 150, 42, 0.25);
    border-radius: 3px;
    z-index: -1;
}

.bio-portrait-year {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--gold);
    color: var(--sepia);
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
}

.bio-content .section-label {
    color: var(--gold-light);
}

.bio-content .section-label::before {
    background: var(--gold-light);
}

.bio-content .section-title {
    color: var(--white);
}

.bio-content p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
}

.bio-content p strong {
    color: var(--gold-light);
    font-weight: 400;
}

.bio-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.bio-fact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 150, 42, 0.12);
    border-radius: 4px;
    padding: 1rem 1.25rem;
}

.bio-fact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.bio-fact-value {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(201, 150, 42, 0.08);
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-top-color: var(--gold);
}

.feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgb(59 43 21);
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--sepia);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── STATS ── */
.stats-bar {
    background: linear-gradient(135deg, #1a0f05, #2d1a08);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(201, 150, 42, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 50%, rgba(201, 150, 42, 0.05) 0%, transparent 60%);
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── RECORDINGS SECTION ── */
.recordings-section {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.recordings-card {
    background: linear-gradient(135deg, var(--sepia), #1e1208);
    border-radius: 6px;
    padding: 3.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 42, 0.15);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.recordings-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
            rgba(201, 150, 42, 0.06) 0%, transparent 70%);
}

.recordings-card::after {
    content: '♫';
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-size: 12rem;
    color: rgba(201, 150, 42, 0.04);
    line-height: 1;
    pointer-events: none;
}

.recordings-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .recordings-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.recordings-text .rec-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.recordings-text .rec-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    display: block;
}

.recordings-text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.recordings-text h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.recordings-text p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.recordings-text p strong {
    color: var(--gold-light);
    font-weight: 400;
}

.recordings-action {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 150, 42, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
}

.recordings-action h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--gold-light);
}

.recordings-action p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.email-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 150, 42, 0.25);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.email-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.email-addr {
    font-family: 'Lato', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.format-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(201, 150, 42, 0.12);
    border: 1px solid rgba(201, 150, 42, 0.2);
    color: var(--gold-light);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    background: var(--gold);
    color: var(--sepia);
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 150, 42, 0.3);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 150, 42, 0.4);
}

/* ── RECENTLY PLAYED / SCHEDULE ── */
.iframe-card {
    background: #1a1008;
    border-radius: 6px;
    box-shadow: 0 8px 35px var(--shadow);
    border: 1px solid rgba(201, 150, 42, 0.1);
    overflow: hidden;
    padding: 1.5rem;
}

.iframe-card iframe {
    width: 100%;
    border: none;
    display: block;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 8px 35px var(--shadow);
    border: 1px solid rgba(201, 150, 42, 0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 150, 42, 0.07);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    font-size: 0.97rem;
    color: var(--sepia);
    font-weight: 400;
}

.social-card {
    background: linear-gradient(135deg, var(--sepia), #1e1208);
    border-radius: 4px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 42, 0.15);
}

.social-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.social-card p {
    font-size: 0.93rem;
    opacity: 0.65;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 340px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 150, 42, 0.2);
    border-radius: 4px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(201, 150, 42, 0.15);
    border-color: rgba(201, 150, 42, 0.5);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 17px;
    height: 17px;
}

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.divider-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.25;
}

.divider-icon {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.5;
}

/* ── FOOTER ── */
.footer {
    background: #110a03;
    color: rgba(255, 255, 255, 0.4);
    padding: 3rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-vinyl {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.footer-vinyl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
    font-size: 0.8rem;
    text-align: center;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.footer-copy a:hover {
    color: var(--gold);
}

.footer-service {
    font-size: 0.75rem;
}

.footer-service a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-service a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-live {
        display: none;
    }

    .recordings-card {
        padding: 2rem 1.5rem;
    }

    .player-embed {
        padding: 0.5rem 1rem 1.5rem;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ── FILMOGRAPHY ── */
.filmography-section {
    background: var(--cream);
}

.film-search-wrap {
    margin-bottom: 1.5rem;
    position: relative;
}

.film-search {
    width: 100%;
    padding: 0.85rem 1.25rem 0.85rem 3rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    border: 1.5px solid rgba(201, 150, 42, 0.25);
    border-radius: 4px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
}

.film-search:focus {
    border-color: var(--gold);
}

.film-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.film-table-wrap {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid rgba(201, 150, 42, 0.12);
    box-shadow: 0 8px 35px var(--shadow);
    overflow: hidden;
}

.film-table-scroll {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

.film-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.film-table thead tr {
    background: var(--sepia);
    color: var(--gold-light);
    position: sticky;
    top: 0;
    z-index: 2;
}

.film-table thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.film-table tbody tr {
    border-bottom: 1px solid rgba(201, 150, 42, 0.06);
    transition: background 0.2s;
}

.film-table tbody tr:last-child {
    border-bottom: none;
}

.film-table tbody tr:hover {
    background: rgba(201, 150, 42, 0.04);
}

.film-table tbody tr.hidden-row {
    display: none;
}

.film-table td {
    padding: 0.75rem 1.25rem;
    color: var(--text);
    vertical-align: middle;
}

.film-table td:first-child {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.film-table td.film-title {
    font-weight: 600;
    color: var(--sepia);
}

.film-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    background: rgba(201, 150, 42, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 150, 42, 0.2);
    white-space: nowrap;
}

.film-badge.actor {
    background: rgba(107, 31, 42, 0.08);
    color: var(--burgundy);
    border-color: rgba(107, 31, 42, 0.15);
}

.film-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: right;
}






/* Desktop downloads */
.desktop-download {
    margin-top: 40px;
    text-align: center;
}

.desktop-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.desktop-subtitle {
    opacity: .7;
    margin-bottom: 30px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.download-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.download-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.download-header img {
    width: 28px;
}

.download-header h4 {
    font-size: 18px;
}

.download-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f6f6f6;
    color: #333;
    font-weight: 500;
    transition: .25s;
}

.download-btn span {
    font-size: 12px;
    opacity: .6;
}

.download-btn:hover {
    background: #eaeaea;
}

.download-version {
    margin-top: 25px;
    font-size: 13px;
    opacity: .6;
}

.desktop-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.desktop-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all .25s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.desktop-btn img {
    height: 26px;
}

.desktop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* OS Colors */

.desktop-btn.windows {
    background: linear-gradient(135deg, #0078D6, #0a84ff);
}

.desktop-btn.mac {
    background: linear-gradient(135deg, #333, #555);
}

.desktop-btn.linux {
    background: linear-gradient(135deg, #E95420, #ff7a2f);
}



.desktop-download {
    margin: 0;
    padding: 3rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
    border-top: 1px solid rgba(196, 94, 26, 0.08);
    position: relative;
}

.desktop-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(196, 94, 26, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 100%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Header ── */
.dd-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.dd-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.85rem;
}

.dd-label-line {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--saffron);
    opacity: 0.6;
}

.dd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.dd-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--saffron);
}

.dd-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Card Grid ── */
.dd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 2rem;
    position: relative;
}

@media (max-width: 900px) {
    .dd-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.dd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 2rem;
    position: relative;
}

/* ── Card ── */
.dd-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(60, 40, 20, 0.04),
        0 8px 24px rgba(60, 40, 20, 0.06);
    border: 1px solid rgba(196, 94, 26, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.dd-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 4px 12px rgba(60, 40, 20, 0.06),
        0 20px 48px rgba(60, 40, 20, 0.12);
}

.dd-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dd-card:hover .dd-card-accent {
    opacity: 1;
}

.dd-card-featured .dd-card-accent {
    opacity: 1;
}

.dd-card-inner {
    padding: 1.75rem 1.5rem 1.5rem;
}

/* ── OS Header ── */
.dd-os {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(196, 94, 26, 0.06);
}

.dd-os-icon {
    width: 32px;
    height: 32px;
    color: var(--bark);
    opacity: 0.75;
    flex-shrink: 0;
}

.dd-os h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bark);
    line-height: 1.2;
}

.dd-arch {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── Download Buttons ── */
.dd-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.dd-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.dd-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 94, 26, 0.3);
}

.dd-btn:hover::before {
    opacity: 1;
}

.dd-btn-alt {
    background: var(--cream);
    color: var(--bark);
}

.dd-btn-alt:hover {
    background: var(--cream-dark);
    box-shadow: 0 4px 12px rgba(60, 40, 20, 0.08);
}

.dd-btn-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    position: relative;
}

.dd-btn-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.dd-btn-alt .dd-btn-badge {
    background: rgba(196, 94, 26, 0.08);
    color: var(--saffron);
}

/* ── Footer ── */
.dd-footer {
    text-align: center;
    position: relative;
}

.dd-version {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dd-version-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    background: rgba(196, 94, 26, 0.08);
    color: var(--saffron);
}

.dd-features-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.7;
}

.dd-features-strip .dd-dot {
    opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .desktop-download {
        padding: 2.5rem 1.25rem 2rem;
    }

    .dd-card-inner {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .dd-features-strip {
        gap: 0.35rem;
        font-size: 0.68rem;
    }

    .dd-grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .dd-btn-badge {
        display: none;
    }
}