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

:root {
  --gold: #D4A152;
  --black: #000000;
  --card: #0d0d0d;
  --card-border: #1e1e1e;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #444444;
}

/* scroll-behavior: smooth removed — JS handles it with a custom eased duration */
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }

body {
  background: var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn--primary {
  background: #ffffff;
  color: #000000;
  padding: 16px 36px;
}
.btn--primary:hover { background: var(--gold); color: #000000; }

/* Devour animation — hero CTAs only */
.hero__ctas .btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.hero__ctas .btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}
.hero__ctas .btn--primary:hover::before {
  width: 400px;
  height: 400px;
}
.hero__ctas .btn--primary:hover { background: #ffffff; color: #000000; }
.btn--outline {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border: 1px solid #333;
}
.btn--outline:hover { border-color: #666; }
.btn--rsvp {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  font-size: 11px;
  white-space: nowrap;
  border-radius: 2px;
}
.btn--rsvp:hover { background: var(--gold); color: #000; }
.btn--large { padding: 18px 44px; font-size: 14px; }

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 56px;
  height: 110px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: #1a1a1a;
}
.nav__logo { text-decoration: none; display: flex; align-items: center; }
.nav__logo-img { width: 260px; max-width: 280px; height: auto; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--gold); }

.nav__divider {
  width: 1px;
  height: 28px;
  background: #3a3a3a;
  flex-shrink: 0;
}
.nav__cta {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); color: #000; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 100px;
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* Glow parallax wrappers — JS moves these */
.hero__glow-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Glow 1 — bottom-left (warm gold) */
.hero__glow--left {
  position: absolute;
  width: 1300px;
  height: 1300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,95,30,0.55) 0%, rgba(90,60,15,0.22) 40%, transparent 70%);
  filter: blur(110px);
  bottom: -500px;
  left: -350px;
  opacity: 0;
  animation:
    glow-to-bottomleft 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
    float-bottomleft   12s ease-in-out                   2.1s infinite;
}

/* Glow 2 — upper-right (soft grey/white) */
.hero__glow--right {
  position: absolute;
  width: 1300px;
  height: 1300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,90,90,0.55) 0%, rgba(55,55,55,0.22) 40%, transparent 70%);
  filter: blur(110px);
  top: -500px;
  right: -350px;
  opacity: 0;
  animation:
    glow-to-topright 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
    float-topright   14s ease-in-out                   2.1s infinite;
}

/* Hero inner — JS moves this for content parallax */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  will-change: transform;
}

/* Stage 1 — spread from center */
@keyframes glow-to-bottomleft {
  from { opacity: 0; transform: translate(calc(50vw - 300px), calc(-50vh + 150px)); }
  to   { opacity: 1; transform: translate(0, 0); }
}
@keyframes glow-to-topright {
  from { opacity: 0; transform: translate(calc(-50vw + 300px), calc(50vh - 150px)); }
  to   { opacity: 1; transform: translate(0, 0); }
}

/* Stage 2 — idle ambient float */
@keyframes float-bottomleft {
  0%   { transform: translate(0px,   0px);   }
  20%  { transform: translate(22px, -18px);  }
  45%  { transform: translate(-18px, -30px); }
  70%  { transform: translate(16px,  12px);  }
  100% { transform: translate(0px,   0px);   }
}
@keyframes float-topright {
  0%   { transform: translate(0px,   0px);  }
  25%  { transform: translate(-24px, 20px); }
  55%  { transform: translate(18px,  28px); }
  80%  { transform: translate(-12px,-16px); }
  100% { transform: translate(0px,   0px);  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── HERO LOAD SEQUENCE ── */
.hero__award-chip {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero__headline {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero__sub {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero__ctas {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
/* Partner logos — stagger left to right */
.hero__partner-row img:nth-child(1) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 1.60s both; }
.hero__partner-row img:nth-child(2) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 1.72s both; }
.hero__partner-row img:nth-child(3) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 1.84s both; }
.hero__partner-row img:nth-child(4) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 1.96s both; }
.hero__partner-row img:nth-child(5) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 2.08s both; }
.hero__partner-row img:nth-child(6) { animation: fade-up 0.5s cubic-bezier(0.16,1,0.3,1) 2.20s both; }
/* Award chip */
.hero__award-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #222222;
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero__award-chip svg {
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
.hero__award-chip span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666666;
}

.hero__content { position: relative; z-index: 1; }
.hero__ctas { position: relative; z-index: 1; }
.hero__partners { position: relative; z-index: 1; }
.hero__headline {
  font-family: 'Arimo', Arial, sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 28px;
}
.hero__headline--white { color: #ffffff; }
.hero__headline--gold  { color: var(--gold); }
.hero__sub {
  font-size: 20px;
  color: #888;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.hero__partners {
  margin-top: 80px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.hero__partner-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
.hero__partner-img {
  height: 36px;
  width: auto;
  opacity: 1;
}
.hero__partner-img--lg { height: 56px; }

/* ── CARD SECTIONS ── */
/* Every section below the hero is a card */
.card-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  margin: 0 24px 24px;
  padding: 80px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.card-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NORMAL SECTIONS ── */
.about, .programs, .events, .competitions, .partners, .join {
  padding: 120px 0;
}

/* ── SCROLL REVEAL ── */
.about, .programs, .events, .competitions, .partners, .team, .join, .partner-reg {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity   1s   cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.about.visible        { opacity: 1; transform: translateY(0) scale(1); }
.programs.visible     { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.events.visible       { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.competitions.visible { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.partners.visible     { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.team.visible         { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.join.visible         { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.partner-reg.visible  { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.footer { margin: 0; border-radius: 0; border: none; border-top: 1px solid #111; }

/* ── ABOUT ── */
.about__headline {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 780px;
  margin-bottom: 20px;
}
.about__body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  position: relative;
  z-index: 0;
}

/* Highlighter pen sweep animation */
.highlight-anim {
  position: relative;
  display: inline;
  color: #ffffff;
  padding: 0 3px;
  white-space: normal;
}
.highlight-anim::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 42%;
  background: rgba(212, 161, 82, 0.38);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.75s;
  z-index: -1;
  pointer-events: none;
}
.about.visible .highlight-anim::after {
  transform: scaleX(1);
}

/* ── ABOUT VIDEO ── */
.about__video-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 540px;
  border-radius: 48px;
  overflow: hidden;
  margin-top: 56px;
  background: #111;
}
.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #111;
}
.about__video:not([src=""]) ~ .about__video-placeholder { display: none; }
.about__video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212,161,82,0.12);
  border: 1px solid rgba(212,161,82,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about__video-placeholder p {
  font-size: 13px;
  color: #444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── AWARD ── */
.award {
  padding: 0;
}
.award__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left: text */
.award__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.award__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.award__headline {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}
.award__desc {
  font-size: 18px;
  line-height: 1.8;
  color: #9a9a9a;
  max-width: 560px;
}

/* Right: image */
.award__img-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: 32px;
  overflow: hidden;
  background: #050505;
  border: 1px solid #1a1a1a;
}
/* Subtle glow behind the frame */
.award__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(59,59,59,0.25) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.award__img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}
.award__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.award__img[src]:not([src=""]) ~ .award__img-placeholder { display: none; }

/* Scroll reveal */
.award {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity   1s   cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.award.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.05s;
}

/* ── PROGRAMS ── */
.programs__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.program-card {
  background: #050505;
  border: 1px solid #1f1f1f;
  border-radius: 0;
  padding: 32px;
  min-height: 150px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.program-card:hover {
  background: #0f0f0f;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 161, 82, 0.1);
}
.program-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}
.program-card p { font-size: 15px; color: #9a9a9a; line-height: 1.7; }

/* Mini sliders inside program image grid */
.mini-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mini-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.mini-slider__slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}
.mini-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.mini-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mini-slider__dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Asymmetric image grid */
.programs__imgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.programs__img-left {
  height: 620px;
  border-radius: 56px;
  overflow: hidden;
}
.programs__img-left img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.programs__img-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.programs__img-top,
.programs__img-bottom {
  flex: 1;
  border-radius: 56px;
  overflow: hidden;
}
.programs__img-top img,
.programs__img-bottom img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@media (max-width: 768px) {
  .programs__cards { grid-template-columns: repeat(2, 1fr); }
  .programs__imgrid { grid-template-columns: 1fr; }
  .programs__img-left { height: 320px; }
}

/* ── EVENTS ── */
.events__frame {
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
  padding: 80px 88px;
  border-radius: 32px;
  background: #111111;
  border: 1px solid #222222;
}
.events__list { display: flex; flex-direction: column; max-width: 900px; margin: 0 auto; }
.event-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 24px;
  border-bottom: 1px solid #222222;
  border-radius: 12px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.event-row:first-child { border-top: 1px solid #222222; }
.event-row:hover { background: #1a1a1a; }
.event-row:hover { padding-left: 10px; }
.event-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}
.event-row__month { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); }
.event-row__day   { font-size: 32px; font-weight: 800; line-height: 1; }
.event-row__info  { flex: 1; }
.event-row__info h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.event-row__info p  { font-size: 13px; color: var(--text-muted); }

/* ── COMPETITIONS ── */
.competitions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.comp-card {
  border: 1px solid var(--card-border);
  background: #111;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comp-card--active { border-color: var(--gold); }
.comp-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,170,66,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.comp-card__badge--past { color: var(--text-muted); background: #1a1a1a; }

.badge__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 6px;
  vertical-align: middle;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(0.7); }
}
.comp-card__badge--upcoming { color: #a0a0a0; background: #1a1a1a; }
.comp-card h3 { font-size: 20px; font-weight: 700; }
.comp-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.comp-card__notice-box {
  display: block;
  width: 100%;
  padding: 16px 36px;
  border: 1px solid #2e2e2e;
  background: transparent;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: default;
}

/* ── PARTNERS ── */
.partners__sub { font-size: 20px; color: var(--text-muted); max-width: 600px; margin-bottom: 48px; }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  width: 100%;
}
.partner-card {
  background: var(--card);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  min-height: 180px;
  opacity: 0;
  transform: translateY(28px);
  transition: background 0.2s ease,
              opacity  0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-card:hover { background: #141414; }

/* Stagger each card when partners section becomes visible */
.partners.visible .partner-card:nth-child(1) { opacity:1; transform:none; transition-delay: 0.15s; }
.partners.visible .partner-card:nth-child(2) { opacity:1; transform:none; transition-delay: 0.32s; }
.partners.visible .partner-card:nth-child(3) { opacity:1; transform:none; transition-delay: 0.49s; }
.partners.visible .partner-card:nth-child(4) { opacity:1; transform:none; transition-delay: 0.66s; }
.partners.visible .partner-card:nth-child(5) { opacity:1; transform:none; transition-delay: 0.83s; }
.partners.visible .partner-card:nth-child(6) { opacity:1; transform:none; transition-delay: 1.00s; }
.partner-card img {
  width: auto;
  height: 56px;
  max-width: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.partner-card p { font-size: 12px; color: var(--text-dim); }

/* ── TEAM ── */
.team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* Intro */
.team__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.team__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  max-width: 720px;
  margin-bottom: 16px;
}
.team__desc {
  font-size: 17px;
  line-height: 1.8;
  color: #9a9a9a;
  max-width: 600px;
}

/* ── Leadership profiles (borderless, on page bg) ── */
.team__profiles {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.team__profile-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* VP: flip so text is left, image is right */
.team__profile-card--reverse .team__profile-img-wrap { order: 2; }
.team__profile-card--reverse .team__profile-text    { order: 1; }

/* Image side */
.team__profile-img-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  aspect-ratio: 1.2 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0b0b;
}
.team__profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__profile-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
}
.team__profile-img[src]:not([src=""]) ~ .team__profile-img-placeholder { display: none; }

/* Text side */
.team__profile-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team__profile-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e5e5e5;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 6px 14px;
  align-self: flex-start;
}
.team__profile-name {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}
.team__profile-linkedin {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  align-self: flex-start;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.team__profile-linkedin:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.team__profile-headline {
  font-size: 18px;
  font-weight: 500;
  color: #d0d0d0;
  line-height: 1.55;
}
.team__profile-body {
  font-size: 16px;
  line-height: 1.8;
  color: #8f8f8f;
}

/* ── Other members (3-col) ── */
.team__members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team__member-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Member image */
.team__member-img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0d0d;
}
.team__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__member-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
}
.team__member-img[src]:not([src=""]) ~ .team__member-img-placeholder { display: none; }

/* Member text */
.team__member-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.team__member-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.team__member-role {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.03em;
}

/* ── JOIN FORM ── */
.join__card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 52px 48px;
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.join__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.join__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 44px;
}

/* Form layout */
.join__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
/* Stagger each field when section becomes visible */
.join.visible .form-field:nth-child(1) { opacity:1; transform:none; transition-delay: 0.18s; }
.join.visible .form-field:nth-child(2) { opacity:1; transform:none; transition-delay: 0.26s; }
.join.visible .form-field:nth-child(3) { opacity:1; transform:none; transition-delay: 0.34s; }
.join.visible .form-field:nth-child(4) { opacity:1; transform:none; transition-delay: 0.42s; }
.join.visible .form-field:nth-child(5) { opacity:1; transform:none; transition-delay: 0.50s; }
.join.visible .form-field:nth-child(6) { opacity:1; transform:none; transition-delay: 0.58s; }

/* Labels */
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #cccccc;
}
.form-label__opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
  color: #555;
}

/* Inputs */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-input::placeholder { color: #3a3a3a; }
.form-input:focus {
  border-color: rgba(212,161,82,0.7);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(212,161,82,0.1);
}

/* Select */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-select option { background: #111; color: #fff; }

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.65;
}

/* Interest tags (multi-select) */
.form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-tag {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.form-tag:hover {
  border-color: rgba(212,161,82,0.35);
  color: #999;
}
.form-tag.active {
  border-color: var(--gold);
  background: rgba(212,161,82,0.1);
  color: var(--gold);
}

/* Submit button */
.join__submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px 36px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1) 0.64s,
              transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.64s;
}
.join.visible .join__submit {
  opacity: 1;
  transform: none;
}
.join__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.join__submit:hover::before { transform: scaleX(1); }
.join__submit:hover { box-shadow: 0 8px 32px rgba(212,161,82,0.2); transform: translateY(-2px); }
.join__submit span, .join__submit { position: relative; z-index: 1; }

/* Success state */
.join__success {
  display: none;
  text-align: center;
  padding: 48px 0 16px;
}
.join__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212,161,82,0.1);
  border: 1px solid rgba(212,161,82,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 28px;
  animation: fade-up 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.join__success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.join__success p {
  color: var(--text-muted);
  font-size: 15px;
  animation: fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.18s both;
}

@media (max-width: 768px) {
  .join__card { padding: 32px 20px; }
}

/* ── PARTNER WITH US ── */
.partner-reg { padding: 120px 0; }

.partner-reg__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left — pitch */
.partner-reg__pitch {
  position: sticky;
  top: 130px;
}
.partner-reg__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}
.text-gold { color: var(--gold); }
.partner-reg__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.partner-reg__benefits-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}
.partner-reg__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.partner-reg__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}
.partner-reg__list li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.partner-reg__list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right — form card */
.partner-reg__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 48px 44px;
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
}
.partner-reg__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.partner-reg__card-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.partner-reg__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Field stagger for partner form */
.partner-reg.visible .partner-reg__form .form-field:nth-child(1) { opacity:1; transform:none; transition-delay: 0.16s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(2) { opacity:1; transform:none; transition-delay: 0.24s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(3) { opacity:1; transform:none; transition-delay: 0.32s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(4) { opacity:1; transform:none; transition-delay: 0.40s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(5) { opacity:1; transform:none; transition-delay: 0.48s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(6) { opacity:1; transform:none; transition-delay: 0.56s; }
.partner-reg.visible .partner-reg__form .form-field:nth-child(7) { opacity:1; transform:none; transition-delay: 0.64s; }

/* Submit button */
.partner-reg__submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px 36px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1) 0.70s,
              transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.70s,
              box-shadow 0.2s ease;
}
.partner-reg.visible .partner-reg__submit { opacity: 1; transform: none; }
.partner-reg__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.partner-reg__submit:hover::before { transform: scaleX(1); }
.partner-reg__submit:hover {
  box-shadow: 0 8px 32px rgba(212,161,82,0.2);
  transform: translateY(-2px);
}
.partner-reg__submit span, .partner-reg__submit { position: relative; z-index: 1; }

/* Success state */
.partner-reg__success {
  display: none;
  text-align: center;
  padding: 48px 0 16px;
}
.partner-reg__success h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.partner-reg__success p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  animation: fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.18s both;
}

/* Mobile */
@media (max-width: 900px) {
  .partner-reg__inner { grid-template-columns: 1fr; gap: 48px; }
  .partner-reg__pitch { position: static; }
  .partner-reg__card { padding: 32px 22px; }
}


/* ── FOOTER ── */
.footer {
  margin: 0 24px 24px;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card);
  padding: 40px 0 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 5px; }
.footer__name   { font-size: 15px; font-weight: 700; }
.footer__tagline { font-size: 12px; color: var(--text-muted); }
.footer__socials { display: flex; gap: 20px; }
.footer__socials a { color: #444; transition: color 0.2s; }
.footer__socials a:hover { color: var(--gold); }
.footer__copy {
  border-top: 1px solid var(--card-border);
  padding: 20px 40px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* Global */
body { overflow-x: hidden; }

/* ── DESKTOP  1024px and above ── */
@media (min-width: 1024px) {
  /* Shift hero content block slightly above center — margin is used instead of
     transform so it doesn't conflict with the JS parallax on .hero__inner */
  .hero__inner { margin-top: -55px; }
}

/* ── TABLET  768px – 1023px ── */
@media (max-width: 1023px) {
  .container { padding: 0 32px; }

  /* Nav */
  .nav { padding: 28px 40px; }
  .nav__logo-img { width: 200px; }
  .nav__links { gap: 20px; }
  .nav__link { font-size: 14px; }
  .nav__cta { padding: 12px 22px; font-size: 14px; }

  /* Hero */
  .hero { padding: 140px 32px 80px; }

  /* About video */
  .about__video-wrap { height: 400px; border-radius: 36px; }

  /* Award */
  .award__inner { padding: 72px 32px; gap: 40px; }
  .award__headline { font-size: 42px; }
  .award__desc { font-size: 16px; }
  .award__img-wrap { height: 360px; }

  /* Team */
  .team__container { padding: 96px 32px; gap: 56px; }
  .team__profiles { gap: 72px; }
  .team__profile-card { gap: 40px; }
  .team__profile-img-wrap { height: 360px; aspect-ratio: auto; }
  .team__members { grid-template-columns: repeat(2, 1fr); }

  /* Programs */
  .programs__cards { grid-template-columns: repeat(2, 1fr); }
  .programs__img-left { height: 500px; border-radius: 40px; }
  .programs__img-top,
  .programs__img-bottom { border-radius: 40px; }

  /* Partners */
  .partners__grid { grid-template-columns: repeat(3, 1fr); }

  /* Events */
  .events__frame { padding: 60px 48px; }

  /* Partner reg */
  .partner-reg__inner { gap: 48px; }
}

/* ── MOBILE  below 768px ── */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  /* ── Nav ── */
  .nav { padding: 34px 28px; height: auto; }
  .nav__logo-img { width: 280px; max-width: 72%; height: auto; }
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 6px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .nav__hamburger span { width: 20px; height: 2px; background: #ffffff; }

  /* Slide-in drawer from right */
  .nav__right {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #050505;
    border-left: 1px solid #1a1a1a;
    padding: 88px 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    overflow-y: auto;
  }
  .nav__right.open { transform: translateX(0); }
  .nav__links { flex-direction: column; gap: 0; width: 100%; }
  .nav__link { padding: 16px 0; border-bottom: 1px solid #1a1a1a; display: block; width: 100%; font-size: 17px; }
  .nav__divider { display: none; }
  .nav__cta { width: 100%; text-align: center; padding: 16px; border-radius: 12px; }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 130px 20px calc(80px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    clip-path: inset(0);
  }

  /* Glows: match desktop colours, scaled for mobile — clip-path:inset(0) on .hero contains overflow */
  .hero__glow--left {
    width: 700px;
    height: 700px;
    bottom: -260px;
    left: -220px;
    background: radial-gradient(circle, rgba(140,95,30,0.60) 0%, rgba(90,60,15,0.25) 40%, transparent 70%);
    animation: none;
    opacity: 1;
    filter: blur(110px);
  }
  .hero__glow--right {
    width: 700px;
    height: 700px;
    top: -260px;
    right: -220px;
    background: radial-gradient(circle, rgba(90,90,90,0.55) 0%, rgba(55,55,55,0.22) 40%, transparent 70%);
    animation: none;
    opacity: 1;
    filter: blur(110px);
  }

  /* Award badge */
  .hero__award-chip {
    padding: 8px 16px;
    border-color: #222222;
    margin-bottom: 54px;
  }
  .hero__award-chip span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #666666;
  }

  /* Headline */
  .hero__headline {
    font-size: clamp(70px, 18vw, 86px);
    line-height: 0.9;
    letter-spacing: -2px;
    word-break: normal;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Subtitle */
  .hero__sub {
    font-size: 20px;
    line-height: 1.55;
    color: #9a9a9a;
    max-width: 360px;
    margin: 20px auto 44px;
    text-align: center;
  }

  /* Buttons */
  .hero__ctas {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 700;
    padding: 0 24px;
    border-radius: 0;
  }
  .hero__ctas .btn--outline {
    border-color: #333333;
    background: transparent;
    color: #ffffff;
  }

  /* Partner logos: 2-col grid — hidden until scrolled into view on mobile */
  .hero__partners {
    margin: 72px auto 0;
    width: 100%;
    max-width: 360px;
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero__partners.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
  .hero__partner-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 36px;
    justify-items: center;
    align-items: center;
    width: 100%;
  }
  .hero__partner-img,
  .hero__partner-img--lg {
    max-width: 135px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
  }

  /* ── Sections padding ── */
  .programs, .events, .competitions,
  .partners, .join, .partner-reg { padding: 72px 0; }

  /* ── Award ── */
  .award__inner {
    grid-template-columns: 1fr;
    padding: 72px 20px;
    gap: 36px;
  }
  .award__headline { font-size: 34px; }
  .award__desc { font-size: 16px; max-width: 100%; }
  .award__img-wrap { height: 280px; border-radius: 24px; }

  /* ── About ── */
  .about__headline { font-size: clamp(20px, 6vw, 28px); }
  .about__body { font-size: 15px; }
  .about__video-wrap { height: 240px; border-radius: 24px; margin-top: 32px; }

  /* ── Team ── */
  .team__container { padding: 72px 20px; gap: 48px; }
  .team__title { font-size: 34px; line-height: 1.15; }
  .team__desc { font-size: 15px; }

  /* Leadership profiles — card treatment + stacked on mobile */
  .team__profiles { gap: 64px; }
  .team__profile-card {
    grid-template-columns: 1fr;
    gap: 0;
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 28px;
    padding: 20px;
  }

  /* Both image frames appear first, text below */
  .team__profile-img-wrap {
    height: 260px;
    aspect-ratio: auto;
    border-radius: 22px;
    margin-bottom: 24px;
    order: 1;
  }
  .team__profile-text {
    order: 2;
    gap: 12px;
  }

  /* VP: reset desktop reverse — image first, text below */
  .team__profile-card--reverse .team__profile-img-wrap { order: 1; }
  .team__profile-card--reverse .team__profile-text    { order: 2; }

  /* Mobile typography */
  .team__profile-role   { font-size: 11px; letter-spacing: 2.5px; padding: 5px 12px; }
  .team__profile-name   { font-size: 30px; line-height: 1.15; }
  .team__profile-headline { font-size: 16px; line-height: 1.5; }
  .team__profile-body   { font-size: 15px; line-height: 1.7; color: #9a9a9a; }

  /* Other members */
  .team__members { grid-template-columns: 1fr; gap: 32px; }
  .team__member-img-wrap { height: 260px; border-radius: 22px; }
  .team__member-info { margin-top: 14px; }
  .team__member-name { font-size: 20px; }
  .team__member-role { font-size: 15px; }

  /* ── Programs ── */
  .programs__cards { grid-template-columns: 1fr; gap: 14px; }
  .programs__imgrid { grid-template-columns: 1fr; gap: 14px; }
  .programs__img-left { height: 260px; border-radius: 28px; }
  .programs__img-right { gap: 14px; }
  .programs__img-top,
  .programs__img-bottom { height: 200px; border-radius: 28px; flex: none; }

  /* ── Events ── */
  .events__frame { padding: 32px 20px; border-radius: 20px; width: 100%; }
  .event-row { flex-wrap: wrap; gap: 12px; padding: 22px 10px; }
  .event-row__date { min-width: 56px; }
  .event-row__day { font-size: 26px; }
  .btn--rsvp { width: 100%; text-align: center; }

  /* ── Competitions ── */
  .competitions__grid { grid-template-columns: 1fr; }
  .comp-card { padding: 28px 22px; }

  /* ── Partners ── */
  .partners__sub { font-size: 16px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card { padding: 28px 16px; min-height: 130px; }
  .partner-card img { height: 40px; }

  /* ── Team ── */
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* ── Join form ── */
  .join__card { padding: 32px 20px; }

  /* ── Partner reg ── */
  .partner-reg__inner { grid-template-columns: 1fr; gap: 36px; }
  .partner-reg__pitch { position: static; }
  .partner-reg__card { padding: 28px 20px; }

  /* ── Footer ── */
  .footer { margin: 0 12px 12px; }
  .footer__inner { padding: 28px 20px; }
  .footer__copy { padding: 18px 20px; font-size: 11px; }

  /* ── Card section ── */
  .card-section { margin: 0 12px 12px; padding: 60px 0; }
}
