/* ==========================================================================
   Zero Crossing Records — foglio di stile
   ========================================================================== */

:root {
  --bg: #0a0d14;
  --bg-2: #0f141e;
  --surface: #141a26;
  --surface-2: #1a2231;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1f6;
  --text-2: #b9c1cf;
  --muted: #8a94a6;

  --coral: #f26b5b;
  --coral-hover: #ff7d6e;
  --blue: #56c1ec;
  --blue-deep: #2f5ba8;
  --grad: linear-gradient(115deg, #56c1ec 0%, #2f5ba8 100%);
  --grad-coral: linear-gradient(115deg, #ff8a70 0%, #f26b5b 55%, #d9485c 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;

  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-stretch: 112%; line-height: 1.05; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--coral); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; }
.section-head p { color: var(--text-2); max-width: 560px; margin-top: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(242, 107, 91, 0.18); }

.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-coral { color: var(--coral); }
.muted { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-2); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2; white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 10px 30px -10px rgba(242, 107, 91, 0.7); }
.btn--primary:hover { background: var(--coral-hover); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.06); }
.btn--light { background: #fff; color: #0a0d14; }
.btn--light:hover { background: #e9edf4; }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; transition: gap 0.2s var(--ease), border-color 0.2s; }
.link-arrow:hover { gap: 12px; border-color: var(--coral); }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
/* Il blur sta su uno pseudo-elemento: backdrop-filter sull'header renderebbe il menu mobile (position: fixed) relativo all'header. */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(10, 13, 20, 0.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); transition: background-color 0.3s; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header.is-scrolled::before { background: rgba(10, 13, 20, 0.88); }
.nav-open .site-header { background: var(--bg); }
.nav-open .site-header::before { background: var(--bg); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: auto; height: 52px; }
.brand--footer img { height: 96px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a:not(.btn) {
  position: relative; padding: 10px 14px; font-size: 0.93rem; font-weight: 500; color: var(--text-2); border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
}
.main-nav a:not(.btn):hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.main-nav a[aria-current="page"] { color: var(--text); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--coral); }
.main-nav .btn { margin-left: 10px; }
.nav-ext { display: inline-flex; align-items: center; gap: 4px; }
.nav-ext svg { width: 12px; height: 12px; opacity: 0.6; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-strong); background: transparent; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: background-color 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s var(--ease); }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0; padding: 24px var(--gutter) 40px;
    background: var(--bg); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav a:not(.btn) { font-family: var(--font-display); font-stretch: 112%; font-size: 1.7rem; font-weight: 700; padding: 14px 0; border-radius: 0; border-bottom: 1px solid var(--line); color: var(--text); }
  .main-nav a:not(.btn):hover { background: none; color: var(--coral); }
  .main-nav a[aria-current="page"]::after { left: auto; right: 0; top: 50%; bottom: auto; margin: -4px 0 0; width: 8px; height: 8px; }
  .main-nav .btn { margin: 28px 0 0; min-height: 56px; font-size: 1rem; }
  .nav-open { overflow: hidden; }
}
@media (max-width: 420px) {
  .brand img { height: 46px; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 110px) 0 clamp(120px, 14vw, 190px); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; z-index: -2;
  background: radial-gradient(closest-side, rgba(47, 91, 168, 0.35), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; left: -15%; bottom: -30%; width: 55vw; height: 55vw; max-width: 700px; max-height: 700px; z-index: -2;
  background: radial-gradient(closest-side, rgba(242, 107, 91, 0.14), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.95; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero .lead { margin-top: 28px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 44px; color: var(--muted); font-size: 0.88rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--blue); }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -150px; height: 320px; z-index: -1; pointer-events: none; opacity: 0.9;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.hero-wave svg { width: 100%; height: 100%; }
.wave-track { animation: wave-drift var(--dur, 12s) linear infinite; }
@keyframes wave-drift { to { transform: translateX(calc(var(--period) * -1px)); } }

/* "Now out" card */
.now-card { display: block; position: relative; background: rgba(20, 26, 38, 0.9); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow); transition: transform 0.35s var(--ease), border-color 0.3s; }
.now-card:hover { transform: translateY(-4px) rotate(-0.4deg); border-color: var(--line-strong); }
.now-card .cover { border-radius: 14px; overflow: hidden; aspect-ratio: 1; background: var(--surface-2); }
.now-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.now-card-body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 6px 4px; }
.now-card-body .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--coral); font-weight: 600; }
.now-card-body h3 { font-size: 1.3rem; margin-top: 6px; }
.now-card-body p { color: var(--muted); font-size: 0.9rem; margin: 4px 0 0; }
.play-btn { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; transition: transform 0.2s var(--ease), background-color 0.2s; }
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.now-card:hover .play-btn { transform: scale(1.08); background: var(--coral-hover); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .now-card { max-width: 420px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -60%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; z-index: -1; background: radial-gradient(closest-side, rgba(47, 91, 168, 0.3), transparent 70%); }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
.page-hero .lead { margin-top: 20px; max-width: 680px; }
.page-hero .hero-wave { bottom: -150px; height: 260px; opacity: 0.45; }

.anchor-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }

/* ---------- Chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.88rem; font-weight: 500; color: var(--text-2); background: transparent; transition: all 0.2s; }
.chip:hover { color: var(--text); border-color: var(--text-2); }
.chip[aria-pressed="true"], .chip.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(86, 193, 236, 0.1); color: var(--blue); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Services (cards) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service-card .media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: saturate(0.9); }
.service-card:hover .media img { transform: scale(1.05); }
.service-card .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20, 26, 38, 0.95)); }
.service-card .num { position: absolute; top: 14px; left: 16px; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; color: #fff; background: rgba(10, 13, 20, 0.55); padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.service-card .body { padding: 4px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card h3 { font-size: 1.35rem; font-weight: 750; }
.service-card p { color: var(--text-2); font-size: 0.94rem; flex: 1; }
.service-card .link-arrow { align-self: flex-start; font-size: 0.9rem; margin-top: 6px; }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { padding: 28px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--font-display); font-stretch: 118%; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 0.9rem; }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Release cards ---------- */
.release-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(16px, 2.4vw, 28px); }
.release-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .release-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }

.release-card { display: block; }
.release-card .cover { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.8); }
.release-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.3s; }
.release-card .cover .play-btn { position: absolute; right: 12px; bottom: 12px; width: 46px; height: 46px; opacity: 0; transform: translateY(8px); transition: opacity 0.25s, transform 0.3s var(--ease); box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.6); }
.release-card:hover .cover img { transform: scale(1.04); filter: brightness(0.85); }
.release-card:hover .cover .play-btn, .release-card:focus-visible .cover .play-btn { opacity: 1; transform: none; }
.release-card .info { padding: 14px 2px 0; }
.release-card h3 { font-size: 1.05rem; font-weight: 700; font-stretch: 105%; letter-spacing: -0.005em; line-height: 1.25; }
.release-card .artist { color: var(--text-2); font-size: 0.92rem; margin-top: 4px; }
.release-card .meta { display: flex; gap: 8px; align-items: center; margin-top: 8px; color: var(--muted); font-size: 0.8rem; }
.release-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
@media (hover: none) { .release-card .cover .play-btn { opacity: 1; transform: none; width: 40px; height: 40px; } }

/* ---------- Artist cards ---------- */
.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(14px, 2vw, 24px); }
.artist-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
@media (max-width: 1100px) { .artist-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .artist-grid, .artist-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.artist-card { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); isolation: isolate; }
.artist-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease), filter 0.4s; filter: grayscale(0.35); }
.artist-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 45%, rgba(10, 13, 20, 0.92)); }
.artist-card .info { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; }
.artist-card h3 { font-size: 1.15rem; font-weight: 750; }
.artist-card p { margin: 4px 0 0; font-size: 0.8rem; color: var(--text-2); }
.artist-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.artist-card .arrow { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(6px); display: grid; place-items: center; opacity: 0; transform: scale(0.8); transition: all 0.3s var(--ease); }
.artist-card .arrow svg { width: 16px; height: 16px; }
.artist-card:hover .arrow { opacity: 1; transform: none; background: var(--coral); }

/* ---------- Split feature (servizi) ---------- */
.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.feature + .feature { margin-top: clamp(72px, 10vw, 140px); }
.feature--reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); }
.feature-media .badge { position: absolute; left: -12px; bottom: -18px; background: var(--coral); color: #fff; font-family: var(--font-display); font-stretch: 118%; font-weight: 800; font-size: 1.4rem; padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow); line-height: 1; }
.feature-media .badge small { display: block; font-family: var(--font-body); font-stretch: normal; font-weight: 500; font-size: 0.72rem; margin-top: 4px; opacity: 0.9; letter-spacing: 0.02em; }
.feature h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.feature .num { font-family: var(--font-display); font-weight: 700; color: var(--coral); letter-spacing: 0.1em; font-size: 0.85rem; margin-bottom: 14px; display: block; }
.feature .lead { margin-top: 18px; }
.feature-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature-media { order: 0; }
  .feature-media .badge { left: 12px; }
}

.check-list { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text-2); }
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: rgba(242, 107, 91, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f26b5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.check-list--2 { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
@media (max-width: 560px) { .check-list--2 { grid-template-columns: 1fr; } }

/* Gear */
.gear-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gear { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.gear .k { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.gear .v { font-family: var(--font-display); font-stretch: 108%; font-weight: 700; font-size: 1.08rem; margin-top: 8px; line-height: 1.25; }
@media (max-width: 900px) { .gear-grid { grid-template-columns: 1fr 1fr; } }

/* Mini cards (altri servizi) */
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.mini-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color 0.3s, transform 0.3s var(--ease); }
.mini-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.mini-card .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.mini-card .icon svg { width: 22px; height: 22px; }
.mini-card h3 { font-size: 1.2rem; font-weight: 750; }
.mini-card p { color: var(--text-2); font-size: 0.93rem; margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px); background: var(--grad); isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 20%, rgba(242, 107, 91, 0.55), transparent 45%); }
.cta-band .hero-wave { opacity: 0.35; bottom: -120px; height: 240px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; max-width: 640px; }
.cta-band p { margin-top: 14px; max-width: 520px; color: rgba(255, 255, 255, 0.85); }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, 0.5); }

/* ---------- Label band ---------- */
.label-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.label-band > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.label-band h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; }
.label-band p { color: var(--text-2); flex: 1; }
.label-band .btn { align-self: flex-start; }
.dsp-row { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 800px) { .label-band { grid-template-columns: 1fr; } }

/* ---------- Release detail ---------- */
.release-hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 88px) 0; isolation: isolate; border-bottom: 1px solid var(--line); }
.release-hero .backdrop { position: absolute; inset: -60px; z-index: -2; background-size: cover; background-position: center; filter: blur(60px) saturate(1.3); opacity: 0.45; transform: scale(1.1); }
.release-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 13, 20, 0.35), var(--bg)); }
.release-head { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: end; }
.release-head .cover { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.85); aspect-ratio: 1; background: var(--surface-2); }
.release-head .cover img { width: 100%; height: 100%; object-fit: cover; }
.release-head h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em; }
.release-head .subtitle { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.3rem); color: var(--text-2); margin-top: 10px; font-weight: 500; }
.release-head .by { margin-top: 18px; font-size: 1.15rem; color: var(--text-2); }
.release-head .by a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--coral); }
.release-facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; color: var(--muted); font-size: 0.9rem; }
.release-facts b { color: var(--text-2); font-weight: 500; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; transition: color 0.2s; }
.back-link:hover { color: var(--text); }
.back-link svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .release-head { grid-template-columns: 1fr; } .release-head .cover { max-width: 360px; } }

.listen-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.listen-links .btn { min-height: 44px; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-grid--single { grid-template-columns: minmax(0, 860px); }
.prose { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; }
.prose p { margin-bottom: 1.2em; }
.prose h2 { color: var(--text); font-size: 1.6rem; margin-bottom: 18px; }
.block-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: 16px; font-family: var(--font-body); font-stretch: normal; }

.credits { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.credits div { display: grid; grid-template-columns: 42% 1fr; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.credits div:last-child { border-bottom: 0; }
.credits dt { color: var(--muted); }
.credits dd { margin: 0; color: var(--text); font-weight: 500; }

.player { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.player iframe { width: 100%; border: 0; }
.player--video { aspect-ratio: 16 / 9; }
.player--video iframe { height: 100%; }
.player-empty { padding: 28px; text-align: center; color: var(--muted); font-size: 0.95rem; }
.player--spotify { background: transparent; border: 0; border-radius: 12px; }

/* Available on: pulsanti degli store */
.available-title { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin: 44px 0 16px; }
.dsp-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.dsp { --brand: var(--blue); display: flex; align-items: center; gap: 14px; min-height: 62px; padding: 10px 14px 10px 10px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease); }
.dsp:hover { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 9%, var(--surface)); transform: translateY(-2px); }
.dsp-logo { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: var(--brand); background: color-mix(in srgb, var(--brand) 15%, transparent); }
.dsp-logo svg { width: 21px; height: 21px; }
.dsp-name { flex: 1; min-width: 0; font-weight: 600; font-size: 0.98rem; }
.dsp-action { display: inline-flex; align-items: center; gap: 4px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.dsp-action svg { width: 14px; height: 14px; }
.dsp:hover .dsp-action { color: var(--text); }
@media (max-width: 480px) { .dsp-list { grid-template-columns: 1fr; } }

.license-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* ---------- Artist detail ---------- */
.artist-hero { position: relative; min-height: clamp(360px, 52vw, 560px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.artist-hero .bg { position: absolute; inset: 0; z-index: -2; }
.artist-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero .bg--blur img { filter: blur(40px) saturate(1.2); transform: scale(1.2); opacity: 0.6; }
.artist-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 13, 20, 0.55) 0%, rgba(10, 13, 20, 0.35) 30%, rgba(10, 13, 20, 0.75) 65%, var(--bg) 100%); }
.artist-hero .back-link { color: var(--text-2); }
@media (max-width: 600px) { .artist-hero::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.6) 0%, rgba(10, 13, 20, 0.7) 45%, var(--bg) 100%); } }
.artist-hero .container { padding-bottom: clamp(28px, 4vw, 56px); padding-top: 80px; }
.artist-id { display: flex; align-items: flex-end; gap: clamp(18px, 3vw, 32px); }
.artist-id .avatar { flex: none; width: clamp(110px, 16vw, 180px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255, 255, 255, 0.9); box-shadow: var(--shadow); }
.artist-id .avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-id h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); font-weight: 800; letter-spacing: -0.03em; }
.artist-id .tagline { color: var(--text-2); margin-top: 10px; font-size: 1.05rem; }
.genre-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
@media (max-width: 600px) { .artist-id { flex-direction: column; align-items: flex-start; } }

.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--text-2); transition: all 0.2s; }
.social-btn:hover { color: #fff; background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.side-card + .side-card { margin-top: 16px; }
.side-card h3 { font-size: 1.2rem; font-weight: 750; }
.side-card p { color: var(--text-2); font-size: 0.94rem; margin-top: 8px; }

/* ---------- Filters ---------- */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.search { position: relative; min-width: min(100%, 280px); }
.search input { width: 100%; min-height: 44px; padding: 10px 16px 10px 42px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); outline: none; transition: border-color 0.2s; }
.search input:focus { border-color: var(--blue); }
.search svg { position: absolute; left: 15px; top: 50%; width: 17px; height: 17px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 920px) { .form-layout { grid-template-columns: 1fr; } }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 44px); }
.form-card h2 { font-size: 1.6rem; font-weight: 800; }
.form-card h2 + p { color: var(--text-2); margin-top: 8px; }
.form-section { border: 0; padding: 0; margin: 32px 0 0; }
.form-section legend { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: 16px; padding: 0; display: flex; align-items: center; gap: 10px; }
.form-section legend span { width: 22px; height: 22px; border-radius: 50%; background: var(--coral); color: #fff; display: inline-grid; place-items: center; font-size: 0.72rem; letter-spacing: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field .label { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.field label .req { color: var(--coral); margin-left: 2px; }
.field label .opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--bg-2); color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s; font-size: 1rem;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.field input[type="date"] { color-scheme: dark; }
.field input::placeholder, .field textarea::placeholder { color: #5f6878; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255, 255, 255, 0.28); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(86, 193, 236, 0.15); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--coral); }
.field .error { color: var(--coral-hover); font-size: 0.82rem; display: none; }
.field.has-error .error { display: block; }
.field .hint { color: var(--muted); font-size: 0.82rem; }

.option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 600px) { .option-grid { grid-template-columns: 1fr 1fr; } }
.option { position: relative; }
.option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option span { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 50px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--bg-2); font-size: 0.92rem; font-weight: 500; color: var(--text-2); transition: all 0.2s; line-height: 1.25; }
.option input:hover + span { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }
.option input:checked + span { border-color: var(--coral); background: rgba(242, 107, 91, 0.12); color: var(--text); }
.option input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.field.has-error .option span { border-color: rgba(242, 107, 91, 0.5); }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--text-2); margin-top: 28px; cursor: pointer; }
.consent input { flex: none; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--coral); cursor: pointer; }
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.consent.has-error { color: var(--coral-hover); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 28px; }
.form-footer .muted { font-size: 0.85rem; }

.form-status { display: none; margin-top: 20px; padding: 16px 18px; border-radius: 12px; font-size: 0.95rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(86, 193, 236, 0.1); border: 1px solid rgba(86, 193, 236, 0.35); color: var(--text); }
.form-status.is-error { background: rgba(242, 107, 91, 0.1); border: 1px solid rgba(242, 107, 91, 0.4); color: var(--text); }

.form-success { text-align: center; padding: 36px 10px; }
.form-success .icon { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; }
.form-success .icon svg { width: 32px; height: 32px; }
.form-success h2 { font-size: 1.8rem; }
.form-success p { color: var(--text-2); margin-top: 12px; max-width: 460px; margin-inline: auto; }
.form-success .btn { margin-top: 24px; }

/* Steps (prenota sidebar) */
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; margin-top: 18px; }
.steps li { counter-increment: step; position: relative; padding: 0 0 26px 52px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--coral); background: var(--bg-2); }
.steps li::after { content: ""; position: absolute; left: 17px; top: 38px; bottom: 4px; width: 1px; background: var(--line-strong); }
.steps li:last-child::after { display: none; }
.steps strong { display: block; font-weight: 600; }
.steps span { color: var(--text-2); font-size: 0.92rem; }

.contact-list { list-style: none; display: grid; gap: 14px; margin-top: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; color: var(--blue); }
.contact-list .ic svg { width: 18px; height: 18px; }
.contact-list small { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list a:hover { color: var(--coral); }

.sticky-side { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 920px) { .sticky-side { position: static; } }

/* ---------- Shop ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform 0.35s var(--ease), border-color 0.3s; }
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.product-media { aspect-ratio: 1; overflow: hidden; background: #e8e8e6; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; padding: 18px 20px 20px; }
.product-body h3 { font-size: 1.2rem; font-weight: 750; }
.product-body p { color: var(--muted); font-size: 0.88rem; margin: 6px 0 0; }
.product-cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; transition: border-color 0.2s, gap 0.2s var(--ease); }
.product-cta svg { width: 15px; height: 15px; }
.product-card:hover .product-cta { border-color: var(--coral); gap: 10px; }

.perks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.perk { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.perk .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(242, 107, 91, 0.14); color: var(--coral); display: grid; place-items: center; }
.perk .ic svg { width: 20px; height: 20px; }
.perk h3 { font-size: 1.05rem; font-weight: 700; font-stretch: 105%; }
.perk p { color: var(--text-2); font-size: 0.9rem; margin-top: 6px; }
@media (max-width: 860px) { .perks { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(56px, 7vw, 88px) 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.93rem; margin-top: 18px; max-width: 320px; }
.footer-brand .social-row { margin-top: 22px; }
.site-footer h4 { font-family: var(--font-body); font-stretch: normal; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer ul a { color: var(--text-2); font-size: 0.95rem; transition: color 0.2s; }
.site-footer ul a:hover { color: var(--coral); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--text); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal p, .legal li { color: var(--text-2); }
.legal ul { padding-left: 20px; margin-bottom: 1em; }
.note { padding: 16px 18px; border-radius: 12px; border: 1px dashed rgba(242, 107, 91, 0.5); background: rgba(242, 107, 91, 0.06); color: var(--text-2); font-size: 0.92rem; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
