:root {
  --ink: #1c1718;
  --muted: #6a605d;
  --paper: #f7f2ec;
  --white: #fffdfa;
  --line: rgba(28, 23, 24, 0.13);
  --red: #e10600;
  --red-bright: #ff3328;
  --red-dark: #970803;
  --clock-dark: #231f20;
  --stage-black: #100d0e;
  --shadow: 0 20px 60px rgba(28, 23, 24, 0.16);
  --radius: 8px;
  --header-height: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
  background: rgba(16, 13, 14, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 250, 0.95);
  box-shadow: 0 12px 35px rgba(28, 23, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

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

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 13, 14, 0.92), rgba(16, 13, 14, 0.66) 42%, rgba(16, 13, 14, 0.18)),
    linear-gradient(0deg, rgba(92, 5, 2, 0.52), rgba(16, 13, 14, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, 100%);
  padding: calc(var(--header-height) + 5rem) clamp(1rem, 6vw, 4rem) clamp(3rem, 9vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red-bright);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 14vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 1.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
}

.hero-actions,
.epk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 30px rgba(225, 6, 0, 0.28);
}

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

.button-outline {
  color: var(--clock-dark);
  background: transparent;
  border-color: rgba(35, 31, 32, 0.26);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 3.5rem);
  background: var(--paper);
}

.section-light {
  background: var(--white);
}

.section-accent {
  color: var(--white);
  background: var(--clock-dark);
}

.section-accent .eyebrow {
  color: var(--red-bright);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p:not(.eyebrow),
.copy-stack,
.booking-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-accent .section-heading p:not(.eyebrow),
.section-accent .info-card p {
  color: rgba(255, 255, 255, 0.76);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 1.25rem;
  align-items: stretch;
}

.media-feature {
  margin: 0;
}

.media-photo-link {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-photo-link img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.media-photo-link:hover img,
.media-photo-link:focus-visible img {
  transform: scale(1.025);
}

.media-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.75rem;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.listen-links {
  display: grid;
  gap: 1rem;
}

.listen-links a,
.info-card,
.song-list,
.set-options,
.booking-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.listen-links a {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 1.25rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.listen-links a:hover,
.listen-links a:focus-visible {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateY(-2px);
}

.listen-links span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listen-links strong {
  font-size: 1.4rem;
  line-height: 1.1;
}

.split-layout,
.booking-layout,
.contact-layout,
.epk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 1rem;
}

.copy-stack p {
  margin-bottom: 0;
}

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

.info-card {
  min-height: 220px;
  padding: 1.35rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.repertoire-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 1.25rem;
}

.song-list,
.set-options {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.song-list ul,
.booking-notes {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.song-list li,
.booking-notes li {
  position: relative;
  padding-left: 1.6rem;
}

.song-list li::before,
.booking-notes li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.set-options {
  display: grid;
  gap: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.stat-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-row span {
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 900;
}

.stat-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 13, 14, 0.9), rgba(72, 5, 3, 0.78)),
    linear-gradient(rgba(16, 13, 14, 0.7), rgba(16, 13, 14, 0.7)),
    url("content/Performing/band_photo2.jpeg") center/cover;
}

.booking-section .eyebrow,
.contact-section .eyebrow {
  color: var(--red-bright);
}

.booking-copy p,
.booking-notes {
  color: rgba(255, 255, 255, 0.78);
}

.booking-notes {
  margin-top: 1.5rem;
}

.booking-notes li::before {
  background: var(--red-bright);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  color: var(--ink);
  background: #fbf7f1;
  border: 1px solid rgba(28, 23, 24, 0.16);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.14);
}

.booking-form textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--red-dark);
  font-weight: 800;
}

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

.epk-actions {
  justify-content: flex-start;
}

.epk-brand-kit {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
}

.epk-brand-kit img {
  width: min(220px, 52vw);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(28, 23, 24, 0.12));
}

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

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--stage-black), var(--clock-dark) 70%, #4d0503);
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  font-style: normal;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-card a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.72);
  background: var(--stage-black);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red-bright);
  font-weight: 800;
}

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

@media (max-width: 980px) {
  .site-nav {
    gap: 0.9rem;
    font-size: 0.86rem;
  }

  .media-grid,
  .split-layout,
  .booking-layout,
  .contact-layout,
  .epk-layout,
  .repertoire-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding-inline: 1rem;
    backdrop-filter: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 41;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1.35rem;
    padding: 6rem 1.5rem 2rem;
    color: var(--white);
    font-size: clamp(1.8rem, 9vw, 3.6rem);
    line-height: 1;
    background: rgba(23, 23, 23, 0.96);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-header.is-scrolled .site-nav {
    color: var(--white);
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding: calc(var(--header-height) + 4rem) 1rem 3rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 12, 12, 0.88), rgba(10, 12, 12, 0.34)),
      linear-gradient(90deg, rgba(10, 12, 12, 0.78), rgba(10, 12, 12, 0.16));
  }

  .section {
    padding-inline: 1rem;
  }

  .media-photo-link img {
    min-height: 260px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

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

  .info-card {
    min-height: auto;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .site-footer {
    display: grid;
  }
}
