@charset "UTF-8";

:root {
  --paper: #fffaf2;
  --paper-strong: #f4eadb;
  --ink: #171210;
  --muted: #655b52;
  --line: #ddd1c2;
  --white: #ffffff;
  --red: #8d1f1b;
  --red-dark: #5d1512;
  --green: #1e5948;
  --green-dark: #12372d;
  --gold: #bf9138;
  --gold-soft: #ead6a4;
  --charcoal: #211a17;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(23, 18, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: 4.6rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.05rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(221, 209, 194, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 172px;
  height: 56px;
  object-fit: contain;
}

.site-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.12rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.56rem;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 6px;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  color: var(--white);
  background: var(--red);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 72svh;
  color: var(--white);
  background: #241f1c;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 11, 10, 0.88) 0%, rgba(15, 11, 10, 0.67) 34%, rgba(15, 11, 10, 0.12) 66%, rgba(15, 11, 10, 0.04) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 10, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  display: flex;
  justify-content: flex-start;
}

.hero-copy {
  width: min(610px, 100%);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
}

.kicker,
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 0.95rem;
}

.hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.18rem;
}

.hero-actions,
.section-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.74rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.btn-outline.dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--gold);
}

.quick-strip {
  background: var(--green-dark);
  color: var(--white);
}

.quick-strip-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.quick-item {
  padding: 1.1rem 1rem;
  background: var(--green-dark);
}

.quick-item strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.section,
.band {
  padding: 5rem 0;
}

.band {
  background: var(--paper-strong);
}

.band-dark {
  color: var(--white);
  background: var(--charcoal);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.wide-container {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading .lead,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.band-dark .lead,
.band-dark .muted,
.band-dark .section-heading .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card,
.news-card,
.release-card,
.service-card,
.contact-panel {
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(23, 18, 16, 0.08);
}

.card-body,
.news-body,
.release-body,
.service-card,
.contact-panel {
  padding: 1.15rem;
}

.card img,
.news-card img,
.release-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.release-card img {
  aspect-ratio: 1 / 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.48rem;
  color: var(--green-dark);
  background: #e8efe8;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 2rem;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.stat {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--red);
  font-size: 1.15rem;
}

.list-clean {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(221, 209, 194, 0.72);
}

.page-hero {
  position: relative;
  min-height: clamp(430px, 46svh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-position: center top;
  background-size: cover;
}

.page-hero.bio {
  background-image: url("../images/page-biografia.jpg");
  background-position: center top;
}

.page-hero.music {
  background-image: url("../images/page-musica.jpg");
  background-position: center top;
}

.page-hero.videos {
  background-image: url("../images/page-videos.jpg");
  background-position: center top;
}

.page-hero.gallery {
  background-image: url("../images/page-galeria.jpg");
  background-position: center top;
}

.page-hero.news {
  background-image: url("../images/noticias-editorial.jpg");
  background-position: center top;
}

.page-hero.contact {
  background-image: url("../images/page-contacto.jpg");
  background-position: center top;
}

.page-hero.press {
  background-image: url("../images/page-prensa.jpg");
  background-position: center top;
}

.page-hero.studio {
  background-image: url("../images/page-estudio.jpg");
  background-position: center top;
}

.page-hero.bookings {
  background-image: url("../images/page-contrataciones.jpg");
  background-position: center top;
}

.page-hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.page-hero-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.embed-stack {
  display: grid;
  gap: 1rem;
}

.embed-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #151515;
  box-shadow: var(--shadow);
}

.spotify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 1.25rem;
  align-items: start;
}

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

.video-card {
  display: grid;
  gap: 0.55rem;
}

.video-embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #101010;
  box-shadow: 0 12px 22px rgba(23, 18, 16, 0.12);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.video-link:hover,
.video-link:focus-visible {
  text-decoration: underline;
}

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

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 18, 16, 0.08);
}

.gallery-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-button img.gallery-portrait {
  object-fit: contain;
  object-position: center;
  background: var(--paper-strong);
}

.gallery-button span {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 800;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.lightbox {
  position: relative;
  width: min(960px, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(18, 12, 10, 0.72);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0e0e0e;
}

.lightbox figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.76rem 0.8rem;
  color: var(--ink);
  border: 1px solid #cfc2b4;
  border-radius: 6px;
  background: var(--white);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(191, 145, 56, 0.22);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}

.contact-list a {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--charcoal);
}

.footer-main {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 190px;
  margin-bottom: 1rem;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-soft);
}

.newsletter-form {
  display: grid;
  gap: 0.7rem;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

.newsletter-row input {
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .nav-list a {
    font-size: 0.82rem;
    padding-right: 0.42rem;
    padding-left: 0.42rem;
  }

  h1 {
    font-size: 3.8rem;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: clamp(720px, 76svh, 1180px);
  }

  .page-hero {
    min-height: clamp(520px, 54svh, 1020px);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
    height: 50px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 0 solid var(--line);
    transition: max-height 200ms ease, border-width 200ms ease;
  }

  .site-header.nav-open .site-nav {
    max-height: calc(100svh - 68px);
    overflow: auto;
    border-bottom-width: 1px;
  }

  .nav-list {
    width: min(620px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.8rem 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .nav-list a {
    width: 100%;
    justify-content: center;
    font-size: 0.94rem;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .hero {
    min-height: 74svh;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(15, 11, 10, 0.08) 0%, rgba(15, 11, 10, 0.2) 38%, rgba(15, 11, 10, 0.86) 100%);
  }

  .quick-strip-inner,
  .grid-3,
  .grid-4,
  .spotify-grid,
  .video-grid,
  .gallery-grid,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .section,
  .band {
    padding: 3.5rem 0;
  }

  .hero .lead,
  .page-hero-inner p,
  .section-heading .lead,
  .lead {
    font-size: 1rem;
  }

  .quick-strip-inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .spotify-grid,
  .video-grid,
  .gallery-grid,
  .footer-main,
  .form-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    display: grid;
  }
}

@media (max-width: 460px) {
  .nav-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-actions,
  .section-actions,
  .button-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
