.events-page {
  background: #fafafa;
  color: #222;
}

.events-hero {
  background: #fff;
  border-bottom: 1px solid #eadfcb;
}

.events-hero__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
  padding: 64px 0 54px;
}

.events-kicker {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a6c13;
  margin-bottom: 14px;
}

.events-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
  color: #101010;
  margin-bottom: 18px;
}

.events-lede {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: #444;
  max-width: 640px;
}

.events-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
  max-width: 660px;
}

.events-meta__item {
  border: 1px solid #eadfcb;
  background: #fffaf0;
  padding: 16px 14px;
  min-height: 92px;
}

.events-meta__label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a6a1b;
  margin-bottom: 8px;
}

.events-meta__value {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #222;
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.events-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 6px;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
}

.events-link:hover {
  background: #111;
  color: #fff;
}

.events-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 184px;
  padding: 0 28px;
  border: 1px solid #a97818;
  border-radius: 6px;
  background: #cf9e25;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(207, 158, 37, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.events-buy-button:hover {
  background: #b8891f;
  box-shadow: 0 12px 24px rgba(184, 137, 31, 0.28);
  transform: translateY(-1px);
}

.events-buy-button:focus-visible {
  outline: 3px solid rgba(207, 158, 37, 0.35);
  outline-offset: 3px;
}

.events-buy-button--dark {
  background: #111;
  border-color: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.events-buy-button--dark:hover {
  background: #cf9e25;
  border-color: #a97818;
  color: #111;
}

.events-flyer {
  margin: 0;
  justify-self: end;
}

.events-flyer img {
  display: block;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.events-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 76px;
}

.events-top-reserve {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fffaf0;
  border: 1px solid #eadfcb;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.events-top-reserve__label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a6a1b;
  margin-bottom: 6px;
}

.events-top-reserve h2 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
  color: #171717;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 42px;
  padding: 42px 0;
  border-bottom: 1px solid #e8e1d4;
}

.events-section h2 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
  color: #171717;
}

.events-section p,
.events-section li {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #454545;
}

.events-section p + p {
  margin-top: 14px;
}

.events-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.events-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #eee4cf;
}

.events-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cf9e25;
}

.events-reserve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: #f4ead5;
  border: 1px solid #e2cf9d;
  margin-top: 46px;
}

.events-reserve h2 {
  font-size: 34px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.events-reserve p {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #3f3728;
  max-width: 680px;
}

.events-note {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #66583c;
  margin-top: 14px;
}

@media (max-width: 860px) {
  .events-hero__inner,
  .events-top-reserve,
  .events-section,
  .events-reserve {
    grid-template-columns: 1fr;
  }

  .events-hero__inner {
    gap: 34px;
    padding: 42px 0;
  }

  .events-flyer {
    justify-self: center;
  }

  .events-meta,
  .events-list {
    grid-template-columns: 1fr;
  }

  .events-top-reserve {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .events-reserve {
    padding: 26px 20px;
  }
}

@media (max-width: 520px) {
  .events-hero__inner,
  .events-top-reserve,
  .events-content {
    width: min(100% - 28px, 1120px);
  }

  .events-hero h1 {
    font-size: 42px;
  }

  .events-lede,
  .events-section p,
  .events-section li {
    font-size: 16px;
  }

  .events-section {
    gap: 22px;
    padding: 34px 0;
  }

  .events-buy-button {
    width: 100%;
  }
}
