/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: "Chunq";
  src: url("uploads/Chunq.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --sage: #878766;
  --olive: #404015;
  --olive-2: #44461a;
  --cream: #fdf4e8;
  --cream-2: #f5ebda;
  --cream-3: #ece0c8;
  --white: #ffffff;
  --charcoal: #373435;
  --black: #000000;
  --tape: #d9c96e;
  --sage-fade: rgba(135, 135, 102, 0.18);

  --f-display: "Chunq", "Impact", sans-serif;
  --f-body: "Montserrat", "Helvetica Neue", sans-serif;
  --f-mono: "Special Elite", "Courier Prime", monospace;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   PAPER NOISE
   ============================================================ */
.paper-noise {
  position: relative;
}
.paper-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.10  0 0 0 0 0.05  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.paper-noise > * {
  position: relative;
  z-index: 2;
}

/* ============================================================
   STREAMING MODAL
   ============================================================ */
.smodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.smodal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.smodal-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.smodal-overlay.is-open .smodal-card {
  transform: translateY(0) scale(1);
}
.smodal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.smodal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.smodal-cover {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.smodal-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.smodal-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--cream);
  margin: 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.smodal-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.smodal-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.smodal-btns .stream-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 11px 16px;
}

/* Footer noise — stronger, visible on dark background */
.foot.paper-noise::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 0.8  0 0 0 0.38 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 1;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px 40px;
  min-width: 0;
  z-index: 100;
  color: var(--cream);
  background: rgba(20, 18, 18, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-shrink: 1;
  min-width: 0;
  justify-content: flex-end;
}

.nav-links.right {
  justify-content: flex-start;
}
.nav-links a {
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ============================================================
   HERO
   ============================================================ */

/* Logo swap hooks — mobile logo hidden by default */
.logo-mobile {
  display: none;
}

@keyframes hero-fade-photo {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  animation: hero-fade-photo 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}
.hero-lockup {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: hero-fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s both;

  #logo-mobile {
    display: none;
  }

  #full-logo {
    display: flex;
  }
}
.hero-lockup img {
  width: clamp(340px, 60vw, 900px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin: 0 auto;
  display: block;
}
/*.hero-cta {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: hero-fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s both;
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
  font-size: 18px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}
  */

.hero-cta {
  position: absolute;
  bottom: 6vh;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  animation: hero-fade-up 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s both;
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
  font-size: 18px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}
.hero-cta:hover {
  opacity: 0.75;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--olive);
  color: var(--cream);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.marquee.alt {
  background: var(--charcoal);
  color: var(--cream);
  border-top: none;
}
.marquee .track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.marquee.reverse .track {
  animation-direction: reverse;
}
.marquee .dot {
  color: var(--sage);
  margin: 0 24px;
}
.marquee .star {
  color: var(--tape);
  margin: 0 24px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: 120px 5vw;
  overflow: hidden;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 6px 14px;
  border: 1.5px solid var(--charcoal);
  background: var(--cream);
  transform: rotate(-1.5deg);
  margin-bottom: 16px;
}
.section-label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}
.kicker {
  font-family: var(--f-display);
  font-size: clamp(76px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  margin: 20px 0 36px;
  color: var(--charcoal);
}
.kicker em {
  font-style: normal;
  color: var(--olive);
}
.kicker .outline {
  -webkit-text-stroke: 2px var(--charcoal);
  color: transparent;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ============================================================
   A BANDA
   ============================================================ */
.banda {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.banda-copy {
  flex: 1.05;
  min-width: 0;
  max-width: 540px;
}
.banda-copy p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.banda-copy p b {
  font-weight: 700;
}
.banda-copy .lead {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 26px;
}

/* rotating stamp deco */
.deco-stamp {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Collage ── */
.collage {
  position: relative;
  height: 580px;
  flex: 1;
  min-width: 0;
}

.collage .piece {
  position: absolute;
  box-shadow:
    0 12px 30px -10px rgba(0, 0, 0, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  padding: 12px 12px 36px;
  /* entry animation: start scattered, land in place */
  opacity: 0;
  transition: none;
}
.collage .piece img {
  width: 100%;
  height: calc(100% - 24px);
  object-fit: cover;
  display: block;
}
.collage .piece .cap {
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

/* Polaroid entry animation — each piece flies in from a different direction */
@keyframes polaroid-in-1 {
  0% {
    opacity: 0;
    transform: rotate(-7deg) translate(-120px, -80px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: rotate(-7deg) translate(0, 0) scale(1);
  }
}
@keyframes polaroid-in-2 {
  0% {
    opacity: 0;
    transform: rotate(5deg) translate(100px, -60px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: rotate(5deg) translate(0, 0) scale(1);
  }
}
@keyframes polaroid-in-3 {
  0% {
    opacity: 0;
    transform: rotate(-3deg) translate(80px, 100px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: rotate(-3deg) translate(0, 0) scale(1);
  }
}
@keyframes polaroid-in-4 {
  0% {
    opacity: 0;
    transform: rotate(8deg) translate(-100px, 60px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: rotate(8deg) translate(0, 0) scale(1);
  }
}
@keyframes polaroid-in-5 {
  0% {
    opacity: 0;
    transform: rotate(-5deg) translate(-60px, 120px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: rotate(-5deg) translate(0, 0) scale(1);
  }
}

.collage.in .piece-1 {
  animation: polaroid-in-1 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
}
.collage.in .piece-2 {
  animation: polaroid-in-2 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards;
}
.collage.in .piece-3 {
  animation: polaroid-in-3 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}
.collage.in .piece-4 {
  animation: polaroid-in-4 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s forwards;
}
.collage.in .piece-5 {
  animation: polaroid-in-5 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}

/* tape + stamps + scribbles also fade in */
.collage .tape,
.collage .stamp,
.collage .scribble {
  opacity: 0;
}
.collage.in .tape {
  animation: fade-in 0.5s ease 1s forwards;
}
.collage.in .stamp {
  animation: fade-in 0.5s ease 1.1s forwards;
}
.collage.in .scribble {
  animation: fade-in 0.5s ease 1.2s forwards;
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.collage .tape {
  position: absolute;
  background: var(--tape);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.collage .stamp {
  position: absolute;
  font-family: var(--f-mono);
  color: var(--olive);
  border: 2.5px solid var(--olive);
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  background: transparent;
  z-index: 6;
}
.collage .scribble {
  position: absolute;
  font-family: "Caveat", cursive;
  color: var(--olive);
  font-size: 28px;
  z-index: 7;
  line-height: 1;
}

/* ============================================================
   EYE PATTERN + FLUSH WITH MARQUEE
   ============================================================ */
.eye-marquee-group {
  display: flex;
  flex-direction: column;
}
.eye-border {
  overflow: hidden;
  line-height: 0;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: -4px;
}
.eye-border img {
  width: 100%;
  height: auto;
  display: block;
}
.eye-marquee-group .marquee {
  border-top: none;
  margin: 0;
}

/* ============================================================
   MÚSICAS
   ============================================================ */
.musicas-meta {
  text-align: right;
  line-height: 1.5;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--sage);
  max-width: 280px;
}
.musicas-grid {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}
.ep-card {
  position: relative;
  flex: 1.1;
  min-width: 0;
}
.ep-info {
  flex: 1;
  min-width: 0;
}
.ep-cover {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--charcoal);
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
}
.ep-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ep-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1.3px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
}
.ep-sticker {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 130px;
  height: 130px;
  background: var(--olive);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  transform: rotate(14deg);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  z-index: 3;
}
.ep-sticker span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.ep-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.88;
  margin: 0 0 14px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.ep-sub {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.tracklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 2px dashed var(--charcoal);
}
.tracklist li {
  display: flex;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 2px dashed var(--charcoal);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.tracklist li:hover {
  background: var(--sage-fade);
  transform: translateX(4px);
}
.tracklist li .num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--sage);
  width: 40px;
  flex-shrink: 0;
}
.tracklist li .name {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  flex: 1;
}
.tracklist li .dur {
  color: var(--sage);
}

.streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--charcoal);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.15s,
    background 0.15s;
  cursor: pointer;
}
.stream-btn:hover {
  transform: translateY(-2px) rotate(-1.5deg);
  background: var(--olive);
  border-color: var(--olive);
}
.stream-btn svg {
  flex-shrink: 0;
}

.outros-h {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.outros-h::before,
.outros-h::after {
  content: "";
  height: 2px;
  flex: 1;
  background: var(--charcoal);
  opacity: 0.3;
}
.outros {
  display: flex;
  gap: 14px;
}
.outro-card {
  position: relative;
  flex: 1;
  aspect-ratio: 1/1;
  background: var(--charcoal);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.outro-card:nth-child(1) {
  transform: rotate(-3deg);
}
.outro-card:nth-child(2) {
  transform: rotate(2deg);
}
.outro-card:nth-child(3) {
  transform: rotate(-1.5deg);
}
.outro-card:hover {
  transform: rotate(0) scale(1.04);
  z-index: 2;
}
.outro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.outro-card .cap {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 3px 7px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   NOVIDADES
   ============================================================ */
.news-head {
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 4px double var(--charcoal);
  border-bottom: 4px double var(--charcoal);
  padding: 14px 0;
  margin: 0 auto 50px;
  max-width: 1400px;
}
.news-head .ed {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.news-head h2 {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.88;
  text-align: center;
  margin: 0;
  flex: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.news-head .ed.right {
  text-align: right;
}

.news-grid {
  display: flex;
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
}
.clipping {
  position: relative;
  flex: 1;
  background: var(--white);
  padding: 26px 24px 30px;
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}
.clipping .date {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1.5px solid var(--charcoal);
  margin-bottom: 14px;
}
.clipping h3 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  min-height: 2em;
}
.clipping .lede {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--charcoal);
}
.clipping .strap {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--olive);
  color: var(--cream);
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(4deg);
}
.clipping .ht {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 14px 0 16px;
  background:
    radial-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1.4px) 0 0/4px 4px,
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.04) 0 2px,
      transparent 2px 4px
    ),
    var(--cream-3);
  border: 1px solid var(--sage);
}
.clipping-img {
  width: 100%;
  margin: 14px 0 16px;
  overflow: hidden;
  border: 1px solid var(--sage);
}
.clipping-img picture,
.clipping-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--olive);
  color: var(--cream);
  padding: 70px 5vw 30px;
}
.foot-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto;

  .mobile {
    display: none;
  }
}
.foot-socials {
  display: flex;
  gap: 14px;
  flex: 1;
}
.foot-soc {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}
.foot-soc:hover {
  background: var(--cream);
  color: var(--olive);
}
.foot-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  align-items: flex-end;
  font-size: 14px;
  font-weight: 500;
}
.foot-links a {
  opacity: 0.9;
  transition: opacity 0.2s;
}
.foot-links a:hover {
  opacity: 1;
}
.foot-bottom {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 22px;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
#banda {
  background: var(--cream);
}
#musicas {
  background: var(--cream-2);
}
#novidades {
  background: var(--cream-3);
}

/* ============================================================
   BANDA — one-screen layout + deco stamp
   ============================================================ */
#banda {
  min-height: 100vh;
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#banda .kicker {
  font-size: clamp(57.6px, 7.2vw, 115.2px);
}
#banda .deco-stamp {
  width: 400px;
  right: -80px;
  top: -80px;
}
#musicas .deco-stamp {
  width: 500px;
  left: -100px;
  bottom: -100px;
}

/* ============================================================
   MÚSICAS — one-screen layout + kicker override
   ============================================================ */
#musicas {
  min-height: 100vh;
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#musicas .kicker {
  margin-bottom: 0;
  font-size: clamp(57.6px, 7.2vw, 115.2px);
}

/* ============================================================
   COLLAGE — tape positions
   ============================================================ */
.tape-1 {
  top: 20;
  left: 152px;
  width: 100px;
  height: 24px;
  transform: rotate(-45deg);
}
.tape-2 {
  top: 200px;
  left: 120px;
  width: 90px;
  height: 22px;
  transform: rotate(25deg);
}
.tape-3 {
  top: 370px;
  right: 20px;
  width: 110px;
  height: 24px;
  transform: rotate(-10deg);
}

/* ============================================================
   COLLAGE — piece positions
   ============================================================ */
.piece-1 {
  top: 20px;
  left: 180px;
  width: 200px;
  height: 172px;
  transform: rotate(-6deg);
}
.piece-2 {
  top: 50px;
  left: 380px;
  width: 235px;
  height: 215px;
  transform: rotate(4deg);
  z-index: 3;
}
.piece-3 {
  top: 250px;
  left: 400px;
  width: 255px;
  height: 212px;
  transform: rotate(-3deg);
  z-index: 2;
}
.piece-4 {
  top: 230px;
  left: 180px;
  width: 196px;
  height: 222px;
  transform: rotate(7deg);
}
.piece-5 {
  top: 440px;
  left: 190px;
  width: 222px;
  height: 158px;
  transform: rotate(-4deg);
}

.piece-1 img {
  object-position: center 30%;
}
.piece-3 img {
  object-position: center 20%;
}
.piece-4 img {
  object-position: center 15%;
}
.piece-5 img {
  object-position: center 25%;
}

/* ============================================================
   COLLAGE — stamp + scribble positions
   ============================================================ */
.stamp-top {
  top: 6px;
  left: 8px;
  transform: rotate(-3deg);
}
.stamp-bottom {
  bottom: 30px;
  left: 450px;
  transform: rotate(3deg);
}
.scribble-arrow {
  top: 210px;
  left: 14px;
  transform: rotate(-8deg);
}
.scribble-text {
  bottom: 20px;
  right: 30px;
  transform: rotate(-4deg);
  font-size: 30px;
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
/* ============================================================
   DRAWER + BURGER — base (hidden on desktop)
   ============================================================ */
.nav-burger {
  display: none;
}
.nav-drawer {
  display: none;
}
.nav-overlay {
  display: none;
}

@media (max-width: 950px) {
  /* Nav */
  .nav {
    padding: 16px 18px;
    right: 10px;
    left: 10px;
    align-items: center;
    justify-content: center;
    /* top: 0; */
    transition:
      opacity 0.25s,
      transform 0.25s;
  }
  .nav.nav--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }
  .nav-logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    flex-shrink: 1;
  }
  .nav-links {
    display: none;
  }

  /* Burger button */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition:
      transform 0.25s,
      opacity 0.25s,
      width 0.25s;
    transform-origin: center;
  }
  /* X state */
  .nav-burger.is-open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-burger.is-open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  /* Drawer */
  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(72vw, 280px);
    background: rgba(20, 18, 18, 0.82);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 90px 32px 40px;
    gap: 6px;
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-drawer.is-open {
    transform: translateX(0);
  }
  .nav-drawer a {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.85;
    transition:
      opacity 0.15s,
      color 0.15s;
  }
  .nav-drawer a:last-child {
    border-bottom: none;
  }
  .nav-drawer a:hover {
    opacity: 1;
    color: var(--tape);
  }

  /* Overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }

  /* Sections */
  .section {
    padding: 80px 5vw;
  }

  /* Eye border — prevent horizontal scroll */
  /* .eye-border {
    width: 100%;
    margin-left: 0;
    margin-bottom: -20px;
  } */

  /* Banda — keep row layout, heading top-left, collage right */
  #banda {
    padding: 48px 5vw 40px; /* tight top so heading starts high */
  }
  .banda {
    gap: 30px;
    align-items: flex-start;
  }
  .banda-copy {
    flex: 1;
    max-width: 42%;
  }
  #banda .kicker {
    font-size: clamp(38px, 5.5vw, 80px);
    margin-bottom: 14px;
  }
  .banda-copy .lead {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .banda-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Collage — taller, pieces spread for visibility */
  .collage {
    flex: 1.3;
    height: 470px;
  }
  .piece-1 {
    top: 10px;
    left: 10px;
    width: 168px;
    height: 145px;
  }
  .piece-2 {
    top: 10px;
    left: 190px;
    width: 198px;
    height: 182px;
  }
  .piece-3 {
    top: 226px;
    left: 175px;
    width: 210px;
    height: 176px;
  }
  .piece-4 {
    top: 204px;
    left: 10px;
    width: 164px;
    height: 188px;
  }
  .piece-5 {
    top: 398px;
    left: 96px;
    width: 188px;
    height: 136px;
  }
  .stamp-bottom {
    left: 285px;
    bottom: 20px;
  }

  /* Músicas */
  #musicas {
    padding: 80px 5vw 60px;
  }
  .musicas-grid {
    flex-direction: column;
    gap: 50px;
  }
  .ep-info {
    flex: none;
  }
  .ep-card {
    flex: none;
    width: 100%;
  }

  /* Novidades */
  .news-grid {
    flex-direction: column;
    gap: 24px;
  }
  .news-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .news-head .ed.right {
    text-align: center;
  }
}

/* ============================================================
   HERO MOBILE / TABLET-PORTRAIT (≤ 768px) — Gilsons style
   ============================================================ */
@media (max-width: 768px) {
  /* Split layout: photo top half, black section bottom half */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    background: #000;
  }

  /* Photo — in flow, no parallax shift on mobile */
  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    margin-top: 62px;
    height: 52vh;
    flex-shrink: 0;
    border-radius: 0 0 50% 50% / 0 0 18px 18px;
    overflow: hidden;
    will-change: auto;
    transform: none !important; /* disable parallax JS on mobile */
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 45%
    );
  }

  /* Black section — fills remaining height */
  .hero-lockup {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 0;
    background: #000;
    z-index: 2;

    #logo-mobile {
      display: flex;
    }

    #full-logo {
      display: none;
    }
  }

  /* Hide desktop logo, show mobile logo */
  .logo-desktop {
    display: none;
  }
  .hero-lockup .logo-mobile {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
  }

  /* CTA in the black section */
  .hero-cta {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    display: block;
    text-align: center;
    background: #000;
    color: var(--cream);
    padding: 16px 0 32px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .foot-grid {
    flex-direction: column;
    gap: 25px;

    .full {
      display: none;
    }

    .mobile {
      display: flex;
    }

    .foot-links {
      flex-direction: row;
      gap: 30px;
      padding-top: 0;
    }
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 580px)
   ============================================================ */
@media (max-width: 580px) {
  #banda .deco-stamp {
    width: 240px;
    right: -60px;
    top: -60px;
  }
  #musicas .deco-stamp {
    width: 280px;
    left: -60px;
    bottom: -60px;
  }

  /* Nav — stretch full width, drop pill radius */
  .nav {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.55);
  }

  /* Banda — stack to column on phone only */
  #banda {
    min-height: auto;
    padding: 20px 5vw 40px;
  }
  .banda {
    flex-direction: column;
    gap: 24px;
  }
  .banda-copy {
    max-width: 100%;
    flex: none;
  }
  #banda .kicker {
    font-size: clamp(34px, 10.5vw, 50px);
    margin-bottom: 12px;
  }
  .banda-copy .lead {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .banda-copy p {
    font-size: 14px;
  }

  /* Collage — all 5 pieces */
  .collage {
    flex: none;
    width: 100%;
    height: 480px;
  }
  .piece-1 {
    top: 70px;
    left: 4px;
    width: 132px;
    height: 114px;
  }
  .piece-2 {
    top: 50px;
    left: 146px;
    width: 152px;
    height: 138px;
  }
  .piece-3 {
    top: 200px;
    left: 150px;
    width: 162px;
    height: 134px;
  }
  .piece-4 {
    top: 200px;
    left: 4px;
    width: 130px;
    height: 148px;
  }
  .piece-5 {
    display: block;
    top: 340px;
    left: 80px;
    width: 158px;
    height: 118px;
  }
  .stamp-top {
    font-size: 11px;
    padding: 4px 8px;
  }
  .stamp-bottom {
    left: 200px;
    bottom: 8px;
    font-size: 11px;
    padding: 4px 8px;
  }
  .scribble-text {
    bottom: -25px;
    right: 6px;
    font-size: 20px;
  }
  .scribble-arrow {
    display: none;
  }

  /* Streaming buttons — all in one row, smaller */
  .streaming {
    flex-wrap: nowrap;
    gap: 7px;
    justify-content: center;
  }
  .stream-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .stream-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Músicas */
  #musicas {
    min-height: auto;
    padding: 60px 5vw 40px;
  }
  #musicas .kicker {
    font-size: clamp(34px, 10.5vw, 50px);
  }
  .musicas-meta {
    text-align: left;
  }

  /* Marquee */
  .marquee {
    font-size: 26px;
  }

  /* News heading */
  .news-head h2 {
    font-size: clamp(44px, 13vw, 80px);
  }
}
