:root {
  --ink: #171311;
  --ink-soft: #322d29;
  --paper: #eee9de;
  --paper-bright: #faf7f0;
  --paper-dark: #d9d2c4;
  --wine: #8b1821;
  --wine-dark: #5c0d14;
  --sage: #727d65;
  --line: rgba(23, 19, 17, 0.2);
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --wordmark: "UnifrakturCook", "Old English Text MT", serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background:
    radial-gradient(circle at 15% 22%, #000 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 73% 68%, #000 0 0.6px, transparent 0.9px);
  background-size: 5px 5px, 7px 7px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--paper-bright);
  background: var(--wine);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: -999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--wine);
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0.7rem clamp(1rem, 3vw, 3rem);
  color: var(--paper-bright);
  background: rgba(16, 13, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.95rem;
}

.brand__name {
  font-family: var(--wordmark);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand__descriptor {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.67rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2rem);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #dcc5ae;
}

.site-nav__booking {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper-bright);
  background: #15100f;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-color: #0d0b0a;
  background-image: url("../images/hero-black-shirt.jpg");
  background-position: 78% center;
  background-repeat: no-repeat;
  background-size: auto 106%;
  filter: saturate(0.85) contrast(1.07);
  transform: scale(1.008);
  animation: hero-arrive 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__veil {
  background:
    linear-gradient(
      90deg,
      #0d0b0a 0%,
      #0d0b0a 48%,
      rgba(13, 11, 10, 0.98) 52%,
      rgba(13, 11, 10, 0.72) 55%,
      rgba(13, 11, 10, 0.25) 59%,
      rgba(13, 11, 10, 0.04) 63%,
      transparent 67%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.76) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(43rem, 49vw);
  min-height: 100svh;
  padding: 9rem 3rem 6rem clamp(1.25rem, 7vw, 7rem);
  animation: copy-arrive 800ms 180ms ease both;
}

.kicker,
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
}

.kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--wordmark);
  font-size: clamp(6rem, 10vw, 9.75rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.025em;
  text-transform: none;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button--light:hover {
  background: #e7dfd1;
}

.button--outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.08);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--wine);
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -5.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.marquee {
  overflow: hidden;
  padding: 1.1rem 0 1.25rem;
  color: var(--paper-bright);
  background: var(--wine);
  border-block: 1px solid var(--wine-dark);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.marquee__track i {
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
  opacity: 0.55;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 3rem);
}

.section__heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__heading--line {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.section__heading--line > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.section-number {
  margin: 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.section .eyebrow {
  color: var(--wine);
}

.section h2 {
  margin: 0;
  max-width: 930px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6.3rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section__heading--line .eyebrow {
  margin-bottom: 0.55rem;
}

.section__heading--line h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.no-shows {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.9fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper-bright);
  background: var(--ink-soft);
}

.no-shows__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 0.95;
}

.no-shows > p:not(.no-shows__title) {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.no-shows .button--dark {
  color: var(--ink);
  background: var(--paper-bright);
}

.show-list {
  border-top: 1px solid var(--line);
}

.show-row {
  display: grid;
  grid-template-columns: 7rem 1.2fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.show-row__date {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.show-row__date span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.show-row__date strong {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
}

.show-row h3,
.show-row p {
  margin: 0;
}

.show-row h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.show-row__place p,
.show-row__note {
  margin-top: 0.2rem;
  color: #706963;
  font-size: 0.9rem;
}

.show-row__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.show-row__link--muted {
  color: #837d75;
}

.section--about {
  display: block;
  max-width: var(--max);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  background: var(--paper-bright);
}

.about-photo-wrap {
  position: relative;
  min-height: 760px;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 52% center;
  filter: grayscale(0.38) contrast(1.04);
}

.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(18, 12, 10, 0.7));
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.6rem;
  left: 1.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.about-copy {
  max-width: 900px;
  padding: 0;
}

.about-copy .section-number {
  margin-bottom: 3rem;
}

.about-copy h2 {
  font-family: var(--sans);
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-copy p:not(.section-number, .eyebrow) {
  max-width: 63ch;
  color: #5e5751;
  font-size: 1rem;
  line-height: 1.8;
}

.section--songs {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.songs-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.songs-intro .section-number {
  margin-bottom: 3rem;
}

.songs-intro h2 {
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.songs-intro > p:last-child {
  max-width: 48ch;
  margin-top: 2rem;
  color: #665f59;
  line-height: 1.8;
}

.song-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.song-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 74px;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.song-list span {
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.song-list strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
}

.section--booking {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  max-width: none;
  color: var(--paper-bright);
  background: var(--wine);
}

.booking-copy {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}

.section--booking .section-number,
.section--booking .eyebrow {
  color: #dcc5ae;
}

.booking-copy .section-number {
  margin-bottom: 3rem;
}

.booking-copy h2 {
  font-family: var(--sans);
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.booking-copy > p:not(.section-number, .eyebrow) {
  max-width: 50ch;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.booking-details {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.booking-details p {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.booking-details span {
  color: white;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form-wrap {
  width: 100%;
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--ink);
  background: var(--paper-bright);
}

.booking-form {
  display: grid;
  gap: 1.25rem;
}

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

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

.field label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(23, 19, 17, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 160ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--wine);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9e978f;
}

.booking-form .button {
  justify-self: start;
  margin-top: 0.5rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.form-notice--success {
  color: #264928;
  background: #e2eee0;
}

.form-notice--error {
  color: #72131c;
  background: #f3dddc;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 4vw, 3rem);
  color: var(--paper-bright);
  background: var(--ink);
}

.site-footer__brand {
  display: grid;
  gap: 0.45rem;
}

.site-footer__brand span {
  font-family: var(--wordmark);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.015em;
}

.site-footer__brand small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__meta {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: right;
}

.site-footer__meta p {
  margin: 0.25rem 0;
}

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1.008);
  }
}

@keyframes copy-arrive {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero__image {
    background-position: 88% center;
    background-size: auto 86%;
  }

  .hero__veil {
    background:
      linear-gradient(
        90deg,
        #0d0b0a 0%,
        rgba(13, 11, 10, 0.96) 31%,
        rgba(13, 11, 10, 0.7) 45%,
        rgba(13, 11, 10, 0.18) 62%,
        transparent 76%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.8) 100%);
  }

  .hero__content {
    width: 55vw;
    padding-left: clamp(1.25rem, 5vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(5.3rem, 12.5vw, 7.8rem);
  }

  .no-shows {
    grid-template-columns: 1fr 1fr;
  }

  .no-shows .button {
    justify-self: start;
  }

  .section--about,
  .section--songs,
  .section--booking {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap,
  .about-photo {
    min-height: 72vw;
    max-height: 780px;
  }

  .about-copy {
    padding: 0;
  }

  .songs-intro {
    position: static;
  }

  .booking-copy {
    max-width: 760px;
    margin: 0;
  }

  .booking-form-wrap {
    max-width: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    padding: 0.6rem 1rem;
  }

  .brand__descriptor,
  .site-nav a:not(.site-nav__booking) {
    display: none;
  }

  .brand__name {
    font-size: 1.5rem;
  }

  .site-nav__booking {
    padding: 0.6rem 0.8rem;
  }

  .hero {
    min-height: max(780px, 100svh);
  }

  .hero__image {
    inset: 0;
    background-color: #0d0b0a;
    background-position: 50% 1rem;
    background-size: auto 72%;
    background-repeat: no-repeat;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(13, 11, 10, 0.04) 0%,
        rgba(13, 11, 10, 0.08) 31%,
        rgba(13, 11, 10, 0.56) 49%,
        rgba(13, 11, 10, 0.94) 61%,
        #0d0b0a 71%,
        #0d0b0a 100%
      ),
      linear-gradient(90deg, rgba(13, 11, 10, 0.22), transparent 72%);
  }

  .hero__content {
    justify-content: flex-end;
    width: 100%;
    min-height: max(780px, 100svh);
    padding: 24.5rem 1.25rem 5rem;
  }

  .hero h1 {
    font-size: clamp(5.45rem, 25vw, 7.4rem);
    line-height: 0.78;
  }

  .hero__side-note {
    display: none;
  }

  .hero__scroll {
    right: 1.25rem;
    bottom: 1.5rem;
  }

  .marquee__track {
    gap: 1rem;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .section__heading--line {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.5rem;
  }

  .section__heading--line > div {
    display: block;
  }

  .no-shows {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 1.4rem;
  }

  .show-row {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
  }

  .show-row__note,
  .show-row__link {
    grid-column: 2;
  }

  .about-photo-wrap,
  .about-photo {
    min-height: 128vw;
    max-height: none;
  }

  .about-copy {
    padding: 0;
  }

  .about-copy .section-number,
  .songs-intro .section-number,
  .booking-copy .section-number {
    margin-bottom: 2rem;
  }

  .section--songs {
    gap: 3.5rem;
  }

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

  .section--booking {
    gap: 3rem;
  }

  .booking-form-wrap {
    padding: 1.5rem 1.25rem;
  }

  .site-footer {
    display: grid;
  }

  .site-footer__meta {
    text-align: left;
  }
}

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

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