/* ═══════════════════════════════════════════════════════════
   CHAD WALT — styles.css
   Fonts: Cormorant Garamond (display) + Space Mono (labels)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #0c0b0a;
  --bg2:       #111010;
  --bg3:       #181614;
  --surface:   #1e1b18;
  --surface2:  #252118;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.12);
  --text:      #ede8e0;
  --muted:     #8a8278;
  --faint:     #3f3a33;
  --gold:      #c9a96e;
  --gold2:     #a07d45;
  --cream:     #f0ead8;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-mono:    'Space Mono', monospace;

  --pad: clamp(60px, 8vw, 120px);
  --r:   6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

/* ── EYEBROW LABELS ──────────────────────────── */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn--light   { background: var(--cream); color: #0c0b0a; border-color: var(--cream); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,234,216,0.2); }
.btn--outline { background: transparent; color: var(--cream); border-color: rgba(240,234,216,0.3); }
.btn--outline:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn--accent  { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn--accent:hover { background: #d4b47a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.25); }
.btn--ghost   { background: transparent; color: var(--text); border-color: var(--border2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--muted); transform: translateY(-2px); }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  padding: 28px 40px;
  transition: padding 0.35s var(--ease), background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,11,10,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 18px 40px;
  border-color: var(--border);
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.7; }
.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__link {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: #d4b47a; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10;
}
.nav__toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: all 0.28s var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 85%;
  filter: brightness(0.68) saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.hero__photo-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,11,10,1) 0%, rgba(12,11,10,0.5) 28%, transparent 60%),
    linear-gradient(to right, rgba(12,11,10,0.92) 0%, rgba(12,11,10,0.6) 35%, rgba(12,11,10,0.15) 65%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 40px clamp(80px, 12vh, 140px);
  max-width: 720px;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero__name {
  font-family: var(--f-display);
  font-size: clamp(5.5rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.hero__name span {
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease) forwards;
}
.hero__name em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.9s 0.48s var(--ease) forwards;
}
.hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.62s var(--ease) forwards;
}

/* Side social strip */
.hero__social-strip {
  position: fixed; right: 40px; bottom: 80px; z-index: 50;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  opacity: 0;
  animation: fadeIn 1s 0.9s forwards;
}
.hero__social-strip::after {
  content: ''; display: block; width: 1px; height: 48px;
  background: var(--border2); margin-top: 4px;
}
.hero__social-strip a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}
.hero__social-strip a:hover { color: var(--gold); transform: translateX(-2px); }

/* Scroll arrow */
.hero__down {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 1.2rem; color: var(--muted);
  animation: bounce 2.5s infinite;
  transition: color 0.2s;
}
.hero__down:hover { color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── LATEST RELEASE BAR ──────────────────────── */
.latest {
  background: var(--gold);
  padding: 14px 0;
}
.latest__inner {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.latest__tag {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 1px;
  white-space: nowrap;
}
.latest__title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  flex: 1;
}
.latest__listen {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--bg);
  white-space: nowrap;
  font-weight: 700;
  transition: opacity 0.2s;
}
.latest__listen:hover { opacity: 0.65; }

/* ── FEATURED ────────────────────────────────── */
.featured {
  padding: var(--pad) 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.featured__title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.featured__title em { font-style: italic; color: var(--gold); }
.featured__desc {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.featured__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Featured artwork — real image */
.featured__artwork {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: block;
}

/* Art Block — kept for fallback only */
.art-block {
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.art-block--stars {
  background: linear-gradient(135deg, #0d1525 0%, #1a2540 40%, #0a0e18 100%);
  border: 1px solid rgba(100,120,180,0.2);
}
.art-block--stars::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(150,170,230,0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(200,169,110,0.06) 0%, transparent 45%);
}
.art-block__inner {
  position: relative; z-index: 1;
  padding: 24px;
}
.art-block__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.art-block__sub {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.4);
}

/* ── RELEASES GRID ───────────────────────────── */
.music {
  padding: var(--pad) 0;
  background: var(--bg);
}
.music__head {
  margin-bottom: 48px;
}
.music__head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.music__head h2 em { font-style: italic; color: var(--gold); }

.releases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 64px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.release {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  transition: background 0.25s;
  border-right: 1px solid var(--border);
}
.release:nth-child(4n) { border-right: none; }
.release:hover { background: var(--surface); }

/* New release badge */
.release--new { position: relative; }
.release__new-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}

.release__art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.release__art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s, transform 0.35s var(--ease);
}
.release:hover .release__art-img {
  filter: brightness(0.65);
  transform: scale(1.04);
}

.release__meta {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--border);
}
.release__label {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.release__name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
}
.release__feat {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Stream More card */
.release--stream {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: none;
  cursor: default;
  aspect-ratio: 1;
}
.release__stream-inner {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.release__stream-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.release__stream-links a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}
.release__stream-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.release__stream-more {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.release__stream-more:hover { opacity: 0.7; }

/* "View All" card */
.release--more {
  background: var(--surface);
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-right: none;
}
.release__more-inner {
  text-align: center;
  padding: 24px;
}
.release__more-inner p {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.release__more-inner h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.release--more:hover .release__more-inner h3 { letter-spacing: 0.02em; }

/* ── ESSENTIAL LISTENING ─────────────────────── */
.essential {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 52px;
}
.essential__left h3 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.essential__left h3 em { font-style: italic; color: var(--gold); }
.essential__sub {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
}
.essential__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}
.essential__placeholder p {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.essential__vinyl {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1a1614, #2a2520, #1a1614, #2a2520);
  display: flex; align-items: center; justify-content: center;
  animation: spin 8s linear infinite;
  box-shadow: 0 0 0 2px var(--border), 0 8px 24px rgba(0,0,0,0.5);
}
.essential__vinyl-center {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg3);
}
@keyframes spin { to { transform: rotate(360deg); } }

.watch {
  padding: var(--pad) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.watch__head {
  margin-bottom: 40px;
}
.watch__head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.watch__head h2 em { font-style: italic; color: var(--gold); }

.watch__player {
  width: 100%;
  max-width: 960px;
}
.watch__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.watch__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.watch__sub {
  margin-top: 24px;
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding: var(--pad) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.about__text-col h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about__text-col h2 em { font-style: italic; color: var(--gold); }
.about__text-col p {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about__links {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 32px;
}

/* Wide atmospheric photo */
.about__wide {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
.about__wide-photo {
  width: 100%;
  height: clamp(220px, 40vw, 440px);
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.5) saturate(0.7);
}
.about__wide-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__wide-text p {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  padding: 0 40px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ── CONNECT ─────────────────────────────────── */
.connect {
  padding: var(--pad) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.connect__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 56px;
}
.connect__heading em { font-style: italic; color: var(--gold); }

.platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.platform {
  background: var(--bg2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
  transition: background 0.22s, transform 0.22s;
}
.platform:last-child { border-right: none; }
.platform:hover { background: var(--surface); transform: translateY(-3px); }

.platform__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.platform__arrow {
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.platform:hover .platform__arrow { color: var(--gold); transform: translate(2px, -2px); }

.platform--spotify svg  { color: #1DB954; }
.platform--apple  svg   { color: #fc3c44; }
.platform--ig     svg   { color: #e1306c; }
.platform--tt     svg   { color: #ee1d52; }
.platform--yt     svg   { color: #ff0000; }

.platform__name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.platform__sub {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
.footer__copy {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--faint);
}
.footer__links {
  display: flex; gap: 20px;
}
.footer__links a {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

/* ── REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .platforms { grid-template-columns: repeat(3, 1fr); }
  .platform:nth-child(3) { border-right: none; }
  .platform:nth-child(4) { border-right: 1px solid var(--border); }
  .releases { grid-template-columns: repeat(3, 1fr); }
  .release:nth-child(3n) { border-right: none; }
  .release:nth-child(4n) { border-right: 1px solid var(--border); }
}

@media (min-width: 861px) {
  .hero__photo img {
    object-position: 52% 85%;
    transform: scale(1.0);
  }
}

@media (max-width: 860px) {
  .hero__photo img {
    object-position: 52% 20%;
  }

  .nav { padding: 18px 20px; flex-wrap: nowrap; gap: 0; align-items: center; }
  .nav.scrolled { padding: 14px 20px; }

  .nav__links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
    align-items: center;
  }
  /* Hide only Connect on small screens, keep Music + Watch + About + Listen */
  .nav__links li:nth-child(4) { display: none; }
  .nav__link { font-size: 0.62rem; }
  .nav__cta { padding: 7px 14px; font-size: 0.62rem; }
  .nav__toggle { display: none; }

  .hero__content { padding: 0 24px clamp(80px, 14vh, 120px); }
  .hero__social-strip { right: 24px; bottom: 60px; }

  .featured__grid { grid-template-columns: 1fr; gap: 40px; }
  .featured__right { order: -1; max-width: 400px; }

  .releases { grid-template-columns: repeat(2, 1fr); }
  .release:nth-child(2n) { border-right: none; }
  .release:nth-child(3n) { border-right: 1px solid var(--border); }
  .release:nth-child(4n) { border-right: 1px solid var(--border); }

  .essential {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .about__photo { aspect-ratio: 4/3; }

  .platforms { grid-template-columns: repeat(2, 1fr); }
  .platform:nth-child(2n) { border-right: none; }
  .platform:nth-child(3) { border-right: 1px solid var(--border); }
  .platform { padding: 22px 18px; }
}

@media (max-width: 560px) {
  .hero__name { font-size: clamp(4.5rem, 20vw, 7rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__social-strip { right: 14px; bottom: 100px; gap: 16px; }
  .hero__social-strip::after { height: 32px; }
  .hero__social-strip svg { width: 16px; height: 16px; }

  .latest__inner { gap: 10px; }
  .latest__title { font-size: 0.85rem; }

  .releases { grid-template-columns: 1fr 1fr; }
  .release:nth-child(2n) { border-right: none; }
  .release:nth-child(n) { border-right: 1px solid var(--border); }
  .release:nth-child(even) { border-right: none; }

  .platforms { grid-template-columns: 1fr 1fr; }
  .platform:nth-child(even) { border-right: none; }

  .footer__row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 380px) {
  .releases { grid-template-columns: 1fr; }
  .release { border-right: none !important; border-bottom: 1px solid var(--border); }
}

/* ── ODESLI MODAL ────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: var(--surface2);
  color: var(--gold);
}
.modal__embed {
  width: 100%;
  aspect-ratio: 1;
}
.modal__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
