/* =========================================================
   ELISEU — Rap Gospel · Landing
   Branding: navy profundo + dourado + branco (baseado na logo).
   Serif sacro × grotesque rua. Coroa + swoosh como assinatura.
   ========================================================= */

:root {
  /* Preto — branding */
  --navy:        #111111;
  --navy-2:      #1A1A1A;
  --navy-3:      #222222;
  --navy-deep:   #080808;

  /* Texto */
  --cream:       #F6F2E8;
  --text:        #E9EFF7;
  --text-soft:   #A7B6C9;
  --text-mute:   #6E8094;

  /* Dourado — da coroa/swoosh */
  --gold:        #E7A93C;
  --gold-bright: #F7CD66;
  --gold-deep:   #C5872A;
  --blue-spark:  #000000;

  --line:        rgba(231, 169, 60, 0.16);
  --line-soft:   rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);

  --nav-h: 76px;

  --serif: 'Instrument Serif', Georgia, serif;
  --grotesk: 'Space Grotesk', system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: var(--grotesk);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

::selection { background: var(--gold); color: var(--navy-deep); }

a { color: inherit; text-decoration: none; }

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

/* =============== MANCHA / INK FIELD (glow sobre o navy) =============== */
.ink-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(20,20,20,0.5), transparent 60%),
    radial-gradient(90% 70% at 10% 110%, rgba(231,169,60,0.10), transparent 60%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  mix-blend-mode: screen;
  will-change: transform;
}
.blob--1 {
  width: 58vw; height: 58vw;
  top: -20vw; left: -12vw;
  background: radial-gradient(circle at 35% 35%, var(--gold), var(--gold-deep) 50%, transparent 72%);
  opacity: 0.32;
  animation: drift1 26s var(--ease) infinite alternate;
}
.blob--2 {
  width: 50vw; height: 50vw;
  top: 30vh; right: -16vw;
  background: radial-gradient(circle at 60% 40%, var(--blue-spark), #1a1a1a 60%, transparent 76%);
  opacity: 0.45;
  animation: drift2 32s var(--ease) infinite alternate;
}
.blob--3 {
  width: 44vw; height: 44vw;
  bottom: -18vw; left: 16vw;
  background: radial-gradient(circle at 50% 50%, var(--gold-bright), var(--gold-deep) 55%, transparent 78%);
  opacity: 0.22;
  animation: drift3 38s var(--ease) infinite alternate;
}
.grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
@keyframes drift1 { to { transform: translate(8vw, 6vh) scale(1.12) rotate(18deg); } }
@keyframes drift2 { to { transform: translate(-7vw, -5vh) scale(1.08) rotate(-14deg); } }
@keyframes drift3 { to { transform: translate(5vw, -7vh) scale(1.15) rotate(10deg); } }

.nav, main, .footer { position: relative; z-index: 1; }

/* =============== CROWN + SWOOSH (assinatura) =============== */
.swoosh { display: block; }

/* =============== NAV =============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 56px);
  backdrop-filter: blur(14px) saturate(1.2);
  background: color-mix(in srgb, var(--navy) 80%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo {
  height: 46px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav.is-scrolled .nav__brand:hover .nav__logo { opacity: 0.82; transform: translateY(-1px); }

.nav__links {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  color: var(--text-soft);
  padding: 4px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.nav__cta:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-1px); }

/* =============== HELPERS =============== */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 22px;
}
.eyebrow--light { color: var(--gold-bright); }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =============== HERO =============== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 3vh, 36px) clamp(20px, 5vw, 56px) 0;
  min-height: calc(93vh - var(--nav-h));
  min-height: calc(93svh - var(--nav-h));
  display: flex;
  flex-direction: column;
}
.hero__grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  column-gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.hero__copy { display: flex; flex-direction: column; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
  margin: 0 0 clamp(8px, 1.6vh, 14px);
}
.hero__eyebrow i { color: var(--gold); font-style: normal; }

.hero__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: min(clamp(78px, 16vw, 230px), 23vh);
  line-height: 0.82;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.hero__logo {
  display: block;
  width: clamp(280px, 42vw, 560px);
  max-width: 100%;
  height: auto;
}
.hero__name .line { display: block; }
.hero__name .line--out {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold);
  text-stroke: 1.4px var(--gold);
  font-style: italic;
  margin-left: 0.1em;
}
.hero__name .swoosh {
  width: clamp(190px, 30vw, 380px);
  height: auto;
  margin: clamp(4px, 1.2vh, 10px) 0 0 4px;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  color: var(--text-soft);
  margin: clamp(14px, 3vh, 26px) 0 0;
  max-width: 38ch;
}
.hero__tagline em { color: var(--gold); font-style: italic; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(18px, 3.5vh, 32px);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  border-radius: 100px;
  transition: transform 0.2s, background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn--solid {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 14px 34px -14px rgba(231,169,60,0.7);
}
.btn--solid:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* indicador de scroll — fixo no rodapé do hero, separado do conteúdo */
.hero__role {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 24px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__role i {
  width: 42px; height: 1px;
  background: var(--text-mute);
  position: relative;
  overflow: hidden;
}
.hero__role i::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(100%);} }

/* equalizador full-width (atrás de tudo, na base do hero) */
.hero__eq {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  height: clamp(48px, 8vh, 90px);
  display: flex;
  align-items: flex-end;
  gap: clamp(3px, 0.5vw, 7px);
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 6%, transparent 100%);
  mask-image: linear-gradient(to top, #000 6%, transparent 100%);
}
.hero__eq i {
  flex: 1 1 0;
  height: 16%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--gold-deep), var(--gold) 60%, var(--gold-bright));
  transform-origin: bottom;
  animation: eqbar 1.1s ease-in-out infinite;
}
@keyframes eqbar { 0%, 100% { height: 12%; } 50% { height: 100%; } }

/* render do Eliseu afundado na base do hero (wrapper recorta os pés) */
.hero__figwrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero__cut {
  position: absolute;
  right: clamp(0px, 6vw, 110px);
  bottom: 0;
  height: 70vh;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  transform: translateY(var(--sink, 5vh));
  filter: drop-shadow(0 22px 44px rgba(0,0,0,0.5));
}

/* =============== PHOTOS (duotone navy→dourado) =============== */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(150deg, #0a0a0a 6%, #1a1a1a 52%, var(--gold) 128%);
  isolation: isolate;
}
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--src);
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: saturate(1.03) contrast(1.02);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,0.62));
  mix-blend-mode: multiply;
}
.photo:hover::before { transform: scale(1.06); }

.photo__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 5px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
  border-radius: 100px;
}
/* =============== MARQUEE =============== */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 18px 0;
  background: color-mix(in srgb, var(--navy-deep) 50%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 58px);
  color: var(--cream);
  animation: marquee 22s linear infinite;
}
.marquee__track b { color: var(--gold); font-size: 0.5em; }
.marquee__track span:nth-child(4n+1) { font-style: italic; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============== SECTION SHELL =============== */
.sobre, .som, .galeria {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 12vh, 150px) clamp(20px, 5vw, 56px);
}

/* =============== DISCORD / COMUNIDADE =============== */
.discord {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 4vh, 60px) clamp(20px, 5vw, 56px) clamp(70px, 12vh, 150px);
}
.discord__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 68px);
}
.discord__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(42% 60% at 84% 42%, rgba(231,169,60,0.13), transparent 72%);
  pointer-events: none;
}
.discord__body { position: relative; z-index: 1; }
.discord__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--cream);
}
.discord__title em { color: var(--gold); font-style: italic; }
.discord__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}
.discord__perks {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.discord__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text);
}
.discord__perk-i {
  flex: none;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(231,169,60,0.14);
  color: var(--gold);
}
.discord__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.discord__meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.discord__art {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
}
.discord__art-label {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.discord__logo {
  width: min(100%, 240px);
  height: auto;
  color: var(--gold);
  opacity: 0.85;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.55));
}
@media (max-width: 760px) {
  .discord__card { grid-template-columns: 1fr; }
  .discord__art { display: none; }
}

/* =============== SOBRE =============== */
.sobre__head { max-width: 920px; }
.sobre__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.sobre__quote em { color: var(--gold); font-style: italic; }
.sobre__cite { display: block; margin-top: 16px; font-family: var(--sans); font-size: clamp(12px, 1.1vw, 14px); font-style: normal; font-weight: 500; letter-spacing: .08em; color: var(--gold); }

.sobre__grid {
  margin-top: clamp(40px, 7vh, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.sobre__bio p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0 0 20px;
  max-width: 920px;
}
.sobre__bio em { color: var(--cream); font-style: normal; font-weight: 600; }
.sobre__verse {
  margin: 4px 0 0;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 15px);
  font-style: italic;
  color: var(--text-soft);
  max-width: 52ch;
}
.sobre__verse cite { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--gold); letter-spacing: .05em; }

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.stats li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.stats__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  color: var(--gold);
}
.stats__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* =============== SOM / PLAYER =============== */
.som { position: relative; }
.som__coming {
  text-align: center;
  padding: clamp(48px, 8vh, 96px) 0;
  color: var(--text-soft);
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.som__head { margin-bottom: clamp(32px, 5vh, 56px); }
.som__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.9;
  margin: 0;
  color: var(--cream);
}

.player {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 3vw, 44px);
  background: var(--navy-2);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.8);
  overflow: hidden;
}

.player__art { position: relative; }
.photo--cover {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 14px;
}
.cover__meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cover__album {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
}
.cover__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.95;
  color: var(--cream);
}
.eq {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0;
  transition: opacity 0.3s;
}
.player.is-playing .eq { opacity: 1; }
.eq i { width: 3px; background: var(--gold); border-radius: 2px; height: 30%; }
.player.is-playing .eq i { animation: eq 0.9s ease-in-out infinite; }
.eq i:nth-child(2){ animation-delay: 0.2s;}
.eq i:nth-child(3){ animation-delay: 0.4s;}
.eq i:nth-child(4){ animation-delay: 0.1s;}
.eq i:nth-child(5){ animation-delay: 0.5s;}
@keyframes eq { 0%,100%{height:25%;} 50%{height:100%;} }

.player__panel { display: flex; flex-direction: column; }
.player__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.player__track {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  margin: 0 0 6px;
  color: var(--cream);
}
.player__artist { margin: 0; font-size: 15px; color: var(--text-soft); }
.player__artist span { color: var(--text-mute); }

.player__seek { margin: 26px 0 6px; }
.seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 100px;
  background: linear-gradient(to right, var(--gold-bright) 0%, var(--gold) var(--p, 0%), rgba(255,255,255,0.14) var(--p, 0%));
  cursor: pointer;
}
.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(231,169,60,0.3);
  transition: transform 0.15s;
}
.seek::-webkit-slider-thumb:hover { transform: scale(1.25); }
.seek::-moz-range-thumb {
  width: 15px; height: 15px; border: none;
  border-radius: 50%; background: var(--gold);
}
.player__time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--text-mute);
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 4px;
}
.ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s, transform 0.2s;
}
.ctrl:hover { color: var(--cream); transform: scale(1.08); }
.ctrl--play {
  background: var(--gold);
  color: var(--navy-deep);
  width: 56px; height: 56px;
}
.ctrl--play:hover { background: var(--gold-bright); color: var(--navy-deep); }
.ic-pause { display: none; }
.player.is-playing .ic-play { display: none; }
.player.is-playing .ic-pause { display: block; }

.player__open {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.player__open:hover { border-color: var(--gold); color: var(--gold); }

.tracklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-soft);
}
.track {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
}
.track:hover { background: rgba(255,255,255,0.05); color: var(--cream); }
.track.is-active { color: var(--cream); background: rgba(231,169,60,0.14); }
.track__i { font-size: 12px; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.track.is-active .track__i { color: var(--gold); }
.track__name { font-size: 15px; }
.track__len { font-size: 12px; font-variant-numeric: tabular-nums; color: var(--text-mute); }

/* =============== GALERIA =============== */
.galeria__head { margin-bottom: clamp(32px, 5vh, 56px); }
.galeria__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.95;
  margin: 0;
  color: var(--cream);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gal-item { margin: 0; }
.gal-item .photo { width: 100%; height: 100%; }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

/* =============== FOOTER =============== */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(50px, 8vh, 90px) clamp(20px, 5vw, 56px) 40px;
  max-width: none;
  margin: 0;
  overflow: hidden;
}
.footer__big {
  font-family: var(--serif);
  font-size: clamp(80px, 24vw, 340px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  text-stroke: 1px var(--line-strong);
  margin: 0 0 40px;
  user-select: none;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 18px;
}
.social { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.social a {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--cream);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.social a small {
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: lowercase;
}
.social a:hover { color: var(--gold); padding-left: 10px; }

.footer__col--contact { text-align: right; }
.footer__mail {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--gold);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s;
}
.footer__mail:hover { border-color: var(--gold); }

.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.footer__faith { color: var(--text-mute); }
.footer__faith a {
  color: var(--text-soft);
  border-bottom: 1px solid currentColor;
}
.footer__faith a:hover { color: var(--gold-bright); }

/* =============== RESPONSIVO =============== */
@media (max-width: 900px) {
  .hero {
    --marquee-peek: clamp(38px, 6svh, 48px);
    min-height: calc(100vh - var(--nav-h) - var(--marquee-peek));
    min-height: calc(100svh - var(--nav-h) - var(--marquee-peek));
    padding-top: clamp(16px, 3vh, 28px);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    row-gap: clamp(12px, 2vh, 24px);
  }
  .hero__copy { align-items: center; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__name .swoosh { margin-left: auto; margin-right: auto; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__figwrap {
    position: static;
    overflow: visible;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 0;
  }
  .hero__cut {
    position: static;
    display: block;
    height: auto;
    width: auto;
    max-width: 78%;
    max-height: clamp(220px, 32svh, 360px);
    margin: clamp(12px, 2vh, 22px) auto 0;
    transform: translateY(1px);
  }
  .hero__eq { height: clamp(56px, 10vh, 92px); }
  .hero__role { justify-content: center; padding: 14px 0 18px; }
  .sobre__grid { grid-template-columns: 1fr; }
  .player { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .nav__links { display: none; }
  .footer__row { flex-direction: column; }
  .footer__col--contact { text-align: left; }
  .player__controls { flex-wrap: wrap; justify-content: center; }
  .player__open { margin-left: 0; width: 100%; text-align: center; }
}

/* =============== REDUCED MOTION =============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
