/* =============================================================
   Cherry BlueSky Records — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0a0b0d;
  --bg-2:      #101215;
  --bg-3:      #16191d;
  --bg-4:      #1d2126;
  --ink:       #f5f6f7;
  --ink-soft:  #d6dade;
  --ink-mute:  #9aa1a8;
  --ink-dim:   #6b7278;
  --accent:    #53c5ff;
  --accent-2:  #7fd4ff;
  --accent-dim: rgba(83,197,255,0.14);
  --red:       #d62c2c;
  --red-2:     #ef4d4d;
  --line:      rgba(245,246,247,0.1);
  --line-soft: rgba(245,246,247,0.06);

  --display: "Poppins", "Montserrat", sans-serif;
  --kicker-font: "Montserrat", sans-serif;
  --sans: "Inter", "Montserrat", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 84px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
}
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

input, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.4rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

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

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.is-center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--kicker-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.section-head.is-center .kicker::before { display: none; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 56ch;
}
.section-head.is-center .section-sub { margin-inline: auto; }

em { font-style: normal; color: var(--accent); }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: 0.72rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  margin-top: .5rem;
}
.placeholder-note::before { content: "⚠"; color: var(--accent); }

/* =============================================================
   4. Typography
   ============================================================= */
.hero-title, .page-hero-title { font-weight: 700; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: #04151f;
  box-shadow: 0 8px 24px -8px rgba(83,197,255,0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(83,197,255,0.65);
}
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn-red {
  background: var(--red);
  color: #fff0ef;
  box-shadow: 0 8px 24px -8px rgba(214,44,44,0.55);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(214,44,44,0.65); }
.btn-block { width: 100%; }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

/* --- Custom cursor --- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--ink); border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid var(--ink); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .35s;
}
.cursor.is-interactive .cursor-ring { width: 54px; height: 54px; margin: -27px; border-color: var(--accent); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,11,13,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex; align-items: center; gap: .55rem;
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-3); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-links {
  display: none;
  align-items: center; gap: 2rem;
  font-size: 0.9rem; font-weight: 500;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .3rem 0; color: var(--ink-soft); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta,
.nav-cta.has-magnetic { display: none; }
@media (min-width: 960px) {
  .nav-cta,
  .nav-cta.has-magnetic { display: inline-flex; padding: .75rem 1.4rem; font-size: 0.85rem; }
}

.nav-toggle {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-toggle.is-active::before { transform: translateY(0) rotate(45deg); }
.nav-toggle.is-active::after { transform: translateY(0) rotate(-45deg); }
.nav-toggle.is-active span { opacity: 0; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--display); font-size: 1.7rem; font-weight: 600; }

/* --- Cards --- */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .55s;
}
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.has-tilt:hover {
  border-color: rgba(83,197,255,0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(83,197,255,0.15);
}

/* --- Form fields --- */
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-3);
  transition: border-color .3s var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.15rem;
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--ink-mute); font-size: 0.95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.45rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}

.cta-form { position: relative; }
.cta-form-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(4,21,31,0.3); border-top-color: #04151f; border-radius: 50%; animation: spin .8s linear infinite; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { display: block; position: absolute; left: 50%; top: 50%; margin: -9px 0 0 -9px; }
.cta-form.is-sending button[type="submit"] { color: transparent; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.cta-success {
  margin-top: 1.2rem; padding: 1.1rem 1.3rem;
  border-radius: 12px; border: 1px solid rgba(83,197,255,0.3);
  background: var(--accent-dim); color: var(--ink);
  opacity: 0; transform: translateY(-8px); height: 0; overflow: hidden;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft);
}
.cta-success.is-visible { opacity: 1; transform: none; height: auto; margin-top: 1.2rem; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: clip;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ambientZoom 30s ease-in-out infinite;
}
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.12); }
}
.hero-tint {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.72) 55%, rgba(10,11,13,0.96) 100%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -1;
  background:
    radial-gradient(45% 40% at var(--mesh-x) var(--mesh-y), rgba(83,197,255,0.28), transparent 60%),
    conic-gradient(from var(--mesh-angle), rgba(83,197,255,0.14), rgba(214,44,44,0.1), rgba(83,197,255,0.14));
  filter: blur(90px) saturate(120%);
  opacity: 0.85;
  animation: meshShift 24s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 25%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 75%; --mesh-y: 55%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 35%; }
}
.hero-inner {
  position: relative;
  padding-top: var(--nav-h);
  text-align: center;
  margin-inline: auto;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--kicker-font);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.6rem;
}
.hero-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px 2px rgba(214,44,44,0.7); }
.hero-title {
  font-size: clamp(2.6rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  text-wrap: balance;
  max-width: 16ch;
  margin-inline: auto;
}
.hero-sub {
  margin: 1.6rem auto 2.6rem;
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: clamp(1.2rem, 4vh, 2.6rem); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--ink-dim); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--ink-dim), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* --- About --- */
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
}
.about-figure {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 6/5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 58ch; }
.about-pillars {
  display: grid; gap: 1.2rem; margin-top: 2rem;
}
@media (min-width: 640px) { .about-pillars { grid-template-columns: repeat(3, 1fr); } }
.about-pillar {
  padding: 1.3rem; border-radius: 14px; border: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.about-pillar h3 { font-size: 1rem; margin-bottom: .4rem; }
.about-pillar p { font-size: 0.88rem; color: var(--ink-mute); }

/* --- Studio gallery / carousel --- */
.gallery-shell { position: relative; }
.gallery-track {
  display: flex; gap: 1.1rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-block: 0.5rem 1.5rem;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: min(280px, 72vw);
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .5s;
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.15) brightness(1.05); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.1rem;
  background: linear-gradient(0deg, rgba(10,11,13,0.92), transparent);
  font-size: 0.92rem; font-weight: 600;
}
.gallery-nav { display: flex; gap: .8rem; justify-content: flex-end; margin-top: 0.5rem; }
.gallery-nav-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.gallery-nav-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.gallery-nav-btn svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; max-width: min(90vw, 1100px); max-height: 90vh;
  background: var(--bg-2); border-radius: 18px; overflow: hidden;
  color: var(--ink);
}
.lightbox::backdrop { background: rgba(5,6,8,0.9); backdrop-filter: blur(6px); }
.lightbox-figure { position: relative; }
.lightbox-figure img { width: 100%; max-height: 80vh; object-fit: contain; background: var(--bg); }
.lightbox-caption {
  padding: 1rem 1.3rem; font-size: 0.9rem; color: var(--ink-mute);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lightbox-close {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,11,13,0.7); display: grid; place-items: center;
  border: 1px solid var(--line);
}

/* --- Audio players --- */
.tracks-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .tracks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tracks-grid { grid-template-columns: repeat(3, 1fr); } }

.player {
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.player-top { display: flex; gap: 1rem; align-items: center; }
.player-cover {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex: none;
  border: 1px solid var(--line);
}
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-meta { min-width: 0; }
.player-title { font-weight: 600; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { font-size: 0.84rem; color: var(--ink-mute); }

.player-controls { display: flex; align-items: center; gap: 0.9rem; }
.player-play {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--accent); color: #04151f;
  display: grid; place-items: center;
  transition: transform .3s var(--ease-soft);
}
.player-play:hover { transform: scale(1.08); }
.player-play svg { width: 16px; height: 16px; }
.player-progress {
  flex: 1;
  -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 999px;
  background: var(--line);
  outline: none;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 13px; height: 13px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(83,197,255,0.18);
}
.player-progress::-moz-range-thumb {
  width: 13px; height: 13px; border-radius: 50%; background: var(--accent); border: 0;
}
.player-time { font-size: 0.75rem; color: var(--ink-dim); font-variant-numeric: tabular-nums; min-width: 38px; text-align: right; }

.player-links { display: flex; align-items: center; gap: .7rem; }
.player-links a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--ink-mute);
  transition: border-color .3s, color .3s, transform .3s var(--ease-out);
}
.player-links a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.player-links svg { width: 14px; height: 14px; }

/* --- Services --- */
.services-grid { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { display: flex; flex-direction: column; }
.service-image { aspect-ratio: 4/3; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft); }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.service-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-dim); color: var(--accent);
  display: grid; place-items: center;
}
.service-icon svg { width: 20px; height: 20px; }
.service-body h3 { font-size: 1.12rem; }
.service-body p { color: var(--ink-mute); font-size: 0.92rem; flex: 1; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: .4em; }
.service-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.service-link:hover svg { transform: translateX(3px); }

/* --- Experience / stats / certifications --- */
.stats-row { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; padding: 1.8rem 1rem; border-radius: 18px; border: 1px solid var(--line); background: var(--bg-2); }
.stat-value { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--accent); }
.stat-label { color: var(--ink-mute); font-size: 0.9rem; margin-top: .3rem; }

.certs-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }
.cert-card { overflow: hidden; }
.cert-image { aspect-ratio: 10/7; }
.cert-image img { width: 100%; height: 100%; object-fit: cover; }
.cert-body { padding: 1.1rem 1.3rem; }
.cert-body h3 { font-size: 0.98rem; margin-bottom: .25rem; }
.cert-body p { font-size: 0.82rem; color: var(--ink-mute); }

/* --- Artists --- */
.artists-grid { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
.artist-card { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.artist-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
.artist-card:hover img { transform: scale(1.08); filter: saturate(1.1); }
.artist-card-tint {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,11,13,0.95) 10%, rgba(10,11,13,0.2) 55%, transparent 75%);
}
.artist-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem; }
.artist-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .7rem; }
.artist-tag {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  padding: .3rem .7rem; border-radius: 999px; border: 1px solid rgba(245,246,247,0.25); color: var(--ink-soft);
}
.artist-card h3 { font-size: 1.6rem; margin-bottom: .8rem; }

.section-cta-row { display: flex; justify-content: center; margin-top: 2.5rem; }

/* --- Contact --- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.6rem 0 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }
.contact-email-link { font-size: 1.15rem; font-weight: 600; color: var(--accent); }

/* --- Footer --- */
.footer { padding-block: 3rem 2.2rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.6rem; align-items: flex-start; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.footer-loc { color: var(--ink-mute); font-size: 0.88rem; margin-top: .3rem; }
.footer-links { display: flex; gap: 1.4rem; font-size: 0.88rem; color: var(--ink-mute); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { width: 100%; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: 0.78rem; color: var(--ink-dim); }

/* --- Page hero (artistas.html, artist profile pages) --- */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.page-hero-title { font-size: clamp(2.2rem, 6vw, 4rem); }

/* --- Artist profile --- */
.artist-hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  overflow: clip;
}
.artist-hero-bg { position: absolute; inset: 0; z-index: -2; }
.artist-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, var(--bg) 8%, rgba(10,11,13,0.55) 55%, rgba(10,11,13,0.2) 100%);
}
.artist-hero-inner { padding-bottom: clamp(2.5rem, 6vw, 4rem); padding-top: var(--nav-h); }
.artist-hero .page-hero-title { max-width: 14ch; }
.artist-bio p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 62ch; }
.artist-influences { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.artist-influence-chip {
  font-size: 0.78rem; padding: .4rem .8rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-mute);
}

.artist-gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.artist-gallery-grid .gallery-item { width: auto; }
@media (max-width: 719px) { .artist-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.videos-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
.video-card { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; background: var(--bg-3); }
.video-play {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(245,246,247,0.12);
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: transform .3s var(--ease-out), background .3s;
}
.video-card:hover .video-play { transform: scale(1.08); background: var(--accent); color: #04151f; }
.video-play svg { width: 20px; height: 20px; margin-left: 2px; }
.video-label { position: absolute; left: 1rem; bottom: 1rem; font-size: 0.82rem; color: var(--ink-mute); }

.discography-list { border-top: 1px solid var(--line); }
.discography-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.discography-row span:last-child { color: var(--ink-mute); font-size: 0.88rem; }

.social-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .7rem 1.2rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600;
  transition: border-color .3s, color .3s, transform .3s var(--ease-out);
}
.social-pill svg { width: 16px; height: 16px; }
.social-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.artist-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Kingy urban accent — same system, red-forward micro-accents */
[data-artist-theme="urban"] .kicker,
[data-artist-theme="urban"] .kicker::before,
[data-artist-theme="urban"] .artist-tag,
[data-artist-theme="urban"] em { color: var(--red-2); }
[data-artist-theme="urban"] .kicker::before { background: var(--red-2); }
[data-artist-theme="urban"] .btn-primary {
  background: var(--red); color: #fff0ef;
  box-shadow: 0 8px 24px -8px rgba(214,44,44,0.55);
}
[data-artist-theme="urban"] .player-play { background: var(--red); color: #fff0ef; }
[data-artist-theme="urban"] .field input:focus, [data-artist-theme="urban"] .field textarea:focus { border-color: var(--red); }

/* =============================================================
   7. Effects — reveal / magnetic / marquee
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects gated
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none; }
  .hero-mesh { animation: none; }
  .hero-scroll-line { animation: none; }
  /* tilt, hover, fades, reveals stay active */
}
