/* ============================================
   CHEF AKDO — Official Site
   Dark / Red / Brutalist Editorial
   ============================================ */

:root {
    --bg: #050505;
    --bg-2: #0c0c0c;
    --bg-3: #141414;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f5f5;
    --text-dim: #9a9a9a;
    --text-mute: #5a5a5a;
    --accent: #ff1f3d;
    --accent-2: #ff4d2e;
    --spotify: #1ed760;
    --font-display: "Archivo Black", "Bebas Neue", "Impact", sans-serif;
    --font-condensed: "Bebas Neue", "Anton", "Impact", sans-serif;
    --font-body: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
    --maxw: 1400px;
    --pad: clamp(20px, 4vw, 64px);
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

html.no-scroll, html.no-scroll body { overflow: hidden; height: 100%; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

/* ===== Custom cursor ===== */
.cursor, .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transition: transform 0.18s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    mix-blend-mode: difference;
}
.cursor {
    width: 32px; height: 32px;
    border: 1.5px solid #fff;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 5px; height: 5px;
    background: #fff;
    transform: translate(-50%, -50%);
}
.cursor.hover {
    width: 64px; height: 64px;
    background: rgba(255, 31, 61, 0.2);
    border-color: var(--accent);
}
@media (max-width: 900px) {
    .cursor, .cursor-dot { display: none; }
}

/* =============================================
   INTRO / LOADER
   ============================================= */
.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.intro.shatter { animation: introOut 1.6s var(--ease-out) forwards; }
.intro.hidden { display: none; }

@keyframes introOut {
    0%   { opacity: 1; filter: blur(0); transform: scale(1); }
    100% { opacity: 0; filter: blur(14px); transform: scale(1.04); }
}

.intro-bg { position: absolute; inset: 0; pointer-events: none; }
.intro-bg::before {
    content: "";
    position: absolute; inset: -20%;
    background: radial-gradient(ellipse at center, rgba(255, 31, 61, 0.12), transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.08); }
}

.noise {
    position: absolute; inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    mix-blend-mode: overlay;
    animation: noiseShift 1.2s steps(6) infinite;
}
@keyframes noiseShift {
    0%   { transform: translate(0,0); }
    20%  { transform: translate(-4%, 2%); }
    40%  { transform: translate(3%, -3%); }
    60%  { transform: translate(-2%, 4%); }
    80%  { transform: translate(4%, -1%); }
    100% { transform: translate(0,0); }
}

.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--pad);
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.intro-logo-wrap {
    position: relative;
    width: clamp(280px, 60vw, 700px);
    aspect-ratio: 16 / 11;
    display: grid;
    place-items: center;
}
.intro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(255, 31, 61, 0.5));
    animation: logoIn 1.4s var(--ease-out) both, logoFloat 6s ease-in-out 1.4s infinite;
    opacity: 0;
}
@keyframes logoIn {
    0%   { opacity: 0; transform: scale(1.6) rotate(-2deg); filter: drop-shadow(0 0 0 rgba(255,31,61,0)) blur(12px); }
    60%  { opacity: 1; filter: drop-shadow(0 0 80px rgba(255,31,61,0.8)) blur(0); }
    100% { opacity: 1; transform: scale(1) rotate(0); filter: drop-shadow(0 0 60px rgba(255, 31, 61, 0.5)); }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-10px) scale(1.01); }
}
.intro-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(255, 31, 61, 0.35), transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.1); }
}

.enter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 18px;
    letter-spacing: 0.55em;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.enter-btn::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}
.enter-btn:hover { color: #fff; border-color: var(--accent); }
.enter-btn:hover::before { transform: translateY(0); }
.enter-btn-text { position: relative; z-index: 2; }
.enter-btn-bar {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 32px; height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}
.enter-btn:hover .enter-btn-bar { width: 48px; }

.intro-hint {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--text-mute);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2s forwards;
}

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

/* Shatter overlay (canvas) */
.shatter-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
    background: transparent;
    display: none;
}
.shatter-overlay.active { display: block; }
.shatter-overlay canvas { width: 100%; height: 100%; display: block; }

/* =============================================
   NAV
   ============================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease), background 0.4s var(--ease);
}
.nav.visible { transform: translateY(0); }
.nav.scrolled { background: rgba(5,5,5,0.92); border-bottom: 1px solid var(--line); }

.nav-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.32em;
    padding: 10px 0;
    transition: transform 0.3s var(--ease);
}
.nav-brand .nav-brand-text {
    position: relative;
    z-index: 2;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    transition: color 0.3s var(--ease), -webkit-text-stroke 0.3s var(--ease);
}
.nav-brand:hover .nav-brand-text {
    color: #fff;
    -webkit-text-stroke: 1px transparent;
    text-stroke: 1px transparent;
}
.nav-brand:hover {
    transform: scale(1.04);
}

/* Hamburger menu */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.04);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: background 0.3s, border-color 0.3s;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    transform-origin: center;
}
.nav-toggle:hover { background: rgba(255, 31, 61, 0.12); border-color: var(--accent); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--text-dim);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--spotify); border-color: var(--spotify); color: #000; }

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; order: 3; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: rgba(5,5,5,0.96);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 90px 32px 40px;
        gap: 28px;
        transform: translateY(-100%);
        transition: transform 0.5s var(--ease);
        border-bottom: 1px solid var(--line);
        z-index: -1;
    }
    .nav-links.is-open { transform: translateY(0); }
    .nav-links a {
        font-size: 18px;
        letter-spacing: 0.25em;
        color: #fff;
        padding: 8px 0;
        border-bottom: 1px solid var(--line);
    }
    .nav-links a::after { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 85vh;
    padding: 120px var(--pad) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-logo-bg {
    position: absolute;
    top: 50%; left: 50%;
    width: min(800px, 90vw);
    transform: translate(-50%, -50%);
    opacity: 0.22;
    filter: brightness(1.1) contrast(1.2);
    will-change: transform;
    pointer-events: none;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.85) 85%),
        linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 30%, transparent 70%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: clamp(64px, 15vw, 240px);
    line-height: 0.85;
    letter-spacing: 0.005em;
    margin-bottom: 36px;
}
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title-line.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    text-stroke: 1.5px #fff;
}

.hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 12px;
    letter-spacing: 0.3em;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.btn.primary {
    background: #fff;
    color: #000;
}
.btn.primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn.ghost {
    border: 1px solid var(--line-strong);
    color: #fff;
}
.btn.ghost:hover { background: var(--spotify); border-color: var(--spotify); color: #000; transform: translateY(-2px); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    width: max-content;
    max-width: 100%;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.stat-value {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.02em;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 480px) {
    .hero-stats { gap: 28px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-mute);
    font-size: 10px;
    letter-spacing: 0.4em;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}
.scroll-indicator span {
    width: 1px;
    height: 26px;
    background: linear-gradient(to bottom, var(--text-mute), transparent);
    animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    align-items: end;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}
.section-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--accent);
    padding-bottom: 8px;
}
.section-title {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}
.section-sub {
    grid-column: 2;
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 14px;
    max-width: 600px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 120px 0;
    background:
        linear-gradient(to bottom, transparent, rgba(255,31,61,0.04), transparent),
        var(--bg);
    position: relative;
}
.about-grid {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-text .lead {
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}
.about-text p {
    color: var(--text-dim);
    margin-bottom: 18px;
    max-width: 56ch;
}
.about-text strong { color: #fff; font-weight: 700; }

.about-facts {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.fact {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    align-items: baseline;
}
.fact-k {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-mute);
    text-transform: uppercase;
}
.fact-v { color: #fff; }

.about-visual { position: sticky; top: 100px; }
.about-image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
}
.about-image-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease);
    filter: contrast(1.05) saturate(1.05);
}
.about-image-frame:hover img { transform: scale(1.05); }
.frame-corner {
    position: absolute;
    width: 24px; height: 24px;
    border: 2px solid var(--accent);
}
.frame-corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.frame-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.frame-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.frame-corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.about-image-caption {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-mute);
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { position: static; }
    .fact { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* =============================================
   SONGS
   ============================================= */
.songs {
    padding: 120px 0;
    background: var(--bg-2);
    position: relative;
}
.songs-list {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.song-card {
    display: grid;
    grid-template-columns: 60px 100px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    transition: background 0.4s var(--ease), padding 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.song-card:last-of-type { border-bottom: 1px solid var(--line); }
.song-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease);
}
.song-card:hover {
    background: linear-gradient(to right, rgba(255,31,61,0.08), transparent);
    padding-left: 36px;
}
.song-card:hover::before { transform: scaleY(1); transform-origin: top; }

.song-rank {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--text-mute);
    letter-spacing: 0.05em;
    transition: color 0.4s;
}
.song-card:hover .song-rank { color: var(--accent); }

.song-cover {
    position: relative;
    width: 90px; height: 90px;
    overflow: hidden;
    border-radius: 6px;
}
.song-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.song-card:hover .song-cover img { transform: scale(1.1); }
.play-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.play-icon svg { width: 28px; height: 28px; transform: translateY(4px); transition: transform 0.3s; }
.song-card:hover .play-icon { opacity: 1; }
.song-card:hover .play-icon svg { transform: translateY(0); }

.song-info h3 {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 36px);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.song-info p {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.song-streams {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.song-streams span {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.04em;
}
.song-streams small {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--text-mute);
}

@media (max-width: 700px) {
    .song-card { grid-template-columns: 40px 70px 1fr; padding: 14px 16px; gap: 14px; }
    .song-card:hover { padding-left: 22px; }
    .song-cover { width: 64px; height: 64px; }
    .song-rank { font-size: 20px; }
    .song-info h3 { font-size: 18px; }
    .song-streams { grid-column: 2 / -1; flex-direction: row; gap: 10px; align-items: baseline; padding-top: 4px; }
    .song-streams span { font-size: 16px; }
}

.songs-secondary {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 64px auto 0;
}
.songs-secondary h4 {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    margin-bottom: 22px;
}
.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-list li {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: #fff;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
    cursor: default;
}
.tag-list li em {
    color: var(--text-mute);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.15em;
}
.tag-list li:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.tag-list li:hover em { color: rgba(255,255,255,0.85); }

/* =============================================
   ALBUMS
   ============================================= */
.albums {
    padding: 120px 0;
    background: var(--bg);
}
.albums-grid {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.albums-grid.two {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
    max-width: 720px;
    gap: 32px;
}
@media (max-width: 600px) {
    .albums-grid.two { grid-template-columns: minmax(0, 280px); }
}
.album-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
}
.album-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
    filter: saturate(0.95);
}
.album-card:hover .album-cover img { transform: scale(1.06); filter: saturate(1.1); }
.album-card.featured .album-cover { box-shadow: 0 30px 60px -30px rgba(255,31,61,0.5); }
.album-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 6px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.3em;
    border-radius: 4px;
    font-weight: 700;
}
.album-card h3 {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.04em;
    line-height: 1;
}
.album-card p {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-mute);
}

@media (max-width: 900px) { .albums-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .albums-grid { grid-template-columns: 1fr; } }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: 120px 0;
    background: var(--bg-2);
}
.gallery-grid {
    padding: 0 var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    cursor: pointer;
    aspect-ratio: 4 / 5;
    margin: 0;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter 0.6s;
    filter: brightness(0.82);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

.gallery-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 22px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 35%, transparent 60%);
    color: #fff;
    gap: 4px;
    pointer-events: none;
}
.cap-title {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.28em;
    line-height: 1;
}
.cap-sub {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
    .gallery-item { aspect-ratio: 4 / 3; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 120px var(--pad) 100px;
    background:
        radial-gradient(ellipse at top, rgba(255,31,61,0.18), transparent 60%),
        var(--bg);
    text-align: center;
}
.contact-wrap { max-width: 900px; margin: 0 auto; }

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}
.social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.social svg { width: 18px; height: 18px; }
.social:hover { transform: translateY(-3px); background: var(--accent); border-color: var(--accent); }
.social[data-label="Spotify"]:hover { background: var(--spotify); border-color: var(--spotify); color: #000; }
.social[data-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.social[data-label="TikTok"]:hover { background: #fff; border-color: #fff; color: #000; }
.social[data-label="Genius"]:hover { background: #ffff64; border-color: #ffff64; color: #000; }

.booking {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.booking a {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 34px;
    letter-spacing: 0.08em;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 6px;
    transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.booking a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 32px var(--pad);
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-brand strong {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.28em;
    display: block;
    margin-bottom: 4px;
}
.footer-brand span {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-mute);
}
.footer-tag {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.3em;
    color: var(--accent);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
