*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --indian-red: #A41E35;
  --indian-dark: #7A1528;
  --indian-deep: #3D0911;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --light: #F4F3F1;
  --mid-grey: #E0DFDD;
  --text: #2A2A2A;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --dark: #0C0C0C;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  margin: inherit !important;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}

.nav--scrolled {
  background: var(--white);
  padding: 8px 48px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.nav.menu-open {
  background: transparent !important;
  box-shadow: none !important;
}

.nav.menu-open .nav__logo img {
  filter: brightness(10);
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo img {
  max-height: 70px;
  max-width: 200px;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav--scrolled .nav__logo img {
  opacity: 0;
  visibility: hidden;
}

.nav--scrolled .nav__logo img.dark {
  opacity: 1;
  visibility: visible;
}

.nav__logo img.dark {
  opacity: 0;
  visibility: hidden;
}

.nav--scrolled .nav__logo img {
  max-height: 50px;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.nav--scrolled .nav__links a {
  color: var(--text-light);
}

.nav__links a:hover {
  color: var(--white);
}

.nav--scrolled .nav__links a:hover {
  color: var(--indian-red);
}

.nav__ticket {
  background: var(--white) !important;
  color: var(--indian-red) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  transition: all 0.3s;
}

.nav--scrolled .nav__ticket {
  background: var(--indian-red) !important;
  color: var(--white) !important;
}

.nav__ticket:hover {
  opacity: 0.85;
}

/* HAMBURGER */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
  padding: 10px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  transition: all 0.35s ease;
  border-radius: 2px;
  transform-origin: center;
}

.nav--scrolled .nav__burger span {
  background: var(--text);
}

/* When open: force white, bigger X */
.nav__burger.open span {
  background: var(--white) !important;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: linear-gradient(
    135deg,
    var(--indian-deep),
    var(--indian-red) 60%,
    var(--indian-dark)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__links li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu__links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open .mobile-menu__links li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.open .mobile-menu__links li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.open .mobile-menu__links li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.open .mobile-menu__links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 12px 0;
  display: block;
  transition: opacity 0.3s;
}

.mobile-menu__links a:hover {
  opacity: 0.7;
}

.mobile-menu__ticket {
  margin-top: 28px;
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--indian-red);
  background: var(--white);
  padding: 14px 40px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu__ticket {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--indian-red);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroPan 24s ease-in-out infinite alternate;
}

@keyframes heroPan {
  0% {
    transform: scale(1.03) translateX(0);
  }

  100% {
    transform: scale(1.07) translateX(-1.5%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--indian-red) 0%,
      rgba(164, 30, 53, 0.92) 18%,
      rgba(164, 30, 53, 0.6) 35%,
      rgba(164, 30, 53, 0.15) 55%,
      transparent 70%
    ),
    linear-gradient(
      to top,
      rgba(12, 12, 12, 0.9) 0%,
      rgba(12, 12, 12, 0.5) 15%,
      transparent 40%
    ),
    linear-gradient(
      to bottom,
      rgba(110, 15, 30, 0.45) 0%,
      transparent 22%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.hero__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero__title span {
  display: block;
  color: var(--white);
  font-size: 0.48em;
  font-weight: 600;
  letter-spacing: 4px;
  opacity: 0.85;
  margin-top: 4px;
}

.hero__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.hero__date::before,
.hero__date::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--white);
  opacity: 0.4;
}

.hero__cta {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--indian-red);
  background: var(--white);
  padding: 16px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
  cursor: pointer;
}

.hero__cta:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fadeUp 0.7s 1.2s forwards;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 100px 48px;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--indian-red);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 720px;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--indian-red);
  margin: 32px 0;
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
  position: relative;
}

.about::before {
  content: '125';
  position: absolute;
  top: -50px;
  right: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(180px, 22vw, 340px);
  text-transform: uppercase;
  color: rgba(164, 30, 53, 0.04);
  line-height: 1;
  pointer-events: none;
}

/* ========== IMAGE STRIP ========== */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

.img-strip__item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.img-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s;
  filter: brightness(0.75) saturate(0.9);
}

.img-strip__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.img-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.img-strip__caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

/* ========== RED STATS BANNER ========== */
.red-banner {
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--indian-deep) 0%,
    var(--indian-red) 40%,
    var(--indian-dark) 100%
  );
}

.red-banner .container {
  position: relative;
  z-index: 1;
}

.red-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  text-align: center;
}

.red-banner__stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.red-banner__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* ========== SCHEDULE ========== */
.schedule {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--indian-red);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.day-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  padding: 40px 34px;
  position: relative;
  transition: all 0.45s;
  border-radius: 30px;
}

.day-card:hover {
  border-color: var(--indian-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(164, 30, 53, 0.08);
}

.day-card__badge {
  position: absolute;
  top: -1px;
  left: 34px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--indian-red);
  color: var(--white);
  padding: 5px 14px;
}

.day-card__date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 22px;
  margin-bottom: 2px;
}

.day-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--indian-red);
  margin-bottom: 18px;
}

.day-card__list {
  list-style: none;
}

.day-card__list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--light);
  padding-left: 14px;
  position: relative;
}

.day-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--indian-red);
  transform: translateY(-50%) rotate(45deg);
}

/* ========== PHOTO BREAK ========== */
.photo-break {
  position: relative;
  height: 400px;
  overflow: hidden;
  padding: 0;
}

.photo-break__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.5);
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(164, 30, 53, 0.85) 0%,
    rgba(164, 30, 53, 0.35) 50%,
    rgba(164, 30, 53, 0.85) 100%
  );
}

.photo-break__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.photo-break__stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 10vw, 140px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.photo-break__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ========== HERITAGE ========== */
.heritage {
  background: var(--white);
  position: relative;
}

.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}

.heritage__block {
  margin-bottom: 44px;
}

.heritage__block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heritage__block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.heritage__highlight {
  background: rgba(164, 30, 53, 0.04);
  border-left: 3px solid var(--indian-red);
  padding: 24px 28px;
  margin-top: 28px;
}

.heritage__highlight p {
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
}

/* ========== CHAMPIONS ========== */
.champions {
  background: var(--light);
}

.champions__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.champ-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.champ-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--indian-red);
  opacity: 0;
  transition: opacity 0.4s;
}

.champ-card:hover {
  border-color: var(--indian-red);
  box-shadow: 0 6px 24px rgba(164, 30, 53, 0.06);
}

.champ-card:hover::before {
  opacity: 1;
}

.champ-card__icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 54px;
  color: var(--indian-red);
  line-height: 1;
  margin-bottom: 14px;
}

.champ-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.champ-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== TICKET CTA ========== */
.ticket-cta {
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.ticket-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--indian-deep) 0%,
    var(--indian-red) 30%,
    var(--indian-dark) 70%,
    var(--indian-deep) 100%
  );
}

.ticket-cta > * {
  position: relative;
  z-index: 1;
}

.ticket-cta .section-tag {
  color: rgba(255, 255, 255, 0.5);
}

.ticket-cta .section-title {
  color: var(--white);
}

.ticket-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ticket-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--indian-red);
  background: var(--white);
  padding: 18px 52px;
  transition: all 0.35s;
}

.ticket-btn:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ========== INFO ========== */
.info {
  background: var(--white);
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 44px;
}

.info__item {
  padding: 28px;
  background: var(--light);
  border: 1px solid var(--mid-grey);
  transition: all 0.4s;
  border-radius: 30px;
}

.info__item:hover {
  border-color: var(--indian-red);
  transform: translateY(-2px);
}

.info__item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--indian-red);
  margin-bottom: 10px;
}

.info__item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========== FOOTER ========== */
footer {
  background: var(--white);
  border-top: 3px solid var(--indian-red);
  padding: 44px 48px;
  text-align: center;
}

footer p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-muted);
}

footer a {
  color: var(--indian-red);
  text-decoration: none;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav {
    padding: 14px 28px;
  }

  .nav--scrolled {
    padding: 8px 28px;
  }

  section {
    padding: 80px 28px;
  }

  .hero__content {
    padding: 0 28px 70px;
  }

  .red-banner {
    padding: 60px 28px;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .heritage__grid {
    grid-template-columns: 1fr;
  }

  .champions__row {
    grid-template-columns: 1fr;
  }

  .img-strip {
    grid-template-columns: 1fr;
  }

  .img-strip__item {
    height: 240px;
  }

  .red-banner__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  section {
    padding: 64px 20px;
  }

  .hero__content {
    padding: 0 20px 60px;
  }

  .photo-break {
    height: 300px;
  }

  .photo-break__img {
    background-attachment: scroll;
  }

  .ticket-cta {
    padding: 80px 20px;
  }

  .schedule__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 16px;
  }

  .nav--scrolled {
    padding: 8px 16px;
  }

  .nav__logo img {
    max-height: 50px;
    max-width: 150px;
  }

  .nav--scrolled .nav__logo img {
    max-height: 40px;
  }

  section {
    padding: 56px 16px;
  }

  .hero__content {
    padding: 0 16px 50px;
  }

  .hero__title {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero__sub {
    letter-spacing: 2px;
    font-size: 14px;
  }

  .hero__date {
    font-size: 20px;
    gap: 10px;
  }

  .hero__date::before,
  .hero__date::after {
    width: 20px;
  }

  .hero__cta {
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero__scroll {
    display: none;
  }

  .red-banner {
    padding: 48px 16px;
  }

  .red-banner__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .red-banner__stat {
    font-size: 40px;
  }

  .red-banner__label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .day-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .day-card__badge {
    left: 24px;
  }

  .day-card__date {
    font-size: 32px;
  }

  .champ-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .champ-card__icon {
    font-size: 42px;
  }

  .champ-card__name {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .heritage__block h3 {
    font-size: 22px;
  }

  .photo-break {
    height: 240px;
  }

  .photo-break__stat {
    font-size: clamp(56px, 14vw, 90px);
  }

  .photo-break__label {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .info__item {
    padding: 22px;
    border-radius: 20px;
  }

  .ticket-cta {
    padding: 64px 16px;
  }

  .ticket-cta .section-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .ticket-btn {
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 3px;
  }

  footer {
    padding: 32px 16px;
  }

  .img-strip__item {
    height: 200px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 36px;
  }

  .red-banner__grid {
    gap: 16px;
  }

  .red-banner__stat {
    font-size: 32px;
  }
}