@font-face {
  font-family: "Bunko";
  src: url("assets/fonts/Bunko.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #FAF3E3;
  --blue: #4482EF;
  --red: #F03114;
  --black: #080808;
  --white: #ffffff;
  --shadow: 8px 8px 0 var(--black);
  --font-main: "Bunko", Arial, Helvetica, sans-serif;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  padding-top: var(--header-height);
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 20% 0%, rgba(68, 130, 239, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(240, 49, 20, 0.10), transparent 22rem),
    var(--cream);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

main {
  width: 100%;
  overflow-x: hidden;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

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

button {
  font-family: inherit;
}

::selection {
  background: var(--red);
  color: var(--cream);
}

.site-header {
  width: 100%;
  min-height: var(--header-height);
  padding: 14px 34px;
  background: rgba(250, 243, 227, 0.94);
  color: var(--black);
  border-bottom: 3px solid var(--black);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 0 var(--black);
}

.logo,
.footer-brand {
  display: flex;
  align-items: center;
  width: fit-content;
}

.logo img {
  width: clamp(122px, 13vw, 178px);
  height: auto;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
}

.main-nav a,
.header-btn {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.header-btn:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.header-btn {
  padding: 11px 22px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--black);
}

.menu-toggle {
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  justify-self: end;
  z-index: 10001;
}

.menu-toggle span {
  width: 100%;
  height: 4px;
  background: var(--black);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding: 86px 34px 92px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.12) 0 25%, transparent 25% 50%, rgba(8, 8, 8, 0.12) 50% 75%, transparent 75%),
    var(--blue);
  background-size: 28px 28px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 52% 48% 61% 39% / 45% 54% 46% 55%;
  background: var(--red);
  z-index: 1;
}

.hero::before {
  width: clamp(300px, 42vw, 720px);
  height: clamp(300px, 42vw, 720px);
  left: -18vw;
  bottom: -20vw;
}

.hero::after {
  width: clamp(260px, 35vw, 580px);
  height: clamp(260px, 35vw, 580px);
  right: -13vw;
  top: -16vw;
}

.hero-meta {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 5vw, 70px);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.hero-meta span:nth-child(2) {
  padding: 6px 30px;
  border: 2px solid var(--cream);
  border-radius: 999px;
}

.hero-grid {
  width: min(1280px, 100%);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.hero-content {
  text-align: left;
  overflow: visible;
  z-index: 6;
}

.hero-kicker {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--cream);
  text-wrap: balance;
}

.hero h1 {
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  line-height: 0.78;
  letter-spacing: -3px;
  display: flex;
  flex-direction: column;
}

.hero h1 span {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(82px, 11vw, 190px);
  white-space: nowrap;
}

.hero h1 span:first-child {
  color: var(--red);
  text-shadow:
    4px 4px 0 var(--cream),
    -4px 4px 0 var(--cream),
    4px -4px 0 var(--cream),
    -4px -4px 0 var(--cream);
}

.hero h1 span:last-child {
  color: var(--cream);
  text-shadow:
    4px 4px 0 var(--red),
    -4px 4px 0 var(--red),
    4px -4px 0 var(--red),
    -4px -4px 0 var(--red);
}

.hero-subtitle {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.25;
  color: var(--cream);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 520px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.18s ease;
}

.hero-photo {
  width: min(100%, 470px);
  aspect-ratio: 0.84;
  margin-left: auto;
  border: 4px solid var(--black);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 49, 20, 0.18), transparent 12rem),
    radial-gradient(circle at 84% 72%, rgba(68, 130, 239, 0.20), transparent 14rem),
    var(--cream);
  box-shadow: 14px 14px 0 var(--black);
  overflow: hidden;
  transform: rotate(3deg);
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 38px);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(8, 8, 8, 0.12));
}

.hero-sticker {
  position: absolute;
  width: 136px;
  height: 136px;
  border: 4px solid var(--black);
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 20px;
  line-height: 0.95;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--black);
}

.hero-sticker-time {
  left: 0;
  top: 54px;
  background: var(--red);
  color: var(--cream);
  transform: rotate(-10deg);
}

.hero-sticker-place {
  right: 8px;
  bottom: 34px;
  background: var(--cream);
  color: var(--red);
  transform: rotate(10deg);
}

.btn {
  min-height: 58px;
  min-width: 200px;
  padding: 17px 28px;
  border: 3px solid var(--black);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--black);
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 6px 0 var(--black);
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--red);
}

.btn-secondary {
  background: var(--cream);
  color: var(--red);
  box-shadow: 0 6px 0 var(--black);
}

.btn-secondary:hover {
  background: var(--red);
  color: var(--cream);
}

.checker {
  height: 34px;
  background-image:
    linear-gradient(45deg, var(--cream) 25%, transparent 25%),
    linear-gradient(-45deg, var(--cream) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--cream) 75%),
    linear-gradient(-45deg, transparent 75%, var(--cream) 75%);
  background-size: 34px 34px;
  background-position: 0 0, 0 17px, 17px -17px, -17px 0;
}

.checker-hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
}

.checker-section {
  width: 100%;
  margin-top: 70px;
}

.marquee-section {
  width: 100%;
  overflow: hidden;
  background: var(--red);
  color: var(--cream);
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}

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

.marquee-track span {
  display: block;
  padding: 18px 0;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

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

.intro-section {
  padding: 95px 34px 60px;
  background: var(--cream);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.section-sticker {
  position: absolute;
  width: clamp(120px, 16vw, 230px);
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.section-sticker-left {
  left: max(18px, 4vw);
  top: 58px;
  transform: rotate(-9deg);
}

.section-sticker-right {
  right: max(18px, 5vw);
  bottom: 26px;
  transform: rotate(8deg);
}

.intro-text {
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mini-title,
.section-kicker {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intro-text .mini-title {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 18px;
}

.intro-text h2 {
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.intro-text strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(54px, 11vw, 150px);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--red);
  text-shadow:
    3px 3px 0 var(--blue),
    -3px 3px 0 var(--blue),
    3px -3px 0 var(--blue),
    -3px -3px 0 var(--blue);
  overflow-wrap: anywhere;
}

.intro-text p:last-child {
  max-width: 820px;
  margin: 34px auto 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
  text-transform: uppercase;
}

.experience-section {
  width: min(var(--max-width), calc(100% - 68px));
  margin: 30px auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card,
.food-card,
.sponsor-grid div,
.location-text,
.map-box,
.faq-item,
.tickets-section {
  box-shadow: var(--shadow);
}

.experience-card {
  min-height: 230px;
  padding: 28px;
  border: 4px solid var(--black);
  border-radius: 24px;
  background: var(--cream);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 12px 0 var(--black);
}

.experience-card span,
.food-card-top small {
  width: fit-content;
  padding: 7px 13px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  font-size: 16px;
  line-height: 1;
}

.experience-card h3 {
  font-size: 46px;
  line-height: 0.9;
  color: var(--red);
  text-transform: uppercase;
}

.experience-card p {
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.split-section {
  width: min(1280px, calc(100% - 80px));
  margin: 40px auto 110px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(420px, 720px) minmax(190px, 1fr);
  align-items: center;
  gap: 34px;
}

.side-info {
  text-align: center;
}

.side-info h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.side-info p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  text-transform: uppercase;
}

.burger-shape {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.burger-real-cutout {
  width: min(82%, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(8, 8, 8, 0.22));
  animation: burgerFloat 4.2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.burger-character {
  position: absolute;
  width: clamp(130px, 17vw, 235px);
  right: 0;
  bottom: 7%;
  z-index: 3;
  transform: rotate(8deg);
  filter: drop-shadow(0 14px 12px rgba(8, 8, 8, 0.16));
  pointer-events: none;
}

@keyframes burgerFloat {
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.menu-badge {
  position: absolute;
  top: 6%;
  right: 2%;
  width: clamp(120px, 13vw, 185px);
  height: clamp(120px, 13vw, 185px);
  padding: 20px;
  background: var(--red);
  color: var(--cream);
  border: 3px solid var(--black);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 25px);
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 3;
  box-shadow: 6px 6px 0 var(--black);
}

.menu-badge:hover {
  transform: scale(1.05) rotate(-4deg);
  background: var(--blue);
}

.section {
  padding: 95px 34px;
  position: relative;
  overflow: hidden;
}

.section-header {
  width: min(var(--max-width), 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2,
.location-text h2,
.tickets-section h2 {
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-wrap: balance;
}

.section-blue {
  background: var(--blue);
  color: var(--cream);
}

.section-red {
  background: var(--red);
  color: var(--cream);
}

.section-bg-sticker {
  position: absolute;
  right: max(-70px, -5vw);
  bottom: -120px;
  width: clamp(260px, 34vw, 520px);
  opacity: 0.18;
  transform: rotate(-12deg);
  pointer-events: none;
}

.section-blue .section-kicker,
.section-blue .section-header h2,
.section-red .section-kicker,
.section-red .section-header h2 {
  color: var(--cream);
}

#puestos .section-header {
  overflow: visible;
  padding-left: 12px;
  padding-right: 12px;
}

.section-title-puestos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow: visible;
}

.section-title-puestos span {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
  line-height: 0.88;
}

.cards-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.food-card {
  min-height: 300px;
  padding: 25px;
  border: 4px solid var(--cream);
  border-radius: 24px;
  background: var(--cream);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.food-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  background: var(--red);
  color: var(--cream);
  box-shadow: 12px 12px 0 var(--black);
}

.food-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.food-card-top span {
  font-size: 22px;
  line-height: 1;
  color: var(--blue);
}

.food-card-top small {
  font-size: 13px;
  text-transform: uppercase;
}

.food-card h3 {
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
}

.food-card p {
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.agenda-section {
  background: var(--cream);
}

.agenda-section .section-kicker,
.faq-section .section-kicker {
  color: var(--blue);
}

.timeline {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 4px solid var(--black);
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 4px solid var(--black);
}

.timeline-item strong {
  font-size: 46px;
  color: var(--red);
  line-height: 1;
}

.timeline-item p {
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
}

.sponsor-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sponsor-grid div {
  min-height: 150px;
  background: var(--cream);
  color: var(--red);
  border: 4px solid var(--black);
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.location-section {
  width: min(var(--max-width), calc(100% - 68px));
  margin: 95px auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  justify-items: center;
}

.location-text {
  width: 100%;
  padding: 42px;
  border: 4px solid var(--black);
  border-radius: 28px;
  background: var(--blue);
  color: var(--cream);
}

.location-text .section-kicker {
  color: var(--cream);
}

.location-text p:not(.section-kicker) {
  margin: 24px 0 32px;
  font-size: 21px;
  line-height: 1.3;
  text-transform: uppercase;
}

.map-box {
  width: 100%;
  min-height: 430px;
  border: 4px solid var(--black);
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
  line-height: 0;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

.faq-section {
  width: min(940px, calc(100% - 68px));
  margin: 0 auto;
  padding-inline: 0;
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 4px solid var(--black);
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: none;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.faq-question span {
  font-size: 44px;
  line-height: 0.8;
  color: var(--red);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  font-size: 19px;
  line-height: 1.3;
  text-transform: uppercase;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.tickets-section {
  width: min(var(--max-width), calc(100% - 68px));
  margin: 40px auto 100px;
  padding: 75px 40px;
  background: var(--red);
  color: var(--cream);
  border: 4px solid var(--black);
  border-radius: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tickets-sticker {
  position: absolute;
  left: clamp(-52px, -4vw, -18px);
  bottom: -58px;
  width: clamp(190px, 24vw, 330px);
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.tickets-section::before {
  content: "";
  width: 460px;
  height: 460px;
  background: var(--blue);
  border-radius: 52% 48% 62% 38% / 47% 54% 46% 53%;
  position: absolute;
  left: -180px;
  bottom: -250px;
  opacity: 0.9;
}

.tickets-section p,
.tickets-section h2,
.tickets-section span,
.tickets-section a {
  position: relative;
  z-index: 2;
}

.tickets-section p {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tickets-section span {
  display: block;
  max-width: 720px;
  margin: 26px auto 34px;
  font-size: 23px;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer {
  padding: 34px;
  background: var(--black);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1050px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
  }

  .logo img {
    width: 138px;
  }

  .main-nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.active {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    padding: 26px;
    background: var(--red);
    color: var(--cream);
    border: 4px solid var(--black);
    border-radius: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    z-index: 9998;
  }

  .main-nav.active a {
    color: var(--cream);
    font-size: 26px;
    line-height: 1;
  }

  .hero {
    min-height: auto;
    padding: 96px 20px 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 span {
    font-size: clamp(58px, 13vw, 132px);
    white-space: normal;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 410px;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .hero-photo {
    margin: 0 auto;
  }

  .experience-section,
  .split-section,
  .location-section {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .burger-shape {
    order: -1;
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .cards-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
    --shadow: 6px 6px 0 var(--black);
  }

  .site-header {
    padding: 10px 16px;
  }

  .menu-toggle {
    width: 34px;
    height: 26px;
  }

  .logo img {
    width: 118px;
  }

  .hero {
    padding: 88px 18px 78px;
    text-align: center;
  }

  .hero-meta {
    top: 24px;
    left: 18px;
    right: 18px;
    gap: 10px;
    font-size: 10px;
  }

  .hero-meta span:nth-child(2) {
    padding: 5px 15px;
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero h1 {
    line-height: 0.86;
    letter-spacing: -1px;
  }

  .hero h1 span {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero h1 span:first-child {
    text-shadow:
      2px 2px 0 var(--cream),
      -2px 2px 0 var(--cream),
      2px -2px 0 var(--cream),
      -2px -2px 0 var(--cream);
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.28;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-photo {
    width: min(86%, 330px);
    border-radius: 26px;
    box-shadow: var(--shadow);
  }

  .hero-sticker {
    width: 96px;
    height: 96px;
    font-size: 14px;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .hero-sticker-time {
    left: 4px;
    top: 42px;
  }

  .hero-sticker-place {
    right: 0;
    bottom: 38px;
  }

  .btn {
    width: 100%;
    max-width: 310px;
    min-width: 0;
    min-height: 54px;
    padding: 15px 22px;
    font-size: 17px;
  }

  .checker {
    height: 24px;
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  }

  .marquee-track span {
    font-size: 20px;
    padding: 15px 0;
  }

  .intro-section,
  .section {
    padding: 66px 18px;
  }

  .section-sticker {
    width: 118px;
    opacity: 0.28;
  }

  .section-sticker-left {
    left: -28px;
    top: 28px;
  }

  .section-sticker-right {
    right: -36px;
    bottom: 8px;
  }

  .section-bg-sticker {
    right: -130px;
    bottom: -80px;
    width: 330px;
    opacity: 0.12;
  }

  .intro-text .mini-title,
  .section-kicker {
    font-size: 15px;
  }

  .intro-text h2 {
    font-size: clamp(40px, 14vw, 68px);
  }

  .intro-text strong {
    font-size: clamp(50px, 17vw, 86px);
    text-shadow:
      2px 2px 0 var(--blue),
      -2px 2px 0 var(--blue),
      2px -2px 0 var(--blue),
      -2px -2px 0 var(--blue);
  }

  .intro-text p:last-child,
  .experience-card p,
  .food-card p,
  .location-text p:not(.section-kicker),
  .tickets-section span {
    font-size: 15px;
    line-height: 1.3;
  }

  .experience-section,
  .split-section,
  .location-section,
  .faq-section,
  .tickets-section {
    width: calc(100% - 36px);
  }

  .experience-section {
    margin: 25px auto 60px;
    gap: 18px;
  }

  .experience-card {
    min-height: 210px;
    padding: 24px;
  }

  .experience-card h3 {
    font-size: 38px;
  }

  .burger-shape {
    min-height: 430px;
  }

  .burger-real-cutout {
    max-width: 430px;
    margin: 0 auto;
  }

  .burger-character {
    width: 138px;
    right: -8px;
    bottom: 10%;
  }

  .menu-badge {
    width: 108px;
    height: 108px;
    padding: 12px;
    font-size: 13px;
    right: 2%;
    top: 2%;
    border-width: 2px;
  }

  .side-info h3 {
    font-size: 36px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2,
  .location-text h2,
  .tickets-section h2 {
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.5px;
  }

  #puestos .section-header {
    padding-left: 0;
    padding-right: 0;
  }

  #puestos .section-title-puestos span {
    font-size: clamp(21px, 5.1vw, 30px);
    line-height: 0.92;
    white-space: nowrap;
    letter-spacing: -0.2px;
  }

  .cards-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .food-card {
    min-height: 220px;
    padding: 22px;
  }

  .food-card h3 {
    font-size: 31px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .timeline-item strong {
    font-size: 36px;
  }

  .timeline-item p {
    font-size: 16px;
  }

  .sponsor-grid div {
    min-height: 115px;
    font-size: 23px;
  }

  .location-text {
    padding: 28px 22px;
    border-radius: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-box {
    min-height: 300px;
    border-radius: 26px;
  }

  .map-box iframe {
    min-height: 300px;
  }

  .faq-question {
    padding: 20px;
    font-size: 22px;
  }

  .faq-question span {
    font-size: 36px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
    font-size: 15px;
  }

  .tickets-section {
    margin: 34px auto 76px;
    padding: 52px 22px;
    border-radius: 30px;
  }

  .tickets-sticker {
    width: 180px;
    left: -78px;
    bottom: -42px;
    opacity: 0.45;
  }

  .tickets-section p {
    font-size: 17px;
  }

  .site-footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .hero-meta {
    font-size: 9px;
    gap: 8px;
  }

  .hero h1 span {
    font-size: clamp(38px, 14vw, 56px);
  }

  #puestos .section-title-puestos span {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}