:root {
  --black: #030303;
  --ink: #080808;
  --surface: #111111;
  --surface-2: #171717;
  --white: #f5f4f0;
  --muted: #aaa9a3;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c9ad6a;
  --gold-soft: #e4d09c;
  --header-h: 76px;
  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* ============================================================
     FUNDOS PROVISÓRIOS — TROQUE SOMENTE AS URLs ABAIXO
     Exemplo: url("../assets/images/minha-foto-biografia.jpg")
     Recomendações: JPG/WebP, 2400 px de largura ou mais, paisagem.
     ============================================================ */
  --bg-biografia: url("../assets/images/bg-biografia.svg");
  --bg-discografia: url("../assets/images/bg-discografia.svg");
  --bg-videoclipes: url("../assets/images/bg-videoclipes.svg");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #090909; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), #fff);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1320px);
  min-height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(8, 8, 8, .58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  transition: min-height .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(7, 7, 7, .86);
  border-color: rgba(255, 255, 255, .16);
}
.brand { position: relative; z-index: 2; display: block; width: 145px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav a {
  position: relative;
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .025em;
  transition: color .25s ease, background .25s ease;
}
.main-nav a:hover,
.main-nav a.is-active { color: #fff; background: rgba(255, 255, 255, .09); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 360vh;
  background:
    radial-gradient(circle at 50% 38%, rgba(171, 143, 82, .13), transparent 30%),
    #020202;
}
.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-halo {
  position: absolute;
  width: min(74vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 187, 117, .16), rgba(112, 92, 46, .04) 42%, transparent 69%);
  filter: blur(4px);
  transform: translate3d(0, var(--hero-halo-y, 0), 0) scale(var(--hero-halo-scale, 1));
  opacity: var(--hero-halo-opacity, 1);
}
.hero-lines {
  position: absolute;
  inset: -15%;
  z-index: -1;
  opacity: var(--hero-lines-opacity, .16);
  background:
    repeating-radial-gradient(circle at center, transparent 0 78px, rgba(255,255,255,.13) 79px 80px),
    radial-gradient(circle at center, transparent 25%, #000 72%);
  transform: scale(var(--hero-lines-scale, 1.15)) rotate(var(--hero-lines-rotate, 0deg));
}
.hero-video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  width: min(68vmin, 670px);
  aspect-ratio: 1;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(var(--hero-video-scale, 1));
  opacity: var(--hero-video-opacity, 1);
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.62));
  will-change: transform, opacity;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: max(5vw, calc((100vw - var(--container)) / 2));
  bottom: 9vh;
  max-width: 770px;
  opacity: var(--hero-copy-opacity, 0);
  transform: translate3d(0, var(--hero-copy-y, 52px), 0);
  will-change: transform, opacity;
}
.eyebrow,
.section-index,
.album-type {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.social-content h2 {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .9;
  text-wrap: balance;
}
.hero h1 { font-size: clamp(3.25rem, 7.4vw, 7.6rem); }
.hero h1 span { color: rgba(255,255,255,.36); }
.hero-intro {
  max-width: 600px;
  margin: 25px 0 30px;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { background: var(--white); color: #070707; }
.button-primary:hover { transform: translateY(-3px); background: var(--gold-soft); }
.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transition: opacity .3s ease;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-120%); } 60%, 100% { transform: translateY(210%); } }

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 14vw, 190px) 0;
  overflow: clip;
  isolation: isolate;
}
.section-bg {
  position: absolute;
  z-index: -2;
  inset: -8%;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}
.section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.08) 35%, rgba(0,0,0,.58));
}
.bio-bg { background-image: var(--bg-biografia); }
.disc-bg { background-image: var(--bg-discografia); }
.video-bg { background-image: var(--bg-videoclipes); }

.section-heading h2 { font-size: clamp(3.7rem, 7vw, 7rem); }
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(58px, 8vw, 100px);
}
.section-summary {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.biography { display: grid; align-items: center; }
.bio-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.bio-symbol {
  position: absolute;
  z-index: -1;
  left: -11vw;
  top: 50%;
  width: min(70vw, 1100px);
  opacity: .07;
  mix-blend-mode: screen;
  transform: translate3d(0, calc(-50% + var(--symbol-y, 0px)), 0) rotate(var(--symbol-r, -6deg));
  will-change: transform;
}
.bio-card {
  padding: clamp(30px, 5vw, 66px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(25,25,25,.84), rgba(8,8,8,.66));
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.bio-card p {
  margin: 0 0 1.3em;
  color: rgba(255,255,255,.66);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}
.bio-card p:last-child { margin-bottom: 0; }
.bio-card .lead {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 300;
  line-height: 1.55;
}
.bio-card strong { color: #fff; }

.manifesto {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.1);
  background: var(--gold-soft);
  color: #0b0b0b;
}
.manifesto-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 20px 0 18px;
  animation: marquee 28s linear infinite;
}
.manifesto span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.manifesto i { font-size: 1.2rem; font-style: normal; opacity: .5; }
@keyframes marquee { to { transform: translateX(-50%); } }

.album-list { display: grid; gap: 34px; }
.album-card {
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: rgba(10,10,10,.72);
  box-shadow: 0 35px 100px rgba(0,0,0,.32);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.album-meta {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(255,255,255,.07), transparent 60%),
    #0b0b0b;
}
.album-meta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 70%, rgba(204,173,103,.13), transparent 50%);
}
.album-number { color: rgba(255,255,255,.32); font-size: .75rem; letter-spacing: .16em; }
.album-meta h3 {
  margin: 4px 0 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  letter-spacing: -.07em;
  line-height: .85;
}
.album-type { margin: auto 0 0; }
.album-mark {
  position: absolute;
  right: -3%;
  bottom: -18%;
  color: rgba(255,255,255,.055);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 25rem;
  font-weight: 700;
  line-height: 1;
}
.album-mark-small { right: -9%; bottom: -9%; font-size: 17rem; }
.embed-shell { padding: clamp(24px, 4vw, 44px); align-self: center; min-width: 0; }
.platform-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.platform-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  transition: all .25s ease;
}
.platform-tab.is-active { background: #fff; color: #070707; }
.platform-panel { animation: panelIn .45s var(--ease); }
.platform-panel iframe { border: 0; border-radius: 16px; background: #111; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
.ratio { position: relative; overflow: hidden; width: 100%; }
.ratio-video { aspect-ratio: 16 / 9; border-radius: 16px; background: #000; }
.ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.videos { padding-bottom: clamp(130px, 16vw, 220px); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.video-card { min-width: 0; aspect-ratio: 16/10; }
.video-card-wide,
.video-card-featured { grid-column: 1 / -1; aspect-ratio: 2.15/1; }
.video-card-portrait { aspect-ratio: 16/10; }
.video-launch {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #111;
  cursor: pointer;
  text-align: left;
}
.video-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .6s ease;
}
.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 62%);
  transition: background .4s ease;
}
.video-caption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: baseline;
  gap: 13px;
}
.video-caption small { color: var(--gold-soft); font-size: .67rem; letter-spacing: .14em; }
.video-caption strong { font-size: clamp(1.2rem, 2vw, 2rem); letter-spacing: -.025em; }
.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(56px, 7vw, 82px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.94);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  transition: transform .45s var(--ease), background .3s ease;
}
.play-button svg { width: 34%; fill: #fff; }
.video-launch:hover img { transform: scale(1.055); filter: saturate(.7) contrast(1.05); }
.video-launch:hover .play-button { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-launch:hover .play-button svg { fill: #070707; }

.social-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(120px, 16vw, 220px) 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 45%, rgba(202,174,107,.13), transparent 30%),
    #030303;
}
.social-symbol-wrap {
  position: absolute;
  right: -15vw;
  top: 50%;
  width: min(78vw, 1050px);
  transform: translateY(-50%) rotate(-8deg);
  opacity: .08;
}
.social-symbol-wrap img { width: 100%; }
.social-content { position: relative; z-index: 1; }
.social-content h2 { font-size: clamp(4rem, 10vw, 10rem); }
.social-content > p:not(.section-index) {
  max-width: 580px;
  margin: 28px 0 60px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}
.social-icon {
  position: relative;
  width: clamp(64px, 7vw, 88px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #fff;
  box-shadow: inset 0 0 0 0 #fff;
  transition: transform .45s var(--ease), color .35s ease, border-color .35s ease, box-shadow .45s var(--ease);
}
.social-icon svg {
  width: 42%;
  height: 42%;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.55;
  transition: transform .45s var(--ease);
}
.social-icon:first-child svg { fill: none; }
.social-icon:first-child .social-icon-dot { fill: currentColor; stroke: none; }
.social-icon:nth-child(2) svg > path:first-child { fill: none; }
.social-icon:nth-child(2) .social-icon-play { fill: currentColor; stroke: none; }
.social-icon::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -38px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  transform: translate(-50%, 8px);
  background: rgba(8,8,8,.9);
  color: rgba(255,255,255,.82);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .3s ease, transform .4s var(--ease);
}
.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-8px) scale(1.04);
  border-color: #fff;
  color: #050505;
  box-shadow: inset 0 0 0 48px #fff, 0 18px 48px rgba(0,0,0,.34);
  outline: none;
}
.social-icon:hover svg,
.social-icon:focus-visible svg { transform: scale(1.08); }
.social-icon:hover::after,
.social-icon:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #020202; }
.footer-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}
.footer-inner p, .footer-inner a { margin: 0; color: rgba(255,255,255,.5); font-size: .75rem; }
.footer-inner a { justify-self: end; transition: color .25s ease; }
.footer-inner a:hover { color: #fff; }

.video-modal {
  width: min(calc(100% - 32px), 1120px);
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: #080808;
  color: #fff;
  box-shadow: 0 50px 150px rgba(0,0,0,.8);
}

.video-modal.is-portrait { width: min(calc(100% - 32px), 500px); }
.video-modal.is-portrait .modal-player { aspect-ratio: 9 / 16; }

.video-modal::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(10px); }
.video-modal[open] { animation: modalIn .5s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.98); } }
.modal-bar {
  min-height: 66px;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.modal-bar h2 { margin: 0; font-size: .9rem; letter-spacing: .02em; }
.modal-bar button {
  position: relative;
  width: 38px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.modal-bar button span { position: absolute; top: 50%; left: 50%; width: 15px; height: 1px; background: #fff; }
.modal-bar button span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.modal-bar button span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.modal-player { border-radius: 0; }

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --header-h: 66px; }
  .site-header { top: 10px; padding: 0 16px 0 19px; }
  .brand { width: 126px; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 44px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
  }
  .menu-toggle span { position: absolute; width: 17px; height: 1px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: -11px -15px auto;
    min-height: 100svh;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    border-radius: 0;
    background: rgba(3,3,3,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .35s ease, visibility .35s ease, transform .45s var(--ease);
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px 2px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: "Roboto Condensed", sans-serif; font-size: clamp(2rem, 8vw, 4rem); color: #fff; }
  .main-nav a:hover { background: transparent; color: var(--gold-soft); }

  .hero { min-height: 340vh; }
  .hero-video { top: 42%; width: min(86vw, 640px); }
  .hero-copy { left: 24px; right: 24px; bottom: 9vh; }
  .scroll-cue { display: none; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-symbol { left: -35vw; top: 24%; width: 120vw; }
  .section-heading-row { grid-template-columns: 1fr; gap: 25px; }
  .section-summary { max-width: 520px; }
  .album-card { grid-template-columns: 1fr; }
  .album-meta { min-height: 260px; }
  .album-mark { font-size: 18rem; }
  .footer-inner { grid-template-columns: 1fr auto; padding: 28px 0; }
  .footer-inner p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { width: calc(100% - 18px); }
  .hero-copy { left: 18px; right: 18px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 5.4rem); }
  .hero-intro { max-width: 94%; }
  .section { padding: 100px 0; }
  .section-heading h2 { font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .bio-card { padding: 26px 21px; border-radius: 22px; }
  .bio-card .lead { font-size: 1.23rem; }
  .album-list { gap: 22px; }
  .album-card { border-radius: 22px; }
  .album-meta { min-height: 210px; padding: 26px; }
  .album-meta h3 { font-size: 4.4rem; }
  .embed-shell { padding: 20px 14px 18px; }
  .platform-panel iframe[title*="Spotify"] { height: 352px; }
  .video-grid { grid-template-columns: 1fr; gap: 14px; }
  .video-card,
  .video-card-wide,
  .video-card-featured,
  .video-card-portrait { grid-column: auto; aspect-ratio: 16/10; }
  .video-launch { border-radius: 18px; }
  .video-caption strong { font-size: 1.16rem; }
  .social-content h2 { font-size: clamp(4rem, 18vw, 6.8rem); }
  .social-content > p:not(.section-index) { margin-bottom: 42px; }
  .social-links { gap: 13px; padding-bottom: 34px; }
  .social-icon { width: clamp(58px, 18vw, 72px); }
  .social-icon::after { bottom: -33px; font-size: .62rem; }
  .footer-logo { width: 122px; max-height: 45px; }
  .video-modal { width: calc(100% - 16px); border-radius: 16px; }
  .modal-player { aspect-ratio: 16/9; }
}

@media (hover: none) {
  .video-launch:hover img { transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-copy { opacity: 1 !important; transform: none !important; }
  .hero-video { opacity: .42 !important; transform: translate(-50%, -50%) scale(.88) !important; }
  .section-bg, .bio-symbol { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
