:root {
  --black: #040816;
  --black-soft: #071b49;
  --gold: #ef233c;
  --gold-bright: #ffffff;
  --gold-dim: rgba(21, 88, 214, 0.22);
  --gold-line: rgba(255, 255, 255, 0.22);
  --blue: #073b8e;
  --blue-bright: #1d4ed8;
  --white-soft: rgba(255, 255, 255, 0.82);
  --red-soft: rgba(239, 35, 60, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 78, 216, 0.28), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(239, 35, 60, 0.18), transparent 26%),
    var(--black);
  color: var(--gold);
  font-family: Montserrat, system-ui, sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 58px);
  color: var(--gold-bright);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--gold-line);
  background: rgba(4, 8, 22, 0.86);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-transform: uppercase;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  color: var(--gold-bright);
}

.brand-symbol i {
  position: absolute;
  font-size: 9px;
}

.brand-symbol i:nth-child(1) {
  left: 2px;
  bottom: 4px;
  color: var(--gold);
}

.brand-symbol i:nth-child(2) {
  top: 0;
  font-size: 12px;
  color: var(--gold-bright);
}

.brand-symbol i:nth-child(3) {
  right: 2px;
  bottom: 4px;
  color: var(--blue-bright);
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 0.8;
  letter-spacing: 0;
}

.brand-text {
  max-width: 190px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  line-height: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 91vh;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.08) hue-rotate(330deg);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 42% 32%, rgba(239, 35, 60, 0.32), transparent 32%),
    radial-gradient(circle at 70% 50%, rgba(29, 78, 216, 0.48), transparent 40%),
    linear-gradient(180deg, rgba(4, 8, 22, 0.3), rgba(4, 8, 22, 0.56) 46%, rgba(4, 8, 22, 0.98));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 92vw);
  padding-top: 70px;
  text-align: center;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--gold-bright);
  font-size: clamp(56px, 8.6vw, 126px);
  line-height: 0.86;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.8), 0 0 34px rgba(239, 35, 60, 0.28);
  animation: titleRise 900ms var(--ease) both;
}

.hero p,
.hero strong {
  display: block;
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(4, 8, 22, 0.8);
}

.hero strong {
  margin-top: 6px;
}

.scroll-cue {
  display: inline-grid;
  width: 36px;
  height: 50px;
  margin-top: 28px;
  place-items: center;
  color: var(--gold-bright);
  font-size: 20px;
  animation: bounceCue 1.6s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--gold-line);
  background: var(--gold);
  color: var(--black);
}

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

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

.marquee span {
  padding: 18px 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1;
  white-space: nowrap;
}

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

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 230px;
  overflow: hidden;
  background: var(--black);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.18) brightness(0.82);
  opacity: 0.88;
  transition: transform 420ms var(--ease), filter 420ms var(--ease), opacity 420ms var(--ease);
}

.photo-strip img:hover {
  transform: scale(1.08);
  filter: saturate(1.4) contrast(1.12) brightness(1);
  opacity: 1;
}

.intro {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, var(--gold), #b50022),
    var(--gold);
  color: var(--gold-bright);
  text-align: center;
}

.intro h2 {
  width: min(880px, 96vw);
  margin-inline: auto;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

.intro p {
  width: min(560px, 92vw);
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.location {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: clamp(78px, 10vw, 140px) clamp(22px, 7vw, 120px);
  background:
    linear-gradient(180deg, rgba(4, 8, 22, 0.62), rgba(4, 8, 22, 0.96)),
    url("assets/hero-black-gold.png") center / cover;
  color: var(--gold-bright);
}

.location::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, var(--black), transparent);
}

.location-content {
  position: relative;
  z-index: 2;
  width: min(700px, 92vw);
  margin-left: 14vw;
}

.location h2 {
  margin-bottom: 340px;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.94;
}

.location p {
  max-width: 580px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.location .lead {
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-top: 12px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(239, 35, 60, 0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(239, 35, 60, 0.32);
  background: var(--gold-bright);
  color: var(--gold);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

.accordions {
  width: 100%;
  margin: 0;
  padding: clamp(70px, 8vw, 120px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(7, 27, 73, 0.96), var(--black));
}

details {
  width: min(900px, 100%);
  margin-inline: auto;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  transition: background 220ms ease;
}

summary {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--gold-bright);
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, padding-left 220ms var(--ease), border-color 220ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.9;
}

summary i {
  color: var(--gold);
  transition: transform 180ms ease;
}

details[open] summary i {
  transform: rotate(180deg);
}

details[open] {
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.18), rgba(239, 35, 60, 0.05), transparent);
}

summary:hover {
  color: var(--gold);
  padding-left: 10px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 0 34px;
}

.panel-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.legend-grid article {
  border: 1px solid var(--gold-line);
  padding: 22px;
  background: var(--gold-dim);
  transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease;
}

.panel-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 35, 60, 0.44);
  background: var(--gold-bright);
  box-shadow: 0 18px 46px rgba(7, 59, 142, 0.22);
}

.legend-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(29, 78, 216, 0.24);
}

.panel-grid h3,
.legend-grid h3 {
  margin-bottom: 10px;
}

.panel-grid h3 {
  color: var(--gold);
  font-size: 30px;
}

.legend-grid h3 {
  color: var(--gold-bright);
  font-size: 30px;
}

.panel-grid p {
  margin: 0;
  color: rgba(4, 8, 22, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.legend-grid p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.6;
}

.living-legends,
.team,
.jury,
.program-cards,
.tickets {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 86px);
  text-align: center;
}

.team h2,
.jury h2,
.program-cards h2,
.tickets h2 {
  margin-bottom: 44px;
  color: var(--gold-bright);
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
}

.living-legends > p,
.team > p,
.program-cards > p {
  width: min(720px, 92vw);
  margin: 0 auto 48px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.7;
}

.legend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1280px, 96vw);
  margin-inline: auto;
}

.legend-card {
  text-align: left;
}

.legend-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  filter: saturate(1.12) brightness(0.82) contrast(1.18);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.legend-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.35) brightness(1) contrast(1.1);
}

.legend-card div {
  padding-top: 18px;
}

.legend-card span,
.team span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legend-card h3 {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.9;
}

.legend-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

.legend-card p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.7;
}

.team {
  border-top: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--gold-bright);
}

.team h2 {
  color: var(--gold-bright);
}

.team p {
  color: var(--white-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1100px, 94vw);
  margin-inline: auto;
}

.team-grid article {
  text-align: left;
  transition: transform 260ms var(--ease);
}

.team-grid article:hover {
  transform: translateY(-10px) rotate(-0.7deg);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.18);
  transition: filter 260ms ease, transform 420ms var(--ease);
}

.team-grid article:hover img {
  filter: saturate(1.35) contrast(1.05);
  transform: scale(1.025);
}

.team-grid h3 {
  margin-top: 16px;
  color: var(--gold-bright);
  font-size: 34px;
}

.team span {
  color: var(--gold-bright);
}

.jury h2 {
  color: var(--gold-bright);
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.jury-grid article {
  text-align: center;
  transition: transform 240ms var(--ease), opacity 240ms ease;
}

.jury-grid:hover article {
  opacity: 0.58;
}

.jury-grid article:hover {
  opacity: 1;
  transform: translateY(-8px);
}

.jury-grid img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.82) contrast(1.2);
  transition: filter 260ms ease;
}

.jury-grid article:hover img {
  filter: saturate(1.25) brightness(1) contrast(1.08);
}

.jury-grid h3 {
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: 22px;
}

.jury-grid p {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.4;
}

.program-cards {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff, #dfe8ff 48%, #ffffff);
  color: var(--black);
}

.program-cards h2 {
  color: var(--gold);
}

.program-cards > p {
  color: var(--black);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(800px, 92vw);
  margin-inline: auto;
}

.cards article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  border: 3px solid var(--black);
  border-radius: 10px;
  padding: 30px 22px;
  background: rgba(3, 3, 3, 0.92);
  text-align: center;
  transition: transform 280ms var(--ease), box-shadow 280ms ease, border-color 280ms ease;
}

.cards article:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 26px 70px rgba(7, 59, 142, 0.22);
}

.cards h3 {
  color: var(--gold-bright);
  font-size: 28px;
}

.cards strong {
  margin: 18px 0;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.cards p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.55;
}

.cards .button {
  margin-top: auto;
}

.text-link {
  margin-top: 14px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
}

.venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.venue-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 6vw, 86px);
  background: var(--gold);
  color: var(--gold-bright);
}

.venue-copy > i {
  margin-bottom: 22px;
  font-size: 32px;
}

.venue h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.92;
}

.venue p {
  margin: 16px 0 20px;
  font-size: 13px;
  font-weight: 700;
}

.venue .button {
  width: fit-content;
  border-color: var(--black);
  background: var(--blue);
  color: var(--gold-bright);
}

.map-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 380px;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(4, 8, 22, 0.88), rgba(7, 59, 142, 0.54)),
    repeating-linear-gradient(35deg, var(--gold-dim) 0 2px, transparent 2px 38px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 34px),
    var(--black);
  color: var(--gold-bright);
  text-transform: uppercase;
  overflow: hidden;
}

.map-card span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 54px;
  line-height: 0.9;
  text-align: center;
}

.map-card i {
  position: static;
  font-size: 34px;
  color: var(--gold);
  filter: drop-shadow(0 10px 20px rgba(239, 35, 60, 0.35));
  animation: mapPin 1.8s ease-in-out infinite;
}

.tickets {
  border-top: 1px solid var(--gold-line);
}

.tickets p {
  margin: 0 0 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tickets .button {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.impulse {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.impulse img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(0.58) contrast(1.22) hue-rotate(330deg);
}

.impulse-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(239, 35, 60, 0.25), transparent 32%),
    radial-gradient(circle at 70% 40%, rgba(29, 78, 216, 0.35), transparent 36%),
    linear-gradient(180deg, rgba(4, 8, 22, 0.26), rgba(4, 8, 22, 0.94));
}

.impulse-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
}

.impulse span {
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(239, 35, 60, 0.42);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(128px, 20vw, 250px);
  line-height: 0.8;
  text-transform: uppercase;
  transform: translate(-50%, -56%);
}

.impulse h2 {
  position: relative;
  color: var(--gold-bright);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.impulse p {
  position: relative;
  width: min(620px, 92vw);
  margin: 34px auto 22px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.75;
}

.impulse .text-link {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  text-decoration: none;
}

.newsletter {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 50% 0, rgba(239, 35, 60, 0.18), transparent 24%),
    var(--black);
  text-align: center;
}

.newsletter-icon {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 30px;
  color: var(--gold-bright);
  font-size: 30px;
  box-shadow: 0 0 0 12px rgba(239, 35, 60, 0.08);
  animation: pulseRing 2.5s ease-in-out infinite;
}

.newsletter h2 {
  color: var(--gold-bright);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
}

.newsletter p {
  width: min(670px, 92vw);
  margin: 28px auto 28px;
  color: var(--gold);
  line-height: 1.6;
}

.signup {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(680px, 92vw);
  margin: 0 auto 18px;
}

.signup input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-bright);
  font: inherit;
  outline: 1px solid var(--gold-line);
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.signup button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--gold);
  color: var(--black);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.signup button:hover {
  transform: translateY(-3px);
  background: var(--gold-bright);
  color: var(--gold);
}

.newsletter small {
  color: rgba(255, 255, 255, 0.58);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 220px;
  overflow: hidden;
}

.gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.82) contrast(1.18);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.gallery-row img:hover {
  transform: scale(1.08);
  filter: saturate(1.45) brightness(1) contrast(1.06);
}

.social-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.social-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.46) contrast(1.25) hue-rotate(330deg);
}

.social-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.36), rgba(3, 3, 3, 0.78));
}

.social-hero div {
  position: relative;
  z-index: 1;
}

.social-hero p {
  margin: 0 0 24px;
  color: var(--gold);
}

.social-hero h2 {
  color: var(--gold-bright);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
}

.social-hero nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
  color: var(--gold-bright);
  font-size: 28px;
}

.social-hero nav a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.social-hero nav a:hover {
  transform: translateY(-6px) rotate(-8deg);
  background: var(--gold);
  color: var(--gold-bright);
}

.final-marquee {
  overflow: hidden;
  border-block: 1px solid var(--gold-line);
  background: var(--gold);
  color: var(--black);
}

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

.final-marquee span {
  padding: 18px 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  white-space: nowrap;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 38px;
  padding: 70px clamp(20px, 8vw, 120px);
  border-top: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  line-height: 1;
}

.footer p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer div:last-child {
  display: grid;
  align-content: start;
  gap: 18px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    background: transparent;
    color: var(--gold-bright);
    font-size: 22px;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--gold-line);
    background: var(--black);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--gold-line);
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 320px;
  }

  .location-content {
    margin-left: 0;
  }

  .location h2 {
    margin-bottom: 260px;
  }

  .legend-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jury-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .venue {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
    height: 320px;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px;
  }

  .brand-name {
    font-size: 34px;
  }

  .brand-text {
    max-width: 130px;
    font-size: 13px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 420px;
  }

  .intro h2,
  .living-legends h2,
  .tickets h2 {
    font-size: 54px;
  }

  .location {
    min-height: 720px;
  }

  .location h2 {
    margin-bottom: 220px;
    font-size: 48px;
  }

  .legend-grid,
  .team-grid,
  .jury-grid,
  .cards,
  .panel-grid,
  .legend-grid {
    grid-template-columns: 1fr;
  }

  .signup {
    flex-direction: column;
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    height: 420px;
  }

  .map-card span {
    font-size: 44px;
  }

  summary {
    min-height: 94px;
  }

  summary span {
    font-size: 48px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055) translate3d(0, -1.5%, 0);
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(239, 35, 60, 0.08);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(29, 78, 216, 0.14);
  }
}

@keyframes mapPin {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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