:root {
  --black: #0A0A0A;
  --charcoal: #17140F;
  --gold: #D4AF37;
  --gold-light: #F2DC8E;
  --gold-deep: #8C6A1E;
  --bone: #EDE6D6;
  --rojo: #7A1418;
  --ink-muted: #B8AE9A;
  --black-soft: rgba(10, 10, 10, 0.76);
  --gold-line: rgba(212, 175, 55, 0.42);
  --gold-faint: rgba(212, 175, 55, 0.12);
  --shell: min(92vw, 1600px);
  --section-space: clamp(4rem, 8vw, 9rem);
  --display: "Pinyon Script", "Times New Roman", serif;
  --body: "Lora", Georgia, serif;
  --header-height: clamp(4.75rem, 6vw, 6.25rem);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--black);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.12rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch' seed='11'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.23em;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

[hidden] {
  display: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--charcoal {
  background: var(--charcoal);
}

.section--paper-grain {
  background:
    linear-gradient(rgba(10, 10, 10, 0.93), rgba(10, 10, 10, 0.93)),
    radial-gradient(circle at 25% 15%, rgba(212, 175, 55, 0.14), transparent 26rem),
    var(--black);
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 6000;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  max-width: 68ch;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-light);
  font-size: clamp(0.72rem, 0.69rem + 0.14vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  color: var(--gold-light);
  text-shadow:
    0 1px 0 var(--gold-deep),
    0 0 24px rgba(212, 175, 55, 0.12);
}

.section-title {
  font-size: clamp(3.25rem, 7vw, 7.25rem);
}

.page-title {
  font-size: clamp(4rem, 10vw, 9rem);
}

.section-heading {
  margin-bottom: clamp(2.25rem, 5vw, 4.5rem);
  text-align: center;
}

.section-heading .section-title {
  margin-inline: auto;
  max-width: 12ch;
}

.braid-rule {
  width: min(100%, 38rem);
  height: 12px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.braid-rule span {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  background:
    linear-gradient(45deg, transparent 42%, var(--gold) 43% 48%, transparent 49% 52%, var(--gold-deep) 53% 58%, transparent 59%) 0 0 / 18px 12px repeat-x;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration-color: var(--gold-deep);
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 9.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 0.78rem 1.35rem;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background-color 180ms ease,
    color 180ms ease;
}

.button--gold {
  border-color: var(--gold-light);
  color: var(--black);
  background:
    linear-gradient(110deg, var(--gold-deep) 0%, var(--gold) 22%, var(--gold-light) 49%, var(--gold) 70%, var(--gold-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 30px rgba(212, 175, 55, 0.13);
}

.button--outline {
  color: var(--gold-light);
  background: rgba(10, 10, 10, 0.42);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.55rem, 2vw, 1.2rem);
}

.site-header__brand {
  position: relative;
  z-index: 1010;
  width: fit-content;
  max-width: 12rem;
  display: flex;
  flex-direction: column;
  color: var(--gold-light);
  text-decoration: none;
  line-height: 0.8;
}

.site-header__brand-main {
  font-family: var(--display);
  font-size: clamp(1.65rem, 5.7vw, 2.4rem);
  white-space: nowrap;
}

.site-header__brand-sub {
  margin-top: 0.18rem;
  padding-left: 1.4rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__phone {
  position: relative;
  z-index: 1010;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--gold-light);
  font-size: clamp(0.72rem, 2.5vw, 0.92rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__phone-label {
  display: none;
  margin-bottom: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  z-index: 1010;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 1px;
  background: var(--gold-light);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1005;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding:
    calc(var(--header-height) + env(safe-area-inset-top) + 2rem)
    max(6vw, 1.25rem)
    calc(2rem + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 24%, rgba(122, 20, 24, 0.22), transparent 23rem),
    linear-gradient(rgba(10, 10, 10, 0.97), rgba(10, 10, 10, 0.99));
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 380ms var(--ease), visibility 0s linear 380ms;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.site-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  color: var(--bone);
  font-size: clamp(1.55rem, 7vw, 3rem);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.site-nav a[aria-current="page"]::before,
.site-nav a[aria-current="page"]::after {
  content: "";
  width: 1.2rem;
  height: 1px;
  margin-inline: 0.65rem;
  background: var(--gold);
}

.site-nav__call {
  margin-top: 1.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--gold-line);
  color: var(--gold-light);
  font-size: 1rem;
}

.site-nav__ornament {
  width: min(11rem, 52vw);
  margin-bottom: 1rem;
  color: var(--gold);
}

.site-nav__ornament svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

body.nav-open {
  overflow: hidden;
}

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__media,
.hero__scrim,
.hero__texture {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  transform: scale(1.04) translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: sepia(0.16) saturate(0.78) contrast(1.16) brightness(0.67);
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.22) 38%, rgba(10, 10, 10, 0.84)),
    radial-gradient(circle at 50% 47%, rgba(140, 106, 30, 0.11), transparent 33rem);
}

.hero__texture {
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(212, 175, 55, 0.12) 49% 51%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(212, 175, 55, 0.06) 49% 51%, transparent 53%);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 12vw, 10rem);
  text-align: center;
}

.hero__eyebrow {
  margin-inline: auto;
}

.hero__title {
  position: relative;
  max-width: 10.5ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(4.4rem, 18vw, 13.5rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  background:
    linear-gradient(105deg, var(--gold-deep) 0%, var(--gold) 22%, var(--gold-light) 45%, #fff0b3 50%, var(--gold) 61%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(63, 45, 10, 0.68)) drop-shadow(0 0 26px rgba(212, 175, 55, 0.18));
}

.hero__title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 249, 205, 0.92) 49%, transparent 57%);
  background-size: 240% 100%;
  background-position: 160% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  animation: gold-shimmer 1.55s 0.65s var(--ease) 1 both;
}

.hero__tagline {
  max-width: 46rem;
  margin: clamp(1.7rem, 4vw, 3rem) auto 0;
  color: var(--bone);
  font-size: clamp(1rem, 2.3vw, 1.38rem);
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(1.7rem, 4vw, 2.8rem);
}

.hero__actions .button {
  width: min(100%, 18rem);
}

.hero__corner {
  position: absolute;
  z-index: 1;
  top: 1rem;
  width: clamp(6rem, 14vw, 12rem);
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.15;
  opacity: 0.46;
}

.hero__corner--left {
  left: -1.2rem;
}

.hero__corner--right {
  right: -1.2rem;
  transform: scaleX(-1);
}

.hero__bottom-rule {
  position: absolute;
  bottom: clamp(1rem, 2vw, 1.8rem);
  left: 50%;
  width: min(88vw, 72rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.78;
}

.hero__bottom-rule span {
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor);
}

.hero__bottom-rule span:last-child {
  background: linear-gradient(to left, transparent, currentColor);
}

.hero__bottom-rule svg {
  width: 5.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

/* Intro */
.intro__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro__ornament {
  display: none;
  color: var(--gold);
  opacity: 0.48;
}

.intro__ornament svg,
.events__agave {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.intro__copy p:not(.eyebrow) {
  color: #d5cdbc;
}

.ornate-frame {
  position: relative;
  margin: 0;
  padding: clamp(0.45rem, 1vw, 0.75rem);
  border: 1px solid var(--gold);
  background: var(--charcoal);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.ornate-frame::before,
.ornate-frame::after {
  content: "";
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  pointer-events: none;
}

.ornate-frame::before {
  top: -0.38rem;
  left: -0.38rem;
  border-top: 3px double var(--gold-light);
  border-left: 3px double var(--gold-light);
}

.ornate-frame::after {
  right: -0.38rem;
  bottom: -0.38rem;
  border-right: 3px double var(--gold-light);
  border-bottom: 3px double var(--gold-light);
}

.ornate-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.82) contrast(1.1) brightness(0.88);
}

.story__photo img {
  aspect-ratio: auto;
  height: auto;
}

/* Music */
.music {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 80%, rgba(122, 20, 24, 0.15), transparent 28rem),
    var(--black);
}

.music-card {
  position: relative;
  max-width: 68rem;
  margin-inline: auto;
  display: grid;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid var(--gold-line);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 35%),
    var(--charcoal);
  box-shadow: inset 0 0 0 7px var(--black), inset 0 0 0 8px rgba(212, 175, 55, 0.16);
}

.music-card__art {
  width: min(70vw, 15rem);
  margin-inline: auto;
  color: var(--gold);
  opacity: 0.72;
}

.music-card__art svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.music-card__copy h3 {
  margin-bottom: 0.6rem;
  color: var(--gold-light);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
}

.music-card__copy p {
  color: #c9c1b1;
}

.music-card__kicker {
  margin-bottom: 0.5rem;
  color: var(--rojo);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.music-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

/* Shows */
.shows {
  position: relative;
  border-block: 1px solid rgba(212, 175, 55, 0.16);
}

.shows::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%);
  background-size: 80px 46px;
}

.shows__list,
.shows__empty {
  position: relative;
}

.show-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-block: 1.25rem;
  border-top: 1px solid var(--gold-line);
}

.show-row:last-child {
  border-bottom: 1px solid var(--gold-line);
}

.show-row__date {
  width: 4.1rem;
  min-height: 4.1rem;
  display: grid;
  place-items: center;
  padding: 0.35rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-align: center;
}

.show-row__month {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.show-row__day {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.show-row__details h3 {
  margin-bottom: 0.15rem;
  color: var(--bone);
  font-size: 1.05rem;
}

.show-row__details p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.show-row__link {
  grid-column: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--gold-light);
  font-weight: 700;
}

.shows__empty {
  max-width: 58rem;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--gold-line);
  text-align: center;
  background: rgba(10, 10, 10, 0.64);
}

.shows__empty svg {
  width: 4.2rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.shows__empty h3 {
  margin-bottom: 0.45rem;
  color: var(--gold-light);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.shows__empty p {
  margin: 0 auto;
  color: #cfc6b4;
}

/* Gallery + lightbox */
.gallery {
  background: var(--black);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

.gallery-strip__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 0.25rem);
  justify-self: center;
}

.gallery-strip__item {
  position: relative;
  min-width: 0;
  min-height: 44px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  padding: 0;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 3.5rem rgba(10, 10, 10, 0.48);
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.72) contrast(1.18) brightness(0.82);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 3, 3, 0.94);
  cursor: zoom-out;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(94vw, 92rem);
  height: min(92vh, 92dvh);
  margin: 4vh auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
}

.lightbox__figure {
  min-width: 0;
  max-height: 88vh;
  margin: 0;
  text-align: center;
}

.lightbox__figure img {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  margin-inline: auto;
  object-fit: contain;
  border: 1px solid var(--gold-line);
}

.lightbox__figure figcaption {
  margin-top: 0.65rem;
  color: var(--bone);
  font-size: 0.82rem;
}

.lightbox__close,
.lightbox__nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold-light);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 1.7rem;
}

.lightbox__nav {
  font-size: 1.3rem;
}

/* CTA + Footer */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 7rem);
  border-block: 1px solid var(--gold-line);
  background:
    linear-gradient(90deg, rgba(122, 20, 24, 0.22), transparent 30%, transparent 70%, rgba(122, 20, 24, 0.18)),
    var(--charcoal);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.cta-band__inner .section-title {
  margin-bottom: 0;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer {
  padding-top: clamp(3rem, 6vw, 5rem);
  background: #060606;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold-light);
  line-height: 0.8;
}

.site-footer__brand span {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
}

.site-footer__brand small {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__contact p {
  margin-bottom: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.site-footer__social a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--bone);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1.2rem calc(1.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(212, 175, 55, 0.11);
  color: #857d6f;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
}

/* About */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem);
  border-bottom: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 50% 32%, rgba(122, 20, 24, 0.2), transparent 27rem),
    var(--black);
}

.page-hero__texture,
.booking-hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%);
  background-size: 92px 54px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__inner p:last-child {
  max-width: 48rem;
  margin-inline: auto;
  color: #c8c0b0;
}

.page-hero__ornament {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  width: min(84vw, 34rem);
  color: var(--gold);
  transform: translateX(-50%);
  opacity: 0.52;
}

.page-hero__ornament svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.story__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.story__copy p:not(.eyebrow) {
  color: #cfc7b7;
}

.members {
  position: relative;
  overflow: hidden;
}

.members::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(140, 106, 30, 0.1), transparent 32rem);
}

.members__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.member-card {
  min-width: 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: var(--black);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.member-card__frame {
  position: relative;
  margin: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
}

.member-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.48);
  pointer-events: none;
}

.member-card__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.22) saturate(0.68) contrast(1.22) brightness(0.83);
}

.member-card__corner {
  position: absolute;
  z-index: 2;
  width: 3.7rem;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.1;
  opacity: 0.76;
}

.member-card__corner--tl {
  top: 0.35rem;
  left: 0.35rem;
}

.member-card__corner--br {
  right: 0.35rem;
  bottom: 0.35rem;
  transform: rotate(180deg);
}

.member-card__body {
  padding: 1rem 1.2rem 1.6rem;
  text-align: center;
}

.member-card__body h3 {
  margin-bottom: 0.25rem;
  font-family: var(--display);
  color: var(--gold-light);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.member-card__role {
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.member-card__body p:last-child {
  margin-inline: auto;
  color: #bcb4a5;
  font-size: 0.93rem;
}

.events {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 65%, rgba(212, 175, 55, 0.08), transparent 22rem),
    var(--black);
}

.events__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.events__copy p:last-child {
  color: #cfc7b7;
}

.events__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold-line);
}

.events__list span {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold-line);
  color: var(--bone);
  font-weight: 600;
}

.events__list span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.8rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.events__agave {
  width: min(70vw, 15rem);
  margin-inline: auto;
  color: var(--gold);
  opacity: 0.42;
}

/* Booking */
.booking-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(5.5rem, 12vw, 9rem);
  border-bottom: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 50% 30%, rgba(122, 20, 24, 0.22), transparent 28rem),
    var(--black);
}

.booking-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-hero__lead {
  margin-inline: auto;
  color: #c9c1b1;
}

.booking-hero__phone {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  margin-block: clamp(0.5rem, 2vw, 1rem);
  color: var(--gold-light);
  background:
    linear-gradient(110deg, var(--gold-deep), var(--gold-light) 46%, var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--body);
  font-size: clamp(2rem, 8.6vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.12));
  white-space: nowrap;
}

.booking-hero__note {
  max-width: 42rem;
  margin: 0.8rem auto 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.booking-hero__filigree {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: min(90vw, 43rem);
  color: var(--gold);
  transform: translateX(-50%);
  opacity: 0.5;
}

.booking-hero__filigree svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.booking {
  background:
    radial-gradient(circle at 12% 15%, rgba(140, 106, 30, 0.08), transparent 25rem),
    var(--black);
}

.booking__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.booking__aside {
  color: #c9c1b1;
}

.booking__aside strong {
  color: var(--bone);
}

.booking__aside-rule {
  width: min(100%, 15rem);
  height: 1px;
  margin-block: 2rem;
  background: linear-gradient(to right, var(--gold), transparent);
}

.booking__form-wrap {
  min-width: 0;
}

.booking-form {
  position: relative;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--gold-line);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 28%),
    var(--charcoal);
  box-shadow: inset 0 0 0 6px var(--black), inset 0 0 0 7px rgba(212, 175, 55, 0.12);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  padding: 0.78rem 0.85rem;
  color: var(--bone);
  background: #0d0c0a;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 21px,
    calc(100% - 11px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6f685d;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-light);
  outline: 1px solid var(--gold-light);
  outline-offset: 1px;
}

.form-field [aria-invalid="true"] {
  border-color: #d26567;
}

.form-error {
  min-height: 1.3em;
  margin: 0.35rem 0 0;
  color: #ef9b9d;
  font-size: 0.75rem;
  line-height: 1.35;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form__footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1.25rem;
}

.booking-form__required {
  margin: 0;
  color: #8e8679;
  font-size: 0.73rem;
}

.button--submit {
  width: 100%;
}

.form-status {
  min-height: 1.5em;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.85rem;
}

.form-status.is-error {
  color: #ef9b9d;
}

.form-status a {
  color: var(--gold-light);
}

.booking-success {
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--gold-line);
  text-align: center;
  background: var(--charcoal);
}

.booking-success svg {
  width: 5rem;
  margin: 0 auto 1rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.booking-success h2 {
  margin-bottom: 0.8rem;
  font-family: var(--display);
  color: var(--gold-light);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.booking-success p:not(.eyebrow) {
  margin-inline: auto;
  color: #c7bfae;
}

.booking-success .button {
  margin-top: 1rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gold-shimmer {
  from { background-position: 160% 0; }
  to { background-position: -80% 0; }
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button--gold:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 12px 34px rgba(212, 175, 55, 0.22);
  }

  .button--outline:hover {
    color: var(--black);
    background: var(--gold-light);
  }

  .text-link:hover {
    color: #fff0b3;
  }

  .gallery-strip__item:hover img {
    transform: scale(1.035);
    filter: sepia(0.12) saturate(0.9) contrast(1.12) brightness(0.92);
  }

  .member-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
  }

  .site-nav a:hover,
  .site-footer a:hover {
    color: var(--gold-light);
  }
}

/* 480px */
@media (min-width: 30rem) {
  .site-header__phone-label {
    display: block;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__actions .button {
    width: auto;
  }

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

  .gallery-strip__item:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }

  .booking-form__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .button--submit {
    width: auto;
  }
}

/* 768px */
@media (min-width: 48rem) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-header__phone {
    justify-self: end;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    min-height: auto;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(0.25rem, 1.4vw, 1.2rem);
    padding: 0;
    background: none;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0.2rem 0.35rem;
    font-size: clamp(0.72rem, 1.3vw, 0.92rem);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .site-nav a[aria-current="page"]::before,
  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    border-bottom: 1px solid var(--gold);
  }

  .site-nav__call,
  .site-nav__ornament {
    display: none;
  }

  .hero__corner {
    top: 2rem;
  }

  .intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .intro__copy {
    order: 1;
  }

  .intro__photo {
    order: 2;
  }

  .music-card {
    grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  }

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

  .show-row__link {
    grid-column: 3;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 72rem;
    margin-inline: auto;
  }

  .gallery-strip__item:nth-child(even) {
    transform: none;
  }

  .cta-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .site-footer__brand {
    align-items: flex-start;
  }

  .site-footer__contact {
    text-align: center;
  }

  .site-footer__social {
    justify-content: flex-end;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .story__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .members__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
  }

  .member-card--cris {
    order: 1;
  }

  .member-card--gabriel {
    order: 2;
  }

  .member-card--jesus {
    order: 3;
  }

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

  .events__agave {
    display: none;
  }

  .booking__grid {
    grid-template-columns: minmax(13rem, 0.62fr) minmax(0, 1.38fr);
  }

  .booking__aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

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

  .form-field--wide {
    grid-column: 1 / -1;
  }
}

/* 1024px */
@media (min-width: 64rem) {
  .site-header__brand {
    max-width: none;
  }

  .site-header__brand-main {
    font-size: 2.15rem;
  }

  .site-header__phone {
    font-size: 0.9rem;
  }

  .hero__content {
    padding-block: 7rem 9rem;
  }

  .intro__grid {
    grid-template-columns: 0.28fr minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .intro__ornament {
    display: block;
    width: min(100%, 11rem);
    justify-self: center;
  }

  .intro__copy {
    order: initial;
  }

  .intro__photo {
    order: initial;
  }

  .events__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr) 0.45fr;
  }

  .events__agave {
    display: block;
  }
}

/* 1440px */
@media (min-width: 90rem) {
  :root {
    --shell: min(90vw, 1600px);
  }

  .hero__media img {
    object-position: center 32%;
  }

  .members__grid {
    gap: 2.5rem;
  }
}

/* 1920px+ */
@media (min-width: 120rem) {
  :root {
    --section-space: clamp(7rem, 7vw, 10rem);
  }

  .hero__content {
    max-width: 1600px;
  }

  .hero__corner {
    width: 14rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__media {
    transform: scale(1.04);
  }

  .gallery-strip__item:nth-child(even) {
    transform: none;
  }
}

/* Mobile home hero and gallery. */
@media (max-width: 47.99rem) {
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    place-items: initial;
  }

  .hero__content {
    display: contents;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__tagline {
    order: 1;
    width: var(--shell);
    margin-inline: auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero__eyebrow {
    margin-top: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.45rem;
    font-size: clamp(0.56rem, 2.05vw, 0.66rem);
    letter-spacing: 0.13em;
    line-height: 1.3;
  }

  .hero__tagline {
    max-width: 30rem;
    margin-top: 0.45rem;
    margin-bottom: clamp(0.9rem, 3vw, 1.25rem);
    font-size: clamp(0.76rem, 2.8vw, 0.9rem);
    line-height: 1.45;
  }

  .hero__media {
    position: relative;
    inset: auto;
    z-index: 0;
    order: 2;
    width: 100%;
    transform: none;
    will-change: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
  }

  .hero__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero__scrim,
  .hero__texture {
    display: none;
  }


  .hero__actions {
    order: 3;
    width: var(--shell);
    margin: 0 auto;
    padding-block: clamp(1.4rem, 5vw, 2rem) clamp(2.75rem, 9vw, 4rem);
    position: relative;
    z-index: 2;
    background: var(--black);
  }

  .hero__title {
    font-size: clamp(3.6rem, 15vw, 6.35rem);
  }

  .hero__corner {
    top: 0.75rem;
    width: clamp(5rem, 22vw, 7.25rem);
    opacity: 0.32;
  }

  .hero__bottom-rule {
    display: none;
  }

  .gallery-strip {
    grid-template-columns: minmax(0, 1fr);
    max-width: 32rem;
    margin-inline: auto;
  }

  .gallery-strip__item:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }
}

/* Two-line hero wordmark hierarchy. */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.hero__title::after {
  content: none;
}

.hero__title-main,
.hero__title-sub {
  position: relative;
  display: block;
  width: fit-content;
  color: var(--gold-light);
  background:
    linear-gradient(105deg, var(--gold-deep) 0%, var(--gold) 22%, var(--gold-light) 45%, #fff0b3 50%, var(--gold) 61%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title-main::after,
.hero__title-sub::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 249, 205, 0.92) 49%, transparent 57%);
  background-size: 240% 100%;
  background-position: 160% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  animation: gold-shimmer 1.55s 0.65s var(--ease) 1 both;
}

.hero__title-sub {
  margin-top: -0.04em;
  font-size: 0.6em;
  line-height: 0.92;
}

@media (max-width: 47.99rem) {
  .hero__title {
    font-size: clamp(3.35rem, 14vw, 5.75rem);
    line-height: 0.72;
  }

  .hero__title-sub {
    font-size: 0.62em;
  }
}

@media (min-width: 48rem) {
  .hero__title {
    max-width: 12ch;
    font-size: clamp(5.4rem, 10vw, 9.5rem);
    line-height: 0.7;
  }

  .hero__title-sub {
    font-size: 0.58em;
  }
}
