:root {
  --black: #080705;
  --charcoal: #171513;
  --charcoal-2: #211d18;
  --cream: #f7efdf;
  --cream-soft: #e6dac4;
  --brown: #7b4e25;
  --brown-dark: #3b2515;
  --gold: #c69a48;
  --gold-soft: #e2c078;
  --line: rgba(226, 192, 120, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  background:
    radial-gradient(circle at top, rgba(123, 78, 37, 0.32), transparent 34rem),
    linear-gradient(180deg, var(--black), #120f0c 42rem, var(--charcoal));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: var(--gold-soft);
  text-underline-offset: 0.22em;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  background: var(--cream);
  color: var(--black);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(8, 7, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.nav-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
  color: var(--cream-soft);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--black);
  background: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
}

.nav-toggle-bar::before {
  transform: translateY(-7px);
}

.nav-toggle-bar::after {
  transform: translateY(5px);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem 4rem;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(980px, 100%);
  text-align: center;
}

.hero-logo {
  width: min(390px, 82vw);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: var(--cream-soft);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.button,
.social-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--gold-soft);
  color: var(--black);
  background: var(--gold-soft);
}

.button:hover,
.button:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--cream);
  color: var(--black);
  background: var(--cream);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.shows-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.shows-list {
  display: grid;
  gap: 1rem;
}

.show-card,
.contact-card,
.gallery figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 223, 0.055);
  box-shadow: var(--shadow);
}

.show-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) 1fr;
  gap: 1rem;
  padding: 1.2rem;
}

.show-date {
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.show-details h3 {
  margin-bottom: 0.25rem;
}

.show-details p,
.empty-shows {
  margin-bottom: 0;
  color: var(--cream-soft);
}

.show-city {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.split-section p {
  color: var(--cream-soft);
  font-size: 1.12rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quick-links a {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(123, 78, 37, 0.28), rgba(255, 255, 255, 0.04));
  text-decoration: none;
}

.quick-links span {
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-links strong {
  font-size: 1.45rem;
}

.page-hero {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 720px;
  color: var(--cream-soft);
  font-size: 1.15rem;
}

.content-section {
  max-width: 860px;
}

.content-section p {
  color: var(--cream-soft);
  font-size: 1.08rem;
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.85rem 1rem;
  color: var(--cream-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact-hero a {
  font-weight: 700;
}

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

.contact-card {
  padding: 1.2rem;
}

.contact-card p {
  color: var(--cream-soft);
}

.big-email {
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  word-break: break-word;
}

.form-card {
  grid-column: 1 / -1;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(8, 7, 5, 0.7);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.site-footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--cream-soft);
  text-align: center;
  background: rgba(8, 7, 5, 0.78);
}

.site-footer p {
  margin-bottom: 0.25rem;
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    min-height: 68px;
  }

  .nav-brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 0.8rem;
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .nav-links a {
    justify-content: center;
    border: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .show-card,
  .split-section,
  .quick-links,
  .gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 112px;
  }
}
