/* =========================================================
   HitImpreza — Premium dark + gold landing (Hero + Releases + Contact)
   Plain CSS, no framework
   ========================================================= */

:root {
    --bg-0: #07070a;
    --bg-1: #0c0c10;
    --bg-2: #111118;
    --bg-3: #16161f;
    --line: rgba(125, 92, 255, 0.14);
    --line-strong: rgba(255, 95, 183, 0.32);

    --neon-cyan: #4ad6ff;
    --neon-purple: #7d5cff;
    --neon-pink: #ff5fb7;
    --neon-glow: rgba(125, 92, 255, 0.45);

    --gold: var(--neon-pink);
    --gold-2: var(--neon-cyan);
    --gold-deep: var(--neon-purple);
    --gold-glow: var(--neon-glow);

    --ink: #f3eff9;
    --ink-mute: #a9a5c1;
    --ink-dim: #6e6a85;

    --maxw: 1240px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.75);
    --shadow-gold: 0 20px 60px -22px var(--neon-glow);

    --easing: cubic-bezier(0.22, 1, 0.36, 1);

    --brand-gradient: linear-gradient(135deg, #4ad6ff 0%, #7d5cff 50%, #ff5fb7 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg-0);
    color: var(--ink);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.sr-only { position: absolute !important; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

/* ====================== NAV ====================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(7,7,10,0.55) 0%, rgba(7,7,10,0.25) 70%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--easing), border-color 0.4s var(--easing);
}
.site-header.scrolled {
    background: rgba(7,7,10,0.92);
    border-bottom-color: var(--line);
}

.nav-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; }
.brand-mark {
    width: 40px; height: 40px;
    display: inline-block;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 8px 24px -10px var(--neon-glow);
}
.brand-name {
    font-family: "Kanit", sans-serif;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--ink);
}

.primary-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-size: 14px;
    color: var(--ink-mute);
}
.primary-nav a { position: relative; padding: 6px 2px; transition: color 0.25s var(--easing); }
.primary-nav a:hover { color: var(--ink); }
.primary-nav a::after {
    content: ""; position: absolute;
    left: 0; right: 100%; bottom: -2px;
    height: 1px; background: var(--gold);
    transition: right 0.4s var(--easing);
}
.primary-nav a:hover::after { right: 0; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--gold);
    font-size: 13px; font-weight: 600;
    transition: all 0.3s var(--easing);
}
.nav-cta:hover { background: var(--gold); color: var(--bg-0); border-color: var(--gold); transform: translateY(-1px); }
.nav-cta i { font-size: 11px; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    width: 44px; height: 44px;
    margin-left: auto;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--gold); transition: transform 0.3s var(--easing), opacity 0.3s var(--easing); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: flex; flex-direction: column;
    padding: 16px 28px 28px;
    border-top: 1px solid var(--line);
    background: rgba(7,7,10,0.96);
    backdrop-filter: blur(14px);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 18px; }
.mobile-nav a:last-child { border-bottom: 0; }

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
    transition: transform 0.3s var(--easing), background-color 0.3s var(--easing), color 0.3s var(--easing), box-shadow 0.3s var(--easing);
    border: 1px solid transparent;
    will-change: transform;
}
.btn i { font-size: 12px; }
.btn-primary {
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-deep) 130%);
    color: var(--bg-0);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 25px 70px -20px rgba(125,92,255,0.6); }
.btn-ghost {
    background: rgba(255,255,255,0.03);
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(125,92,255,0.10); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ====================== HERO ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 28px 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}
.hero-inner .eyebrow,
.hero-inner .hero-title,
.hero-inner .hero-sub,
.hero-inner .hero-sub--hi {
    max-width: 680px;
}
.hero-inner .hero-title { max-width: 720px; }

/* tło HERO — zdjęcie + ciemne gradienty */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) contrast(1.05) brightness(0.55);
    transform: scale(1.04);
    animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.04) translateY(0); } 100% { transform: scale(1.12) translateY(-12px); } }
.hero-bg-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(7,7,10,0.78) 0%, rgba(7,7,10,0.55) 35%, rgba(7,7,10,0.82) 75%, rgba(7,7,10,0.96) 100%),
        linear-gradient(90deg, rgba(7,7,10,0.88) 0%, rgba(7,7,10,0.35) 55%, rgba(7,7,10,0.15) 100%);
}
.hero-bg-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(7,7,10,0.7) 100%);
}
.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    top: -240px; right: -240px;
    background: radial-gradient(circle, rgba(125,92,255,0.18) 0%, rgba(125,92,255,0.06) 35%, transparent 65%);
    filter: blur(30px);
    z-index: 1;
    animation: floatGlow 18s ease-in-out infinite alternate;
}
@keyframes floatGlow { 0% { transform: translate(0,0); } 100% { transform: translate(-60px, 40px); } }

/* === Hero graphic accent: neon vinyl + prześwitujące logo === */
.hero-vinyl {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    z-index: 2;
    pointer-events: none;
}
.hero-vinyl-disc {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spinDisc 32s linear infinite;
    transform-origin: 50% 50%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 35px rgba(125,92,255,0.35));
}
.hero-vinyl-logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 60%;
    aspect-ratio: 1 / 1;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 76%);
            mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 76%);
    opacity: 0.85;
    mix-blend-mode: screen;
    animation: logoBreath 6s ease-in-out infinite alternate;
    pointer-events: none;
    filter: drop-shadow(0 0 22px rgba(125,92,255,0.55)) drop-shadow(0 0 40px rgba(255,95,183,0.28));
}
.hero-vinyl-glow {
    position: absolute;
    inset: 4%;
    background: radial-gradient(circle at 50% 50%, rgba(125,92,255,0.30) 0%, rgba(74,214,255,0.18) 28%, rgba(255,95,183,0.14) 50%, transparent 68%);
    filter: blur(38px);
    z-index: -1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}
@keyframes spinDisc { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseGlow { 0% { opacity: 0.7; transform: scale(0.94); } 100% { opacity: 1; transform: scale(1.08); } }
@keyframes logoBreath {
    0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.97); }
    100% { opacity: 0.92; transform: translate(-50%, -50%) scale(1.04); }
}

/* === Hero graphic accent: animated soundwave === */
.hero-wave {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    z-index: 2;
    opacity: 0.45;
    pointer-events: none;
}
.hero-wave span {
    display: block;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    border-radius: 2px;
    height: 12%;
    animation: waveBar 1.4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(125,92,255,0.35);
}
.hero-wave span:nth-child(1)  { animation-delay: 0.00s; }
.hero-wave span:nth-child(2)  { animation-delay: 0.07s; }
.hero-wave span:nth-child(3)  { animation-delay: 0.14s; }
.hero-wave span:nth-child(4)  { animation-delay: 0.21s; }
.hero-wave span:nth-child(5)  { animation-delay: 0.28s; }
.hero-wave span:nth-child(6)  { animation-delay: 0.35s; }
.hero-wave span:nth-child(7)  { animation-delay: 0.42s; }
.hero-wave span:nth-child(8)  { animation-delay: 0.49s; }
.hero-wave span:nth-child(9)  { animation-delay: 0.56s; }
.hero-wave span:nth-child(10) { animation-delay: 0.63s; }
.hero-wave span:nth-child(11) { animation-delay: 0.70s; }
.hero-wave span:nth-child(12) { animation-delay: 0.77s; }
.hero-wave span:nth-child(13) { animation-delay: 0.84s; }
.hero-wave span:nth-child(14) { animation-delay: 0.91s; }
.hero-wave span:nth-child(15) { animation-delay: 0.98s; }
.hero-wave span:nth-child(16) { animation-delay: 1.05s; }
.hero-wave span:nth-child(17) { animation-delay: 1.12s; }
.hero-wave span:nth-child(18) { animation-delay: 1.19s; }
.hero-wave span:nth-child(19) { animation-delay: 1.26s; }
.hero-wave span:nth-child(20) { animation-delay: 1.33s; }
@keyframes waveBar {
    0%, 100% { height: 12%; }
    25% { height: 80%; }
    50% { height: 35%; }
    75% { height: 100%; }
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(125,92,255,0.12);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 12px var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

.hero-title {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-size: clamp(46px, 7.5vw, 104px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: var(--ink);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-mute);
    max-width: 660px;
    margin: 0 0 18px;
    line-height: 1.7;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-sub--hi {
    color: var(--ink);
    padding: 16px 22px;
    border-left: 2px solid var(--gold);
    background: rgba(125,92,255,0.08);
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(4px);
    margin-top: 8px;
    margin-bottom: 36px;
}
.hero-sub--hi strong { color: var(--gold); font-weight: 700; }

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

.hero-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.hero-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(7,7,10,0.5);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s var(--easing);
    backdrop-filter: blur(6px);
}
.hero-social i { color: var(--gold); font-size: 14px; }
.hero-social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 6px;
    color: var(--ink-mute);
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    z-index: 3;
}
.hero-scroll i { animation: bounceY 2s ease-in-out infinite; color: var(--gold); }
@keyframes bounceY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.hero-scroll:hover { color: var(--gold); }

/* ====================== SECTIONS ====================== */
.section {
    padding: 120px 28px;
    position: relative;
    z-index: 2;
}
.section + .section { border-top: 1px solid var(--line); }

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}
.section-title {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    color: var(--ink);
}
.lede {
    font-size: 18px;
    color: var(--ink);
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 560px;
}
.section-desc {
    color: var(--ink-mute);
    max-width: 440px;
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

/* ====================== RELEASES / EMBEDS ====================== */
.embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.embed-card {
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--easing), border-color 0.5s var(--easing);
}
.embed-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}
.embed-frame {
    aspect-ratio: 1/1;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.embed-frame iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}
.embed-empty {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    color: var(--ink-mute);
    text-align: center;
    padding: 24px;
    background:
        repeating-linear-gradient(45deg, rgba(125,92,255,0.04) 0 10px, transparent 10px 20px);
}
.embed-empty i { font-size: 42px; color: var(--gold); margin-bottom: 4px; }
.embed-empty p { margin: 0; font-size: 14px; color: var(--ink); }
.embed-empty code {
    background: var(--bg-3);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}
.embed-empty small { color: var(--ink-dim); font-size: 12px; }

.embed-meta { padding: 20px 22px 22px; }
.embed-kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.embed-meta h3 {
    font-family: "Kanit", sans-serif;
    font-size: 20px;
    margin: 6px 0 0;
    color: var(--ink);
    font-weight: 600;
}

.releases-note {
    margin: 48px 0 0;
    color: var(--ink-mute);
    text-align: center;
    font-size: 14px;
}
.releases-note a {
    color: var(--gold);
    border-bottom: 1px solid var(--line-strong);
    transition: border-color 0.3s var(--easing);
}
.releases-note a:hover { border-color: var(--gold); }

/* ====================== CONTACT ====================== */
.contact { padding-bottom: 100px; }
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 26px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-list li {
    display: flex; align-items: center; gap: 14px;
    color: var(--ink); font-size: 15px;
}
.contact-list i { color: var(--gold); width: 18px; text-align: center; }
.contact-list a:hover { color: var(--gold); }
.contact-email-reveal {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
}
.contact-email-reveal:hover,
.contact-email-reveal:focus-visible { color: var(--gold); }

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

.contact-card {
    background: var(--bg-1);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(125,92,255,0.20), transparent 60%);
    pointer-events: none;
}
.contact-card h3 {
    font-family: "Kanit", sans-serif;
    font-size: 26px;
    margin: 0 0 8px;
    color: var(--ink);
}
.contact-card > p {
    color: var(--ink-mute);
    margin: 0 0 24px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.contact-form .field {
    display: flex; flex-direction: column;
    gap: 6px;
}
.contact-form label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
}
.contact-form input,
.contact-form textarea {
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    outline: 0;
    transition: border-color 0.25s var(--easing), background 0.25s var(--easing);
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-dim); }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: var(--bg-3);
}
.contact-form .hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-status {
    margin: 8px 0 0;
    font-size: 13px;
    min-height: 18px;
    color: var(--gold);
}
.form-status.is-error { color: #ff8a7a; }

/* ====================== FOOTER (slim) ====================== */
.site-footer--slim {
    padding: 32px 28px;
    border-top: 1px solid var(--line);
    background: var(--bg-1);
    position: relative;
    z-index: 2;
}
.footer-slim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-socials { display: inline-flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-mute);
    transition: all 0.3s var(--easing);
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-email-reveal {
    width: 36px; height: 36px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-mute);
    transition: all 0.3s var(--easing);
}
.footer-email-reveal:hover,
.footer-email-reveal:focus-visible { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-copy { color: var(--ink-dim); font-size: 12px; }

/* ====================== REVEAL ANIM ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--easing), transform 0.8s var(--easing); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

::selection { background: var(--gold); color: var(--bg-0); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1080px) {
    .embed-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .hero-vinyl { width: 560px; height: 560px; right: -220px; opacity: 0.85; }
}

@media (max-width: 760px) {
    .primary-nav, .nav-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-wrap { padding: 14px 20px; gap: 14px; }
    .container, .section, .hero, .site-footer { padding-left: 20px; padding-right: 20px; }
    .section { padding-top: 90px; padding-bottom: 90px; }
    .hero { padding-top: 130px; padding-bottom: 110px; min-height: auto; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-sub--hi { padding: 14px 18px; }
    .hero-vinyl {
        position: relative;
        right: auto; top: auto; transform: none;
        width: 280px; height: 280px;
        margin: 32px auto 0;
        display: block;
        opacity: 0.9;
    }
    .hero-wave { bottom: 70px; height: 40px; gap: 4px; }
    .hero-wave span { width: 2px; }
    .embed-grid { grid-template-columns: 1fr; }
    .footer-slim { flex-direction: column; text-align: center; }
    .section-head { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-bg img { animation: none; }
    .hero-vinyl-disc { animation: none; }
    .hero-vinyl-logo { animation: none; opacity: 0.85; }
    .hero-wave span { animation: none; height: 50%; }
}
