:root {
  --ink: #09111f;
  --ink-soft: #101b2c;
  --surface: #f2efe7;
  --surface-strong: #fffdf8;
  --paper: #e8e2d7;
  --text: #182131;
  --muted: #677184;
  --line: rgba(9, 17, 31, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --accent: #c7a66a;
  --accent-light: #ead7ad;
  --white: #ffffff;
  --success: #25d366;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shadow: 0 24px 70px rgba(8, 15, 28, 0.14);
  --max-width: 1240px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0.86), rgba(5, 10, 18, 0.25), transparent);
}

.site-header.scrolled {
  background: rgba(9, 17, 31, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--accent-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  color: var(--white);
  background: #0a111d;
  isolation: isolate;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-picture,
.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.035);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 9, 17, 0.91) 0%,
      rgba(4, 9, 17, 0.80) 24%,
      rgba(4, 9, 17, 0.47) 48%,
      rgba(4, 9, 17, 0.12) 72%,
      rgba(4, 9, 17, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 9, 17, 0.58) 0%,
      rgba(4, 9, 17, 0.08) 24%,
      rgba(4, 9, 17, 0.05) 70%,
      rgba(4, 9, 17, 0.54) 100%
    );
}

.hero-copy {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 58px;
}

.hero-content {
  width: min(100%, 660px);
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-light);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 8.6vw, 8.8rem);
  font-weight: 600;
  line-height: 0.79;
  letter-spacing: -0.055em;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.52),
    0 20px 55px rgba(0, 0, 0, 0.30);
}

.hero h1 span {
  display: block;
  margin-left: clamp(20px, 5vw, 80px);
  color: #f3dfb4;
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.button-primary {
  color: var(--ink);
  background: rgba(243, 223, 180, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.button-primary:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(8, 15, 27, 0.28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.80);
  background: rgba(8, 15, 27, 0.48);
}

.platforms-compact {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platforms-compact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 11, 20, 0.31);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(9px);
  font-size: 0.74rem;
  font-weight: 700;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.platforms-compact a:hover {
  color: var(--white);
  border-color: rgba(243, 223, 180, 0.85);
  background: rgba(5, 11, 20, 0.54);
}

.platforms-compact i {
  font-size: 1rem;
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 140px);
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-description {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
}

.biography {
  display: grid;
  gap: 56px;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 8vw, 120px);
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.bio-lead {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.bio-copy {
  max-width: 650px;
  color: #495366;
  font-size: 1rem;
}

.bio-copy p {
  margin: 0 0 22px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.text-button i {
  font-size: 0.8rem;
}

.album-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(77, 102, 135, 0.24), transparent 25%),
    var(--ink);
}

.album-section .eyebrow {
  color: var(--accent-light);
}

.album-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.album-section .section-description {
  color: rgba(255, 255, 255, 0.62);
}

.playlist-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.playlist-link:hover {
  color: var(--white);
  border-color: var(--accent-light);
}

.album-toggle {
  width: 100%;
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-sm);
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.album-toggle:hover {
  border-color: rgba(234, 215, 173, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.album-toggle-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent-light);
}

.album-toggle strong,
.album-toggle small {
  display: block;
}

.album-toggle strong {
  font-size: 1rem;
}

.album-toggle small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.57);
}

.album-chevron {
  color: var(--accent-light);
}

.album-toggle[aria-expanded="true"] .album-chevron {
  transform: rotate(180deg);
}

.track-panel {
  padding-top: 32px;
}

.track-status {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.track-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.track-card:hover {
  border-color: rgba(234, 215, 173, 0.55);
  background: rgba(255, 255, 255, 0.075);
}

.track-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151f30;
}

.track-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 21, 0.62), transparent 55%);
  pointer-events: none;
}

.track-play {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent-light);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.22);
}

.track-copy {
  min-height: 116px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-number {
  flex: none;
  color: var(--accent-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.track-title {
  min-width: 0;
}

.track-title strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.track-title small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-card.placeholder .track-thumbnail {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(234, 215, 173, 0.16), transparent 50%),
    #141e2e;
}

.track-card.placeholder .track-thumbnail i {
  color: var(--accent-light);
  font-size: 2.8rem;
}

.social-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.28);
}

.social-links a:hover {
  border-color: rgba(9, 17, 31, 0.3);
  background: rgba(255, 255, 255, 0.58);
}

.social-links > a > i:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.2rem;
}

.social-links span {
  font-weight: 700;
}

.social-links small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links > a > i:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto 48px;
  padding: clamp(42px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(234, 215, 173, 0.18), transparent 30%),
    var(--ink-soft);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.whatsapp-button {
  min-width: min(100%, 310px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: #092414;
  background: #dff8e7;
  font-weight: 800;
}

.whatsapp-button:hover {
  background: var(--white);
}

.whatsapp-button > i {
  color: #128c45;
  font-size: 1.8rem;
}

.whatsapp-button small {
  display: block;
  margin-bottom: 2px;
  color: #3c6f50;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding: 34px 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-brand {
  color: var(--text);
}

.footer-brand .brand-mark {
  color: var(--text);
  border-color: var(--line);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .hero-copy {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .whatsapp-button {
    width: fit-content;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: none;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: rgba(9, 17, 31, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }
  .hero {
    min-height: max(900px, 100svh);
  }

  .hero-picture img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 9, 17, 0.76) 0%,
        rgba(4, 9, 17, 0.42) 31%,
        rgba(4, 9, 17, 0.18) 58%,
        rgba(4, 9, 17, 0.74) 100%
      ),
      linear-gradient(
        90deg,
        rgba(4, 9, 17, 0.62) 0%,
        rgba(4, 9, 17, 0.28) 75%,
        rgba(4, 9, 17, 0.16) 100%
      );
  }

  .hero-copy {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: max(900px, 100svh);
    align-items: flex-start;
    padding: calc(var(--header-height) + 74px) 0 54px;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 17vw, 7.5rem);
  }

.bio-layout,
  .social-section {
    grid-template-columns: 1fr;
  }

  .bio-layout {
    gap: 34px;
  }

  .album-header {
    display: grid;
  }

  .playlist-link {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand > span:last-child {
    display: none;
  }
  .hero {
    min-height: 980px;
  }

  .hero-copy {
    width: min(calc(100% - 28px), var(--max-width));
    min-height: 980px;
    padding: calc(var(--header-height) + 62px) 0 44px;
  }

  .hero-content {
    width: 100%;
  }

.hero h1 span {
    margin-left: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .platforms-compact {
    gap: 8px;
  }

  .platforms-compact a {
    min-height: 42px;
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .platforms-compact a:last-child {
    flex-basis: 100%;
  }
.section {
    padding-block: 78px;
  }

  .album-section {
    padding-inline: 14px;
  }

  .album-toggle {
    padding: 15px;
  }

  .album-toggle-icon {
    width: 44px;
    height: 44px;
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .track-copy {
    min-height: 98px;
  }

  .social-links a {
    grid-template-columns: 44px 1fr auto;
    padding: 16px;
  }

  .social-links > a > i:first-child {
    width: 44px;
    height: 44px;
  }

  .contact-section {
    width: calc(100% - 28px);
    margin-bottom: 24px;
    padding: 38px 22px;
    border-radius: var(--radius-md);
  }

  .whatsapp-button {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
