/* ============================================================
   Vanderveen — muziekafdeling Assen
   Template systeem overgenomen van berg-assen.nl (kaartstijl,
   header/hero-gedrag, scroll-reveal), herkleurd naar het
   oranje/antraciet merk van Vanderveen. Geen gekleurde glow-
   effecten: hover-elevatie gebeurt met neutrale schaduwen en
   border-kleur, niet met een gekleurde bloom.
   ============================================================ */

:root {
    --accent: #ff5c1a;
    --accent-dark: #e2470a;
    --accent-light: #ff9d66;
    --bg: #0c0c0c;
    --bg-2: #111111;
    --bg-3: #161616;
    --card: #141414;
    --line: rgba(255, 255, 255, 0.08);
    --line-accent: rgba(255, 92, 26, 0.35);
    --text: #f5f5f4;
    --text-dim: #a8a8a3;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 22px;
    --radius-md: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { overflow-x: hidden; scroll-padding-top: 90px; }

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

@supports (overflow-x: clip) {
    html, body { overflow-x: clip; }
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

.sr-only {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff;
    padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ============ Typography ============ */

.eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    color: #fff;
}

.body-text {
    color: var(--text-dim);
    font-size: 0.98rem;
    max-width: 46ch;
    margin-bottom: 1.2rem;
}
.body-text strong { color: var(--text); }

/* ============ Buttons ============ */

.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.6rem; font-family: var(--font);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 999px; border: 1px solid transparent; cursor: pointer;
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn .arrow { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

.btn-header { padding: 0.6rem 1.3rem; }
.btn-small { padding: 0.55rem 1.2rem; font-size: 0.72rem; }

.link-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--accent); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer;
}
.link-more .arrow { transition: transform 0.3s var(--ease-out); display: inline-block; }
.link-more:hover .arrow { transform: translateX(5px); }

.badge {
    display: inline-block; padding: 5px 11px; border-radius: 999px;
    font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-new { background: var(--accent); color: #fff; }
.badge-nieuws { background: var(--bg-3); color: var(--text); border: 1px solid var(--line); }
.badge-instore { background: var(--accent); color: #fff; }

/* ============ Header ============ */

.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    padding: 1.1rem 0; transition: padding 0.4s, box-shadow 0.4s;
}
.site-header::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    opacity: 0; transition: opacity 0.4s;
}
.site-header.scrolled { padding: 0.7rem 0; box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled::before { opacity: 1; }

.header-inner { display: flex; align-items: center; gap: 1.6rem; }

.brand, .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; font-size: 1.1rem; color: #fff; }
.brand-sub { font-size: 0.62rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.brand:hover .brand-mark { opacity: 0.85; }

.main-nav { display: flex; gap: 1.1rem; }

.nav-link {
    position: relative; color: var(--text); text-decoration: none; white-space: nowrap;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 0; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */

.hero {
    position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
    width: 100%; height: 100%; object-fit: cover; object-position: 75% 40%;
    transform: scale(1.15); filter: brightness(0.75) saturate(0.9);
    animation: heroZoom 8s var(--ease-expo) 0.2s forwards;
}
@keyframes heroZoom { to { transform: scale(1.02); } }

.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, rgba(9,8,7,0.97) 0%, rgba(9,8,7,0.88) 35%, rgba(9,8,7,0.55) 65%, rgba(9,8,7,0.35) 100%),
        linear-gradient(180deg, rgba(9,8,7,0.35) 0%, transparent 35%, var(--bg) 98%);
}

.hero-curtain {
    position: absolute; inset: 0; z-index: 5; background: var(--bg);
    transform-origin: top; animation: curtainUp 1.1s var(--ease-expo) 0.15s forwards; pointer-events: none;
}
@keyframes curtainUp { to { transform: scaleY(0); } }

.hero-content { position: relative; z-index: 6; padding-top: 3rem; }

.hero-tagline { overflow: hidden; margin-bottom: 0.6rem; }
.hero-tagline span {
    display: inline-block; color: var(--accent); font-size: clamp(0.7rem, 1.4vw, 0.85rem);
    font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
    transform: translateY(120%); animation: letterUp 0.8s var(--ease-expo) 0.25s forwards;
}
@keyframes letterUp { to { transform: translateY(0) rotate(0); } }

.hero-title {
    font-size: clamp(2.6rem, 9vw, 6rem); font-weight: 900; letter-spacing: -0.03em;
    line-height: 0.98; overflow: hidden; display: flex; flex-wrap: wrap; color: #fff;
}
.hero-letter { display: inline-block; transform: translateY(110%) rotate(4deg); animation: letterUp 0.85s var(--ease-expo) forwards; }
.hero-letter-dot { color: var(--accent); }

.hero-line {
    width: 64px; height: 3px; background: var(--accent); margin: 1.6rem 0;
    transform: scaleX(0); transform-origin: left; animation: lineGrow 0.8s var(--ease-expo) 1.15s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-sub-mask { display: block; overflow: hidden; max-width: 620px; }
.hero-sub {
    display: inline-block; font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text); font-weight: 400;
    transform: translateY(110%); animation: letterUp 0.8s var(--ease-expo) 1.3s forwards;
}

.hero-cta {
    display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem;
    opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s var(--ease-expo) 1.55s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-scroll-hint {
    position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 6;
    width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 14px;
    opacity: 0; animation: fadeUp 1s ease 2.2s forwards;
}
.scroll-dot {
    position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
    border-radius: 2px; background: var(--accent); animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ============ Scroll reveal ============ */

[data-reveal] {
    opacity: 0; transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
    will-change: opacity, transform;
}
[data-reveal="fade-up"]    { transform: translateY(44px); }
[data-reveal="fade-left"]  { transform: translateX(54px); }
[data-reveal="fade-right"] { transform: translateX(-54px); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-stagger] > * {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.40s; }
[data-stagger].revealed > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important; animation-delay: 0s !important;
        transition-duration: 0.001s !important; transition-delay: 0s !important;
    }
    [data-reveal], [data-stagger] > * { opacity: 1; transform: none; }
}

/* ============ Sections ============ */

.section { padding: 6.5rem 0; overflow-x: clip; }

/* ---- Inner-page banner ---- */

.page-header {
    padding: 9.5rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-bottom: 1px solid var(--line);
}
.page-header .section-title { margin-bottom: 0.7rem; }
.page-header .body-text { margin-bottom: 0; }

/* ---- Genre filter pills (genres page) ---- */

.genre-filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.genre-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
    background: var(--card); color: var(--text); text-decoration: none;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.03em;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.genre-pill:hover { border-color: var(--line-accent); color: var(--accent-light); }
.genre-pill.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.genre-pill span { opacity: 0.75; font-weight: 500; }

.filter-status-static {
    color: var(--text-dim); font-size: 0.85rem; font-weight: 600; margin-bottom: 2rem;
}
.stats { background: var(--bg); padding: 5rem 0; }

/* stats card (thin vertical dividers only, no outer wide border) */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden;
}
.stat { display: flex; flex-direction: column; gap: 6px; padding: 28px 12px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-number { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- About (album van de week / over ons) ---- */

.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center; }

.about-img-wrap { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.about-img-wrap:hover img { transform: scale(1.04); }

.aow-cover {
    width: 100%; aspect-ratio: 1 / 1; position: relative; display: flex; flex-direction: column;
    justify-content: space-between; padding: 18px; transition: transform 0.8s var(--ease-out);
}
.about-img-wrap:hover .aow-cover { transform: scale(1.04); }
.album-cover-format {
    align-self: flex-start; background: rgba(0,0,0,0.45); color: #fff; font-size: 0.64rem;
    font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.06em;
}
.album-cover-title { color: #fff; font-weight: 800; font-size: 1.2rem; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }

.about-badges { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.badge-item {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.05rem;
    border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.02);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
}

/* ---- Services (waarom vanderveen) ---- */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.service-card {
    display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-md); padding: 2rem 1.5rem;
    transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--line-accent); box-shadow: 0 20px 45px rgba(0,0,0,0.45); }
.service-icon { width: 56px; height: 56px; margin-bottom: 1.4rem; color: var(--accent); transition: transform 0.45s var(--ease-out); }
.service-card:hover .service-icon { transform: translateY(-4px) scale(1.06); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 0.92rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 0.5rem; color: #fff; }
.service-num { color: var(--accent); }
.service-card p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1.2rem; flex: 1; }
.service-card .link-more { margin-top: auto; }

/* ---- Projects (nieuw binnengekomen) ---- */

.projects-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

.filter-status {
    background: var(--bg-3); color: var(--text); border: 1px solid var(--line); padding: 10px 18px;
    border-radius: 999px; display: inline-block; font-weight: 700; font-size: 0.82rem; margin: -12px 0 24px;
}

.album-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
    transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}
.album-card:hover { transform: translateY(-8px); border-color: var(--line-accent); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.album-card.is-hidden { display: none; }

.album-cover {
    aspect-ratio: 1 / 1; position: relative; display: flex; flex-direction: column;
    justify-content: space-between; padding: 14px; overflow: hidden;
    transition: transform 0.8s var(--ease-out), filter 0.8s;
}
.album-card:hover .album-cover { transform: scale(1.05); filter: brightness(1.08); }
.album-cover .badge-new { position: absolute; top: 14px; right: 14px; }

.album-info { padding: 1.3rem 1.4rem 1.5rem; }
.album-title { font-weight: 800; margin: 0 0 2px; font-size: 0.98rem; color: #fff; }
.album-artist { color: var(--text-dim); margin: 0 0 10px; font-size: 0.88rem; }
.album-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-dim); margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.album-price { font-weight: 800; color: var(--accent-light); margin: 0; }
.album-price-note { font-weight: 500; color: var(--text-dim); text-transform: none; letter-spacing: 0; font-size: 0.72rem; }

/* ---- Why (genres) ---- */

.why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.title-line { width: 64px; height: 3px; background: var(--accent); margin-top: 0.6rem; }
.why-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.why-item.genre-tile {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 1.4rem 1.3rem; text-align: left; cursor: pointer; display: flex; flex-direction: column; gap: 6px;
    transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
    font-family: inherit;
}
.why-item.genre-tile:hover { transform: translateY(-4px); border-color: var(--line-accent); }
.why-item.genre-tile.is-active { border-color: var(--accent); background: rgba(255,92,26,0.08); }
.genre-name { font-weight: 800; color: #fff; font-size: 0.92rem; }
.genre-count { font-size: 0.76rem; color: var(--text-dim); }

/* ---- Wall of fame ---- */

.top15-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.2rem; }
.top15-row {
    display: grid; grid-template-columns: 40px 48px 1fr auto; align-items: center; gap: 1rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0.8rem 1.2rem;
    transition: border-color 0.3s;
}
.top15-row:hover { border-color: var(--line-accent); }
.top15-rank { font-weight: 800; color: var(--accent); font-size: 0.88rem; }
.top15-cover { width: 48px; height: 48px; border-radius: 6px; }
.top15-info { display: flex; flex-direction: column; min-width: 0; }
.top15-title { font-weight: 800; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
.top15-artist { font-size: 0.8rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top15-genre { font-size: 0.72rem; color: var(--text-dim); text-align: right; display: none; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- News ---- */

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.news-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.news-card:hover { transform: translateY(-6px); border-color: var(--line-accent); }
.news-card time { display: block; font-size: 0.72rem; color: var(--text-dim); margin: 0.8rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.news-card h3 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 800; color: #fff; }
.news-card p { margin: 0; color: var(--text-dim); font-size: 0.88rem; }

/* ---- Contact ---- */

.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; margin: 1.4rem 0 1.6rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.contact-item span { display: block; }
.contact-item span > span:first-child {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 0.15rem;
}
.contact-item a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--accent); }

.contact-form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin: 1rem 0 0; }
.form-field label {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim);
}
.form-field input, .form-field textarea {
    width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
    color: var(--text); font-family: var(--font); font-size: 0.95rem; padding: 0.8rem 0.95rem;
    transition: border-color 0.3s; color-scheme: dark;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #66625c; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--line-accent); }
.btn-submit { width: 100%; justify-content: center; margin-top: 1.2rem; border: 0; }

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

.form-status { display: none; margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 6px; font-size: 0.88rem; }
.form-status.show { display: block; background: rgba(255,92,26,0.1); border: 1px solid var(--line-accent); color: var(--accent-light); }
.form-status.error { background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.3); color: #ff8a8a; }
.form-note { margin-top: 0.9rem; font-size: 0.74rem; color: var(--text-dim); }

/* ============ Footer ============ */

.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-inner .logo { margin-right: auto; }
.footer-copy { color: var(--text-dim); font-size: 0.76rem; }
.footer-nav { display: flex; gap: 1.3rem; }
.footer-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s; }
.footer-nav a:hover { color: var(--accent); }

/* ============ Responsive ============ */

@media (max-width: 960px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1240px) {
    .btn-header { display: none; }
}

@media (max-width: 1080px) {
    .main-nav {
        position: fixed; inset: 0; z-index: 105; background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
        opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.35s, visibility 0.35s;
    }
    .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .main-nav .nav-link { font-size: 1.05rem; }
    .nav-toggle { display: flex; position: relative; z-index: 110; }
    .top15-genre { display: none; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 680px) {
    .section { padding: 4.5rem 0; }
    .services-grid, .projects-grid, .news-grid { grid-template-columns: 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .stat { padding: 18px 8px; }
    .stat-label { font-size: 0.62rem; letter-spacing: 0.02em; }
    .about-badges { flex-wrap: wrap; }
}

@media (min-width: 640px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1081px) {
    .top15-genre { display: block; }
}

@media (min-width: 1100px) {
    .projects-grid { grid-template-columns: repeat(4, 1fr); }
}
