:root {
  --ink: #1c1914;
  --ink-soft: #3f3a32;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --olive: #2f4a32;
  --olive-deep: #203326;
  --leaf: #4c7a4e;
  --terracotta: #c45c26;
  --gold: #e7c56a;
  --line: rgba(28, 25, 20, 0.12);
  --shadow: 0 24px 60px rgba(32, 51, 38, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

a {
  color: var(--olive);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--olive);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(246, 240, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-weight: 600;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 1.15rem;
}

.nav-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus,
.site-nav a.btn-primary:visited {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
}

.btn-dark {
  background: var(--olive);
  color: #f6f0e4;
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 86vh;
  background: var(--olive-deep);
  color: var(--cream);
}

.hero-copy {
  padding: 8vw 6vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.2rem;
  max-width: 36rem;
  color: rgba(246, 240, 228, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}

.status-card,
.fact {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(246, 240, 228, 0.14);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
}

.status-card strong {
  display: block;
  font-size: 1.15rem;
}

.hero-photo {
  position: relative;
  min-height: 420px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  max-width: 16rem;
  box-shadow: var(--shadow);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.fact {
  background: var(--paper);
  border: 0;
  border-radius: 0;
}

.fact dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin: 0 0 0.35rem;
}

.fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.wrap {
  width: min(var(--max), calc(100% - 12vw));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(36rem, calc(100% - 12vw));
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.2rem 0 0;
}

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

.card,
.panel {
  background: var(--paper);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.card img.faces {
  object-position: 50% 22%;
}

.card-body,
.panel {
  padding: 1.3rem 1.4rem 1.5rem;
}

.card h3,
.panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-top {
  align-items: start;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.6rem;
}

.split img.flyer {
  height: auto;
  max-height: 720px;
  object-fit: contain;
  background: #f4ead4;
  padding: 0.5rem;
}

.notice {
  background: var(--olive);
  color: var(--cream);
  border-radius: 1.6rem;
  padding: 2rem;
}

.notice a {
  color: var(--gold);
}

.band-list {
  display: grid;
  gap: 0.7rem;
}

.band-list div {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 7.5rem 6vw 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(231, 197, 106, 0.35), transparent 32%),
    var(--cream);
}

.page-hero p {
  max-width: 42rem;
  font-size: 1.15rem;
}

.page-hero-center {
  text-align: center;
}

.page-hero-center p {
  margin-inline: auto;
}

.panel > h2:first-child {
  margin-top: 0;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: white;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.4rem;
  padding: 0;
  list-style: none;
}

.vendor-grid li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}

.map-wrap {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.map-wrap iframe,
.map-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.map-wrap .vendor-rows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-legend {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.35rem 0.65rem 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(246, 240, 228, 0.92);
  color: var(--olive-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(32, 51, 38, 0.16);
}

.map-legend-swatch {
  width: 1.15rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(199, 154, 62, 0.72);
  border: 1px solid rgba(47, 74, 50, 0.55);
  box-shadow: inset 0 0 0 1px rgba(231, 197, 106, 0.45);
}

.map-caption {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.map-caption strong {
  color: var(--olive);
}

.site-footer {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 3.5rem 6vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  width: min(var(--max), 100%);
  margin: 0 auto 2rem;
}

.site-footer a {
  color: var(--gold);
}

.tiny {
  font-size: 0.86rem;
  color: rgba(246, 240, 228, 0.72);
}

.photo-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.photo-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.2rem;
}

@media (max-width: 900px) {
  .hero,
  .facts,
  .cards,
  .split,
  .footer-grid,
  .band-list div,
  .photo-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 0.6rem 6vw 1.4rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(32, 51, 38, 0.18);
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a.btn {
    margin-top: 0.85rem;
    justify-content: center;
    border-bottom: 0;
  }

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

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