/* ============================================
   VALERIE LUH — linktree style
   Narrow column, dense content, editorial tone
   ============================================ */

:root {
  --bg: #0A0908;
  --bg-raised: #151312;
  --bg-card: #1C1A18;
  --fg: #F5F1EA;
  --fg-dim: #B8AE9F;
  --fg-muted: #7A7368;
  --accent: #C4A06C;
  --accent-hover: #D7B585;
  --line: rgba(245, 241, 234, 0.10);
  --line-strong: rgba(245, 241, 234, 0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", -apple-system, "Segoe UI", sans-serif;
  --font-lyrics: "Cormorant Garamond", Georgia, serif;

  --col-max: 520px;
  --prose-max: 640px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;

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

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, rgba(196,160,108,0.04) 0%, transparent 50%),
    var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

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

/* ============================================
   LAYOUT — central narrow column
   ============================================ */
.shell {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 18px 48px;
}
@media (min-width: 560px) {
  .shell { padding: 0 24px 56px; }
}

/* ============================================
   HERO — identity (sin imagen, solo texto)
   ============================================ */
.hero {
  padding-top: 44px;
  padding-bottom: 8px;
  text-align: center;
  animation: fadeUp 0.9s var(--ease) both;
}
.hero__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.75rem, 10vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 14px 0 0;
}
.hero__quote {
  font-family: var(--font-lyrics);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 420px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section { margin-top: 40px; }
.section__label {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0 4px;
}
.section__label::before,
.section__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ============================================
   FEATURED — nuevo hero visual con portada grande
   ============================================ */
.featured {
  margin-top: 36px;
  text-align: center;
  animation: fadeUp 1.1s var(--ease) 0.15s both;
}
.featured__cover {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 40px 80px -24px rgba(0,0,0,0.8),
    0 16px 32px -12px rgba(0,0,0,0.5);
  display: block;
  transition: transform 0.5s var(--ease);
}
.featured__cover:hover { transform: scale(1.015); }
.featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s;
}
.featured__cover:hover img { filter: brightness(0.78); }
.featured__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.3);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s var(--ease);
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.featured__play svg {
  width: 30px;
  height: 30px;
  color: var(--bg);
  margin-left: 4px;
}
.featured__cover:hover .featured__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.featured__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin: 28px 0 0;
}
.featured__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 7vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 6px;
}
.featured__date {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.featured__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  min-height: 60px;
  transition: background 0.3s var(--ease), transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 24px -8px rgba(196,160,108,0.35);
}
.featured__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(196,160,108,0.5);
}
.featured__cta svg { width: 20px; height: 20px; }
.featured__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 8px 4px;
  transition: color 0.3s;
}
.featured__secondary:hover { color: var(--accent); }
.featured__secondary svg { width: 14px; height: 14px; }
.featured__links {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.featured__sep {
  color: var(--fg-muted);
  opacity: 0.6;
  font-size: 0.85rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 46px;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================
   LINK BUTTONS (plataformas + redes)
   ============================================ */
.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.2s;
  min-height: 56px;
}
.link-btn:hover {
  background: var(--bg-card);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.link-btn__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.link-btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--fg);
  transition: color 0.3s;
}
.link-btn:hover .link-btn__icon { color: var(--accent); }
.link-btn__label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.link-btn__arrow {
  color: var(--fg-muted);
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.link-btn__arrow svg { width: 16px; height: 16px; }
.link-btn:hover .link-btn__arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ============================================
   DISCO — track list compacto
   ============================================ */
.disco {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.disco__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease);
}
.disco__item:hover { background: var(--bg-raised); }
.disco__cover {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-raised);
}
.disco__cover img { width: 100%; height: 100%; object-fit: cover; }
.disco__body { flex: 1; min-width: 0; }
.disco__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.disco__title a { display: inline-block; max-width: 100%; }
.disco__date {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}
.disco__arrow {
  color: var(--fg-muted);
  transition: color 0.25s, transform 0.3s;
  flex-shrink: 0;
}
.disco__arrow svg { width: 18px; height: 18px; }
.disco__item:hover .disco__arrow { color: var(--accent); transform: translateX(2px); }
.disco__item a.stretched::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--accent); }
.footer__sep { margin: 0 10px; opacity: 0.5; }
.footer__copy {
  display: block;
  margin-top: 14px;
  font-size: 0.65rem;
  opacity: 0.6;
}

/* ============================================
   SUBPAGES (sobre, letras)
   ============================================ */
.page {
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 100vh;
}
.page__nav {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  max-width: var(--col-max);
  margin: 0 auto;
}
@media (min-width: 560px) {
  .page__nav { padding: 18px 24px; }
}
.page__nav a { color: var(--fg-dim); transition: color 0.3s; }
.page__nav a:hover { color: var(--accent); }
.page__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--fg);
}
.page__inner {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* About */
.about__head {
  text-align: center;
  margin-bottom: 40px;
}
.about__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.about__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 20px;
}
.about__prose p {
  font-family: var(--font-lyrics);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 0 20px;
}
.about__prose p:last-child { color: var(--fg-dim); }
.about__cta {
  margin-top: 36px;
  text-align: center;
}

/* Lyrics page */
.song__head {
  text-align: center;
  margin-bottom: 48px;
}
.song__cover {
  width: 260px;
  max-width: 68vw;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.7);
}
.song__cover img { width: 100%; height: 100%; object-fit: cover; }
.song__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
  font-weight: 500;
}
.song__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.song__meta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.song__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.song__lyrics {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-lyrics);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.85;
}
@media (min-width: 640px) {
  .song__lyrics { font-size: 1.4rem; }
}
.song__stanza + .song__stanza { margin-top: 28px; }
.song__stanza p { margin: 0; }
.song__bottom {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.link-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
