:root {
  --black: #050403;
  --ink: #f7edd4;
  --charcoal: #15120c;
  --soft-black: #211b10;
  --gold: #c89422;
  --gold-bright: #f2c95b;
  --gold-deep: #7a5412;
  --cream: #f5e8bf;
  --paper: #0b0906;
  --sage: #2f2a1d;
  --clay: #d3a23d;
  --muted: #b9aa7d;
  --white: #ffffff;
  --line: rgba(242, 201, 91, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  border-bottom: 1px solid rgba(242, 201, 91, 0.22);
  padding: 20px clamp(18px, 4vw, 56px);
  background: rgba(5, 4, 3, 0.96);
  color: var(--white);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(247, 213, 107, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(247, 213, 107, 0.9), rgba(143, 104, 25, 0.95)),
    var(--gold);
  color: var(--black);
  font-size: 0.82rem;
  box-shadow: 0 0 30px rgba(215, 170, 49, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(245, 232, 191, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  isolation: isolate;
  padding: clamp(54px, 7vw, 98px) clamp(18px, 4vw, 56px) clamp(62px, 8vw, 110px);
  min-height: calc(100vh - 78px);
  align-items: center;
  overflow: clip;
  background: linear-gradient(180deg, #070604 0%, #0d0a05 58%, #050403 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  align-items: end;
  column-gap: clamp(34px, 6vw, 86px);
  row-gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 420px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: none;
  justify-self: stretch;
}

.hero-content h1 {
  max-width: 9.3ch;
  color: var(--ink);
  font-size: clamp(3.7rem, 8.4vw, 8.2rem);
  line-height: 0.82;
  text-shadow: 0 2px 0 rgba(200, 148, 34, 0.45);
}

.hero-media {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  width: min(100%, 410px);
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  justify-self: center;
  place-items: center;
  border: 1px solid rgba(242, 201, 91, 0.5);
  border-radius: 8px;
  background: var(--black);
  box-shadow:
    18px 18px 0 rgba(200, 148, 34, 0.18),
    var(--shadow);
}

.hero-copy-panel {
  display: grid;
  width: min(100%, 620px);
  align-self: end;
  justify-self: start;
  gap: 20px;
  grid-column: 1;
  grid-row: 2;
  border-left: 5px solid var(--gold-bright);
  background: rgba(21, 18, 12, 0.72);
  padding: 22px 24px;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.video-play-button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.52);
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep)),
    var(--gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  transform: scale(1.05);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--black);
}

.hero-media.is-playing .video-play-button {
  pointer-events: none;
  opacity: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(245, 232, 191, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--gold-bright);
  color: var(--black);
}

.button-secondary {
  border: 1px solid rgba(242, 201, 91, 0.48);
  background: transparent;
  color: var(--cream);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 96px;
}

.section-dark {
  background:
    linear-gradient(180deg, #050403 0%, #120e07 58%, #050403 100%);
  color: var(--cream);
}

.section-light {
  background:
    linear-gradient(180deg, #080604 0%, #100d08 100%);
  color: var(--cream);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 460px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(246, 239, 226, 0.72);
  font-size: 1.02rem;
}

.section-light .section-heading p:not(.eyebrow) {
  color: rgba(245, 232, 191, 0.68);
}

.centered {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-light h2,
.section-light h3 {
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-dark .eyebrow {
  color: var(--gold-bright);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 52px);
  align-items: start;
}

.section-dark .section-heading {
  display: grid;
  max-width: 900px;
  gap: 10px;
  grid-template-columns: minmax(220px, 0.55fr) minmax(260px, 0.45fr);
  align-items: end;
}

.section-dark .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-dark .section-heading h2 {
  margin-bottom: 0;
}

.section-dark .section-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

.events-panel {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.events-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(242, 201, 91, 0.22);
  border-left: 5px solid var(--gold-bright);
  border-radius: 8px;
  background: rgba(247, 242, 230, 0.05);
  padding: 14px 16px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-count {
  color: rgba(247, 242, 230, 0.66);
  white-space: nowrap;
}

.events-list {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-content: stretch;
  grid-template-rows: auto 1fr;
  gap: 20px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 232, 191, 0.12), rgba(47, 42, 29, 0.24) 42%, rgba(13, 10, 5, 0.96)),
    #0d0a05;
  padding: 20px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.event-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), var(--clay), rgba(47, 42, 29, 0.85));
}

.event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.event-date {
  display: grid;
  width: 112px;
  min-height: 122px;
  overflow: hidden;
  place-items: center;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(245, 232, 191, 0.82);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 10px 10px 0 rgba(200, 148, 34, 0.18);
  text-align: center;
}

.event-month {
  display: block;
  width: 100%;
  padding: 7px 6px;
  background: var(--gold-bright);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.event-day {
  display: block;
  color: var(--black);
  font-size: 3.25rem;
  font-weight: 950;
  line-height: 0.94;
}

.event-year {
  display: block;
  padding-bottom: 9px;
  color: rgba(5, 4, 3, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  align-content: end;
  gap: 16px;
  min-width: 0;
}

.event-details h3 {
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.event-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  color: rgba(247, 242, 230, 0.72);
  font-size: 0.94rem;
}

.event-meta-item {
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(245, 232, 191, 0.14);
  padding-top: 8px;
}

.event-meta-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-meta-value {
  color: rgba(247, 242, 230, 0.78);
  overflow-wrap: anywhere;
}

.event-type {
  display: inline-flex;
  max-width: 52%;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 189, 85, 0.46);
  border-radius: 999px;
  background: rgba(47, 42, 29, 0.78);
  padding: 7px 11px;
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-actions a {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.event-actions a:hover,
.event-actions a:focus-visible {
  transform: translateY(-2px);
}

.event-actions .ticket-link {
  background: var(--gold-bright);
  color: var(--black);
}

.event-note {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: rgba(247, 242, 230, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.empty-state {
  margin: 0;
  padding: 28px 18px;
  color: rgba(247, 242, 230, 0.7);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.book-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(260px, auto) 1fr auto;
  gap: 18px;
  border: 1px solid rgba(242, 201, 91, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 232, 191, 0.1), rgba(47, 42, 29, 0.24) 48%, rgba(200, 148, 34, 0.045)),
    #0d0a05;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.book-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, rgba(245, 232, 191, 0.9), var(--gold), rgba(47, 42, 29, 0.78));
}

.book-cover-wrap {
  display: grid;
  min-height: 260px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(245, 232, 191, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 242, 230, 0.08), rgba(5, 4, 3, 0)),
    rgba(5, 4, 3, 0.22);
  padding: 16px 10px;
}

.book-cover {
  width: min(78%, 190px);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.22));
}

.book-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  text-align: center;
}

.book-number {
  display: inline-grid;
  width: 42px;
  min-height: 26px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(242, 201, 91, 0.32);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 950;
}

.book-card h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.book-card p {
  margin-bottom: 0;
  color: rgba(245, 232, 191, 0.68);
  font-size: 0.9rem;
}

.book-link {
  display: inline-flex;
  justify-self: center;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 950;
}

.site-footer {
  background: #0c0d0a;
  color: rgba(247, 242, 230, 0.74);
  padding: 34px clamp(18px, 4vw, 56px);
}

.footer-inner {
  display: flex;
  width: min(1180px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-copyright {
  margin-top: 8px;
  color: rgba(247, 242, 230, 0.56);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(232, 189, 85, 0.28);
  border-radius: 50%;
  background: var(--cream);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content h1 {
    font-size: clamp(4rem, 11vw, 6.2rem);
  }

  .book-grid {
    max-width: 760px;
    margin: 0 auto;
  }

  .book-cover-wrap {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .hero-inner {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .hero-content,
  .hero-media,
  .hero-copy-panel {
    max-width: 760px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 390px);
    justify-self: center;
  }

  .hero-copy-panel {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .section-dark .section-heading {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    align-items: center;
    min-height: 84px;
    padding-block: 14px;
  }

  .brand span:last-child {
    max-width: 110px;
    line-height: 1.05;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 34px 16px 54px;
  }

  .hero-inner {
    gap: 26px;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.25rem;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .hero-media {
    box-shadow:
      12px 12px 0 rgba(200, 148, 34, 0.18),
      var(--shadow);
  }

  .hero-copy-panel {
    padding: 18px;
  }

  .video-play-button {
    width: 68px;
    height: 68px;
  }

  .events-list {
    gap: 14px;
  }

  .events-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .event-card {
    gap: 14px;
    padding: 16px;
  }

  .event-card-top {
    gap: 10px;
  }

  .event-date {
    width: 86px;
    min-height: 96px;
    box-shadow: 7px 7px 0 rgba(200, 148, 34, 0.16);
  }

  .event-day {
    font-size: 2.2rem;
  }

  .event-month {
    padding: 6px;
    font-size: 0.64rem;
  }

  .event-year {
    padding-bottom: 7px;
    font-size: 0.62rem;
  }

  .event-type {
    max-width: 100%;
    padding: 5px 9px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .event-details h3 {
    font-size: 1.04rem;
    line-height: 1.22;
  }

  .event-meta {
    gap: 4px;
    font-size: 0.92rem;
  }

  .event-actions {
    gap: 8px;
  }

  .event-actions a,
  .event-note {
    width: 100%;
    min-height: 40px;
  }

  .book-card {
    min-height: auto;
  }

  .book-grid {
    max-width: 420px;
    grid-template-columns: 1fr;
  }

  .book-cover-wrap {
    min-height: 250px;
  }

  .book-link {
    width: min(100%, 240px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }
}
