/* Base */
:root {
  --bg: #121212;
  --panel: rgba(18, 18, 18, 0.56);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.3);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #e3b074;
  --max: 64rem;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --gap: clamp(1.5rem, 3vw, 3.25rem);
  --shadow: 0 0.25rem 2.625rem rgba(0, 0, 0, 0.5);
  --vh: 1vh;
  --btn-w: 18.5rem;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: calc(var(--vh) * 100);
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  word-wrap: break-word;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to top, rgba(28, 107, 64, 0.64), rgba(28, 107, 64, 0.64)),
    url('assets/images/bgd51a.jpg?v=c0340016');
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

body.is-loading::after {
  opacity: 1;
  visibility: visible;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg {
  display: block;
}

.defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad);
  text-align: center;
}

.wrap > * + * {
  margin-top: var(--gap);
}

.rule {
  margin: 0;
  border: 0;
  border-top: 2px dotted var(--line);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, var(--btn-w));
  grid-template-areas: 'intro menu';
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.intro {
  grid-area: intro;
  width: 100%;
  max-width: 30rem;
  justify-self: start;
  text-align: left;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  line-height: 1.75;
  text-transform: uppercase;
}

.title {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.25rem, 8vw, 5.125rem);
  font-weight: 600;
  letter-spacing: -0.075rem;
  line-height: 0.98;
  text-shadow: 0 0.125rem 5rem #a6a6a6;
  text-transform: uppercase;
  max-width: 8ch;
  text-wrap: balance;
}

.hours {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.18rem;
  line-height: 1.75;
  text-transform: uppercase;
}

.meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.2rem;
  justify-items: start;
  font-size: 1rem;
  font-weight: 300;
}

.meta a {
  text-decoration: underline;
}

.meta a:hover {
  text-decoration: none;
  color: #ffd900;
}

.walkin {
  margin: 1.25rem 0 0;
  color: var(--gold);
  display: inline-block;
  font-family: 'Rock Salt', cursive;
  font-size: 1.2rem;
  line-height: 1.2;
  text-shadow: -0.01rem 0.562rem 2.3125rem #000;
}

.menu {
  grid-area: menu;
  width: 100%;
  max-width: var(--btn-w);
  justify-self: end;
  align-self: start;
  padding-top: 0.5rem;
}

/* Sections */
.sec,
.top-wrap,
.foot {
  text-align: center;
}

.sec-title {
  margin: 0;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.025rem;
  line-height: 1.25;
}

.copy {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

.crew {
  margin: 1.5rem 0 0;
  display: flex;
  justify-content: center;
}

.crew img {
  width: 100%;
  max-width: 48rem;
  aspect-ratio: 48 / 25;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.artists-list {
  margin-top: 1.5rem;
}

/* Buttons */
.btns {
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.btns > li {
  width: min(100%, var(--btn-w));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn span {
  flex: 1 1 auto;
  text-align: left;
}

.btn svg {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}

/* Top / footer */
.top-wrap {
  display: flex;
  justify-content: center;
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.top-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.top-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.29);
  font-size: 0.875rem;
  font-weight: 200;
  line-height: 2;
}

/* Motion */
.fade-group > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-group > *:nth-child(1) { transition-delay: 0.08s; }
.fade-group > *:nth-child(2) { transition-delay: 0.18s; }
.fade-group > *:nth-child(3) { transition-delay: 0.28s; }
.fade-group > *:nth-child(4) { transition-delay: 0.38s; }
.fade-group > *:nth-child(5) { transition-delay: 0.48s; }
.fade-group > *:nth-child(6) { transition-delay: 0.58s; }
.fade-group > *:nth-child(7) { transition-delay: 0.68s; }
.fade-group > *:nth-child(8) { transition-delay: 0.78s; }

body.is-ready .fade-group > *,
.fade-group.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.is-ready .hero.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  html {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'menu';
    justify-items: center;
  }

  .intro,
  .menu {
    max-width: 42rem;
    justify-self: center;
    text-align: center;
  }

  .title {
    max-width: none;
  }

  .meta {
    justify-items: center;
  }
}

@media (max-width: 736px) {
  html {
    font-size: 14px;
  }

  .wrap {
    padding-block: 2.25rem 3rem;
  }

  .btns,
  .btns > li,
  .menu {
    width: 100%;
    max-width: 100%;
  }

  .btn {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-group > *,
  .btn,
  .top-link,
  body::after {
    transition: none !important;
    transform: none !important;
  }

  .reveal,
  .fade-group > * {
    opacity: 1 !important;
  }
}
