/* ─────────────────────────────────────────
   KUJI Theme v2 — design system
   Estratto e consolidato dai file HTML originali (home, archivi, news-detail).
───────────────────────────────────────── */

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

:root {
	--white: #fff;
	--black: #111;
	--gray-mid: #dedad4;
	--gray-text: #888;
	--text-muted: rgba(0,0,0,0.65);
	--serif: 'Playfair Display', Georgia, serif;
	--serif-body: 'Crimson Pro', Georgia, serif;
	--sans: 'Inter', sans-serif;
	--radius: 14px;
	--nav-h: 70px;
	--pad-x: 5vw;
	--pad-section: 5rem var(--pad-x) 6rem;
	--max-w: 1280px;
	--read-w: 680px;
	--gap: 20px;
	--accent: #111;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--black); font-size: 14px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button, a { cursor: pointer; }

/* Accessibilità */
.skip-link {
	position: absolute;
	top: -60px; left: 0;
	background: var(--black);
	color: var(--white);
	padding: 12px 20px;
	z-index: 1000;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Soft-navigation progress bar (assets/js/router.js) — thin, indeterminate-feeling
   bar that eases toward 70% while a page/filter fetch is in flight, then snaps to
   100% and fades out once the swap is done. Sits above the nav (z-index) so it reads
   as global page-load feedback rather than a nav element. */
#kujiRouteProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--black); z-index: 200; opacity: 0; pointer-events: none; transition: width 0.2s ease, opacity 0.2s ease; }
#kujiRouteProgress.loading { opacity: 1; width: 70%; transition: width 3s cubic-bezier(0.1,0.7,0.6,0.95), opacity 0.2s ease; }
#kujiRouteProgress.done { opacity: 1; width: 100%; transition: width 0.2s ease, opacity 0.2s ease; }
main:focus { outline: none; }
.screen-reader-text:not(:focus) {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
}

.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 6vw, 72px); font-weight: 700; text-align: center; letter-spacing: -0.03em; margin-bottom: 0; }
.section-intro { font-size: clamp(16px, 2vw, 20px); font-weight: 300; color: var(--text-muted); text-align: center; margin: 1rem auto 2.5rem; max-width: 680px; line-height: 1.5; }
.section-intro p, .contact-intro p, .archive-sub p { margin: 0 0 0.75em; }
.section-intro p:last-child, .contact-intro p:last-child, .archive-sub p:last-child { margin-bottom: 0; }
.view-more-wrap { text-align: center; margin-top: 2.5rem; }
.view-more-btn { display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 30px; border: 0.5px solid var(--black); border-radius: 40px; color: var(--black); background: transparent; text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.view-more-btn:hover { background: var(--black); color: var(--white); transform: scale(1.05); }

.glass-panel { background: rgba(255,255,255,0.10); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; }
.glass-pill { display: inline-flex; align-items: center; flex-shrink: 0; padding: 6px 14px; background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; font-size: 11px; font-weight: 500; color: #fff; white-space: nowrap; border: 1px solid rgba(255,255,255,0.32); transition: background 0.2s; }
.glass-pill:hover { background: rgba(255,255,255,0.35); }

/* Card system (release, news, video, shop) */
.card-base, .card { position: relative; border-radius: var(--radius); overflow: hidden; background: #181818; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease; }
.card-base:hover, .card:hover { transform: scale(1.04); box-shadow: 0 6px 22px rgba(0,0,0,0.12); }
.card-bg { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 0.55s ease; }
.card-base:hover .card-bg, .card:hover .card-bg { transform: scale(1.06); }
.card-gradient { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.18) 55%, transparent 80%); }
.card-glass { position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 4; }
.card-glass-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,0.10); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; }
.card-meta { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.card-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.card-sub, .card-price { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.card-price { font-size: 14px; font-weight: 600; color: #fff; }
.card-cat-badge { position: absolute; top: 12px; left: 12px; z-index: 5; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; background: rgba(255,255,255,0.14); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.28); color: #fff; border-radius: 999px; font-weight: 500; }
.card-date-badge, .card-year-badge, .card-dur { position: absolute; top: 12px; right: 12px; z-index: 5; font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,0.72); font-weight: 500; }
.card-new-badge { position: absolute; top: 12px; right: 12px; z-index: 5; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 9px; background: #fff; color: var(--black); border-radius: 999px; font-weight: 600; }

.play-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.42); display: flex; align-items: center; justify-content: center; opacity: 0; z-index: 5; transition: opacity 0.3s, transform 0.3s; }
.play-circle svg { fill: white; width: 18px; height: 18px; margin-left: 3px; }
.card-base:hover .play-circle { opacity: 1; transform: translate(-50%,-50%); }
.video-card .play-circle { opacity: 1; transform: translate(-50%,-50%); }
.music-card .card-gradient { opacity: 0; transition: opacity 0.3s; }
.music-card:hover .card-gradient { opacity: 1; }
.music-card .card-glass { transform: translateY(14px); opacity: 0; transition: transform 0.3s, opacity 0.3s; }
.music-card:hover .card-glass { transform: translateY(0); opacity: 1; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: #ffffffb3; backdrop-filter: blur(14px); border-bottom: 0.5px solid rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; z-index: 100; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo svg, .nav-logo img { height: 70px; width: auto; }
.nav-logo .st0 { fill: none; stroke: var(--black); stroke-width: 0.7px; }
.nav-links { display: flex; gap: 0; list-style: none; background: rgba(255,255,255,0.55); backdrop-filter: blur(16px); border: 0.5px solid rgba(0,0,0,0.09); border-radius: 999px; padding: 4px 6px; }
.nav-links li { display: flex; }
.nav-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); text-decoration: none; opacity: 0.55; padding: 6px 14px; border-radius: 999px; transition: opacity 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a { opacity: 1; background: rgba(0,0,0,0.05); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-btn { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 20px; border: 0.5px solid var(--accent); background: var(--accent); color: var(--white); border-radius: 40px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.nav-btn:hover { background: transparent; color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav[aria-expanded="true"] .nav-toggle span:nth-child(1), .nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.nav-open .nav-links { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgb(255 255 255 / 97%); backdrop-filter: blur(20px); border-bottom: 0.5px solid rgba(0,0,0,0.08); border-radius: 0; padding: 1rem var(--pad-x); gap: 4px; }
.nav.nav-open .nav-links a { padding: 10px 16px; font-size: 13px; }

.nav-cart { position: relative; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; border: 0.5px solid rgba(0,0,0,0.14); background: transparent; color: var(--black); transition: background 0.2s, color 0.2s; text-decoration: none; }
.nav-cart:hover { background: var(--black); color: #fff; border-color: var(--black); }
.nav-cart svg { width: 16px; height: 16px; }
.cart-count { position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px; padding: 0 3px; border-radius: 50%; background: var(--black); color: #fff; font-size: 9px; font-weight: 600; display: flex; align-items: center; justify-content: center; border: 1.5px solid #fff; }

/* HERO */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: grid; grid-template-columns: 1fr 2fr; }
.hero-left { padding: 5rem 3rem 5rem var(--pad-x); display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.hero-title { font-family: var(--serif); font-size: clamp(64px, 10vw, 120px); font-weight: 700; font-style: italic; line-height: 0.88; letter-spacing: -0.02em; margin-bottom: 2.5rem; color: var(--black); }
/* Home hero only ("Latest" — now an <h2>, .article-hero .hero-title on single news
   pages is unaffected): fixed 60px at every viewport, overriding the shared clamp()
   above via specificity (two classes beat one, regardless of media query). */
.hero .hero-title { font-size: 60px; margin-bottom: 0.75rem; }
.hero-latest-release { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--text-muted); max-width: 380px; line-height: 1.5; margin-bottom: 2.25rem; }
.hero-player { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.player-btn { width: 34px; height: 34px; border-radius: 50%; border: 0.5px solid rgba(0,0,0,0.3); background: transparent; display: flex; align-items: center; justify-content: center; color: var(--black); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.player-btn:hover, .player-btn.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.player-btn svg { width: 12px; height: 12px; fill: currentColor; }
.hero-events { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.hero-events-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.75rem; }
.hero-events-label, .hero-event-mo { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); }
.hero-events-link { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); text-decoration: none; }
.hero-events-list { border-top: 0.5px solid rgba(0,0,0,0.1); }
.hero-event-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.07); }
.hero-event-row:last-child { border-bottom: none; }
.hero-event-date { display: flex; flex-direction: column; line-height: 1; }
.hero-event-day { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 26px; color: var(--black); }
.hero-event-info h3 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.hero-event-info h3 a { color: inherit; text-decoration: none; }
.hero-event-info p { font-size: 11px; color: var(--gray-text); }
.hero-event-tag { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 9px; border: 0.5px solid rgba(0,0,0,0.18); border-radius: 999px; white-space: nowrap; color: var(--black); }
.hero-event-tag.upcoming-badge { background: var(--black); color: var(--white); border-color: var(--black); }
.hero-right { background: var(--white); display: flex; align-items: center; justify-content: center; min-height: 100%; perspective: 1400px; }

/* Hero player teaser (right column): sits permanently tilted with a drop shadow
   (near-axonometric, per design reference) instead of flat. "Play" opens the same
   item-drawer used by the release archive cards (data-drawer-id/data-drawer-type,
   see template-parts/home/hero.php + the ITEM DRAWER script above) — the drawer
   itself shows an embedded Bandcamp player when the release has a Bandcamp Embed ID
   set (template-parts/drawer/drawer-release.php), or its usual tracklist otherwise.
   Kept monochrome (deep gradient + shadow) rather than an off-brand accent color,
   matching the rest of the design system. */
.hero-player-teaser { width: 640px; height: 640px; border-radius: var(--radius); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 3rem; text-align: center; background: linear-gradient(160deg,#242424,#050505) #111; background-size: cover; background-position: center; color: #fff; box-shadow: 0 45px 70px -15px rgba(0,0,0,0.55); transform: rotateY(-10deg) rotateX(5deg) rotate(-1deg); transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s ease; }
.hero-player-teaser:hover { transform: rotateY(-4deg) rotateX(2deg) rotate(-0.5deg) translateY(-4px); box-shadow: 0 55px 80px -15px rgba(0,0,0,0.6); }
.hero-player-teaser-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.8) 100%); }
.hero-player-teaser-title { position: relative; font-family: var(--serif); font-style: italic; font-size: 32px; line-height: 1.3; margin-bottom: 1.75rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.hero-player-teaser-actions { position: relative; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-player-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; border: 0.5px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); color: #fff; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-player-btn svg { width: 14px; height: 14px; fill: currentColor; stroke: currentColor; }
.hero-player-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.hero-player-btn.is-play { background: #fff; color: var(--black); border-color: #fff; }
.hero-player-btn.is-play:hover { background: rgba(255,255,255,0.85); }

/* BIO */
.bio { padding: 5rem var(--pad-x); background: var(--white); }
.bio-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bio-text { font-size: clamp(18px, 2.5vw, 22px); line-height: 1.3; color: var(--text-muted); font-weight: 300; }

/* CAROUSEL */
.carousel-wrap { position: relative; padding: 0 3.5rem; }
.carousel-mask { overflow: hidden; padding: 20px; margin: -20px; }
.carousel-track { display: flex; gap: var(--gap); padding: 20px 0; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 0.5px solid rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; z-index: 10; }
.carousel-btn.prev { left: 0; } .carousel-btn.next { right: 0; }
.carousel-btn svg { width: 14px; height: 14px; stroke: var(--black); }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 2.5rem; }
.carousel-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--black); }
.carousel-dots .dot.inactive { background: rgba(0,0,0,0.2); }
.album-card { flex: 0 0 calc(25% - 15px); aspect-ratio: 1; }
.video-card { flex: 0 0 calc(50% - 10px); aspect-ratio: 16/9; }
.shop-card { flex: 0 0 calc(33.333% - 14px); aspect-ratio: 3/4; }

.music-section, .live-section, .video-section, .shop-section, .contact-section { padding: var(--pad-section); background: var(--white); }
.live-section .section-title { margin-bottom: 20px; }
.news-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.news-card { aspect-ratio: 4/3; }
.merch-card { aspect-ratio: 3/4; }

/* CONTACT */
.contact-section { text-align: center; }
.contact-intro { font-size: clamp(16px,2vw,20px); font-weight: 300; color: var(--text-muted); max-width: 600px; margin: 1rem auto 3rem; line-height: 1.4; }
.social-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(0,0,0,0.04); border: 0.5px solid rgba(0,0,0,0.1); border-radius: 999px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); text-decoration: none; transition: background 0.2s, transform 0.3s; }
.social-link:hover { background: rgba(0,0,0,0.08); transform: scale(1.05); }
.newsletter-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 1rem; }
.newsletter-form { display: flex; align-items: center; max-width: 360px; margin: 0 auto; border: 0.5px solid rgba(0,0,0,0.25); border-radius: 40px; overflow: hidden; padding: 4px 4px 4px 18px; background: var(--white); }
.newsletter-input { flex: 1; border: none; outline: none; font-size: 13px; background: transparent; color: var(--black); }
.newsletter-btn { padding: 8px 22px; background: var(--black); color: var(--white); border: none; border-radius: 30px; font-size: 12px; }
.newsletter-form.is-success { border-color: var(--accent); }
.newsletter-form.is-error { border-color: rgba(160,30,30,0.6); }
.newsletter-consent { display: flex; align-items: flex-start; gap: 8px; max-width: 360px; margin: 12px auto 0; font-size: 11px; line-height: 1.5; color: var(--gray-text); text-align: left; cursor: pointer; }
.newsletter-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.newsletter-consent a { color: inherit; text-decoration: underline; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* FOOTER */
.footer { border-top: 0.5px solid var(--gray-mid); padding: 1.5rem var(--pad-x); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 11px; color: var(--gray-text); letter-spacing: 0.04em; background: var(--white); }
.footer-links { display: flex; align-items: center; gap: 14px; }
.footer-links a { color: var(--gray-text); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-links a:hover { color: var(--black); text-decoration: underline; }
.footer-credit-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-credit-link:hover { color: var(--black); text-decoration: underline; }
.footer-widgets { padding: 3rem var(--pad-x); border-top: 0.5px solid var(--gray-mid); }
.footer-widget-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }

/* MODAL / LIGHTBOX (video) */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 300; align-items: center; justify-content: center; flex-direction: column; gap: 1.25rem; }
.modal-backdrop.open { display: flex; }
.modal-box { background: #111; border-radius: var(--radius); overflow: hidden; width: 72%; max-width: 960px; position: relative; aspect-ratio: 16/9; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.modal-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; }
.modal-play svg { fill: white; width: 26px; height: 26px; margin-left: 4px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 0.5px solid rgba(255,255,255,0.25); color: white; font-size: 15px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.modal-info { width: 72%; max-width: 960px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.modal-info-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.modal-info-title { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 24px; color: #fff; line-height: 1.1; }
.modal-dur { font-size: 12px; color: rgba(255,255,255,0.5); }

/* FILTER BAR: mobile "Filters" toggle (hidden on desktop, .filter-inner always
   visible there — see the max-width:640px override below for the collapsed state). */
.filter-toggle { display: none; }

/* ITEM DRAWER (release/merch archive cards open this instead of navigating away) */
/* Fade + visibility (not display:none/block) so the dark overlay eases in alongside
   the panel's slide instead of popping in instantly — the abrupt overlay flash was
   part of why the whole open animation felt fast, especially on mobile where the
   overlay covers the entire screen at once. visibility, with a delayed transition when
   closing, keeps the (now invisible) backdrop out of the tab order/click area without
   an instant display jump. */
.item-drawer-backdrop { position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0s linear 0.35s; }
.item-drawer-backdrop.open { opacity: 1; visibility: visible; transition: opacity 0.35s ease, visibility 0s linear 0s; }
body.drawer-open .nav,
body.drawer-open main,
body.drawer-open .contact-section,
body.drawer-open .footer,
body.drawer-open .footer-widgets { filter: grayscale(0.85) brightness(0.97); transition: filter 0.3s ease; }
.item-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 92vw); background: var(--white); box-shadow: -20px 0 60px rgba(0,0,0,0.2); overflow-y: auto; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1); }
.item-drawer-backdrop.open .item-drawer { transform: translateX(0); }
.item-drawer-close { position: fixed; top: 18px; right: calc(min(560px, 92vw) - 56px); width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border: 0.5px solid rgba(0,0,0,0.12); color: var(--black); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; }
.item-drawer-body { padding: 0 0 3rem; }
.item-drawer-body .drawer-art { border-radius: 0; aspect-ratio: auto !important; height: 280px; }
.item-drawer-body .drawer-body { padding: 2rem 2.25rem 0 !important; }
.item-drawer-body .drawer-permalink { margin-top: 1.5rem; font-size: 12px; }
.item-drawer-body .drawer-permalink a { color: var(--black); }
.item-drawer-loading, .item-drawer-error { padding: 3rem 2.25rem; color: var(--gray-text); font-size: 13px; text-align: center; }

@media (max-width: 640px) {
	.item-drawer { width: 100vw; }
	.item-drawer-close { right: calc(100vw - 56px); }
	.item-drawer-body .drawer-body { padding: 1.5rem 1.25rem 0 !important; }

	/* Slower, smoother open/close on mobile: at full-viewport width the 0.35s used on
	   desktop covers much more distance in the same time, so it reads as an abrupt
	   snap rather than a slide. */
	.item-drawer { transition: transform 0.5s cubic-bezier(0.16,0.68,0.24,1); }
	.item-drawer-backdrop { transition: opacity 0.5s ease, visibility 0s linear 0.5s; }
	.item-drawer-backdrop.open { transition: opacity 0.5s ease, visibility 0s linear 0s; }
}

/* ARCHIVE HEADER / FILTER BAR / EMPTY STATE */
.archive-header { padding: calc(var(--nav-h) + 4rem) var(--pad-x) 2rem; max-width: var(--max-w); margin: 0 auto; }
.crumb { display: flex; align-items: center; gap: 0.5em; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 1.5rem; flex-wrap: wrap; }
.crumb a { color: var(--gray-text); text-decoration: none; }
.crumb a:hover { color: var(--black); }
.crumb-sep { opacity: 0.5; }
.archive-grid-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.archive-title { font-family: var(--serif); font-size: clamp(36px,6vw,72px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); }
.archive-sub { font-size: clamp(14px,1.5vw,17px); font-weight: 300; color: var(--text-muted); max-width: 380px; text-align: right; line-height: 1.5; }

.filter-bar { position: sticky; top: var(--nav-h); z-index: 50; background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); border-top: 0.5px solid rgba(0,0,0,0.07); border-bottom: 0.5px solid rgba(0,0,0,0.07); padding: 14px var(--pad-x); }
.filter-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.filter-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-row.with-meta { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.filter-row.with-meta .pills-wrap { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-right: 6px; }
.pill { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: transparent; border: 0.5px solid rgba(0,0,0,0.18); color: var(--black); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.pill:hover { border-color: rgba(0,0,0,0.45); }
.pill.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pill .count { margin-left: 6px; opacity: 0.55; }
.results-meta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); white-space: nowrap; }
.sort-row { max-width: var(--max-w); margin: 1.25rem auto 0; padding: 0 var(--pad-x); display: flex; justify-content: flex-end; align-items: center; gap: 0.75rem; }
.sort-row label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); }
.sort-row select { font-size: 12px; padding: 6px 28px 6px 12px; border: 0.5px solid rgba(0,0,0,0.18); border-radius: 999px; background-color: transparent; appearance: none; outline: none; }

.grid-wrap { padding: 1.5rem var(--pad-x) 5rem; }
.grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.grid-video { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.section-h { max-width: var(--max-w); margin: 1.5rem auto 1rem; padding: 0 var(--pad-x); font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(24px,3vw,32px); }

.empty-state { grid-column: 1/-1; text-align: center; padding: 5rem 2rem; color: var(--gray-text); }
.empty-state h3 { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 36px; color: var(--black); margin-bottom: 0.75rem; }
.empty-state p { font-weight: 300; max-width: 360px; margin: 0 auto 1.5rem; }
.empty-state button { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 22px; background: var(--black); color: var(--white); border: none; border-radius: 999px; }

/* UPCOMING (kuji_news archive) */
.upcoming { max-width: var(--max-w); margin: 0 auto 2.5rem; padding: 0 var(--pad-x); }
.upcoming-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.upcoming-head h2 { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(24px,3vw,32px); }
.upcoming-head .meta { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); }
.upcoming-list { border-top: 0.5px solid rgba(0,0,0,0.1); }
.upcoming-row { display: grid; grid-template-columns: 90px 1fr auto auto; align-items: center; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.07); }
.upcoming-date { display: flex; flex-direction: column; line-height: 1; }
.upcoming-day { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 34px; color: var(--black); }
.upcoming-mo { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-top: 5px; }
.upcoming-info h3 a { color: var(--black); text-decoration: none; font-size: 16px; font-weight: 600; }
.upcoming-info p { font-size: 12px; color: var(--gray-text); }
.upcoming-tag { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 11px; border: 0.5px solid rgba(0,0,0,0.18); border-radius: 999px; color: var(--black); white-space: nowrap; }
.upcoming-cta { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; padding: 8px 16px; background: var(--black); color: var(--white); border: none; border-radius: 999px; white-space: nowrap; text-decoration: none; }
.upcoming-cta.sold { background: transparent; color: var(--gray-text); border: 0.5px solid var(--gray-mid); }

/* FEATURED (release archive) */
.featured-section { max-width: var(--max-w); margin: 0 auto 2rem; padding: 0 var(--pad-x); }
.featured-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 21/9; background: #1a1a1a; display: block; }
.featured-card .card-gradient { background: linear-gradient(120deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%); }
.featured-content { position: absolute; bottom: 0; left: 0; padding: 2.5rem 3rem; color: #fff; max-width: 60%; }
.featured-tag { display: inline-block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; margin-bottom: 1.25rem; }
.featured-content h2 { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(36px,5vw,60px); line-height: 0.95; margin-bottom: 0.5rem; }
.featured-content p { font-weight: 300; font-size: 14px; opacity: 0.85; max-width: 420px; line-height: 1.45; margin-bottom: 1.5rem; }
.featured-cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; background: rgba(255,255,255,0.95); color: var(--black); border: none; border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* DRAWER-STYLE single page (release/product) */
.drawer-art { position: relative; overflow: hidden; background: #181818; }
.drawer-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 0.5rem; }
.drawer-title { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 40px; line-height: 1; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.drawer-sub, .drawer-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 300; }
.drawer-price { font-size: 24px; font-weight: 600; margin-bottom: 1.25rem; }
.drawer-tracks { margin-bottom: 1.75rem; border-top: 0.5px solid rgba(0,0,0,0.1); }
.drawer-embed { margin-bottom: 1.25rem; }
.drawer-embed + .drawer-embed { margin-top: -0.5rem; }
.drawer-embed-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 0.5rem; }
.drawer-embed iframe { display: block; border-radius: var(--radius); }
.drawer-track { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 0.5px solid rgba(0,0,0,0.07); font-size: 13px; }
.drawer-track-num, .drawer-track-time { color: var(--gray-text); font-size: 11px; }
.drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.drawer-btn { width: 100%; padding: 13px 16px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border-radius: 999px; border: 0.5px solid var(--black); background: var(--black); color: var(--white); display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; }
.drawer-btn:hover { background: transparent; color: var(--black); }
.drawer-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.drawer-platforms { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-btn { flex: 1 1 calc(50% - 4px); padding: 10px 14px; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; border-radius: 999px; border: 0.5px solid rgba(0,0,0,0.18); background: transparent; color: var(--black); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.drawer-about { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 0.5px solid rgba(0,0,0,0.1); }
.drawer-about-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 0.6rem; }
.drawer-about-text { font-size: 14px; line-height: 1.55; color: var(--text-muted); font-weight: 300; }
.shipping-note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-text); padding: 12px 14px; background: rgba(0,0,0,0.02); border-radius: 10px; margin: 1.25rem 0; }
.shipping-note svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--gray-text); }

/* MERCH GALLERY (single merch) */
.merch-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 12px; }
.merch-gallery-thumb { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1; background: #eeece7; transition: opacity 0.2s; }
.merch-gallery-thumb:hover { opacity: 0.8; }
.merch-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.merch-gallery-thumb { border: none; padding: 0; }

/* MERCH GALLERY LIGHTBOX */
.lightbox-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 300; align-items: center; justify-content: center; }
.lightbox-backdrop.open { display: flex; }
.lightbox-image { max-width: 84vw; max-height: 84vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 0.5px solid rgba(255,255,255,0.25); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 0.5px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.lightbox-nav svg { width: 16px; height: 16px; }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }
.lightbox-nav:disabled { opacity: 0.25; cursor: default; }
.lightbox-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

/* ARTICLE (single kuji_news) */
.article-wrap { max-width: var(--max-w); margin: 0 auto; padding: 3rem var(--pad-x) 1rem; display: grid; grid-template-columns: 1fr var(--read-w) 1fr; gap: 2rem; }
.article-side.left .side-stick { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.share-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 0.8rem; }
.share-list { display: flex; flex-direction: column; gap: 8px; }
.share-list a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 0.5px solid rgba(0,0,0,0.18); border-radius: 999px; color: var(--black); text-decoration: none; }
.article { font-family: var(--serif-body); font-size: 20px; line-height: 1.65; color: #222; }
.article p { margin-bottom: 1.4em; }
.article h1 { font-family: var(--serif); font-style: italic; }
.article h3 { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 30px; margin: 2.2rem 0 1rem; color: var(--black); }
.article blockquote { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 32px; line-height: 1.25; margin: 2.2rem 0; padding: 1.6rem 0; border-top: 0.5px solid rgba(0,0,0,0.15); border-bottom: 0.5px solid rgba(0,0,0,0.15); color: var(--black); }
.article a { color: var(--black); border-bottom: 0.5px solid rgba(0,0,0,0.4); text-decoration: none; }
.hero { position: relative; }
.hero.article-hero { min-height: 30vh; display: block; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.9) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; padding-top: 2rem; padding-bottom: 2rem; }
.article-hero .hero-title { color: #fff; }
@media (min-width: 1025px) {
	/* Desktop-only override for single Live & News articles — the home hero and the
	   mobile/tablet size (still the shared .hero-title clamp()) are untouched. */
	.article-hero .hero-title { font-size: 60px; }
}
.article-hero .crumb, .article-hero .crumb a { color: #fff; }
.article-hero .crumb a:hover { color: rgba(255,255,255,0.7); }
.article-hero .crumb-sep { opacity: 0.6; }
.hero-tags { display: flex; gap: 8px; margin-bottom: 1.2rem; flex-wrap: wrap; }
.tag-pill { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.tag-pill.solid { background: #fff; color: var(--black); border-color: #fff; }
.hero-dek { font-size: clamp(15px,1.4vw,18px); font-weight: 300; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.55; }
.meta-bar { max-width: var(--max-w); margin: 0 auto; padding: 1.4rem var(--pad-x); display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; border-bottom: 0.5px solid rgba(0,0,0,0.08); }
.meta-cell .lbl { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 6px; }
.meta-cell .val { font-size: 14px; font-weight: 500; color: var(--black); }
.meta-cell .val.serif { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 18px; }
.cta-block { margin: 2.5rem 0; padding: 1.8rem; border-radius: var(--radius); border: 0.5px solid rgba(0,0,0,0.12); background: linear-gradient(180deg,#fafaf7,#f3f1eb); display: flex; align-items: center; gap: 1.5rem; }
.cta-block .ico { width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--black); color: #fff; font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 22px; }
.cta-block .body { flex: 1; }
.cta-block h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cta-block p { font-size: 12px; color: var(--text-muted); }
.cta-block .cta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; padding: 10px 22px; background: var(--black); color: #fff; border-radius: 999px; text-decoration: none; white-space: nowrap; }
.cat-nav { max-width: var(--max-w); margin: 0 auto; padding: 1.2rem var(--pad-x); border-bottom: 0.5px solid rgba(0,0,0,0.08); display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.cat-nav-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-right: 0.4rem; }
.cat-pill { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 7px 16px; border-radius: 999px; border: 0.5px solid rgba(0,0,0,0.12); color: var(--gray-text); background: transparent; text-decoration: none; display: inline-flex; gap: 6px; }
.cat-pill.active { background: var(--black); color: #fff; border-color: var(--black); }
.prev-next { max-width: var(--max-w); margin: 3rem auto 0; padding: 0 var(--pad-x); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 0.5px solid rgba(0,0,0,0.08); padding-top: 2rem; }
.pn-card { display: block; padding: 1.2rem 1.4rem; border-radius: var(--radius); border: 0.5px solid rgba(0,0,0,0.09); text-decoration: none; color: var(--black); }
.pn-card.next { text-align: right; }
.pn-dir { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 6px; }
.pn-title { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 20px; line-height: 1.2; }
.pn-card.disabled { opacity: 0.35; pointer-events: none; }
.related-wrap { max-width: var(--max-w); margin: 0 auto; padding: 4rem var(--pad-x) 5rem; }
.related-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.4rem; }
.related-head h2 { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 36px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* Placeholder gradients */
.ph-1{background:linear-gradient(160deg,#b8a882,#8a6840);} .ph-2{background:linear-gradient(160deg,#2a4a6a,#1a7a6a);}
.ph-3{background:linear-gradient(160deg,#d8d0c0,#a09080);} .ph-4{background:linear-gradient(160deg,#1a1a2e,#38306a);}
.ph-5{background:linear-gradient(160deg,#5a2020,#2a1010);} .ph-6{background:linear-gradient(160deg,#2c3e50,#486880);}
.ph-7{background:linear-gradient(160deg,#1a3040,#0a2050);} .ph-8{background:linear-gradient(160deg,#3d2b1f,#6a3818);}
.ph-9{background:linear-gradient(160deg,#181818,#303030);} .ph-10{background:linear-gradient(160deg,#1a0a2e,#280a60);}
.ph-11{background:linear-gradient(160deg,#0a2218,#104030);} .ph-12{background:linear-gradient(160deg,#2a1a08,#503018);}
.ph-13{background:linear-gradient(160deg,#0d0d0d,#1e1e1e);} .ph-14{background:linear-gradient(160deg,#b89040,#806020);}
.ph-15{background:linear-gradient(160deg,#222,#111);} .ph-16{background:linear-gradient(160deg,#ddd6c8,#b8b0a0);}
.ph-17{background:linear-gradient(160deg,#3a4a2a,#1a2a18);} .ph-18{background:linear-gradient(160deg,#702a40,#3a1820);}
.ph-19{background:linear-gradient(160deg,#c0b090,#806848);} .ph-20{background:linear-gradient(160deg,#1a3a4a,#102028);}
.ph-21{background:linear-gradient(160deg,#4a2860,#1a0a30);} .ph-22{background:linear-gradient(160deg,#a86838,#5a2c10);}
.ph-23{background:linear-gradient(160deg,#384858,#1c2430);} .ph-24{background:linear-gradient(160deg,#d8c8b8,#8a7050);}

/* Comments */
.comments-area { max-width: var(--read-w); margin: 2rem auto; }
.comments-title { font-family: var(--serif); }
.comment-form input, .comment-form textarea { width: 100%; border: 0.5px solid rgba(0,0,0,0.2); border-radius: 8px; padding: 10px 12px; margin-bottom: 1rem; font-family: var(--sans); }
.comment-form input[type="submit"] { width: auto; background: var(--black); color: #fff; border: none; padding: 10px 22px; border-radius: 999px; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }

/* RESPONSIVE */
@media (max-width: 1024px) {
	:root { --pad-section: 4rem var(--pad-x) 5rem; }
	.nav-links { display: none; }
	.nav-toggle { display: flex; }
	.hero { grid-template-columns: 1fr; min-height: auto; }
	.hero-left { padding: 4rem var(--pad-x) 3rem; }
	.hero-right { min-height: 50vw; }
	.hero-player-teaser { width: 600px; height: 600px; padding: 2.75rem; transform: none; box-shadow: 0 25px 45px -12px rgba(0,0,0,0.45); }
	.hero-player-teaser:hover { transform: translateY(-4px); }
	.hero-player-teaser-title { font-size: 30px; }
	.album-card { flex: 0 0 calc(50% - 10px); }
	.video-card { flex: 0 0 100%; }
	.shop-card { flex: 0 0 calc(50% - 10px); }
	.news-grid { grid-template-columns: repeat(2,1fr); }
	.grid { grid-template-columns: repeat(2,1fr); }
	.archive-grid-head { grid-template-columns: 1fr; gap: 1rem; }
	.archive-sub { text-align: left; max-width: none; }
	.article-wrap { grid-template-columns: 1fr; max-width: var(--read-w); }
	.article-side.left { display: none; }
	.related-grid { grid-template-columns: repeat(2,1fr); }
	article.merch-detail, article.release-detail { grid-template-columns: 1fr !important; }
	.hero-inner { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 640px) {
	:root { --pad-x: 1.25rem; --gap: 12px; --pad-section: 3rem var(--pad-x) 4rem; }
	.nav { padding: 0 1.25rem; }
	.nav-logo svg, .nav-logo img { height: 52px; }
	.hero-title { font-size: clamp(52px,14vw,80px); }
	.hero-player-teaser { width: 350px; height: 350px; padding: 1.75rem; }
	.hero-player-teaser-title { font-size: 21px; margin-bottom: 1.1rem; }
	.hero-player-btn { padding: 7px 12px; font-size: 10px; }
	.album-card, .video-card, .shop-card { flex: 0 0 100%; }
	.video-card { aspect-ratio: 1; }
	.news-grid, .grid { grid-template-columns: 1fr; }
	.carousel-wrap { padding: 0 2.5rem; }
	.footer { flex-direction: column; gap: 6px; text-align: center; }
	.related-grid { grid-template-columns: 1fr; }
	.prev-next { grid-template-columns: 1fr; }
	.merch-gallery { grid-template-columns: repeat(3,1fr); }

	/* Video lightbox: wider than the 72% used on larger screens, otherwise it looks
	   cramped inside the small viewport. */
	.modal-box, .modal-info { width: 90%; }

	/* Filter bar: collapsed by default behind a "Filters" toggle — the full set of
	   pills (Format/Type + Year, sometimes two rows) took up too much vertical space
	   on a phone screen. .filter-inner opens on tap (assets/js/main.js,
	   initFilterBarToggle()); desktop/tablet are untouched (.filter-toggle stays
	   display:none above 640px, so .filter-inner's normal display:flex applies). */
	.filter-bar { padding: 10px var(--pad-x); }
	.filter-toggle { display: flex; align-items: center; gap: 7px; width: 100%; background: none; border: none; padding: 6px 0; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); cursor: pointer; }
	.filter-toggle svg { width: 13px; height: 13px; stroke: var(--black); fill: none; stroke-width: 1.3; flex-shrink: 0; }
	.filter-inner { display: none; margin-top: 10px; }
	.filter-bar.filters-open .filter-inner { display: flex; }
}
