:root {
  --earth: #59452e;
  --earth-2: #7f5f38;
  --clay: #b96847;
  --moss: #52623b;
  --leaf: #83925e;
  --cream: #edf3e8;
  --paper: #fffdf7;
  --ink: #211b16;
  --muted: #746a60;
  --line: rgba(89, 69, 46, 0.16);
  --shadow: 0 24px 70px rgba(46, 34, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(38, 29, 21, 0.38);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 14px 38px rgba(49, 35, 22, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fff4d9;
  color: var(--earth);
  font-weight: 800;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(89, 69, 46, 0.09);
}

.site-nav .nav-ticket {
  background: #fff4d9;
  color: var(--earth);
  opacity: 1;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 160px 0 56px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 20, 14, 0.82), rgba(24, 20, 14, 0.42) 48%, rgba(24, 20, 14, 0.18)),
    linear-gradient(0deg, rgba(24, 20, 14, 0.74), rgba(24, 20, 14, 0) 45%);
}

.hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f8d886;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

h1,
h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 7.9rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

p {
  line-height: 1.68;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: #f8d886;
  color: #332514;
  box-shadow: 0 18px 34px rgba(248, 216, 134, 0.25);
}

.button.secondary {
  background: var(--earth);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost-dark {
  border-color: var(--line);
  color: var(--earth);
  background: rgba(255, 250, 242, 0.55);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 790px;
  margin: 56px 0 0;
}

.hero-facts div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  font-size: 1.16rem;
  font-weight: 800;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.place-grid,
.order-grid,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.intro-text p,
.section-head p,
.place-grid p,
.order-copy p,
.join-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(131, 146, 94, 0.1);
  color: var(--moss);
  font-weight: 800;
}

.section-head {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 32px;
  align-items: end;
}

.program {
  background: #e6edd8;
}

.day-tabs {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(89, 69, 46, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.58);
}

.day-tab {
  min-width: 92px;
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--earth);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.day-tab.active {
  background: var(--earth);
  color: #fff;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.schedule-card,
.ticket-card,
.artist-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 14px 34px rgba(49, 35, 22, 0.08);
}

.schedule-card {
  padding: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.schedule-card span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--clay);
  font-weight: 900;
}

.schedule-card.muted {
  opacity: 0.48;
}

.schedule-list {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  gap: 5px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.schedule-list strong {
  color: var(--earth);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.schedule-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.program-posters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.program-posters img,
.place-media img,
.photo-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tickets,
.artists {
  background: var(--paper);
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  gap: 16px;
}

.ticket-card {
  display: flex;
  min-height: 306px;
  flex-direction: column;
  padding: 24px;
}

.ticket-card.featured {
  background: var(--earth);
  color: #fff;
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 32px;
}

.ticket-top span,
.ticket-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-card.featured .ticket-top span,
.ticket-card.featured small,
.ticket-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.ticket-top strong {
  color: var(--clay);
}

.ticket-card.featured .ticket-top strong {
  color: #f8d886;
}

.ticket-card p {
  color: var(--muted);
}

.price {
  margin: auto 0 18px;
  color: var(--earth);
  font-size: 1.45rem;
  font-weight: 900;
}

.ticket-card.featured .price {
  color: #fff;
}

.price s {
  margin-right: 8px;
  color: inherit;
  opacity: 0.46;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: auto;
  color: var(--clay);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.ticket-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.ticket-notes p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff6ea;
}

.order {
  background: #e2eeea;
}

.order-grid {
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 124px;
}

.fapi-panel {
  min-height: 620px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.place {
  background: #f1e7d8;
}

.place-media {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
}

.place-media img {
  aspect-ratio: 4 / 5;
}

.place-media img:nth-child(2) {
  margin-top: 54px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-list span {
  color: var(--muted);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.artist-grid article {
  overflow: hidden;
}

.artist-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.artist-grid h3,
.artist-grid p {
  padding: 0 16px;
}

.artist-grid h3 {
  margin-top: 16px;
}

.artist-grid p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery {
  background: #eef3e8;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.photo-grid img {
  height: 430px;
}

.photo-grid img:nth-child(2) {
  height: 360px;
  margin-top: 70px;
}

.join {
  background: var(--moss);
  color: #fff;
}

.join .eyebrow,
.join p {
  color: rgba(255, 255, 255, 0.72);
}

.join-grid {
  grid-template-columns: 1fr auto;
}

.site-footer {
  padding: 70px 0 30px;
  background: #211b16;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-grid h2 {
  font-size: 2.2rem;
}

.footer-grid p,
.fineprint {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a,
.footer-grid strong {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a {
  color: #f8d886;
}

.fineprint {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 0;
  font-size: 0.82rem;
}

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: #f8d886;
  color: #332514;
  box-shadow: 0 16px 36px rgba(33, 27, 22, 0.22);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 70px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
    color: inherit;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.97);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 128px;
  }

  .hero-facts,
  .intro-grid,
  .place-grid,
  .order-grid,
  .join-grid,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 36px;
  }

  .schedule,
  .ticket-notes,
  .program-posters,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .order-copy {
    position: static;
  }

  .photo-grid img,
  .photo-grid img:nth-child(2) {
    height: auto;
    margin-top: 0;
  }

  .join-grid {
    gap: 24px;
  }

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

  .sticky-buy {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-facts,
  .ticket-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 78px;
  }

  .place-media {
    grid-template-columns: 1fr;
  }

  .place-media img:nth-child(2) {
    margin-top: 0;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fapi-panel {
    padding: 10px;
  }
}
