
:root {
  --night: #041b1e;
  --deep: #06353a;
  --teal: #0a6d68;
  --cyan: #00b4e7;
  --lime: #ffe14a;
  --orange: #ff5310;
  --magenta: #e3185d;
  --cream: #fff4dc;
  --ink: #041b1e;
  --foam: rgba(255, 244, 220, 0.78);
  --line: rgba(255, 244, 220, 0.16);
  --z-header: 50;
  --z-menu: 60;
  --z-progress: 70;
  --z-grain: 80;
  --display: "Big Shoulders Display", Impact, sans-serif;
  --stamp: Bungee, "Arial Black", sans-serif;
  --body: "Public Sans", Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 90;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  width: 100%;
  height: 3px;
  background: var(--lime);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: var(--z-header);
  height: 68px;
  padding: 0 14px 0 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(4, 27, 30, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  max-width: min(58vw, 220px);
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}

.desktop-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 200ms ease, color 200ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--lime);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 #9a2800;
  transition: transform 200ms ease, background 200ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ff6930;
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 7px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: rgba(4, 27, 30, 0.96);
  display: none;
  place-items: center;
  padding: 96px 28px 40px;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  width: min(420px, 100%);
}

.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 10vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  min-height: 56px;
}

.hero {
  min-height: 100svh;
  padding: 110px 20px 28px;
  display: grid;
  align-content: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 27, 30, 0.22) 0%, rgba(4, 27, 30, 0.08) 38%, rgba(4, 27, 30, 0.82) 100%);
}

.hero::before {
  display: none;
}

.hero-copy {
  width: min(760px, 100%);
  animation: rise 700ms ease-out both;
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--lime);
}

.kicker i {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

.kicker.light { color: rgba(255, 244, 220, 0.7); }
.kicker.ink { color: #3d5c4f; }

h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.2rem, 16vw, 8.6rem);
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 8px 28px rgba(4, 27, 30, 0.45);
}

h1 em, h2 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

h1 em {
  display: block;
  width: fit-content;
  color: var(--night);
  background: var(--lime);
  padding: 0 0.12em 0.04em;
  margin-top: 0.06em;
  box-shadow: 8px 8px 0 var(--magenta);
  text-shadow: none;
}

.hero-intro {
  max-width: 34rem;
  color: var(--foam);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  min-width: 220px;
  padding: 0 18px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-fire {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 5px 0 #9a2800;
}

.btn-fire:hover { background: #ff6930; }

.btn-ghost {
  background: rgba(4, 27, 30, 0.62);
  border: 1px solid rgba(255, 244, 220, 0.38);
  min-width: 0;
  color: #fff;
}

.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-cyan {
  background: var(--cyan);
  color: var(--ink);
  margin-top: 28px;
  box-shadow: 0 5px 0 #067a9c;
}

.ticket-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: color-mix(in srgb, var(--night) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ticket-strip li {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-strip li:nth-child(2n) { border-right: 0; }
.ticket-strip li:nth-last-child(-n + 2) { border-bottom: 0; }

.ticket-strip span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

.ticket-strip strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--lime);
}

.marquee {
  background: var(--magenta);
  color: #fff;
  overflow: hidden;
  border-block: 3px solid var(--lime);
  transform: rotate(-0.5deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track div {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track svg { color: var(--lime); }

.section { padding: 88px 20px; }

.lineup {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 180, 231, 0.28), transparent 32%),
    radial-gradient(circle at 100% 18%, rgba(227, 24, 93, 0.22), transparent 34%),
    linear-gradient(160deg, #0b7a72 0%, #0a5c48 52%, #073f38 100%);
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.section-heading h2,
.experience h2,
.location h2,
.tickets h2 {
  font-size: clamp(3.4rem, 12vw, 7.4rem);
}

.section-lede {
  max-width: 36rem;
  color: var(--foam);
  margin: 0;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.artist-card {
  position: relative;
  aspect-ratio: 580 / 780;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid rgba(255, 244, 220, 0.22);
  background: #0a4f48;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 420ms ease;
}

.artist-card:hover img { transform: scale(1.05); }

.artist-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(4, 27, 30, 0.94) 100%);
}

.artist-number {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.artist-genre {
  position: absolute;
  right: 8px;
  top: 10px;
  max-width: calc(100% - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(4, 27, 30, 0.55);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
}

.artist-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.artist-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 4.6vw, 2.6rem);
  line-height: 0.88;
  text-transform: uppercase;
  font-weight: 800;
}

.artist-meta p {
  display: none;
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--foam);
  max-width: 28ch;
}

.full-poster {
  margin: 56px 0 0;
  padding: 8px;
  background: var(--cyan);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--magenta);
}

.full-poster img {
  width: 100%;
  border-radius: 16px;
}

.full-poster figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  background: var(--magenta);
  color: #fff;
  padding: 14px 16px;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 var(--lime);
}

.full-poster span {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.full-poster b {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.experience {
  background: linear-gradient(180deg, #fff6e3 0%, #ffe9b8 100%);
  color: var(--ink);
}

.experience-title { margin-bottom: 40px; }
.experience h2 em { color: var(--magenta); }

.experience-grid {
  display: grid;
  gap: 12px;
}

.exp-card {
  min-height: 380px;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.exp-card > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.exp-card h3 {
  margin: auto 0 12px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 0.86;
  text-transform: uppercase;
  font-weight: 800;
}

.exp-card p {
  margin: 0;
  max-width: 32ch;
  font-size: 15px;
  line-height: 1.55;
}

.is-cyan {
  background: var(--cyan);
  box-shadow: 8px 8px 0 #0f7a48;
}

.is-fire {
  background: linear-gradient(150deg, var(--orange), var(--magenta));
  color: #fff;
  box-shadow: 8px 8px 0 var(--lime);
}

.location {
  display: grid;
  gap: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 83, 16, 0.28), transparent 30%),
    linear-gradient(135deg, #0a6d5c, #067a96);
}

.location h2 em { color: var(--cyan); }

.location-description {
  color: var(--foam);
  margin: 22px 0 0;
}

.map-frame {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid var(--lime);
  box-shadow: 12px 12px 0 var(--magenta);
  background: #d7f0c8;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.15) contrast(1.05);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(220px, calc(100% - 24px));
  padding: 14px 14px 14px 18px;
  background: var(--lime);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--magenta);
}

.map-pin span {
  position: absolute;
  left: -16px;
  top: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border: 3px solid var(--ink);
}

.map-pin b {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.map-pin small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tickets {
  padding: 88px 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 180, 231, 0.42), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(227, 24, 93, 0.28), transparent 30%),
    var(--lime);
  color: var(--ink);
  display: grid;
  gap: 36px;
}

.tickets h2 em { color: var(--magenta); }

.tickets p {
  max-width: 34rem;
  font-weight: 600;
  line-height: 1.6;
}

.ticket-orb {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 var(--cyan);
  transition: transform 220ms ease;
}

.ticket-orb:hover { transform: rotate(6deg) scale(1.04); }

.ticket-orb svg { color: var(--lime); width: 22px; height: 22px; }

footer {
  padding: 56px 20px 28px;
  display: grid;
  gap: 24px;
  background: #032326;
  border-top: 6px solid var(--orange);
}

.footer-brand img {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

footer span {
  text-transform: uppercase;
  color: rgba(255, 244, 220, 0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

footer strong, footer a {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-links { display: grid; gap: 10px; }
.footer-links a { margin-top: 0; }

footer small {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: rgba(255, 244, 220, 0.38);
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (min-width: 760px) {
  .site-header { top: 18px; left: 24px; right: 24px; padding: 0 10px 0 10px; }
  .brand { max-width: 240px; }
  .brand-logo { height: 48px; }
  .desktop-nav, .header-cta { display: flex; }
  .menu-toggle { display: none; }
  .hero { padding: 128px 4vw 36px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .ticket-strip { grid-template-columns: repeat(4, 1fr); }
  .ticket-strip li { border-bottom: 0; }
  .ticket-strip li:last-child { border-right: 0; }
  .section { padding: 110px 4vw; }
  .section-heading { grid-template-columns: 1.2fr 0.8fr; align-items: end; }
  .artist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .artist-card { border-radius: 18px; }
  .artist-number { left: 14px; top: 14px; width: 36px; height: 36px; font-size: 11px; }
  .artist-genre { right: 14px; top: 18px; font-size: 10px; padding: 6px 10px; letter-spacing: 0.14em; }
  .artist-meta { left: 16px; right: 16px; bottom: 16px; }
  .artist-card h3 { font-size: clamp(1.8rem, 2.4vw, 2.8rem); }
  .artist-meta p { display: block; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card { min-height: 520px; }
  .location { grid-template-columns: 0.78fr 1.22fr; align-items: center; gap: 5vw; }
  .tickets { grid-template-columns: 1.2fr 0.6fr; align-items: center; padding: 110px 4vw; }
  footer { grid-template-columns: 1.3fr 1fr 1.4fr 1fr; padding: 72px 4vw 32px; }
  footer small { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .hero-copy { width: min(720px, 54vw); }
  .artist-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .artist-card h3 { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-copy { animation: none; }
  .artist-card img, .btn, .header-cta, .ticket-orb { transition: none; }
}

@media (hover: none) {
  .artist-card:hover img { transform: none; }
}
