:root {
  --bg: #050505;
  --ink: #f2f0eb;
  --muted: rgba(242, 240, 235, 0.62);
  --line: rgba(242, 240, 235, 0.14);
  --accent: #6f8f72;
  --accent-soft: rgba(111, 143, 114, 0.28);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-ui: "Syne", system-ui, sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 44rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("eog_2026_web.jpg") top center / cover no-repeat,
    var(--bg);
  transform: scale(1.04);
  animation: drift 28s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.05) 0%,
      rgba(5, 5, 5, 0.15) 42%,
      rgba(5, 5, 5, 0.82) 72%,
      rgba(5, 5, 5, 0.98) 100%
    );
}

.hero__content {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: var(--space);
  padding-bottom: clamp(2rem, 8vh, 4.5rem);
  text-align: center;
  display: grid;
  gap: 1.35rem;
  justify-items: center;
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}

.hero__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.2vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.social__link {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.social__link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.social__link:hover,
.social__link:focus-visible {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
  outline: none;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.links a {
  transition: color 0.25s ease;
}

.links a:hover,
.links a:focus-visible {
  color: var(--ink);
  outline: none;
}

.scroll-hint {
  display: inline-grid;
  justify-items: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.scroll-hint svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-hint:hover,
.scroll-hint:focus-visible {
  color: var(--ink);
  outline: none;
}

/* —— Shows —— */
.shows {
  padding: clamp(3.5rem, 10vh, 6.5rem) var(--space) clamp(4rem, 12vh, 7rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(111, 143, 114, 0.08), transparent 55%),
    var(--bg);
}

.shows__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.shows__header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.shows__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
}

.shows__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.shows__lead {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.shows__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.show {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 0.85rem 1.25rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.show:nth-child(1) { animation-delay: 0.05s; }
.show:nth-child(2) { animation-delay: 0.1s; }
.show:nth-child(3) { animation-delay: 0.15s; }
.show:nth-child(4) { animation-delay: 0.2s; }
.show:nth-child(5) { animation-delay: 0.25s; }
.show:nth-child(6) { animation-delay: 0.3s; }
.show:nth-child(7) { animation-delay: 0.35s; }
.show:nth-child(8) { animation-delay: 0.4s; }
.show:nth-child(9) { animation-delay: 0.45s; }
.show:nth-child(10) { animation-delay: 0.5s; }

.show__date {
  display: grid;
  gap: 0.1rem;
  font-family: var(--font-display);
  line-height: 1.05;
}

.show__day {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.show__month {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.show__meta {
  min-width: 0;
}

.show__city {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.show__venue {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show__ticket {
  justify-self: end;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.show__ticket:hover,
.show__ticket:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #061009;
  outline: none;
}

.show__ticket[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.shows__empty {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--muted);
}

/* —— Footer —— */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem var(--space) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
  outline: none;
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg,
  .hero__content,
  .show,
  .scroll-hint svg {
    animation: none;
  }

  .hero__bg {
    transform: none;
  }

  .show {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .show {
    grid-template-columns: 4.75rem 1fr;
    grid-template-areas:
      "date meta"
      "ticket ticket";
    gap: 0.55rem 1rem;
  }

  .show__date {
    grid-area: date;
  }

  .show__meta {
    grid-area: meta;
  }

  .show__ticket {
    grid-area: ticket;
    justify-self: stretch;
    text-align: center;
  }

  .show__venue {
    white-space: normal;
  }

  .hero__bg {
    background-position: top center;
    background-size: cover;
  }
}

@media (min-width: 900px) {
  .hero__content {
    padding-bottom: clamp(2.5rem, 9vh, 5.5rem);
  }
}
