/* ============================================================
   NATASHA MD — official artist website
   Premium editorial · Afro House · international
   ============================================================ */

:root {
  --ivory: #f6f0e6;
  --cream: #fbf7f0;
  --sand: #e6d5bc;
  --sand-2: #d8c3a3;
  --ink: #14110e;
  --charcoal: #1e1914;
  --stone: #6f665c;
  --muted: #8b8175;
  --line: rgba(20, 17, 14, 0.12);
  --gold: #c4a056;
  --gold-2: #e0c27a;
  --amber: #c97832;
  --sunset: #b84e28;
  --wine: #7a3540;
  --white: #fffdf8;
  --glass: rgba(251, 247, 240, 0.72);
  --glass-dark: rgba(20, 17, 14, 0.48);
  --shadow: 0 24px 60px rgba(20, 17, 14, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --max: 1240px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: 8px 14px;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.wrap-wide { width: min(1400px, calc(100% - 32px)); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.lede { font-size: 1.08rem; color: var(--stone); max-width: 38rem; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}
.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }
.reveal-delay-4 { animation-delay: 0.48s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
.scroll-in {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.scroll-in.is-in {
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, #e8c878, var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(196, 160, 86, 0.28);
}
.btn-gold:hover { box-shadow: 0 14px 36px rgba(196, 160, 86, 0.4); }
.btn-ghost {
  border: 1px solid rgba(251, 247, 240, 0.45);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn-ink {
  background: var(--ink);
  color: var(--ivory);
}
.btn-ink:hover { background: #2a231c; }
.btn-line {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--ivory); }
.btn-stream {
  min-height: 40px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  border: 1px solid rgba(20, 17, 14, 0.16);
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}
.btn-stream:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.icon-row { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  opacity: 0.82;
  transition: opacity 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.icon-btn:hover { opacity: 1; transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.icon-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(246, 240, 230, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 17, 14, 0.06);
}
.site-header.is-hero {
  position: fixed; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.45), transparent);
  backdrop-filter: none;
}
.site-header.is-hero .logo,
.site-header.is-hero .nav-links a,
.site-header.is-hero .menu-toggle { color: var(--ivory); }
.site-header.is-hero .icon-btn { color: var(--ivory); }
.nav-inner {
  width: min(1400px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.16em;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links {
  display: none;
  justify-content: center;
  gap: 22px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.78;
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-end .btn { display: none; }
.nav-social { display: none; }
.menu-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 20px; height: 1.5px; background: currentColor;
  position: relative; transition: 0.3s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 70;
  background: rgba(20, 17, 14, 0.94);
  color: var(--ivory);
  padding: 28px 24px 40px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-panel.is-open { display: flex; }
.mobile-panel a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1.15;
}
.mobile-panel .btn { margin-top: 18px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  transform: scale(1.06);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  to { transform: scale(1); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,14,0.18) 0%, rgba(20,17,14,0.08) 28%, rgba(20,17,14,0.72) 78%, rgba(20,17,14,0.92) 100%),
    linear-gradient(90deg, rgba(20,17,14,0.55) 0%, rgba(20,17,14,0.05) 58%);
}
.hero-glow {
  position: absolute; inset: auto -10% 10% 30%;
  height: 40%;
  background: radial-gradient(closest-side, rgba(196,160,86,0.22), transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: 0.55; transform: scale(1.08); }
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 40px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(64px, 18vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  margin: 10px 0 16px;
}
.hero .tag {
  max-width: 28rem;
  color: rgba(246, 240, 230, 0.82);
  font-size: 1.02rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 18px; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  color: rgba(246,240,230,0.7);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-hint {
  display: none;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; position: relative; }
.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 18px; margin-bottom: 36px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  margin: 8px 0 0;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

/* Featured */
.featured { background: var(--cream); }
.featured-grid {
  display: grid;
  gap: 28px;
}
.art-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.art-frame:hover img { transform: scale(1.05); }
.featured-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  margin: 10px 0 8px;
  line-height: 0.95;
}
.credit { color: var(--stone); margin: 0 0 14px; }
.featured-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.spotify-embed {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  min-height: 152px;
}
.spotify-embed iframe { width: 100%; height: 152px; border: 0; }

/* Music grid */
.music { background: var(--ivory); }
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.track-card {
  position: relative;
}
.track-card .art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sand);
}
.track-card .art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.track-card:hover .art img { transform: scale(1.06); filter: brightness(0.72); }
.track-streams {
  position: absolute; inset: auto 10px 10px 10px;
  display: flex; flex-wrap: wrap; gap: 6px;
  opacity: 1;
  transform: none;
}
.track-meta { padding: 12px 2px 4px; }
.track-meta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 2px;
}
.track-meta p { margin: 0; color: var(--stone); font-size: 13px; }
.track-year { letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; color: var(--amber); }

/* Upcoming */
.upcoming {
  background:
    linear-gradient(180deg, rgba(20,17,14,0.18), rgba(20,17,14,0.55)),
    var(--charcoal);
  color: var(--ivory);
}
.upcoming-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
}
.upcoming .art-frame { max-width: 360px; }
.tba {
  display: inline-block;
  border: 1px solid rgba(224,194,122,0.45);
  color: var(--gold-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Collaborations */
.collab { background: #efe4d2; }
.collab-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.collab-rail::-webkit-scrollbar { height: 0; }
.collab-item {
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
}
.collab-item img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15);
  transition: transform 0.7s var(--ease);
}
.collab-item:hover img { transform: scale(1.06); }
.collab-item span {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ivory);
  text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* About */
.about { background: var(--cream); }
.about-grid { display: grid; gap: 28px; }
.about-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 220px 180px;
  gap: 10px;
}
.about-photos figure {
  margin: 0; overflow: hidden; border-radius: 8px;
}
.about-photos img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.about-photos figure:hover img { transform: scale(1.05); }
.about-photos figure:first-child { grid-row: 1 / span 2; }
.about-copy h2 { margin-top: 8px; }
.about-copy p { color: #4c453d; font-size: 1.04rem; }
.role-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.role-pills span {
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Video */
.watch { background: #1a1612; color: var(--ivory); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #2a231c;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(10, 8, 6, 0.82));
  pointer-events: none;
}
.video-card.featured { grid-column: auto; }
.video-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; aspect-ratio: 16/9;
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.video-card.vertical img { aspect-ratio: 9/14; }
.video-card:hover img { transform: scale(1.05); filter: brightness(0.7); }
.play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 2;
}
.play i {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(246,240,230,0.16);
  border: 1px solid rgba(246,240,230,0.4);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.video-card:hover .play i { transform: scale(1.08); background: var(--gold); color: var(--ink); }
.play i::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 3px;
}
.video-label {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  z-index: 2;
}
.video-label strong { display: block; font-family: var(--font-display); font-size: 26px; }
.video-label em { font-style: normal; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }

/* Highlights */
.highlights { background: var(--ivory); }
.highlight-list { display: grid; gap: 12px; }
.highlight-item {
  padding: 20px 18px;
  border-top: 1px solid var(--line);
}
.highlight-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}
.highlight-item p { margin: 6px 0 0; color: var(--stone); }
.notable { margin-top: 28px; color: var(--stone); }
.notable b { color: var(--ink); font-weight: 600; }

/* Live */
.live { background: #eadcc8; }
.live-empty {
  padding: 40px 24px;
  border: 1px solid rgba(20,17,14,0.12);
  border-radius: 16px;
  background: rgba(255,253,248,0.45);
}
.live-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  margin: 8px 0 12px;
}
.dates-table { width: 100%; border-collapse: collapse; }
.dates-table th, .dates-table td {
  text-align: left; padding: 16px 8px;
  border-bottom: 1px solid var(--line);
}
.dates-table th {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
}

/* Press */
.press { background: var(--cream); }
.press-grid { display: grid; gap: 28px; }
.press-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.press-photos img { border-radius: 8px; width: 100%; height: 220px; object-fit: cover; }
.bio-block {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}
.bio-block h3 { margin-top: 0; font-family: var(--font-display); font-size: 28px; }
.press-links { display: flex; flex-wrap: wrap; gap: 8px; }

/* Social mosaic */
.social { background: var(--ivory); }
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mosaic a {
  position: relative; overflow: hidden; border-radius: 8px;
  min-height: 180px;
}
.mosaic a:nth-child(3) { grid-row: span 2; min-height: 368px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mosaic a:hover img { transform: scale(1.06); }
.mosaic span {
  position: absolute; left: 12px; bottom: 12px;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* CTA */
.journey {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  padding: 110px 0;
}
.journey-bg {
  position: absolute; inset: 0;
}
.journey-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.journey-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.35), rgba(20,17,14,0.78));
}
.journey .wrap { position: relative; z-index: 1; }
.journey h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 88px);
  margin: 10px 0 12px;
  line-height: 0.9;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* Booking */
.work { background: var(--cream); }
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.enquiry-card {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.4);
}
.enquiry-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.enquiry-card p { margin: 0; color: var(--stone); font-size: 14px; }
.contact-form {
  display: grid; gap: 12px;
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
}
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 14px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--stone); font-size: 14px; }
.form-success {
  display: none;
  padding: 16px;
  border-radius: 10px;
  background: #e8f0dd;
  color: #2d3d1c;
}
.mailto {
  color: var(--amber);
  font-weight: 700;
  word-break: break-word;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(246,240,230,0.78);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid; gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .logo { color: var(--ivory); font-size: 28px; }
.footer-roles { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.footer-links a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  padding-top: 18px; font-size: 13px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 42svh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 20%;
  filter: brightness(0.55);
}
.page-hero .wrap { position: relative; z-index: 1; padding: 90px 0 36px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 92px);
  margin: 8px 0 0;
  line-height: 0.9;
}

/* Privacy */
.prose { max-width: 720px; }
.prose h2 { font-family: var(--font-display); font-size: 32px; }
.prose p, .prose li { color: #4c453d; }

/* Desktop */
@media (min-width: 780px) {
  .nav-links { display: flex; }
  .nav-social { display: flex; }
  .nav-end .btn { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero { align-items: center; }
  .hero-copy { padding: 120px 0 80px; }
  .hero-media img { object-position: 68% 12%; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20,17,14,0.72) 0%, rgba(20,17,14,0.28) 42%, rgba(20,17,14,0.08) 70%),
      linear-gradient(180deg, rgba(20,17,14,0.2), transparent 30%, rgba(20,17,14,0.45) 100%);
  }
  .scroll-hint {
    display: block;
    position: absolute; right: 36px; bottom: 36px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    writing-mode: vertical-rl;
    opacity: 0.7;
  }
  .featured-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
  .music-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .track-streams {
    opacity: 1;
    transform: none;
  }
  .upcoming-card { grid-template-columns: 320px 1fr; align-items: center; padding: 28px; }
  .collab-rail { grid-template-columns: repeat(6, 1fr); }
  .about-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .about-photos { grid-template-rows: 280px 210px; }
  .video-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .video-card.featured { grid-column: 1; grid-row: 1 / span 2; }
  .video-card.featured img { aspect-ratio: auto; height: 100%; min-height: 420px; }
  .highlight-list { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 0.9fr 1.1fr; }
  .mosaic { grid-template-columns: repeat(4, 1fr); }
  .mosaic a { min-height: 240px; }
  .mosaic a:nth-child(1) { grid-column: span 2; min-height: 360px; }
  .mosaic a:nth-child(3) { grid-row: span 2; min-height: 492px; }
  .enquiry-grid { grid-template-columns: repeat(4, 1fr); }
  .work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .footer-top { grid-template-columns: 1.2fr 1fr; align-items: start; }
  section { padding: 110px 0; }
}

@media (min-width: 1100px) {
  .music-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 148px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { transform: none; }
}
