:root {
  --teal: #3b8a9c;
  --teal-dark: #2a8396;
  --teal-soft: #eaf6f8;
  --sand: #fbf8f5;
  --ink: #1d1e20;
  --white: #ffffff;
  --heading-font: "Libre Baskerville", serif;
  --body-font: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.8rem);
  padding: 1rem clamp(2rem, 4.5vw, 4.75rem);
  background: var(--teal);
  color: var(--white);
}

.brand {
  width: min(100%, 250px);
  flex-shrink: 0;
  justify-self: start;
}

#logo-img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(0.95rem, 1.35vw, 1.45rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-trigger {
  opacity: 0.95;
}

.main-nav a:hover,
.nav-dropdown-trigger:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.8em;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  min-width: 250px;
  display: none;
  transform: translateX(-50%);
  padding: 0.45rem;
  border-radius: 14px;
  background: #ffffff;
  color: #21454f;
  box-shadow: 0 20px 40px rgba(15, 33, 37, 0.18);
  text-transform: none;
  letter-spacing: normal;
  z-index: 35;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.62rem 0.78rem;
  border-radius: 10px;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 1;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #eef6f8;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
}

.admin-link {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 600;
}

.lang-link {
  justify-self: end;
  font-size: 0.76rem;
  opacity: 0.9;
}

.hero {
  min-height: 62vh;
}

.hero-image {
  min-height: 62vh;
  background-image:
    var(--hero-image);
  background-size: cover;
  background-position: center center;
}

.hero-intro {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 1rem 1.5rem;
}

.hero-intro h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.45vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

#hero-paragraphs {
  max-width: 980px;
  margin: 0 auto;
}

#hero-paragraphs p {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.35;
  margin: 0 auto 0.35rem;
}

.section {
  padding: 4rem 1.2rem;
}

.section:nth-child(odd) {
  background: var(--sand);
}

.section-heading h2,
.biography-copy h2,
.site-footer h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.35rem, 2.45vw, 2.05rem);
  font-weight: 700;
}

.featured-project {
  background: #f2f2f2 !important;
}

.featured-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: center;
}

.featured-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.featured-copy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

#featured-eyebrow {
  color: var(--teal-dark);
  font-family: var(--heading-font);
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  text-transform: uppercase;
}

#featured-title {
  color: var(--teal-dark);
  font-size: clamp(0.98rem, 1.35vw, 1.35rem);
  margin-bottom: 0.8rem;
  font-family: var(--heading-font);
  font-weight: 400;
}

#featured-text p {
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.section-heading {
  max-width: 1240px;
  margin: 0 auto 1.7rem;
}

.concert-showcase {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2.7rem;
}

.concerts {
  background: #d9eaf0 !important;
}

.concerts .section-heading h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
}

.concert-item {
  display: grid;
  grid-template-columns: minmax(330px, 520px) minmax(360px, 580px);
  align-items: center;
  justify-content: center;
  gap: 0;
}

.concert-item.is-right {
  grid-template-columns: minmax(360px, 580px) minmax(330px, 520px);
}

.concert-photo {
  height: min(44vw, 760px);
  min-height: 480px;
  overflow: hidden;
}

.concert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concert-panel {
  background: #ececec;
  padding: 2.4rem 2rem 2.3rem;
  margin-left: -64px;
  position: relative;
  z-index: 2;
}

.concert-item.is-right .concert-panel {
  order: 1;
  margin-left: 0;
  margin-right: -64px;
}

.concert-item.is-right .concert-photo {
  order: 2;
}

.concert-date {
  color: #1c1f22;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.concert-venue {
  color: #2f7f96;
  font-family: var(--heading-font);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.concert-program {
  color: #9e874f;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.15rem, 1.85vw, 1.95rem);
  margin-bottom: 0.7rem;
}

.concert-line {
  font-size: clamp(1rem, 1.25vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 0.42rem;
}

.concert-cta {
  font-size: clamp(1.06rem, 1.4vw, 1.65rem);
  font-weight: 700;
  margin-top: 0.5rem;
}

.biography {
  background: #f2f2f2 !important;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 580px) minmax(420px, 620px);
  gap: 1.4rem;
  align-items: stretch;
}

.biography-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.new-music {
  background: #f2f2f2;
}

.new-music-head {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 1rem 1rem 1.2rem;
}

.new-music-head h2 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  margin-bottom: 0.45rem;
}

.new-music-head p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.25vw, 1.4rem);
  line-height: 1.2;
}

.new-music-embeds {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.2rem 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 1.4rem;
}

.new-music-embeds iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 12px;
  background: #111;
}

.bio-banner {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem 1rem;
}

.bio-banner h2 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: clamp(1.65rem, 2.15vw, 2.3rem);
}

#bio-text p {
  margin: 0 0 0.85rem;
  font-size: 1.06rem;
  line-height: 1.26;
}

.biography-copy {
  padding: 1.2rem 0 1.3rem 1rem;
}

.biography-copy h2 {
  color: #2f7f96;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.cv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.cv-actions a {
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.quote {
  background: var(--teal) !important;
  color: var(--white);
  text-align: center;
}

.quote blockquote {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
  line-height: 1.42;
}

.quote p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 0.8rem;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #dbe7ea;
  cursor: zoom-in;
  box-shadow: 0 12px 24px rgba(24, 47, 54, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem;
  color: #fff;
  opacity: 0;
  background: linear-gradient(180deg, rgba(5, 20, 25, 0.04) 15%, rgba(5, 20, 25, 0.75) 100%);
  transition: opacity 0.28s ease;
}

.gallery-card-overlay-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-card-overlay-hint {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(24, 47, 54, 0.15);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.gallery-card:hover .gallery-card-overlay,
.gallery-card:focus-visible .gallery-card-overlay {
  opacity: 1;
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(59, 138, 156, 0.55);
  outline-offset: 2px;
}

.gallery-grid .gallery-card {
  min-height: 180px;
}

.project-v2-gallery .gallery-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.project-v2-gallery .gallery-card img {
  min-height: 0;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 16, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(1240px, 100%);
}

.gallery-lightbox-figure {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: min(78vh, 980px);
  object-fit: contain;
  background: #111;
}

.gallery-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  color: #fff;
  background: rgba(11, 22, 26, 0.94);
}

.gallery-lightbox-caption-text {
  font-size: 0.96rem;
  line-height: 1.35;
}

.gallery-lightbox-counter {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.22s ease, transform 0.22s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.gallery-lightbox-close {
  position: absolute;
  top: -0.9rem;
  right: -0.2rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.videos-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.video-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.video-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card span {
  position: absolute;
  inset: auto 0 0;
  color: var(--white);
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.87rem;
  font-weight: 600;
}

.news-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 560px);
  gap: 1.8rem;
  align-items: start;
}

.news-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
}

.news-layout p {
  font-size: 1.03rem;
  line-height: 1.35;
  font-family: var(--body-font);
}

.news .section-heading h2 {
  color: #a38a53;
  text-align: center;
  font-size: clamp(2.15rem, 3vw, 3.35rem);
  font-style: italic;
}

#news-lead {
  font-family: var(--heading-font);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

#news-list p {
  margin-bottom: 0.35rem;
}

.projects-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
}

.project-card {
  background: var(--white);
  border: 1px solid #dbe7ea;
  border-radius: 10px;
  padding: 1rem;
}

.project-card h3 {
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
  font-size: 1.02rem;
}

.discography p {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(135deg, #2e7788 0%, #256977 100%);
  color: var(--white);
  padding: 3.4rem 1.2rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-contact-shell {
  display: grid;
  gap: 1.4rem;
}

.footer-contact-head {
  max-width: 760px;
}

.footer-kicker {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 680px;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.9rem;
}

.footer-contact-card {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 2.8rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 18px 36px rgba(8, 24, 28, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.footer-contact-card::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact-card.is-phone::before {
  content: "Telefono";
}

.footer-contact-card.is-whatsapp::before {
  content: "WhatsApp";
}

.footer-contact-card.is-email::before {
  content: "Email";
}

.footer-contact-card:hover,
.footer-contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 40px rgba(8, 24, 28, 0.22);
}

.footer-contact-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.whatsapp-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25d366 0%, #15b956 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1rem 0.72rem 0.78rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 34px rgba(10, 38, 18, 0.28);
  z-index: 40;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.whatsapp-bubble:hover,
.whatsapp-bubble:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(10, 38, 18, 0.34);
  filter: brightness(1.03);
}

.whatsapp-bubble:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.25);
  outline-offset: 3px;
}

.whatsapp-bubble-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.whatsapp-bubble-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.whatsapp-bubble-label {
  white-space: nowrap;
}

.admin-page {
  min-height: 100vh;
  background: #f2f6f7;
  color: var(--ink);
  font-family: var(--body-font);
}

.admin-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 1.3rem;
}

.admin-title {
  margin-bottom: 0.8rem;
}

.admin-title h1 {
  font-family: var(--heading-font);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.admin-actions button,
.admin-actions a {
  border: 0;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.admin-actions .ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 1px solid var(--teal-dark);
}

.admin-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.admin-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.admin-tab {
  border: 1px solid #bfd3d9;
  border-radius: 999px;
  background: #fff;
  color: #2d555f;
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 10px 18px rgba(59, 138, 156, 0.12);
}

.admin-tab.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.admin-tab-panel {
  display: grid;
}

.admin-tab-panel[hidden] {
  display: none;
}

.admin-user-badge {
  color: #365058;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #d9e4e6;
}

.admin-card h2 {
  margin-bottom: 0.8rem;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.admin-auth-card {
  max-width: 760px;
}

.admin-auth-card p {
  margin-bottom: 0.8rem;
}

.auth-message {
  min-height: 1.4rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.auth-message[data-tone="error"] {
  color: #ab2d3b;
}

.auth-message[data-tone="success"] {
  color: #1a7f4c;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 0.7rem;
}

label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #2a3e45;
}

.admin-card > p {
  margin-bottom: 0.75rem;
  color: #5c747b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-inline-note {
  padding: 0.85rem 0.95rem;
  border: 1px dashed #c8d8dc;
  border-radius: 10px;
  background: #fff;
  color: #5c747b;
  font-size: 0.86rem;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid #c8d8dc;
  border-radius: 8px;
  padding: 0.6rem;
  font: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.stack {
  display: grid;
  gap: 0.7rem;
}

.admin-subcard {
  border: 1px solid #d9e4e6;
  border-radius: 10px;
  padding: 0.9rem;
  background: #f9fcfd;
}

.admin-subcard h3,
.admin-subcard h4 {
  font-family: var(--heading-font);
  margin-bottom: 0.7rem;
}

.admin-row-card {
  margin-top: 0.6rem;
}

.admin-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.admin-card-actions button {
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--teal-dark);
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.image-field-helper,
.image-list-helper {
  margin-top: 0.65rem;
  padding: 0.9rem;
  border: 1px solid #d4e4e8;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fcfd 0%, #eef7f9 100%);
  box-shadow: 0 14px 24px rgba(27, 56, 63, 0.05);
}

.image-helper-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.image-helper-button {
  border: 1px solid #a8c7cf;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  padding: 0.48rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.image-helper-button:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.image-helper-preview {
  border: 1px solid #d6e3e7;
  border-radius: 10px;
  background: #fff;
  min-height: 160px;
  overflow: hidden;
}

.image-helper-thumb {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.image-helper-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.55rem;
}

.image-helper-grid-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d6e3e7;
  background: #fff;
}

.image-helper-meta {
  margin-top: 0.65rem;
  color: #5d7177;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.image-helper-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: #74878d;
  background: rgba(255, 255, 255, 0.94);
}

.image-helper-empty-inline {
  min-height: 130px;
  border: 1px dashed #d6e3e7;
  border-radius: 14px;
}

.image-helper-shortcut {
  margin-left: auto;
  color: #62818b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-upload-dropzone {
  width: 100%;
  margin-bottom: 0.8rem;
  border: 1px dashed #9fc5cf;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 249, 0.96));
  color: #20414a;
  padding: 1rem 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.image-upload-dropzone strong,
.image-upload-dropzone span {
  display: block;
}

.image-upload-dropzone strong {
  margin-bottom: 0.2rem;
  font-size: 0.97rem;
}

.image-upload-dropzone span {
  color: #4c6972;
  font-size: 0.84rem;
  line-height: 1.45;
}

.image-list-helper.is-file-drag .image-upload-dropzone,
.image-upload-dropzone:hover,
.image-upload-dropzone:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 16px 28px rgba(59, 138, 156, 0.14);
  transform: translateY(-1px);
}

.image-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.8rem;
}

.managed-image-list-label textarea.managed-image-list-source {
  display: none;
}

.image-list-item {
  display: grid;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #d6e3e7;
  border-radius: 16px;
  padding: 0.7rem;
  cursor: grab;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.image-list-item:hover {
  border-color: #a8c7cf;
  box-shadow: 0 14px 22px rgba(28, 57, 65, 0.08);
}

.image-list-item.is-dragging-source {
  opacity: 0.6;
  transform: scale(0.985);
}

.image-list-item.is-drop-target {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(59, 138, 156, 0.16);
}

.image-list-item-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #e9f2f4;
}

.image-list-item-thumb,
.image-list-item-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-list-item-fallback {
  display: grid;
  place-items: center;
  color: #6b8187;
  font-size: 0.83rem;
  font-weight: 700;
}

.image-list-item-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  min-width: 30px;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 32, 37, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.image-list-item-body {
  display: grid;
  gap: 0.45rem;
}

.image-list-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.image-list-drag-hint {
  color: #5f7a83;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-list-item-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.image-list-action {
  border: 1px solid #c6d9de;
  border-radius: 999px;
  background: #fff;
  color: #305560;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.image-list-action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.image-list-action.is-danger {
  border-color: rgba(171, 45, 59, 0.2);
  color: #ab2d3b;
}

.image-list-item-path {
  color: #2d4d57;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-all;
}

.image-list-item-caption {
  color: #70878e;
  font-size: 0.75rem;
  line-height: 1.45;
}

.admin-page.admin-busy {
  cursor: progress;
}

.admin-page.admin-busy::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(16, 31, 36, 0.26);
  z-index: 90;
}

.admin-page.admin-busy::after {
  content: attr(data-busy-text);
  position: fixed;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #13272d;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 91;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.project-hero {
  min-height: 46vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
}

.project-hero-overlay {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
  padding: 2.4rem 1.2rem;
}

.project-hero-overlay h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 2.9vw, 2.9rem);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 1rem 1rem 1.2rem;
  background: var(--teal);
}

.project-tabs a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.project-list {
  padding: 2rem 1.2rem 1.5rem;
  display: grid;
  gap: 1.2rem;
}

.project-block {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(340px, 1fr);
  gap: 1rem;
  align-items: stretch;
  background: #f4f4f4;
  border: 1px solid #dfdfdf;
}

.project-block.is-right {
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 470px);
}

.project-block.is-right .project-block-media {
  order: 2;
}

.project-block.is-right .project-block-copy {
  order: 1;
}

.project-block-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.project-block-copy {
  padding: 1rem;
}

.project-block-copy h3 {
  color: var(--teal-dark);
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.project-block-copy p {
  margin-bottom: 0.8rem;
}

.project-block-copy iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.project-videos {
  padding: 2.2rem 1.2rem 3rem;
  background: #fff;
}

.project-videos .section-heading h2 {
  text-transform: uppercase;
  text-align: center;
}

.project-videos-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.brand-text {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  color: #fff;
  line-height: 1;
}

.project-v2 {
  background: #f2f2f2;
}

.project-v2-top-hero {
  min-height: 590px;
  background-image: url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/YD0plb8eqNhRpXjG/lucia-blanco-y-negro-2-mp8nxzV5V3cZBOqG.jpg");
  background-size: cover;
  background-position: center;
}

.project-v2-banner {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 0.9rem 1rem 1rem;
  border-top: 6px solid #fff;
  scroll-margin-top: 108px;
}

.project-v2-banner h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 1.75vw, 1.9rem);
  text-transform: uppercase;
}

.project-v2-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.2rem 1.4rem;
}

.project-v2-row {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(280px, 460px);
  gap: 1.3rem;
  justify-content: center;
  align-items: start;
  margin-bottom: 1.35rem;
}

.project-v2-row.has-portrait {
  grid-template-columns: minmax(420px, 680px) minmax(260px, 420px);
  align-items: center;
}

.project-v2-row.has-portrait.is-reverse {
  grid-template-columns: minmax(260px, 420px) minmax(420px, 680px);
}

.project-v2-row.is-reverse .project-v2-media {
  order: 2;
}

.project-v2-row.is-reverse .project-v2-copy {
  order: 1;
}

.project-v2-media {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(19, 38, 43, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.project-v2-media:hover,
.project-v2-media:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(19, 38, 43, 0.14);
}

.project-v2-media:focus-visible {
  outline: 3px solid rgba(59, 138, 156, 0.45);
  outline-offset: 3px;
}

.project-v2-media img {
  width: 100%;
  height: clamp(380px, 46vw, 620px);
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  transition: transform 0.34s ease, filter 0.34s ease;
}

.project-v2-media:hover img,
.project-v2-media:focus-visible img {
  transform: scale(1.02);
  filter: brightness(0.92);
}

.project-v2-media.is-portrait img {
  height: clamp(620px, 74vw, 1080px);
  max-height: 88vh;
}

.project-v2-media-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 33, 37, 0.74);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.project-v2-media:hover .project-v2-media-overlay,
.project-v2-media:focus-visible .project-v2-media-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-v2-copy h3 {
  font-family: var(--heading-font);
  font-size: clamp(1.08rem, 1.55vw, 1.8rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.project-v2-copy p {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.28;
  margin-bottom: 0.55rem;
}

.project-v2-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.project-v2-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.project-v2-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0.7rem;
}

.project-v2-videos iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.project-v2-contact {
  text-align: center;
  color: #fff;
  padding: 2.4rem 1rem 2.6rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/YD0plb8eqNhRpXjG/whatsapp-image-2024-06-12-at-15.36.46-YNqJxK5Dpwt096L1.jpeg");
  background-size: cover;
  background-position: center;
}

.project-v2-contact h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.project-v2-contact p {
  max-width: 920px;
  margin: 0 auto 0.9rem;
}

.project-v2-contact a {
  display: inline-block;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0.55rem 2.8rem;
  font-weight: 700;
}

.discography-page {
  background: #fff;
}

.discography-hero {
  position: relative;
  min-height: 755px;
  background-image: url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/YD0plb8eqNhRpXjG/lucia-6-dOqbL3owEZhjblNr.JPG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.discography-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
}

.discography-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.2rem 2.4rem;
}

.discography-hero-inner h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.7vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}

.discography-strip {
  background: #3b8a9c;
  min-height: 43px;
}

.discography-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.2rem 2.2rem;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 0.65rem 1rem;
}

.discography-grid iframe {
  width: 100%;
  height: 390px;
  border: 0;
}

.discography-videos {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 0.9rem 1rem;
}

.discography-videos iframe {
  width: 100%;
  height: 382px;
  border: 0;
}

.discography-videos iframe:last-child {
  grid-column: 1 / 2;
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
  }

  .main-nav {
    position: fixed;
    right: 1rem;
    top: 78px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--teal-dark);
    border-radius: 10px;
    padding: 0.8rem;
    width: min(280px, calc(100vw - 2rem));
    display: none;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    transform: none;
    margin-top: 0.45rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }

  .menu-toggle {
    display: block;
  }

  .admin-link {
    display: none;
  }

  .lang-link {
    display: none;
  }

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

  .biography-media img {
    clip-path: none;
  }

  .biography-copy {
    padding-left: 0;
  }

  .concert-showcase {
    gap: 1.6rem;
  }

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

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

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

  .featured-layout {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .new-music-embeds {
    grid-template-columns: 1fr;
  }

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

  .project-block,
  .project-block.is-right {
    grid-template-columns: 1fr;
  }

  .project-block.is-right .project-block-media,
  .project-block.is-right .project-block-copy {
    order: initial;
  }

  .project-videos-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }

  .brand-text {
    font-size: 2.2rem;
  }

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

  .project-v2-row.has-portrait,
  .project-v2-row.has-portrait.is-reverse {
    grid-template-columns: 1fr;
  }

  .project-v2-row.is-reverse .project-v2-media,
  .project-v2-row.is-reverse .project-v2-copy {
    order: initial;
  }

  .project-v2-media img,
  .project-v2-media.is-portrait img {
    height: auto;
    max-height: none;
  }

  .project-v2-gallery {
    grid-template-columns: 1fr;
  }

  .project-v2-videos {
    grid-template-columns: 1fr;
  }

  .project-v2-top-hero {
    min-height: 340px;
  }

  .discography-hero {
    min-height: 470px;
  }

  .discography-hero-inner h1 {
    font-size: clamp(1.55rem, 4.8vw, 2.2rem);
  }

  .discography-grid,
  .discography-videos {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 0.8rem;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-nav {
    display: none;
  }

  .gallery-lightbox-close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .gallery-lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .discography-videos iframe:last-child {
    grid-column: auto;
  }

  .concert-item,
  .concert-item.is-right {
    grid-template-columns: 1fr;
  }

  .concert-photo {
    min-height: 360px;
    height: 56vw;
  }

  .concert-item.is-right .concert-panel,
  .concert-item.is-right .concert-photo {
    order: initial;
  }

  .concert-panel,
  .concert-item.is-right .concert-panel {
    margin: 0;
  }
}

@media (max-width: 680px) {
  .hero,
  .hero-image {
    min-height: 42vh;
  }

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

  .site-footer {
    padding: 2.7rem 1rem;
  }

  .footer-contact-card {
    min-height: 106px;
    padding-top: 2.55rem;
  }

  .whatsapp-bubble {
    right: 14px;
    bottom: 14px;
    padding: 0.7rem;
  }

  .whatsapp-bubble-label {
    display: none;
  }

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

  .image-helper-shortcut {
    width: 100%;
    margin-left: 0;
  }

  .image-list-grid {
    grid-template-columns: 1fr;
  }
}
