:root {
  --bg: #090908;
  --bg-soft: #100f0d;
  --paper: #ddd8cc;
  --text: #c9c4b8;
  --muted: #817c72;
  --line: rgba(205, 194, 171, .18);
  --warm: #a99a80;
  --max: 1240px;
  --pad: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: #c9c4b8; color: #090908; }

.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;
}

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

.site-header {
  position: fixed; z-index: 90; inset: 0 0 auto 0; height: 86px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 70px; background: rgba(9,9,8,.88); border-color: var(--line); backdrop-filter: blur(14px);
}
.mini-brand { width: 90px; opacity: .92; transition: opacity .2s ease; }
.mini-brand:hover { opacity: 1; }
.nav { display: flex; gap: clamp(18px, 2.3vw, 36px); align-items: center; }
.nav a {
  position: relative;
  padding: 14px 0 10px;
  text-decoration: none;
  color: #bcb7ac;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.nav a.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav a.active {
  color: white;
}

.nav a:hover {
  color: white;
}
.menu-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: #ddd8cc; margin: 7px 0; transition: transform .25s ease; }

.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden;
  background: url('assets/forest.webp') center 56% / cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(53,50,43,.12), transparent 42%), linear-gradient(to bottom, rgba(0,0,0,.44), rgba(0,0,0,.75) 90%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 160px 45px #050504;
}
.hero-shade { position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, var(--bg)); z-index: 1; }
.hero-content { position: relative; z-index: 3; text-align: center; width: min(760px, 88vw); margin-top: 16px; }
.hero-logo { width: min(510px, 72vw); margin: 0 auto 26px; filter: drop-shadow(0 18px 38px rgba(0,0,0,.75)); }
.eyebrow, .kicker {
  text-transform: uppercase; letter-spacing: .24em; font-size: 10px; font-weight: 700; color: var(--warm); margin: 0 0 15px;
}
.hero-copy { margin: 0 auto 30px; font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: clamp(17px,2vw,22px); color: #bdb8ad; }
.hero-actions, .actions-inline { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 44px; padding: 0 18px;
  border: 1px solid var(--line); text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: #d8d2c5; color: #0b0b09; border-color: #d8d2c5; }
.button.primary:hover { background: white; border-color: white; }
.button.ghost { color: #d8d2c5; background: rgba(9,9,8,.2); }
.button.ghost:hover { border-color: #a9a295; background: rgba(255,255,255,.035); }
.scroll-cue { position: absolute; z-index: 4; bottom: 23px; left: 50%; width: 32px; height: 50px; transform: translateX(-50%); }
.scroll-cue span { display: block; margin: 8px auto 0; width: 1px; height: 28px; background: linear-gradient(#bbb2a3, transparent); animation: drift 1.8s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0); opacity:.35 } 50% { transform: translateY(8px); opacity:1 } }

.section {
  position: relative; max-width: var(--max); margin: 0 auto; padding: clamp(96px, 12vw, 180px) var(--pad);
}
.section-number {
  position: absolute; top: 42px; left: var(--pad); font-family: Georgia, serif; font-size: 11px; color: #5f5b54; letter-spacing: .2em;
}
.section h2 {
  margin: 0 0 18px; font-family: Georgia, 'Times New Roman', serif; color: var(--paper); font-weight: 400;
  font-size: clamp(42px, 6vw, 84px); letter-spacing: -.035em; line-height: .98;
}
.section h3 { font-family: Georgia, 'Times New Roman', serif; color: var(--paper); font-weight: 400; }
.section p { max-width: 690px; }
.lead { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(20px, 2.5vw, 30px); line-height: 1.45; color: #bdb7aa; }
.muted { color: var(--muted); }
.release-meta { text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-size: 10px; }
.text-link { text-decoration: none; border-bottom: 1px solid #4e4a42; padding-bottom: 3px; font-size: 12px; letter-spacing: .08em; }
.text-link:hover { color: white; border-color: #bdb7aa; }
.art-frame { position: relative; background: #111; box-shadow: 0 36px 90px rgba(0,0,0,.5); }
.art-frame::after { content:''; position:absolute; inset:0; border:1px solid rgba(255,255,255,.08); pointer-events:none; }

.featured { min-height: 780px; display: grid; grid-template-columns: minmax(300px,.9fr) 1.05fr; gap: clamp(55px, 9vw, 125px); align-items: center; }
.featured-art { max-width: 520px; }
.featured-copy p:not(.kicker):not(.release-meta) { color:#a9a49a; font-size: 17px; }
.featured-copy .actions-inline { justify-content: flex-start; margin-top: 32px; gap: 22px; }

.arsb { display: grid; grid-template-columns: 1fr minmax(320px,.88fr); align-items: center; gap: clamp(55px, 8vw, 112px); border-top: 1px solid var(--line); }
.arsb-art { max-width: 565px; justify-self: end; }
.acts { margin: 34px 0; border-top: 1px solid var(--line); }
.acts div { display: grid; grid-template-columns: 86px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.acts span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.acts strong { font-family: Georgia, serif; font-weight: 400; color: #b9b3a7; }

.singles { max-width: 1380px; border-top: 1px solid var(--line); }
.section-heading { margin-bottom: clamp(36px,5vw,68px); }
.release-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.release-card { min-width: 0; }
.release-image { overflow: hidden; background: #0e0e0d; }
.release-image img { aspect-ratio:1; object-fit:cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.release-card:hover .release-image img { transform: scale(1.025); filter: brightness(1.08); }
.release-card-copy { padding: 17px 2px 0; }
.release-card-copy span { float:right; color:#54514b; font-family: Georgia,serif; font-size: 12px; }
.release-card-copy h3 { margin:0 34px 4px 0; font-size:clamp(21px,2vw,28px); }
.release-card-copy p { margin:0; color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.12em; }

.discography { border-top: 1px solid var(--line); }
.discography-list { border-top:1px solid var(--line); }
.discog-item { display:grid; grid-template-columns: 170px 1fr; gap: 34px; align-items:center; padding: 28px 0; border-bottom:1px solid var(--line); }
.discog-art img { width:170px; aspect-ratio:1; object-fit:cover; }
.discog-copy h3 { font-size:clamp(26px,3vw,40px); margin: 1px 0 6px; }
.discog-copy p { margin:5px 0; color:#99948a; }

.about { max-width: none; padding-left: 0; padding-right: 0; background: linear-gradient(rgba(9,9,8,.74),rgba(9,9,8,.9)), url('assets/forest.webp') center / cover fixed; border-top: 1px solid var(--line); }
.about-panel { max-width: 840px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.about-panel p { margin-left:auto; margin-right:auto; }
.about-panel .lead { color:#d0cabd; }

.links { border-top: 1px solid var(--line); }
.link-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.link-grid a { display:flex; justify-content:space-between; align-items:center; text-decoration:none; min-height:92px; padding:0 6px; border-bottom:1px solid var(--line); }
.link-grid a:nth-child(odd) { border-right:1px solid var(--line); padding-right:28px; }
.link-grid a:nth-child(even) { padding-left:28px; }
.link-grid span { font-family:Georgia,serif; color:#c8c2b5; font-size:clamp(22px,3vw,36px); }
.link-grid b { font-weight:400; color:#69645b; transition: transform .2s ease, color .2s ease; }
.link-grid a:hover b { transform:translate(3px,-3px); color:white; }
.links-note { margin-top: 22px; color: #656159; font-size: 12px; }

.footer { border-top:1px solid var(--line); padding:44px var(--pad) 55px; display:flex; max-width:var(--max); margin:0 auto; align-items:center; justify-content:space-between; gap:25px; }
.footer img { width:80px; opacity:.48; }
.footer p { margin:0; color:#5e5a53; font-size:9px; letter-spacing:.18em; }
.footer a { text-decoration:none; color:#726e65; font-size:10px; text-transform:uppercase; letter-spacing:.12em; }

.reveal { opacity:0; transform:translateY(24px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity:1; transform:none; }
.release-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* PAGE TRANSITIONS */

body {
  transition:
    opacity .38s ease,
    transform .38s cubic-bezier(.4, 0, .2, 1);
}

/* página saindo */
body.page-leaving {
  opacity: 0;
  transform: translateY(55px);
  pointer-events: none;
}

/* página de lançamento entrando */
.release-body {
  animation: releasePageEnter .55s cubic-bezier(.2,.7,.2,1);
}

@keyframes releasePageEnter {
  from {
    opacity: 0;
    transform: translateY(-35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 880px) {
  .site-header { height:72px; }
  .mini-brand { width:76px; position:relative; z-index:2; }
  .menu-toggle { display:block; position:relative; z-index:2; }
  .nav {
    position:fixed; inset:0; background:rgba(7,7,6,.97); display:flex; flex-direction:column; justify-content:center; gap:24px;
    opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
  }
  .nav a { font-family:Georgia,serif; font-size:clamp(24px,7vw,42px); text-transform:none; letter-spacing:0; }
  .menu-open .nav { opacity:1; visibility:visible; }
  .menu-open .menu-toggle span:first-child { transform:translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform:translateY(-4px) rotate(-45deg); }
  .featured, .arsb { grid-template-columns:1fr; gap:48px; }
  .featured-art, .arsb-art { max-width:620px; justify-self:stretch; width:100%; }
  .featured-copy { order:-1; }
  .arsb-copy { order:-1; }
  .release-grid { grid-template-columns:1fr; gap:56px; }
  .release-card { max-width:650px; }
  .discog-item { grid-template-columns:120px 1fr; gap:24px; }
  .discog-art img { width:120px; }
  .link-grid { grid-template-columns:1fr; }
  .link-grid a:nth-child(odd), .link-grid a:nth-child(even) { border-right:0; padding:0 5px; }
  .about { background-attachment:scroll; }
}

@media (max-width: 560px) {
  :root { --pad: 22px; }
  .hero-logo { width:82vw; }
  .hero-copy { max-width:280px; }
  .hero-actions { flex-direction:column; }
  .hero-actions .button { width:min(290px,90vw); }
  .section { padding-top:105px; padding-bottom:105px; }
  .section h2 { font-size:clamp(39px,15vw,62px); }
  .featured-copy .actions-inline { align-items:flex-start; }
  .acts div { grid-template-columns:65px 1fr; }
  .discog-item { grid-template-columns:86px 1fr; gap:18px; }
  .discog-art img { width:86px; }
  .discog-copy p:not(.release-meta) { display:none; }
  .footer { flex-direction:column; text-align:center; }
}
/* =========================
   RELEASE PAGES
   ========================= */

.release-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7,7,6,.82), rgba(7,7,6,.96)),
    url('assets/forest.webp') center / cover fixed;
}

.release-header {
  min-height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,8,.82);
  backdrop-filter: blur(14px);
}

.release-header img {
  width: 82px;
}

.release-back {
  color: #aaa49a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
}

.release-back:hover {
  color: white;
}

.release-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) var(--pad);
}

.release-detail {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.release-detail-art {
  position: sticky;
  top: 120px;
}

.release-detail-art img {
  width: 100%;
  box-shadow: 0 35px 100px rgba(0,0,0,.65);
}

.release-info .kicker {
  margin-bottom: 12px;
}

.release-info h1 {
  margin: 0 0 15px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(45px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.035em;
}

.release-description {
  margin-top: 32px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #bdb7aa;
  font-size: 19px;
  line-height: 1.7;
}

.lyrics-section {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.lyrics-section h2,
.release-media h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--paper);
  font-size: 32px;
}

.lyrics {
  white-space: pre-line;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: #aaa49a;
  line-height: 1.9;
  font-size: 16px;
}

.release-media {
  margin-top: 65px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.release-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

@media (max-width: 880px) {
  .release-detail {
    grid-template-columns: 1fr;
  }

  .release-detail-art {
    position: relative;
    top: auto;
    max-width: 600px;
  }

  .release-header {
    min-height: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
