:root {
  --ink: #202020;
  --muted: #666;
  --paper: #f5f1e6;
  --panel: #fff;
  --green: #184c3a;
  --gold: #e6a734;
  --red: #b33d2e;
  --line: #d8d0bd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  border-top: 8px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 14px;
  color: var(--green);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 128px;
  max-height: 58px;
  object-fit: contain;
}

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

.brand small {
  color: var(--muted);
  font-size: 13px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0 18px;
  background: var(--green);
}

nav a {
  padding: 13px 18px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--gold);
  color: #191919;
}

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

h1 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 28px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.event-page,
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 22px;
}

.event-title,
.page-hero {
  padding: 42px 0 28px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede,
.page-hero p,
.content-block p,
.info-box p,
.card p,
.price-card p,
.form-layout aside p {
  color: var(--muted);
}

.lede {
  max-width: 760px;
  font-size: 21px;
}

.intro-copy p {
  margin-bottom: 14px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  padding: 28px 0 58px;
}

.event-main,
.event-sidebar {
  display: grid;
  gap: 22px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.content-block,
.info-box,
.price-card,
.form,
.form-layout aside,
.card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.info-box {
  border-top: 6px solid var(--gold);
}

.info-box.callout {
  border-top-color: var(--red);
}

dl {
  margin: 0;
}

dt {
  margin-top: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

dt:first-child {
  margin-top: 0;
}

dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.price-card button {
  color: #151515;
  background: var(--gold);
}

.secondary {
  margin-top: 10px;
  color: #fff;
  background: var(--green);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

.map {
  width: 100%;
  min-height: 330px;
  border: 1px solid var(--line);
  background: #ddd;
}

.page {
  padding-bottom: 60px;
}

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

.top-ticket-action {
  margin: 24px 0 -4px;
}

.ticket-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 4px;
}

.ticket-intro p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.price-card.featured {
  border-top: 6px solid var(--gold);
}

.price {
  color: var(--green) !important;
  font-size: 40px;
  font-weight: 900;
}

.fee {
  margin-top: -10px;
  color: var(--red) !important;
  font-size: 14px;
  font-weight: 800;
}

.price-card button {
  margin-top: auto;
}

.price-card .button {
  margin-top: auto;
}

.ticket-note {
  margin: -10px 0 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.addon-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  margin: 0 0 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.addon-row h2,
.addon-row p:last-child {
  margin-bottom: 0;
}

.checkout,
.form-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.form-layout aside + aside {
  grid-column: 1;
}

.form-layout .form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.form {
  display: grid;
  gap: 14px;
}

.eventbrite-box {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.modal-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #beb59f;
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .event-layout,
  .checkout,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .ticket-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .addon-row {
    grid-template-columns: 1fr;
  }

  .form-layout aside + aside,
  .form-layout .form {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .brand {
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  nav a {
    padding: 11px 12px;
  }

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

  footer {
    flex-direction: column;
  }
}
