:root {
  --ink: #11100e;
  --ink-soft: #2b2520;
  --paper: #fffaf1;
  --bone: #f3eadc;
  --line: rgba(17, 16, 14, 0.15);
  --red: #9f1f2b;
  --red-deep: #66131b;
  --gold: #c49a4d;
  --sage: #4d6656;
  --teal: #1d5b64;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 16, 14, 0.18);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
  max-width: 900px;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  overflow-wrap: anywhere;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 48px);
  background: rgba(17, 16, 14, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 146px;
  min-width: 116px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.42));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.menu-toggle::before {
  content: "";
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-color: var(--ink);
  background-image: linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.46) 52%, rgba(17, 16, 14, 0.18));
  background-position: center, var(--hero-position, center 24%);
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 16, 14, 0.86), transparent);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 82px 0 70px;
  background-position: center, var(--hero-position, center 24%);
}

.hero-inner,
.page-hero-inner,
.simple-hero-inner {
  max-width: 760px;
}

.hero p {
  max-width: 650px;
  font-size: 1.25rem;
}

.section-label,
.card-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus {
  background: var(--red-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-outline:hover,
.button-outline:focus {
  background: var(--bone);
  border-color: rgba(17, 16, 14, 0.28);
}

.section {
  padding: 78px 0;
}

.section-tint {
  background: var(--bone);
}

.section-deep {
  background:
    linear-gradient(135deg, rgba(102, 19, 27, 0.96), rgba(29, 91, 100, 0.94)),
    url("../images/los-grandes-de-tijuana-imagen-6.jpg") center / cover fixed;
  color: var(--white);
}

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

.split,
.contact-layout,
.article-layout,
.newsletter-layout,
.image-band,
.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.split > *,
.contact-layout > *,
.article-layout > *,
.newsletter-layout > *,
.image-band > *,
.platform-panel > * {
  min-width: 0;
}

.split.reverse,
.article-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.media-panel,
.image-band img,
.article-aside > img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img,
.image-band img,
.article-aside > img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.article-aside > img.song-cover {
  aspect-ratio: 1;
}

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

.feature-grid article,
.news-card,
.video-card,
.booking-panel,
.contact-strip,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(17, 16, 14, 0.08);
}

.feature-grid article,
.booking-panel,
.contact-strip {
  padding: 24px;
}

.section-deep .contact-strip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.section-deep .contact-strip a:not(.button) {
  color: var(--white);
}

.news-card,
.video-card {
  overflow: hidden;
}

.image-link img,
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body h2,
.video-card h2,
.release-item h2 {
  font-size: 1.25rem;
}

.card-body h2 a {
  text-decoration: none;
}

.calendar-shell {
  display: grid;
  gap: 28px;
}

.calendar-months,
.event-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calendar-month,
.event-preview-card,
.event-detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(17, 16, 14, 0.08);
}

.calendar-month {
  padding: 22px;
}

.calendar-month-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.calendar-month-heading p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.calendar-month-heading h3 {
  margin: 0;
  font-size: 1.5rem;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: rgba(17, 16, 14, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  min-height: 58px;
  display: grid;
  place-items: start;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.75);
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

.calendar-day.is-empty {
  visibility: hidden;
}

.calendar-day.has-event {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(159, 31, 43, 0.22);
}

.calendar-day.has-event strong {
  align-self: end;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  line-height: 1.1;
}

.event-preview-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  overflow: hidden;
}

.event-preview-media {
  display: block;
  min-height: 100%;
  background: var(--ink);
}

.event-preview-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.event-preview-body {
  padding: 20px;
}

.event-preview-body h3 {
  font-size: 1.2rem;
}

.event-preview-body h3 a {
  text-decoration: none;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.event-detail-flyer {
  display: grid;
  gap: 10px;
}

.event-detail-flyer img {
  width: min(100%, 760px);
  height: auto;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.event-detail-flyer figcaption {
  color: rgba(17, 16, 14, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.event-detail-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
}

.event-detail-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.event-detail-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-detail-list dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-detail-list dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 800;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-hero {
  min-height: clamp(460px, 40vw, 620px);
  display: flex;
  align-items: end;
  padding: 110px 0 66px;
  background-position: center, var(--hero-position, center 24%);
}

.page-hero p {
  max-width: 680px;
  font-size: 1.15rem;
}

.prose {
  max-width: 830px;
}

.prose h2 {
  margin-top: 42px;
}

.prose h2:first-child {
  margin-top: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spotify-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #181818;
  box-shadow: var(--shadow);
}

.spotify-frame iframe {
  display: block;
  border: 0;
}

.release-list {
  display: grid;
  gap: 26px;
}

.release-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.release-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.platform-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.platform-links,
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-links a,
.social-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  text-decoration: none;
}

.platform-panel .platform-links a,
.site-footer .social-list a {
  color: var(--white);
}

.contact-layout {
  align-items: start;
}

.contact-layout > div:last-child {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form,
.newsletter-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

label span {
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 16, 14, 0.28);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

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

.hidden-field {
  display: none;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.article-layout {
  align-items: start;
}

.article-aside {
  display: grid;
  gap: 20px;
}

.article-actions {
  margin-top: 36px;
}

.blog-meta {
  color: rgba(17, 16, 14, 0.64);
  font-weight: 800;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.keyword-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bone);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.blog-post .spotify-frame,
.blog-post .video-frame {
  box-shadow: 0 12px 35px rgba(17, 16, 14, 0.08);
}

.blog-faq h2 {
  margin-bottom: 18px;
}

.newsletter-band {
  padding: 56px 0;
  background: var(--sage);
  color: var(--white);
}

.newsletter-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.newsletter-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .button {
  grid-column: 1 / -1;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.96);
}

.simple-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(100deg, rgba(17, 16, 14, 0.9), rgba(102, 19, 27, 0.7)),
    url("../images/los-grandes-de-tijuana-imagen-6.jpg");
  background-position: center, var(--hero-position, center 24%);
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 190px;
  height: auto;
  padding: 5px;
  background: var(--white);
  border-radius: 6px;
  margin-bottom: 16px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

  h2 {
    font-size: 1.8rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: absolute;
    top: 22px;
    right: 14px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    background: rgba(17, 16, 14, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .split,
  .split.reverse,
  .contact-layout,
  .article-layout,
  .newsletter-layout,
  .image-band,
  .platform-panel {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

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

  .calendar-months,
  .event-preview-grid,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-detail-panel {
    position: static;
  }

  .release-item {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .release-item .spotify-frame {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.42rem;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 122px;
  }

  .hero {
    min-height: 70vh;
    padding: 58px 0 48px;
    background-position: center, var(--hero-mobile-position, 42% center);
  }

  .hero,
  .page-hero,
  .simple-hero {
    background-image: var(--hero-gradient), var(--hero-mobile-image) !important;
    background-size: auto, cover;
    background-repeat: no-repeat;
  }

  .page-hero,
  .simple-hero {
    background-position: center, var(--hero-mobile-position, center center);
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 12ch;
    overflow-wrap: anywhere;
  }

  .section h2,
  .card-body h2,
  .release-item h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .menu-toggle span:not(.sr-only) {
    display: none;
  }

  .menu-toggle::before {
    content: "☰";
    display: block;
    font-size: 1.8rem;
    line-height: 1;
  }

  .page-hero {
    min-height: 360px;
    padding: 84px 0 46px;
  }

  .section {
    padding: 54px 0;
  }

  .feature-grid,
  .card-grid,
  .video-grid,
  .form-grid,
  .newsletter-form,
  .release-item,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .release-item img {
    max-width: 220px;
  }

  .calendar-month {
    padding: 16px;
  }

  .calendar-day {
    min-height: 44px;
    padding: 5px;
    font-size: 0.86rem;
  }

  .calendar-day.has-event strong {
    display: none;
  }

  .event-preview-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .event-preview-body {
    padding: 16px;
  }

  .event-preview-body h3 {
    font-size: 1.05rem;
  }

  .event-detail-panel {
    padding: 20px;
  }

  .contact-layout > div:last-child,
  .platform-panel,
  .newsletter-form {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
