/* ============================================================
   GUEVA — DJ & Productor · Buenos Aires
   Convertido desde el diseño de Claude Design a CSS vanilla.
   ============================================================ */

:root {
  --bg:        #0a0908;
  --panel:     #100e0b;
  --accent:    #c98a4b;
  --accent-hi: #e2ab73;
  --text:      #eae6df;
  --text-2:    #cfc9c0;
  --text-3:    #c9c3ba;
  --muted:     #b8b2a8;
  --muted-2:   #8f887e;
  --dim:       #6b6560;
  --dim-2:     #5c564f;
  --dim-3:     #3d3833;
  --line:      rgba(255,255,255,0.08);
  --line-soft: rgba(255,255,255,0.06);
  --line-hard: rgba(255,255,255,0.10);

  --display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --pad-x: 56px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hi); }

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

input::placeholder { color: var(--dim); }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
}
.eyebrow--hero { letter-spacing: 0.35em; font-size: 13px; margin-bottom: 18px; }
.eyebrow--sm   { font-size: 11px; letter-spacing: 0.2em; }
.eyebrow--dim  { color: var(--dim); }

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-title--lg { font-size: 64px; }
.section-title--md { font-size: 46px; }

/* ---------- reveal (defensive: visible by default; JS hides then reveals) ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  background: linear-gradient(to bottom, rgba(10,9,8,0.85), transparent);
  pointer-events: none;
}
.nav a { pointer-events: auto; }
.nav__logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav__logo:hover { color: var(--text); }
.nav__links {
  display: flex;
  gap: 40px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 400;
}
.nav__links a { color: var(--text-2); transition: color .2s; }
.nav__links a:hover { color: var(--accent); }

/* ---------- floating social rail ---------- */
.social-rail {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 100;
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.social-rail a { color: var(--muted-2); transition: color .2s; }
.social-rail a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 68% 40%, #17140f 0%, #0a0908 70%);
}
.hero__img {
  position: absolute;
  right: 6%;
  top: 6%;
  height: 88%;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15) contrast(1.08);
  z-index: 1;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, #0a0908 8%, transparent 45%),
    linear-gradient(to top, #0a0908 0%, transparent 40%);
  z-index: 2;
}
.hero__text {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x) 90px;
  width: 100%;
  will-change: transform;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 13vw, 190px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero__lead {
  margin-top: 22px;
  max-width: 520px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  z-index: 3;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line { width: 1px; height: 36px; background: var(--dim); }

/* ============================================================
   TOUR
   ============================================================ */
.tour {
  padding: 160px var(--pad-x) 140px;
  border-top: 1px solid var(--line-soft);
}
.tour__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.tour__list { display: flex; flex-direction: column; }
.tour__row {
  display: grid;
  grid-template-columns: 140px 1fr 220px 160px;
  align-items: center;
  gap: 24px;
  padding: 26px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding-left .25s;
  color: var(--text);
}
.tour__row:hover { background: rgba(255,255,255,0.03); }
.tour__date {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text-2);
}
.tour__venue {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.tour__city { font-size: 14px; color: var(--muted-2); letter-spacing: 0.04em; }
.tour__status {
  text-align: right;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--dim);
}
.tour__more {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--dim-2);
  font-style: italic;
}
.tour__cta { margin-top: 56px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 32px;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-line:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* ============================================================
   MUSIC
   ============================================================ */
.music {
  position: relative;
  padding: 160px var(--pad-x) 150px;
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.music__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 20%, rgba(201,138,75,0.08) 0%, transparent 55%);
}
.music__head { position: relative; z-index: 1; margin-bottom: 72px; }
.music__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}

/* featured */
.feature { display: flex; gap: 36px; align-items: flex-end; }
.feature__meta { padding-bottom: 6px; }
.feature__title {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
}
.feature__sub { margin-top: 10px; font-size: 15px; color: var(--muted-2); }
.feature__actions { margin-top: 26px; display: flex; align-items: center; gap: 20px; }
.play {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  padding: 0;
  font-family: inherit;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s, border-color .2s, color .2s, transform .1s;
  cursor: pointer;
  flex: 0 0 52px;
  color: var(--text);
}
.play:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.play:active { transform: scale(0.94); }
.play:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.play.is-playing { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.play.is-disabled { opacity: 0.4; cursor: default; }
.play.is-disabled:hover { background: transparent; border-color: rgba(255,255,255,0.3); color: var(--text); }
.feature__links { display: flex; gap: 18px; font-family: var(--display); font-size: 11px; letter-spacing: 0.1em; }
.feature__links a { color: var(--text); transition: color .2s; }
.feature__links a:hover { color: var(--accent); }

/* cover placeholders (imagen pendiente) */
.cover {
  position: relative;
  background:
    linear-gradient(135deg, #1a1712 0%, #12100c 100%);
  border: 1px solid var(--line-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.cover::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(201,138,75,0.10), transparent 60%);
}
.cover__label {
  position: relative;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--dim);
}
.cover--lg { width: 340px; height: 340px; }
.cover--sm { width: 64px; height: 64px; flex: 0 0 64px; }
.cover--sm .cover__label { font-size: 14px; letter-spacing: 0; color: var(--dim-2); }

/* releases list */
.releases { border-left: 1px solid var(--line-hard); padding-left: 48px; }
.releases .eyebrow--dim { margin-bottom: 24px; }
.release {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left .2s;
  color: var(--text);
}
.release:hover { padding-left: 10px; }
.release__meta { flex: 1; }
.release__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}
.release__sub { font-size: 12px; color: var(--muted-2); margin-top: 3px; }
.release__arrow { font-size: 13px; color: var(--dim-2); }

/* ticker */
.ticker {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.ticker .eyebrow { margin-bottom: 20px; }
.ticker__track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.ticker__group {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  display: flex;
  gap: 36px;
  padding-right: 36px;
}
.ticker__dot { color: var(--dim-3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BIO
   ============================================================ */
.bio {
  padding: 140px var(--pad-x);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.bio__portrait { width: 100%; aspect-ratio: 3 / 4; }
.bio__portrait .cover__label { font-size: 12px; }
.section-title + .bio__text { margin-top: 36px; }
.section-title.section-title--md { margin-bottom: 0; }
.bio__body .eyebrow { margin-bottom: 14px; }
.bio__body .section-title { margin-bottom: 36px; }
.bio__text { font-size: 17px; line-height: 1.85; color: var(--text-3); font-weight: 300; max-width: 640px; }
.bio__text p + p { margin-top: 22px; }
.bio__facts {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 640px;
}
.bio__fact { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: var(--muted-2); }
.bio__fact dt { letter-spacing: 0.02em; }
.bio__fact dd { color: var(--text-2); text-align: right; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: 140px var(--pad-x);
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
}
.support__head { margin-bottom: 64px; }
.support__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.support__name {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: #dcd6cc;
  text-transform: uppercase;
  transition: color .2s, padding-left .2s;
}
.support__name:hover { color: var(--accent); padding-left: 10px; }
.support__note { margin-top: 36px; font-size: 13px; color: var(--dim); letter-spacing: 0.04em; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact {
  padding: 120px var(--pad-x) 60px;
  border-top: 1px solid var(--line-soft);
}
.contact__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.contact__lead .section-title { margin-bottom: 22px; }
.contact__sub { font-size: 15px; color: var(--muted-2); max-width: 440px; margin-bottom: 32px; }
.subscribe {
  display: flex;
  max-width: 440px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 14px;
}
.subscribe input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  flex: 1;
}
.subscribe button {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.subscribe button:hover { opacity: 0.6; }
.subscribe__msg { min-height: 18px; margin-top: 12px; font-size: 12px; letter-spacing: 0.06em; color: var(--accent); font-family: var(--display); }

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  justify-content: flex-end;
}
.contact__links a { color: var(--text); transition: color .2s; }
.contact__links a:hover { color: var(--accent); }

.contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--dim-2);
  letter-spacing: 0.05em;
  gap: 20px;
}
.contact__place { font-family: var(--display); letter-spacing: 0.1em; }

/* ============================================================
   MOBILE BOTTOM NAV (hidden on desktop)
   ============================================================ */
.mobile-nav { display: none; }

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .section-title { font-size: 48px; }
  .section-title--lg { font-size: 52px; }
  .music__grid { grid-template-columns: 1fr; gap: 56px; }
  .releases { border-left: none; padding-left: 0; border-top: 1px solid var(--line-hard); padding-top: 40px; }
  .bio { grid-template-columns: 1fr; gap: 48px; }
  .bio__portrait { max-width: 420px; }
  .contact__top { grid-template-columns: 1fr; gap: 48px; }
  .contact__links { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE — mobile (composición dedicada)
   ============================================================ */
@media (max-width: 680px) {
  :root { --pad-x: 22px; }

  /* nav: solo el logo centrado, estilo mini-bar sticky */
  .nav {
    justify-content: center;
    padding: 16px 0;
    background: rgba(10,9,8,0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__logo { font-size: 16px; letter-spacing: 0.1em; }
  .nav__links { display: none; }
  .social-rail { display: none; }

  /* hero */
  .hero { height: 86vh; min-height: 520px; }
  .hero__bg { background: radial-gradient(ellipse at 55% 25%, #17140f 0%, #0a0908 72%); }
  .hero__img { right: -4%; top: 2%; height: 80%; filter: none; }
  .hero__overlay { background: linear-gradient(to top, #0a0908 14%, transparent 48%); }
  .hero__text { padding: 0 22px 36px; }
  .hero__title { font-size: 80px; }
  .hero__lead { font-size: 14px; margin-top: 16px; max-width: 300px; }
  .hero__scroll { display: none; }

  /* section spacing */
  .tour, .music, .bio, .support { padding-left: 22px; padding-right: 22px; }
  .tour { padding-top: 64px; padding-bottom: 8px; }
  .section-title { font-size: 32px; }
  .section-title--lg, .section-title--md { font-size: 32px; }
  .tour__head { margin-bottom: 28px; }

  /* tour: tarjetas */
  .tour__list { gap: 14px; }
  .tour__row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "date venue status" "date city status";
    gap: 4px 18px;
    align-items: center;
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
    padding: 18px;
    margin: 0;
  }
  .tour__row:hover { background: var(--panel); padding-left: 18px; border-color: rgba(201,138,75,0.5); }
  .tour__date {
    grid-area: date;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 16px;
    border-right: 1px solid var(--line-hard);
    color: var(--accent);
  }
  .tour__month { font-size: 11px; letter-spacing: 0.08em; }
  .tour__day { font-size: 26px; font-weight: 600; color: var(--text); }
  .tour__venue { grid-area: venue; font-size: 17px; align-self: end; }
  .tour__city { grid-area: city; align-self: start; font-size: 12px; margin-top: 3px; }
  .tour__status { grid-area: status; font-size: 9px; letter-spacing: 0.1em; }
  .tour__more { padding: 20px 4px; }
  .btn-line { display: block; text-align: center; padding: 16px; }
  .tour__cta { margin-top: 6px; }

  /* music */
  .music { padding-top: 64px; padding-bottom: 56px; margin-top: 56px; }
  .music__head { margin-bottom: 32px; }
  .music__grid { gap: 36px; margin-bottom: 44px; }
  .feature { flex-direction: column; align-items: stretch; gap: 18px; }
  .cover--lg { width: 100%; height: auto; aspect-ratio: 1; }
  .feature__meta { display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 16px; }
  .feature__meta .eyebrow--sm { grid-column: 1; }
  .feature__title { grid-column: 1; font-size: 22px; }
  .feature__sub { grid-column: 1; }
  .feature__actions { grid-column: 2; grid-row: 1 / 4; margin-top: 0; }
  .feature__links { margin-top: 16px; grid-column: 1 / -1; }
  .releases { border-top: none; padding-top: 0; }
  .cover--sm { width: 56px; height: 56px; flex: 0 0 56px; }
  .release { gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: none; }
  .release:first-of-type { border-top: none; }
  .release:hover { padding-left: 0; }
  .ticker__group { font-size: 15px; gap: 20px; padding-right: 20px; }
  .ticker__track { animation-duration: 16s; }
  .ticker__dot { color: var(--dim); }

  /* bio: imagen arriba + tarjeta superpuesta */
  .bio { display: block; padding: 0; border-top: none; }
  .bio__portrait { aspect-ratio: 4 / 5; max-width: none; border-left: none; border-right: none; }
  .bio__body {
    position: relative;
    margin: -64px 18px 0;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 28px 22px;
    z-index: 2;
  }
  .bio__body .section-title { font-size: 24px; margin-bottom: 16px; }
  .bio__text { font-size: 14px; line-height: 1.8; }
  .bio__text p + p { margin-top: 16px; }
  .bio__facts { margin-top: 24px; padding-top: 20px; }
  .bio__fact { flex-direction: column; gap: 4px; }
  .bio__fact dd { text-align: left; }

  /* support */
  .support { padding-top: 64px; padding-bottom: 64px; margin-top: 76px; }
  .support__head { margin-bottom: 28px; }
  .support__grid { grid-template-columns: 1fr; }
  .support__name { font-size: 19px; padding: 16px 0; border-right: none; }
  .support__name:hover { padding-left: 0; color: #dcd6cc; }
  .support__note { margin-top: 22px; font-size: 12px; }

  /* contact */
  .contact { padding: 64px 22px 96px; }
  .contact__top { display: block; padding-bottom: 0; border-bottom: none; }
  .contact__lead .section-title { font-size: 26px; margin-bottom: 14px; }
  .contact__sub { font-size: 13px; margin-bottom: 22px; }
  .subscribe { margin-bottom: 8px; }
  .contact__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 36px 0;
  }
  .contact__links a {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  /* Instagram (primer link, texto largo) ocupa fila completa */
  .contact__links a:first-child { grid-column: 1 / -1; }
  .contact__bottom { display: block; padding-top: 0; font-size: 11px; }
  .contact__place { display: none; }

  /* bottom nav */
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    justify-content: space-around;
    padding: 14px 10px;
    background: rgba(10,9,8,0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-2);
    transition: color .2s;
  }
  .mobile-nav a:hover { color: var(--accent); }
}

/* very small phones */
@media (max-width: 360px) {
  .hero__title { font-size: 68px; }
  .section-title { font-size: 28px; }
}
