body {
  background: #eadfc0;
  color: #16110a;
  font-family: Georgia, "Times New Roman", serif;
}

:root {
  --black: #16110a;
  --cream: #eadfc0;
  --parchment: #f2e7cf;
  --charcoal: #2a2215;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.125rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--black);
  text-decoration-thickness: 2px;
}

button,
.button {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  border: 2px solid var(--black);
  padding: 0.75em 1.75em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
.button:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 4px double var(--black);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  padding: 0.9rem 0;
  line-height: 1.2;
}

.brand:hover {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: var(--black);
  color: var(--cream);
  border: 2px solid var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6em 1em;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: inline-block;
  color: var(--charcoal);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 0.85rem;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav-menu a:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: -2px;
}

@media (max-width: 48rem) {
  .nav-wrap {
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .brand {
    padding: 0.5rem 0;
  }

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

  .nav-toggle:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: -2px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-top: 2px double var(--charcoal);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .nav-menu.is-open,
  .nav-menu[data-nav-menu-open="true"] {
    display: flex;
  }

  .nav-menu a {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(42, 34, 21, 0.25);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: var(--cream);
    text-decoration: none;
  }
}

.hero {
  background: var(--parchment);
  border-bottom: 4px double var(--black);
  text-align: center;
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(42, 34, 21, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-inner {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--charcoal);
  border-top: 2px double var(--charcoal);
  border-bottom: 2px double var(--charcoal);
  padding: 0.45em 1.2em;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 0.35em;
  text-shadow: 2px 2px 0 rgba(42, 34, 21, 0.12);
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--charcoal);
}

.hero-divider .star {
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-place {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.hero-dates {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-actions .button {
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 rgba(42, 34, 21, 0.25);
}

.hero-actions .button:hover {
  box-shadow: 1px 1px 0 rgba(42, 34, 21, 0.25);
  transform: translate(2px, 2px);
}

.hero-slogan {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--black);
  border-bottom: 2px double var(--charcoal);
  display: inline-block;
  padding-bottom: 0.5em;
}

@media (max-width: 48rem) {
  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-place {
    font-size: 1rem;
  }

  .hero-dates {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-slogan {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
}

.weekend {
  background: var(--cream);
  padding: 4.5rem 0;
}

.weekend .section-title {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.weekend .section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--charcoal);
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.schedule-card {
  background: var(--parchment);
  border: 3px double var(--black);
  padding: 1.75rem;
  position: relative;
  box-shadow: 4px 4px 0 rgba(42, 34, 21, 0.18);
}

.schedule-card::before {
  content: "•";
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.schedule-kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--charcoal);
  border-bottom: 1px dashed rgba(42, 34, 21, 0.55);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: block;
}

.schedule-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.schedule-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.schedule-card .card-time {
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--black);
  border-top: 1px dashed rgba(42, 34, 21, 0.55);
  padding-top: 0.75rem;
  margin-top: 0.9rem;
}

.schedule-card--dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.schedule-card--dark .schedule-kicker,
.schedule-card--dark p {
  color: var(--cream);
  border-color: rgba(234, 223, 192, 0.45);
}

.schedule-card--dark h3 {
  color: var(--cream);
}

.schedule-card--dark .card-time {
  color: var(--cream);
  border-color: rgba(234, 223, 192, 0.45);
}

.tickets {
  background: var(--parchment);
  border-top: 4px double var(--black);
  border-bottom: 4px double var(--black);
  padding: 4.5rem 0;
}

.tickets .section-title {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.tickets .section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--charcoal);
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.ticket-card {
  background: var(--cream);
  border: 3px double var(--black);
  padding: 1.75rem;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 rgba(42, 34, 21, 0.18);
}

.ticket-card::after {
  content: "✂";
  position: absolute;
  right: 0.8rem;
  bottom: 0.6rem;
  color: var(--charcoal);
  opacity: 0.4;
  font-size: 1rem;
  transform: rotate(20deg);
}

.ticket-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  border-bottom: 1px dashed rgba(42, 34, 21, 0.55);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}

.ticket-card .ticket-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.ticket-card .ticket-price small {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
}

.ticket-status {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: var(--charcoal);
  padding: 0.3em 0.9em;
  margin-bottom: 1.1rem;
}

.ticket-status--soldout {
  background: var(--black);
  color: var(--cream);
  border: 2px double var(--cream);
}

.ticket-card .btn {
  display: inline-block;
  margin-top: 0.4rem;
  width: 100%;
  text-align: center;
}

.ticket-card .btn[disabled],
.ticket-card .btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.separator-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  max-width: 24rem;
  margin: 0 auto 1.25rem;
  color: var(--charcoal);
  font-size: 1rem;
  letter-spacing: 0.4em;
}

@media (max-width: 48rem) {
  .weekend,
  .tickets {
    padding: 3rem 0;
  }

  .schedule-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.vendors {
  background: var(--parchment);
  padding: 4.5rem 0;
}

.vendors .section-title {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.vendors .section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--charcoal);
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.vendor-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.vendor-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.vendor-copy p {
  margin-bottom: 1rem;
}

.vendor-poster {
  background: var(--cream);
  border: 3px double var(--black);
  padding: 0.65rem;
  box-shadow: 5px 5px 0 rgba(42, 34, 21, 0.2);
}

.vendor-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--charcoal);
  background: var(--cream);
}

.vendor-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-top: 2px double var(--charcoal);
  border-bottom: 2px double var(--charcoal);
}

.vendor-facts li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(42, 34, 21, 0.45);
}

.vendor-facts li:last-child {
  border-bottom: none;
}

.vendor-facts li::before {
  content: "✦";
  margin-right: 0.6rem;
  color: var(--charcoal);
  font-size: 0.85rem;
}

.vendor-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}

.vendor-categories span,
.vendor-categories a {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  border: 1px dashed var(--charcoal);
  padding: 0.35em 0.85em;
  text-decoration: none;
}

.vendor-categories a:hover {
  color: var(--cream);
  background: var(--charcoal);
  border-style: solid;
}

.vendor-email {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--black);
  border: 2px solid var(--black);
  padding: 0.8em 1.5em;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(42, 34, 21, 0.25);
}

.vendor-email:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.vip {
  background: var(--charcoal);
  border-top: 4px double var(--cream);
  border-bottom: 4px double var(--cream);
  padding: 4.5rem 0;
  color: var(--cream);
}

.vip-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.vip .section-title {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.vip .section-subtitle {
  font-style: italic;
  color: rgba(234, 223, 192, 0.85);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.vip-inner p {
  color: rgba(234, 223, 192, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vip-benefits {
  list-style: none;
  margin: 0 auto 2.25rem;
  padding: 1.25rem 1.5rem;
  max-width: 30rem;
  text-align: left;
  border-top: 2px double var(--cream);
  border-bottom: 2px double var(--cream);
}

.vip-benefits li {
  font-size: 1rem;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(234, 223, 192, 0.4);
}

.vip-benefits li:last-child {
  border-bottom: none;
}

.vip-benefits li::before {
  content: "✦";
  margin-right: 0.6rem;
  color: var(--cream);
  font-size: 0.85rem;
}

.vip .button {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}

.vip .button:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.ball {
  background: var(--black);
  border-bottom: 4px double var(--charcoal);
  padding: 4.5rem 0;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.ball::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(234, 223, 192, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
}

.ball-inner {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.ball .section-title {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.ball .section-subtitle {
  font-style: italic;
  color: rgba(234, 223, 192, 0.85);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.ball-inner p {
  color: rgba(234, 223, 192, 0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ball-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  list-style: none;
  margin: 0 auto 2rem;
  padding: 1.1rem 1.5rem;
  max-width: 32rem;
  border-top: 2px double var(--cream);
  border-bottom: 2px double var(--cream);
}

.ball-details li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
}

.ball-details li::before {
  content: "✦";
  margin-right: 0.4rem;
}

.ball .button {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  box-shadow: 3px 3px 0 rgba(234, 223, 192, 0.2);
}

.ball .button:hover {
  background: var(--cream);
  color: var(--black);
}

@media (max-width: 48rem) {
  .vendors,
  .vip,
  .ball {
    padding: 3rem 0;
  }

  .vendor-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .vendor-email {
    display: block;
    text-align: center;
  }

  .vip-benefits,
  .ball-details {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}