@font-face {
    font-family: '00252';
    src: url('fonts/00252.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --void: #08080C;
    --dark: #111116;
    --surface: #1A1A21;
    --white: #E8E4DE;
    --dim: #5E5A54;
    --muted: #3A3834;
    --red: #B8433A;
    --red-bright: #D4513F;
    --red-glow: rgba(184, 67, 58, 0.25);
    --blue: #3A4F72;
    --blue-dim: rgba(58, 79, 114, 0.5);
    --gold: #C49A5C;

    /* Font tokens */
    --font-body: 'Sora', sans-serif;
    --font-serif: 'Bodoni Moda', serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Color tokens */
    --text: #A8A29E;
    --text-soft: #847E78;

    /* Easing tokens */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Duration tokens */
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;
    --duration-reveal: 0.8s;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--void);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: rgba(184, 67, 58, 0.3);
    color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: var(--muted);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dim);
}

/* Focus-visible states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 1px solid var(--red);
    outline-offset: 3px;
}

/* ——— Film grain ——— */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}

/* ——— Fireworks canvas ——— */
.fireworks-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
}

/* ——— Falling stars ——— */
.stars-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
    contain: strict;
}

.stars-field span {
    position: absolute;
    color: var(--white);
    will-change: transform, opacity;
    line-height: 1;
}

.stars-field span.red {
    color: var(--red);
}

.stars-field span.gold {
    color: var(--gold);
}

.stars-field span.distant {
    filter: blur(1px);
}

@keyframes star-fall {
    0%   { top: -5%;  transform: translateX(0) rotate(0deg); }
    15%  { transform: translateX(18px) rotate(8deg); }
    30%  { transform: translateX(-12px) rotate(18deg); }
    50%  { transform: translateX(30px) rotate(30deg); }
    65%  { transform: translateX(-20px) rotate(40deg); }
    80%  { transform: translateX(14px) rotate(52deg); }
    100% { top: 105%; transform: translateX(-6px) rotate(60deg); }
}

@keyframes star-twinkle {
    0%   { opacity: 1; }
    20%  { opacity: 0.4; }
    40%  { opacity: 0.9; }
    60%  { opacity: 0.35; }
    80%  { opacity: 0.85; }
    100% { opacity: 1; }
}

main { position: relative; z-index: 1; }

/* ——— Reveal ——— */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reveal animation variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ——— HERO ——— */
.hero {
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 60px 24px 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('frames/hero_bg.png');
    background-size: cover;
    background-position: center 30%;
    z-index: -2;
    will-change: transform;
    opacity: 0;
    animation: hero-bg-in 1.8s ease forwards, hero-breathe 20s ease-in-out 1.8s infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% 40%, transparent 20%, rgba(8, 8, 12, 0.4) 70%),
        linear-gradient(
            to bottom,
            rgba(8, 8, 12, 0.55) 0%,
            rgba(8, 8, 12, 0.7) 50%,
            rgba(8, 8, 12, 0.95) 100%
        );
}

@keyframes hero-bg-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hero-breathe {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.05); }
}

.hero-artist {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    letter-spacing: 0.22em;
    color: var(--white);
    opacity: 0;
    animation: fade-in 1s ease 0.6s forwards;
    margin-bottom: 36px;
}

.hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    animation: title-emerge 1.2s var(--ease-out) 0.9s forwards;
}

.hero-title {
    font-family: '00252', var(--font-body);
    font-weight: normal;
    font-size: clamp(3.2rem, 12vw, 9rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    position: relative;
    background: linear-gradient(
        105deg,
        var(--white) 0%,
        var(--white) 40%,
        #E8D5B0 46%,
        #FFFAF0 50%,
        #E8D5B0 54%,
        var(--white) 60%,
        var(--white) 100%
    );
    background-size: 300% 100%;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(196, 154, 92, 0.15))
            drop-shadow(0 0 80px rgba(196, 154, 92, 0.08))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: text-shimmer 7s ease-in-out 2.5s infinite;
}

.hero-results {
    font-family: '00252', var(--font-serif);
    font-weight: normal;
    font-style: normal;
    font-size: clamp(1.4rem, 5vw, 3.8rem);
    align-self: flex-end;
    margin-top: -0.1em;
    background: linear-gradient(
        105deg,
        var(--white) 0%,
        var(--white) 40%,
        #E0CCA0 46%,
        #FFF5E6 50%,
        #E0CCA0 54%,
        var(--white) 60%,
        var(--white) 100%
    );
    background-size: 300% 100%;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(196, 154, 92, 0.1))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    animation: text-shimmer 7s ease-in-out 3.3s infinite;
}

@keyframes title-emerge {
    0% { opacity: 0; transform: translateY(16px); filter: blur(8px); }
    50% { filter: blur(0px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}

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

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--dim);
    margin-top: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fade-in 1s ease 1.4s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: rgba(184, 67, 58, 0.06);
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.4s var(--ease-out);
    opacity: 0;
    animation: fade-in 1s ease 1.7s forwards;
}

.hero-cta:hover {
    background: var(--red);
    color: var(--void);
    transform: translateY(-1px);
    box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(184, 67, 58, 0.1), inset 0 0 20px rgba(184, 67, 58, 0.15);
}

.hero-cta:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fade-in 1s ease 2.4s forwards;
}

.scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px; height: 40px;
    position: relative; overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red));
    animation: scroll-down 2.2s ease-in-out infinite;
}

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

@keyframes scroll-down {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ——— MUSIC SECTION (consolidated) ——— */
.music-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    position: relative;
}

.music-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 900px) {
    .music-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* Artwork column */
.music-artwork {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Right column: lyrics + player */
.music-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.player-album-art {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}

.player-album-art:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 40px rgba(184, 67, 58, 0.06);
}

.player-album-art img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) saturate(0.9);
    transition: filter var(--duration-slow) ease;
}

.player-album-art:hover img {
    filter: contrast(1.1) saturate(1);
}

.music-desc {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 480px;
    padding-top: 4px;
}

/* Listen links */
.listen-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.listen-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(58, 56, 52, 0.25);
    background: linear-gradient(180deg, var(--dark) 0%, rgba(17, 17, 22, 0.6) 100%);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dim);
    transition: all var(--duration-normal) var(--ease-out);
}

.listen-link svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--duration-normal) ease;
}

.listen-link:hover {
    border-color: rgba(184, 67, 58, 0.3);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.listen-link:hover svg {
    opacity: 1;
}

.listen-link--primary {
    border-color: var(--red);
    color: var(--red);
    background: rgba(184, 67, 58, 0.06);
    padding: 18px 20px;
}

.listen-link--primary svg {
    opacity: 1;
}

.listen-link--primary:hover {
    background: var(--red);
    color: var(--void);
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(184, 67, 58, 0.2), 0 0 40px rgba(184, 67, 58, 0.1);
}

.listen-link--primary:hover svg {
    color: var(--void);
}

/* ——— LYRICS CAROUSEL ——— */
.lyrics-carousel {
    border: 1px solid rgba(58, 56, 52, 0.25);
    background: linear-gradient(180deg, var(--dark) 0%, rgba(17, 17, 22, 0.6) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(232, 228, 222, 0.03);
    position: relative;
    overflow: hidden;
    transition: border-color var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--muted);
    background: rgba(0, 0, 0, 0.15);
}

.carousel-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
}

.carousel-section-name {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--muted);
    transition: color 0.4s ease, opacity var(--duration-normal) ease, transform var(--duration-normal) ease;
}

.carousel-section-name.changing {
    opacity: 0;
    transform: translateY(-4px);
}

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

.carousel-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--muted);
    border-radius: 2px;
    color: var(--dim);
    font-size: 0.65rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) ease;
    font-family: var(--font-body);
}

.carousel-btn:hover {
    border-color: var(--red);
    color: var(--red);
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(184, 67, 58, 0.15);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-inner {
    position: relative;
    min-height: 180px;
    padding: 32px 32px 24px;
}

.lyric-slide {
    position: absolute;
    inset: 0;
    padding: 32px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--duration-slow) ease, transform var(--duration-slow) ease;
    pointer-events: none;
}

.lyric-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Directional slide classes */
.lyric-slide.exit-left {
    transform: translateX(-30px);
}

.lyric-slide.exit-right {
    transform: translateX(30px);
}

.lyric-slide p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 2;
    color: var(--white);
    opacity: 0.85;
}

.lyric-slide p em {
    font-style: normal;
    color: var(--red);
    text-shadow: 0 0 20px rgba(184, 67, 58, 0.3);
}

/* Section change flash */
.section-change {
    border-color: rgba(184, 67, 58, 0.3) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(232, 228, 222, 0.03), 0 0 30px rgba(184, 67, 58, 0.06) !important;
}

/* Scrubber */
.carousel-scrubber {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
}

.scrubber-track {
    flex: 1;
    height: 2px;
    background: var(--muted);
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

.scrubber-track::before {
    content: '';
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: 0;
    right: 0;
}

.scrubber-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.15s ease;
}

.scrubber-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: left 0.15s ease, transform 0.15s ease;
    z-index: 2;
    box-shadow: 0 0 8px rgba(184, 67, 58, 0.3);
}

.scrubber-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.3);
}

.scrubber-marker {
    position: absolute;
    top: -4px;
    width: 1px;
    height: 11px;
    background: var(--dim);
    pointer-events: none;
    z-index: 1;
}

.scrubber-counter {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--dim);
    white-space: nowrap;
    min-width: 48px;
    text-align: right;
}

/* ——— COMMENTS ——— */
.comments-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.comments-container {
    border: 1px solid rgba(58, 56, 52, 0.2);
    background: linear-gradient(180deg, var(--dark) 0%, rgba(17, 17, 22, 0.5) 100%);
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(58, 56, 52, 0.2);
}

.comments-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
}

.comments-count {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--dim);
    letter-spacing: 0.1em;
}

/* Comment form */
.comment-form {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(58, 56, 52, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.comment-form-row {
    display: flex;
    gap: 8px;
}

.comment-form input[type="text"] {
    flex: 1;
    border: 1px solid rgba(58, 56, 52, 0.25);
    background: transparent;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--white);
    outline: none;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]::placeholder {
    color: var(--muted);
}

.comment-form input[type="text"]:focus {
    border-color: var(--red);
}

.comment-form textarea {
    border: 1px solid rgba(58, 56, 52, 0.25);
    background: transparent;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--white);
    outline: none;
    font-weight: 300;
    resize: vertical;
    min-height: 70px;
    line-height: 1.7;
    transition: border-color 0.3s ease;
}

.comment-form textarea::placeholder {
    color: var(--muted);
}

.comment-form textarea:focus {
    border-color: var(--red);
}

.comment-form button {
    border: 1px solid var(--red);
    background: transparent;
    color: var(--red);
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration-normal) ease;
    white-space: nowrap;
}

.comment-form button:hover {
    background: var(--red);
    color: var(--void);
}

.comment-form button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Comments list */
.comments-list {
    max-height: 480px;
    overflow-y: auto;
}

.comments-list::-webkit-scrollbar {
    width: 4px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: var(--muted);
}

.comments-loading {
    padding: 32px 24px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.comment-item {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(58, 56, 52, 0.1);
    animation: comment-fade-in 0.4s var(--ease-out);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}

.comment-name {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--white);
}

.comment-time {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.comment-body {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.75;
    padding-left: 40px;
}

.comments-empty {
    padding: 40px 24px;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--muted);
}

@keyframes comment-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ——— CONNECT ——— */
.connect {
    max-width: 520px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196, 154, 92, 0.02) 0%, transparent 70%);
}

.connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--red);
    opacity: 0.5;
}

.connect-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    color: var(--white);
    margin-bottom: 12px;
}

.connect-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--text-soft);
    margin-bottom: 44px;
    line-height: 2.0;
    letter-spacing: 0.04em;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto 44px;
    border: 1px solid rgba(58, 56, 52, 0.25);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.newsletter-form:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(184, 67, 58, 0.08);
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 22px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white);
    outline: none;
    font-weight: 300;
}

.newsletter-form input[type="email"]::placeholder { color: var(--muted); }

.newsletter-form button {
    border: none;
    border-left: 1px solid var(--muted);
    background: transparent;
    color: var(--red);
    padding: 16px 26px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration-normal) ease;
}

.newsletter-form button:hover {
    background: var(--red);
    color: var(--void);
}

.newsletter-form button:active {
    transform: scale(0.96);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color var(--duration-normal) ease, transform var(--duration-normal) ease;
}

.social-link:hover {
    color: var(--red);
    transform: translateY(-2px);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--red);
    transition: width 0.4s var(--ease-out);
}

.social-link:hover::after { width: 100%; }

/* ——— FOOTER ——— */
footer {
    text-align: center;
    padding: 48px 24px 56px;
    border-top: 1px solid rgba(58, 56, 52, 0.15);
}

footer p {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    line-height: 2.4;
}

footer a {
    color: var(--dim);
    text-decoration: none;
    transition: color var(--duration-normal) ease;
}

footer a:hover { color: var(--red); }

footer .footer-joke {
    margin-top: 8px;
    font-style: italic;
    color: rgba(58, 56, 52, 0.6);
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
    .hero-bg,
    .hero-artist, .hero-title-block, .hero-title, .hero-subtitle, .hero-cta, .scroll-hint {
        opacity: 1; transform: none; filter: none;
    }
    .hero-title, .hero-results { -webkit-text-fill-color: var(--white); background: none; }
    .stars-field { display: none; }
    .hero-bg { animation: none; }
    .fireworks-canvas { display: none; }
}

/* ——— Mobile ——— */
@media (max-width: 600px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }
    .hero-results {
        font-size: clamp(1rem, 4vw, 1.8rem);
    }
    .music-section {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 3.2rem);
    }
    .hero-results {
        font-size: clamp(0.9rem, 3.5vw, 1.4rem);
    }
    .social-links { gap: 16px; flex-wrap: wrap; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button {
        border-left: none;
        border-top: 1px solid var(--muted);
        padding: 16px;
    }
    .carousel-inner { min-height: 200px; }
    .lyric-slide { padding: 24px 16px 16px; }
}
