@font-face {
  font-family: "Forum";
  src: url("./assets/fonts/forum-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --cream: #fff6ea;
  --cream-soft: #eee2d4;
  --ink: #2a1a0b;
  --ink-deep: #130c06;
  --black: #000000;
  --cream-72: rgba(255, 246, 234, 0.72);
  --cream-18: rgba(255, 246, 234, 0.18);
  --ink-68: rgba(42, 26, 11, 0.68);
  --max-width: 1320px;
  --header-height: 94px;
  color-scheme: dark;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: "Forum", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 12px clamp(22px, 4.2vw, 72px);
  border-bottom: 1px solid rgba(255, 246, 234, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent);
  transition: min-height 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 82px;
  border-color: rgba(255, 246, 234, 0.24);
  background-color: rgba(19, 12, 6, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 54px;
  height: 60px;
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.015em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--cream-72);
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 1rem;
}

.primary-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  color: rgba(255, 246, 234, 0.82);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cream);
  transition: transform 180ms ease;
}

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

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

.audio-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 246, 234, 0.42);
  border-radius: 0;
  background: rgba(19, 12, 6, 0.5);
  color: rgba(255, 246, 234, 0.86);
  font-family: Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.audio-toggle:hover,
.audio-toggle.is-playing {
  border-color: rgba(255, 246, 234, 0.82);
  background-color: rgba(255, 246, 234, 0.12);
  color: var(--cream);
}

.audio-toggle__icon {
  font-size: 1rem;
  line-height: 1;
}

.audio-toggle.is-playing .audio-toggle__icon {
  color: #ffca73;
}

.audio-toggle:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.municipal-mark {
  justify-self: end;
  width: 64px;
  height: 64px;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.municipal-mark:hover {
  opacity: 1;
}

.municipal-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 246, 234, 0.52);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 88px) clamp(22px, 6vw, 110px) clamp(58px, 9vh, 104px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.12) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(19, 12, 6, 0.86) 100%),
    url("./assets/images/hero-orquesta.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--cream);
}

.hero__watermark {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -5%;
  width: min(58vw, 880px);
  height: min(76vh, 900px);
  object-fit: contain;
  opacity: 0.085;
  pointer-events: none;
}

.hero__content {
  width: min(920px, 76vw);
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 246, 234, 0.78);
}

.hero__title {
  width: min(900px, 100%);
  height: auto;
}

.hero__subtitle {
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: var(--cream);
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.hero__copy {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 246, 234, 0.8);
  font-family: Arial, sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  background-position: center;
  background-size: 100% 100%;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
}

.button--light {
  background-color: var(--cream);
  background-image: url("./assets/ui/boton-claro.png");
  color: var(--ink);
}

.button--outline {
  border-color: rgba(255, 246, 234, 0.7);
  background: rgba(42, 26, 11, 0.28);
  color: var(--cream);
}

.button--outline:hover {
  background: rgba(255, 246, 234, 0.12);
}

.button--ink {
  background-color: var(--ink);
  background-image: url("./assets/ui/boton-oscuro.png");
  color: var(--cream);
}

.hero__scroll {
  position: absolute;
  right: clamp(22px, 5vw, 90px);
  bottom: clamp(58px, 8vh, 94px);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 246, 234, 0.76);
  font-family: Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll span:last-child {
  font-family: "Forum", serif;
  font-size: 1.6rem;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 148px) clamp(22px, 5vw, 80px);
}

.section__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section-heading {
  position: relative;
}

.section-heading h2 {
  max-width: 940px;
  margin: 18px 0 0;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading > p:last-child:not(.section-number):not(.section-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.section-heading--dark {
  color: var(--ink);
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--dark .section-kicker,
.section-heading--dark > p:last-child {
  color: rgba(42, 26, 11, 0.68);
}

.section-heading--light .section-kicker,
.section-heading--light > p:last-child {
  color: rgba(255, 246, 234, 0.7);
}

.section-number {
  position: absolute;
  top: -34px;
  right: 0;
  margin: 0;
  color: currentColor;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  line-height: 1;
  opacity: 0.1;
}

.about {
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
}

.about__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.about__copy {
  position: relative;
  z-index: 1;
  padding-top: 52px;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.55;
}

.about__copy p {
  margin: 0 0 24px;
}

.about__read-more {
  margin-top: 8px;
}

.about__copy blockquote {
  margin: 50px 0 0;
  padding: 28px 0 6px 30px;
  border-left: 1px solid var(--ink);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.16;
}

.about__mark {
  position: absolute;
  right: -11%;
  bottom: -46%;
  width: min(48vw, 600px);
  height: 620px;
  opacity: 0.54;
  pointer-events: none;
}

.about__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concerts {
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.concerts__watermark {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -12%;
  width: min(55vw, 760px);
  height: 86%;
  opacity: 0.075;
  pointer-events: none;
}

.concerts__watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concerts .section-heading {
  padding-right: clamp(0px, 8vw, 100px);
}

.concert-list {
  display: grid;
  gap: 18px;
  margin-top: clamp(46px, 7vw, 84px);
}

.concert-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
  padding: 28px clamp(24px, 4vw, 56px);
  border: 1px solid rgba(255, 246, 234, 0.16);
  background-image: url("./assets/ui/base-texto-ancha.png");
  background-position: left center;
  background-size: 100% 100%;
  color: var(--ink);
}

.concert-card__date {
  display: grid;
  justify-items: start;
  line-height: 0.8;
}

.concert-card__date span {
  font-size: clamp(3.6rem, 5.6vw, 6.2rem);
}

.concert-card__date small {
  margin-top: 14px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concert-card__content {
  max-width: 720px;
}

.concert-card__place {
  margin: 0 0 6px;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concert-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.concert-card__content > p:last-child {
  max-width: 650px;
  margin: 10px 0 0;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.concert-card__link {
  min-width: 108px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--cream);
  font-size: 1.2rem;
  white-space: nowrap;
}

.concert-card__link span {
  transition: transform 180ms ease;
}

.concert-card__link:hover span {
  transform: translateX(5px);
}

.concert-list__status {
  min-height: 176px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 246, 234, 0.16);
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.gallery {
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
}

.gallery__heading {
  width: min(900px, 100%);
}

.gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-top: clamp(52px, 8vw, 98px);
}

.gallery__feature {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery__feature::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(19, 12, 6, 0.9));
}

.gallery__feature > img {
  width: 100%;
  height: clamp(420px, 48vw, 690px);
  object-fit: cover;
  object-position: center;
  transition: transform 480ms ease;
}

.gallery__feature:hover > img {
  transform: scale(1.015);
}

.gallery__feature figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 42px);
  left: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--cream);
}

.gallery__feature figcaption span,
.gallery__index span {
  font-family: Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.gallery__feature figcaption strong {
  font-size: clamp(1.8rem, 3.6vw, 4rem);
  font-weight: 400;
}

.gallery__index {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery__index li {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(42, 26, 11, 0.3);
}

.gallery__index li:last-child {
  border-bottom: 1px solid rgba(42, 26, 11, 0.3);
}

.gallery__index strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact {
  background:
    linear-gradient(110deg, rgba(255, 246, 234, 0.035), transparent 55%),
    var(--ink-deep);
  color: var(--cream);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(48px, 9vw, 150px);
  align-items: center;
}

.contact-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 246, 234, 0.28);
  background: rgba(255, 246, 234, 0.045);
}

.contact-card__label {
  margin: 0 0 20px;
  color: var(--cream-72);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-card__button {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
  font-size: clamp(0.66rem, 1.4vw, 0.8rem);
  letter-spacing: 0.035em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: none;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.social-links a {
  aspect-ratio: 1;
  min-width: 50px;
  min-height: 50px;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: transform 180ms ease, filter 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(0.88);
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  padding: 52px clamp(22px, 5vw, 80px);
  border-top: 1px solid rgba(255, 246, 234, 0.18);
  background: #080503;
  color: rgba(255, 246, 234, 0.72);
}

.site-footer__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 108px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.footer-brand {
  width: 108px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.footer-brand img,
.footer-municipal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__copy p,
.site-footer__location,
.site-footer__copy small {
  margin: 0;
}

.site-footer__copy p {
  color: var(--cream);
  font-size: 1.35rem;
}

.site-footer__location {
  margin-top: 8px;
  color: rgba(255, 246, 234, 0.72);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.site-footer__copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 24px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__copy nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer__copy nav a:hover {
  color: var(--cream);
}

.site-footer__copy small {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
}

.footer-municipal {
  width: 96px;
  height: 108px;
  justify-self: end;
  opacity: 0.86;
}

.history-body .site-header {
  background-color: rgba(19, 12, 6, 0.94);
}

.history-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(64px, 8vw, 118px)) clamp(22px, 5vw, 80px) clamp(82px, 10vw, 148px);
  background: var(--cream);
  color: var(--ink);
}

.history-page__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.history-page__heading {
  margin-bottom: clamp(42px, 6vw, 76px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42, 26, 11, 0.28);
}

.history-page__heading h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-wrap: balance;
}

.history-page__copy {
  max-width: 880px;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.65;
}

.history-page__copy p {
  margin: 0 0 30px;
}

.history-page__actions {
  margin-top: 46px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto 72px;
    gap: 20px;
  }

  .brand__text small {
    display: none;
  }

  .primary-nav {
    gap: 20px;
    font-size: 0.94rem;
  }

  .hero__content {
    width: min(820px, 84vw);
  }

  .concert-card {
    grid-template-columns: 108px minmax(0, 1fr) auto;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 80px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding: 9px 18px;
  }

  .site-header.is-open {
    background-color: rgba(19, 12, 6, 0.96);
  }

  .brand__mark {
    width: 46px;
    height: 52px;
  }

  .brand__text strong {
    font-size: 1.15rem;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .municipal-mark {
    order: 3;
    width: 52px;
    height: 52px;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 18px 22px 24px;
    border: 1px solid rgba(255, 246, 234, 0.18);
    background-color: rgba(0, 0, 0, 0.68);
    background-image: url("./assets/ui/base-menu.png");
    background-position: center;
    background-size: cover;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    min-height: 52px;
    padding: 7px 2px;
    border-bottom: 1px solid rgba(255, 246, 234, 0.17);
    font-size: 1.25rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .audio-toggle {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 7px 2px;
    border-width: 0 0 1px;
    border-color: rgba(255, 246, 234, 0.17);
    background: transparent;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 96svh;
    padding: calc(var(--header-height) + 68px) 22px 56px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(19, 12, 6, 0.82)),
      url("./assets/images/hero-orquesta.png") 52% center / cover no-repeat;
  }

  .hero__watermark {
    top: 17%;
    right: -24%;
    width: 96vw;
  }

  .hero__content {
    width: min(780px, 100%);
  }

  .hero__scroll {
    display: none;
  }

  .about__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .about__copy {
    max-width: 760px;
    padding-top: 0;
  }

  .about__mark {
    right: -28%;
    bottom: -26%;
    width: 78vw;
  }

  .concert-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .concert-card__link {
    grid-column: 2;
    justify-self: start;
    color: var(--ink);
  }

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

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

  .contact-card {
    width: min(520px, 100%);
  }
}

@media (max-width: 680px) {
  .brand__text {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 50px);
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.22) 52%,
        rgba(19, 12, 6, 0.52) 100%
      ),
      url("./assets/images/hero-orquesta.png") 52% bottom / cover no-repeat;
  }

  .hero__content {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.92);
  }

  .hero__actions {
    text-shadow: none;
  }

  .eyebrow {
    max-width: 270px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .hero__subtitle {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .hero__copy {
    max-width: 470px;
    font-size: 0.94rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 78px 20px;
  }

  .history-page {
    padding: calc(var(--header-height) + 58px) 20px 84px;
  }

  .history-page__heading {
    margin-bottom: 36px;
    padding-bottom: 22px;
  }

  .history-page__heading h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .history-page__copy {
    font-size: 1.12rem;
    line-height: 1.58;
  }

  .section-heading h2 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .section-number {
    top: -18px;
    font-size: 4rem;
  }

  .about__layout {
    gap: 42px;
  }

  .about__copy {
    font-size: 1.18rem;
  }

  .about__copy blockquote {
    margin-top: 36px;
    padding-left: 20px;
    font-size: 1.65rem;
  }

  .concert-list {
    gap: 14px;
  }

  .concert-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 24px 20px;
    background-color: rgba(255, 246, 234, 0.97);
    background-size: cover;
  }

  .concert-card__date span {
    font-size: 3.35rem;
  }

  .concert-card h3 {
    font-size: 1.8rem;
  }

  .concert-card__content > p:last-child {
    font-size: 0.84rem;
  }

  .concert-card__link {
    min-height: 44px;
  }

  .gallery__feature,
  .gallery__feature > img {
    min-height: 300px;
    height: 66vw;
  }

  .gallery__feature figcaption {
    align-items: flex-start;
  }

  .gallery__feature figcaption strong {
    font-size: 1.85rem;
  }

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

  .gallery__index li {
    min-height: 84px;
  }

  .contact__layout {
    gap: 42px;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .social-links {
    gap: 9px;
  }

  .site-footer__inner {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .footer-brand {
    width: 80px;
    height: 98px;
  }

  .footer-municipal {
    display: none;
  }

  .site-footer__copy p {
    font-size: 1.1rem;
  }

  .site-footer__copy nav {
    gap: 0 18px;
    margin-top: 12px;
  }
}

@media (max-width: 430px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    padding-inline: 14px;
  }

  .municipal-mark {
    width: 46px;
    height: 48px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero__actions {
    gap: 10px;
  }

  .section {
    padding-inline: 18px;
  }

  .concert-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding-inline: 16px;
  }

  .concert-card__date span {
    font-size: 3rem;
  }

  .concert-card h3 {
    font-size: 1.6rem;
  }

  .social-links {
    grid-template-columns: repeat(4, minmax(44px, 1fr));
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    width: 72px;
    height: 88px;
  }
}

@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;
  }
}
