:root {
  --paper: #e4cf9a;
  --paper-light: #f4e6c1;
  --paper-deep: #b78943;
  --ink: #14130f;
  --charcoal: #201913;
  --pine: #143528;
  --lake: #214e58;
  --barn: #7f2d25;
  --marigold: #c28729;
  --cream: #f8edd0;
  --muted: #5a5142;
  --line: rgba(23, 26, 21, 0.2);
  --shadow: 0 26px 50px rgba(36, 27, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(20, 19, 15, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(127, 45, 37, 0.22), transparent 20rem),
    linear-gradient(180deg, var(--paper-light), var(--paper) 52%, #c6a462);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgba(23, 26, 21, 0.16) 6px),
    repeating-linear-gradient(90deg, transparent 0, transparent 7px, rgba(158, 56, 44, 0.16) 8px);
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

code {
  font-family: "Special Elite", ui-monospace, monospace;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 3px solid var(--ink);
  background: rgba(248, 237, 208, 0.96);
  box-shadow: 0 8px 0 rgba(23, 26, 21, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1;
}

.brand small {
  color: var(--barn);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border: 2px solid transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.social-nav {
  position: relative;
}

.social-nav summary {
  display: block;
  padding: 0.55rem 0.85rem;
  border: 2px solid transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.social-nav summary::-webkit-details-marker {
  display: none;
}

.social-nav summary::after {
  content: " +";
}

.social-nav[open] summary {
  border-color: var(--ink);
  background: var(--marigold);
  box-shadow: 3px 3px 0 var(--ink);
}

.social-nav[open] summary::after {
  content: " -";
}

.social-nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  display: grid;
  min-width: 12rem;
  padding: 0.55rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.social-nav-menu a {
  display: block;
}

.site-nav a:hover,
body[data-page="shows"] [data-nav-page="shows"],
body[data-page="about"] [data-nav-page="about"],
body[data-page="media"] [data-nav-page="media"],
body[data-page="booking"] [data-nav-page="booking"] {
  border-color: var(--ink);
  background: var(--marigold);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--ink);
}

.next-show-banner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--charcoal);
  color: var(--cream);
  text-decoration: none;
}

.next-show-label {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0.58rem clamp(0.85rem, 2.5vw, 1.25rem);
  border-right: 3px solid var(--ink);
  background: var(--barn);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.next-show-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: clamp(0.92rem, 2.6vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: next-show-crawl 18s linear infinite;
}

.next-show-track span {
  padding: 0.58rem 1.25rem;
  white-space: nowrap;
}

.next-show-banner:hover .next-show-track {
  animation-play-state: paused;
}

@keyframes next-show-crawl {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .next-show-track {
    animation: none;
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-family: Ultra, "Source Serif 4", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(3.35rem, 8.4vw, 7.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.poster-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.34rem 0.48rem 0.25rem;
  border: 2px solid var(--ink);
  background: var(--barn);
  color: var(--cream);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-0.5deg);
}

.poster-kicker {
  color: var(--cream) !important;
}

.home-hero {
  display: grid;
  min-height: calc(100vh - 5rem);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  max-width: 48rem;
}

.hero-copy p:not(.poster-kicker),
.sub-hero-copy p,
.feature-panel p,
.media-tease p,
.story-copy p,
.booking-copy p,
.booking-copy li,
.instagram-callout p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p:not(.poster-kicker) {
  max-width: 40rem;
  margin-top: 1.15rem;
  color: #353225;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--pine);
  color: var(--cream);
}

.button.secondary {
  background: var(--marigold);
}

.button:hover {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-art {
  min-width: 0;
}

.photo-stack {
  position: relative;
  min-height: clamp(24rem, 46vw, 39rem);
}

.photo-card {
  position: absolute;
  border: 4px solid var(--ink);
  background-color: var(--pine);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(22, 60, 47, 0.28), rgba(158, 56, 44, 0.28)),
    repeating-linear-gradient(45deg, transparent 0, transparent 9px, rgba(255, 248, 230, 0.08) 10px);
}

.photo-card-one {
  inset: 0 12% 14% 0;
  background-image: url("/assets/home/black-white-performance.jpg");
  transform: rotate(-3deg);
}

.photo-card-two {
  inset: 48% 0 0 34%;
  background-image: url("/assets/home/rooftop-jam.jpg");
  transform: rotate(4deg);
}

.home-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-block: 3px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 19, 15, 0.94), rgba(32, 25, 19, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px);
  color: var(--cream);
}

.home-strip span {
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.home-strip span::before {
  content: "* ";
  color: var(--marigold);
}

.feature-row,
.story-layout,
.booking-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.feature-panel,
.media-tease,
.booking-form,
.instagram-callout,
.cms-note {
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.feature-panel {
  display: grid;
  min-height: 25rem;
  align-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.dark-panel {
  background:
    linear-gradient(rgba(22, 60, 47, 0.92), rgba(22, 60, 47, 0.92)),
    url("/assets/gallery/jam-close.jpg") center/cover;
  color: var(--cream);
}

.dark-panel p,
.dark-panel .text-link {
  color: rgba(255, 248, 230, 0.82);
}

.show-preview {
  background:
    linear-gradient(rgba(183, 137, 67, 0.88), rgba(183, 137, 67, 0.9)),
    url("/assets/logo/lake-effect-old-poster.png") right -5rem top -9rem / 22rem auto no-repeat,
    repeating-linear-gradient(0deg, rgba(20, 19, 15, 0.1) 0 1px, transparent 1px 9px);
  overflow: hidden;
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.board-head img {
  width: clamp(4rem, 12vw, 6.5rem);
  margin-top: -0.6rem;
  filter: drop-shadow(4px 4px 0 var(--ink));
  transform: rotate(5deg);
}

.mini-shows {
  display: grid;
  gap: 0.8rem;
}

.mini-show {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border: 2px solid var(--ink);
  background: rgba(248, 237, 208, 0.88);
  box-shadow: 4px 4px 0 rgba(20, 19, 15, 0.7);
}

.mini-show time {
  display: grid;
  min-height: 4.2rem;
  place-items: center;
  padding: 0.45rem;
  border: 2px solid var(--ink);
  background: var(--barn);
  color: var(--cream);
  font-family: "Special Elite", ui-monospace, monospace;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.mini-show strong,
.mini-show span {
  display: block;
}

.mini-show strong {
  font-size: 1.05rem;
}

.mini-show span {
  margin-top: 0.25rem;
}

.media-tease {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 clamp(1rem, 4vw, 3rem) clamp(2.5rem, 6vw, 5.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--lake);
  color: var(--cream);
}

.media-tease p {
  color: rgba(255, 248, 230, 0.78);
}

.sub-hero {
  display: grid;
  min-height: 48vh;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  border-bottom: 3px solid var(--ink);
}

.sub-hero-copy {
  max-width: 52rem;
}

.sub-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7.8vw, 7.2rem);
}

.sub-hero-copy p:not(.poster-kicker) {
  max-width: 42rem;
  margin-top: 1rem;
  color: #393529;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.sub-hero-photo {
  min-height: clamp(18rem, 31vw, 28rem);
  border: 4px solid var(--ink);
  background-color: var(--pine);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.sub-hero-photo::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(135deg, rgba(22, 60, 47, 0.22), rgba(127, 45, 37, 0.22)),
    repeating-linear-gradient(45deg, transparent 0, transparent 9px, rgba(255, 248, 230, 0.08) 10px);
}

.show-photo {
  background-image: url("/assets/gallery/live-full-band.jpg");
}

.about-photo {
  background-image: url("/assets/gallery/new-group-photo.jpg");
  background-position: center 42%;
}

.media-photo {
  background-image: url("/assets/home/black-white-performance.jpg");
}

.section {
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.section.tight {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.section-label {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shows-grid.full {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.show-card {
  display: grid;
  min-height: 18rem;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.show-card:nth-child(2n) {
  background: #d2ae64;
}

.show-card:nth-child(3n) {
  background: #b9c3a8;
}

.show-card time {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--barn);
  color: var(--cream);
  transform: rotate(-3deg);
}

.show-card time span {
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.show-card time strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.show-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.text-link {
  color: var(--barn);
  font-weight: 900;
}

.cms-note {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--paper-light);
}

.story-layout {
  align-items: center;
}

.band-intro {
  grid-template-columns: minmax(0, 0.78fr);
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: 0;
}

.simple-intro {
  justify-content: center;
}

.story-photo {
  min-height: 32rem;
  border: 4px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(22, 60, 47, 0.55), rgba(158, 56, 44, 0.38)),
    url("/assets/gallery/live-full-band.jpg") center/cover;
  box-shadow: 8px 8px 0 var(--ink);
  filter: saturate(0.85) contrast(1.12);
  transform: rotate(-0.5deg);
}

.story-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.member-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: 1rem;
}

.member-card {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  gap: 1rem;
  align-items: stretch;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.member-card:nth-child(2n) {
  background: #d2ae64;
}

.member-card:nth-child(3n) {
  background: #b9c3a8;
}

.member-card img {
  width: 100%;
  height: clamp(15rem, 28vw, 24rem);
  object-fit: cover;
  object-position: 50% 28%;
  border-right: 0;
  border-bottom: 3px solid var(--ink);
  filter: grayscale(0.18) saturate(0.82) contrast(1.14);
}

.member-photo-placeholder {
  display: grid;
  width: 100%;
  min-height: clamp(15rem, 28vw, 24rem);
  place-items: center;
  padding: 1rem;
  border-bottom: 3px solid var(--ink);
  background:
    linear-gradient(rgba(20, 53, 40, 0.82), rgba(20, 53, 40, 0.82)),
    url("/assets/logo/lake-effect-badge.png") center/46% no-repeat,
    var(--pine);
  color: var(--cream);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.member-card:nth-child(2) img {
  object-position: 18% 34%;
}

.member-card:nth-child(4) img {
  object-position: 44% 22%;
}

.member-card:nth-child(5) img {
  object-position: 42% 20%;
}

.member-card-copy {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
}

.member-card-copy p:not(.instrument) {
  color: #4c4537;
  overflow-wrap: anywhere;
}

.instrument {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.28rem 0.42rem 0.2rem;
  border: 2px solid var(--ink);
  background: var(--barn);
  color: var(--cream);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-1deg);
  overflow-wrap: anywhere;
}

.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.member-list span {
  padding: 0.5rem 0.72rem;
  border: 2px solid var(--ink);
  background: var(--marigold);
  color: var(--ink);
  font-family: "Special Elite", ui-monospace, monospace;
  font-weight: 800;
}

.photo-roll {
  display: grid;
  gap: 1rem;
}

.photo-feature,
.photo-grid figure {
  margin: 0;
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.55fr);
  align-items: stretch;
}

.photo-feature img,
.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.photo-feature img {
  min-height: clamp(18rem, 38vw, 30rem);
  border-right: 4px solid var(--ink);
}

.photo-feature figcaption {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(rgba(20, 53, 40, 0.93), rgba(20, 53, 40, 0.93)),
    repeating-linear-gradient(0deg, rgba(255, 248, 230, 0.08) 0 1px, transparent 1px 9px);
  color: var(--cream);
}

.photo-feature figcaption strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.photo-feature figcaption span {
  color: rgba(248, 237, 208, 0.78);
}

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

.photo-grid figure {
  min-height: clamp(14rem, 30vw, 24rem);
}

.video-section {
  display: grid;
  gap: 1rem;
}

.compact-label {
  gap: 0.55rem;
}

.video-grid {
  display: grid;
  gap: 1rem;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.video-frame {
  position: relative;
  min-height: 16rem;
  aspect-ratio: 16 / 9;
  border-right: 4px solid var(--ink);
  background: var(--charcoal);
}

.video-copy {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #d2ae64;
}

.video-copy h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.video-poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
}

.video-poster::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(rgba(20, 53, 40, 0.22), rgba(20, 19, 15, 0.48));
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.12);
  transition: transform 180ms ease, filter 180ms ease;
}

.video-poster span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(5.2rem, 14vw, 7rem);
  height: clamp(5.2rem, 14vw, 7rem);
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--barn);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Special Elite", ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.video-poster:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.18);
}

.small-gallery {
  margin-top: clamp(1.4rem, 4vw, 2.5rem);
}

.small-gallery .photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.small-gallery .photo-grid figure {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.instagram-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.instagram-callout h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.booking-section {
  align-items: start;
  min-height: calc(100vh - 5rem);
}

.page-form-layout {
  border-bottom: 3px solid var(--ink);
}

.booking-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.booking-copy p {
  max-width: 35rem;
  margin-top: 1rem;
  color: #393529;
}

.booking-copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--paper-light);
}

.booking-form label {
  display: grid;
  gap: 0.32rem;
  color: #353225;
  font-weight: 900;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 3rem);
  border-top: 3px solid var(--ink);
  background: var(--charcoal);
  color: var(--cream);
}

.site-footer p {
  margin-top: 0.3rem;
  color: rgba(255, 248, 230, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    width: min(19rem, calc(100vw - 2rem));
    padding: 0.65rem;
    flex-direction: column;
    align-items: stretch;
    border: 3px solid var(--ink);
    background: var(--cream);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .social-nav {
    width: 100%;
  }

  .social-nav summary {
    width: 100%;
  }

  .social-nav-menu {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    padding-left: 1rem;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .home-hero,
  .sub-hero,
  .feature-row,
  .story-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: -1;
  }

  .sub-hero-photo {
    min-height: 18rem;
    transform: rotate(0deg);
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5.55rem);
  }

  .photo-stack {
    min-height: 25rem;
  }

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

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

  .media-tease,
  .instagram-callout,
  .social-actions,
  .site-footer,
  .cms-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-feature {
    grid-template-columns: 1fr;
  }

  .photo-feature img {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

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

  .video-card {
    grid-template-columns: 1fr;
  }

  .video-frame {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .home-hero,
  .sub-hero,
  .feature-row,
  .story-layout,
  .booking-section,
  .section,
  .page-head {
    padding-inline: 0.85rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .next-show-track {
    animation-duration: 13s;
  }

  .photo-card-one {
    inset: 0 5% 18% 0;
  }

  .photo-card-two {
    inset: 52% 0 0 18%;
  }
}
