:root {
  --bg: #0b0a08;
  --bg-soft: #14120e;
  --ink: #f3ecdf;
  --muted: #9a9285;
  --gold: #cfa15f;
  --gold-bright: #e7c07e;
  --line: rgba(243, 236, 223, 0.12);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor bird easter egg — homage to the original site's mouse-follow detail */
#bird {
  position: fixed;
  top: 0; left: 0;
  width: 27px; height: auto;
  z-index: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
#bird.on { opacity: 1; }
#bird img { width: 100%; height: auto; display: block; }

/* nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.25rem, 5vw, 3.5rem);
  transition: transform 0.4s ease, background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.75);
  backdrop-filter: blur(10px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}
.nav.hide { transform: translateY(-110%); }
.nav__mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.5rem); }
.nav__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--gold-bright); }

/* hero */
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 8%;
  transform: scale(1.08);
  will-change: transform;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,8,0.45) 0%, rgba(11,10,8,0.4) 45%, rgba(11,10,8,0.97) 92%),
    linear-gradient(90deg, rgba(11,10,8,0.6) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem, 6vw, 4rem) clamp(3rem, 8vh, 6rem);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.hero__single {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold-bright);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 24px; height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { top: 8px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}

/* shared section spacing */
section { padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 6vw, 4rem); }

/* music */
.music {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 560px);
  gap: clamp(2rem, 6vw, 5rem);
  justify-content: center;
  align-items: center;
  background: var(--bg);
}
.music__art img {
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.music__info h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.music__desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 34ch;
}
.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.listen-btn svg { width: 17px; height: 17px; fill: currentColor; }
.listen-btn:hover {
  border-color: var(--gold);
  background: rgba(207, 161, 95, 0.08);
  transform: translateY(-2px);
}
.player {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.player iframe { display: block; }

/* próximamente */
.soon { background: var(--bg-soft); }
.soon__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.soon__grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.soon__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(207,161,95,0.05), transparent);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.soon__card:hover { border-color: var(--gold); transform: translateY(-3px); }
.soon__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}
.soon__card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.soon__card p { color: var(--muted); font-size: 0.9rem; }

/* newsletter */
.newsletter { text-align: center; }
.newsletter__inner { max-width: 520px; margin: 0 auto; }
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  margin-top: 0.5rem;
}
.newsletter__desc { color: var(--muted); font-size: 0.95rem; margin: 0.75rem 0 1.75rem; }
.newsletter__form { display: flex; gap: 0.75rem; }
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
}
.newsletter__form input[type="email"]::placeholder { color: var(--muted); }
.newsletter__form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.newsletter__form button {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #14120e;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.newsletter__form button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(231, 192, 126, 0.5); }
.newsletter__status { margin-top: 1rem; font-size: 0.85rem; color: var(--gold-bright); min-height: 1.2em; }

/* connect */
.connect__inner { text-align: center; }
.connect h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}
.social-row { display: flex; justify-content: center; gap: 1.1rem; }
.social-btn {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
  color: var(--ink);
}
.social-btn svg { width: 22px; height: 22px; fill: currentColor; }
.social-btn:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

/* footer */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
}
.footer__note { margin-top: 0.35rem; font-size: 0.75rem; opacity: 0.8; }
.footer__note a { text-decoration: underline; text-underline-offset: 2px; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .music { grid-template-columns: 1fr; }
  .music__art { max-width: 320px; margin: 0 auto; }
  .soon__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .newsletter__form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { transform: none; }
  #bird { display: none; }
  .scroll-cue span { animation: none; }
}
