/* SORB 2026 — Queen's University */

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

:root {
  --navy: #002452;
  --gold: #fabd0f;
  --red: #b90e31;
  --navy-light: #003478;
  --navy-dark: #001a3d;
  --gold-light: #fcd44f;
  --gold-dark: #7a5c00;
  --red-light: #d4213f;
  --off-white: #f8f7f4;
  --light-gray: #e9e7e2;
  --text: #1a1a1a;
  --text-muted: #555;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --radius: 6px;
  --transition: .25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity .5s ease;
}

body.loaded {
  opacity: 1;
}

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

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

/* Restore link affordance in body content */
.venue-details a,
.contact-bar a,
.section-subtitle a,
.guideline-card__text a,
.info-card__text a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.venue-details a:hover,
.section-subtitle a:hover {
  color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  font-weight: 700;
}

/* Skip Nav */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top .2s;
}

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

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-header :focus-visible {
  outline-color: var(--gold);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
}

.container--xs {
  max-width: 600px;
}

.section {
  padding: 80px 0;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--gold {
  background: var(--gold);
  color: var(--navy);
}

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

.section--light {
  background: var(--off-white);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section--navy .section-label {
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section--navy .section-subtitle {
  color: rgba(255, 255, 255, .7);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(250, 189, 15, .35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px) scale(1.02);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(185, 14, 49, .3);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn--disabled {
  opacity: .45;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 10px;
  background: var(--white);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo__img {
  height: 140px;
  width: auto;
}

.header-nav {
  background: var(--navy);
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0;
}

.header-nav__item a {
  display: block;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  transition: all var(--transition);
  position: relative;
}

.header-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.header-nav__item a:hover,
.header-nav__item a.active {
  color: var(--white);
}

.header-nav__item a:hover::after,
.header-nav__item a.active::after {
  width: calc(100% - 48px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all .3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
  color: var(--white);
  animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {
  0%, 100% { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #001230 100%); }
  50% { background: linear-gradient(135deg, #001230 0%, var(--navy) 40%, var(--navy-dark) 100%); }
}

/* Floating shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--gold);
  top: -60px;
  right: -80px;
  animation: float1 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 180px;
  height: 180px;
  background: var(--red);
  bottom: -40px;
  left: 5%;
  animation: float2 10s ease-in-out infinite;
}

.hero__shape--3 {
  width: 120px;
  height: 120px;
  border: 2px solid var(--white);
  top: 30%;
  left: -30px;
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 30px) rotate(15deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -25px) scale(1.05); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 20px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 820px;
  animation: heroFadeIn .8s ease .2s both;
}

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

.hero__edition {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Countdown */
.countdown {
  background: var(--white);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.countdown__label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.countdown__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown__box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 100px;
  text-align: center;
}

.countdown__number {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: transform .3s ease;
}

.countdown__number.tick {
  animation: countTick .4s ease;
}

@keyframes countTick {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.countdown__unit {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px;
}

/* Stats */
.stats {
  background: var(--navy);
  padding: 56px 0;
  border-top: 3px solid var(--gold);
}

.stats__grid {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stats__item {
  text-align: center;
  color: var(--white);
}

.stats__number {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.stats__number span {
  color: rgba(255, 255, 255, .5);
}

.stats__desc {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 8px;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  border-top: 3px solid transparent;
  transition: all .3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-top-color: var(--navy);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.info-card__text {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Announcement Banner */
.announcement {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.announcement__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .15);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.announcement__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 700px;
  margin: 0 auto 24px;
}

/* Schedule (Program) */
.schedule-block {
  border-left: 3px solid var(--navy);
  padding-left: 28px;
  margin-bottom: 40px;
  position: relative;
}

.schedule-block::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.schedule-block__time {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--red);
  margin-bottom: 4px;
}

.schedule-block__title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.schedule-block__desc {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Timeline (Registration) */
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline__item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  z-index: 1;
}

.timeline__item--active::before {
  background: var(--gold);
  border-color: var(--gold);
}

.timeline__date {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .03em;
  margin-bottom: 2px;
}

.timeline__text {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
}

/* Guidelines — prose layout instead of card grid */
.guidelines {
  margin-top: 40px;
}

.guideline-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--light-gray);
}

.guideline-item:first-child {
  padding-top: 0;
}

.guideline-item:last-child {
  border-bottom: none;
}

.guideline-item__title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.guideline-item__text {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.guideline-item__text ul {
  list-style: none;
  margin-top: 8px;
}

.guideline-item__text ul li {
  padding: 4px 0 4px 16px;
  position: relative;
}

.guideline-item__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
}

/* Sponsors */
.sponsors-tier {
  margin-bottom: 56px;
}

.sponsors-tier__title {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}

.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.sponsor-placeholder {
  width: 180px;
  height: 90px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: var(--text-muted);
  border: 1px dashed #ccc;
  transition: all .3s ease;
}

.sponsor-placeholder:hover {
  background: #e0ddd7;
  transform: translateY(-2px);
}

/* Venue */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.venue-details h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 24px;
}

.venue-details h3:first-child {
  margin-top: 0;
}

.venue-details p {
  font-family: 'Inter', sans-serif;
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.venue-map {
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.venue-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
  transition: transform .3s ease;
}

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

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-gray);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: var(--text-muted);
  border: 3px solid var(--navy);
  transition: border-color .3s ease, transform .3s ease;
}

.team-card:hover .team-card__photo {
  border-color: var(--gold);
  transform: scale(1.05);
}

.team-card__name {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-card__role {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--text-muted);
}

/* Bio Cards (About page) */
.team-grid-bio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.bio-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}

.bio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bio-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 280px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-card__photo span {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--text-muted);
}

.bio-card__body {
  padding: 24px 28px 28px;
}

.bio-card__name {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.bio-card__role {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.bio-card__bio {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .65);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand__img {
  height: 120px;
  width: auto;
  margin-bottom: 8px;
}

.footer-brand__text {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
}

/* Page Header (inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 24px 48px;
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.page-header__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
}

.page-header__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Contact Bar */
.contact-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 40px 24px;
}

.contact-bar p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
}

.contact-bar a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Land Acknowledgement */
.acknowledgement {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--navy);
  padding-left: 20px;
  max-width: 700px;
}

/* Scroll Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate {
  opacity: 0;
}

.animate.in-view {
  animation-duration: .6s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.animate--fade-up.in-view {
  animation-name: fadeUp;
}

.animate--fade-in.in-view {
  animation-name: fadeIn;
}

.animate--slide-left.in-view {
  animation-name: slideLeft;
}

.animate--slide-right.in-view {
  animation-name: slideRight;
}

/* Stagger delays */
.animate--d1 { animation-delay: .1s; }
.animate--d2 { animation-delay: .2s; }
.animate--d3 { animation-delay: .3s; }
.animate--d4 { animation-delay: .4s; }
.animate--d5 { animation-delay: .5s; }
.animate--d6 { animation-delay: .6s; }
.animate--d7 { animation-delay: .7s; }
.animate--d8 { animation-delay: .8s; }

/* Responsive */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .stats__grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-top {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .header-nav__list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .header-nav__list.open {
    display: flex;
  }

  .header-nav__item a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .hero {
    min-height: 460px;
  }

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

  .section {
    padding: 56px 0;
  }

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

  .countdown__grid {
    gap: 12px;
  }

  .countdown__box {
    min-width: 72px;
    padding: 14px 16px;
  }

  .countdown__number {
    font-size: 1.75rem;
  }

  .stats__number {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
  }

  .hero__actions .btn {
    width: 100%;
  }

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