:root {
  --paper: #efe8d8;
  --ink: #141311;
  --rule: #b23a22;
  --cream: #f6f0e4;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  min-height: 100%;
  background: #141210;
  color: var(--cream);
  font-family: "IBM Plex Sans", sans-serif;
}

.hub-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hub-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 28s ease-in-out alternate infinite;
  transform: scale(1.06);
}
.hub-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,22,.28) 0%, rgba(14,18,22,.18) 36%, rgba(14,18,22,.78) 100%);
}
@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 36px;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}
.bar-name {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
}
.bar-name:hover { color: #e8c9b8; }
.bar span { opacity: .82; }

.hub-copy {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 10vh;
  max-width: 1100px;
}
.hub-kicker {
  margin: 0 0 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #e8c9b8;
}
.hub-copy h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(84px, 14vw, 168px);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.05em;
}
.hub-sub {
  margin: 18px 0 0;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246, 240, 228, .92);
}
.hub-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 36px;
}
.enter {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--cream);
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
}
.enter:hover {
  background: var(--rule);
  border-color: var(--rule);
}
.reserved {
  color: rgba(246,240,228,.7);
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.reserved:hover { color: var(--cream); }

@media (max-width: 800px) {
  .bar { padding: 16px 20px; font-size: 12px; }
  .hub-copy { padding: 0 7vw 8vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hub-bg img { animation: none; }
}
