/* ============================================================
   THE COLLABORATIVE — monochrome · modern · moody
   Self-contained. No build step. Mobile-first.
   Deep black · off-white · silver-grey. No color accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Sora:wght@200;300;400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ---- Design tokens ---- */
:root {
  --bg:        #050506;
  --bg-2:      #0a0a0c;
  --surface:   rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.055);
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.16);

  --text:      #f4f4f5;   /* off-white */
  --muted:     #9a9aa3;   /* cool grey */
  --faint:     #62626b;

  --accent:    #e9e9ec;   /* silver — the "accent" is just light */
  --accent-dim:#7d7d86;
  --gold:      var(--accent); /* legacy alias so older markup keeps working */

  --maxw:      1180px;
  --gutter:    clamp(1.25rem, 5vw, 3.5rem);
  --radius:    4px;

  --ff-display: 'Sora', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-logo:    'Cinzel', Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* subtle vignette over the whole page */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(120% 90% at 50% 120%, rgba(0,0,0,0.5), transparent 55%);
}

/* ---- Typography ---- */
.display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1.display { font-size: clamp(2.6rem, 9vw, 6rem); }
h2.display { font-size: clamp(2rem, 6vw, 3.6rem); }
h3.display { font-size: clamp(1.4rem, 4vw, 2.1rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-dim);
}
.lead { font-size: clamp(1.02rem, 2.2vw, 1.25rem); color: var(--muted); font-weight: 300; line-height: 1.6; }
.muted { color: var(--muted); }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 13vw, 9rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 8vw, 5rem); }
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.9rem;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn--solid,
.btn--gold { background: var(--text); color: #050506; }
.btn--solid:hover,
.btn--gold:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn svg { width: 1em; height: 1em; }

/* ============================================================
   HEADER — persistent top nav (no hamburger)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem var(--gutter);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; flex: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--ff-logo);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-left: 0.12em; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); }
.nav a {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; position: relative; padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--text);
}

@media (max-width: 620px) {
  .brand__name { display: none; }            /* logo mark only — keep tabs roomy */
  .nav { gap: 0.85rem; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { font-size: 0.62rem; letter-spacing: 0.1em; white-space: nowrap; }
  .site-header { padding-inline: 1rem; gap: 0.6rem; }
}

/* ============================================================
   HERO — wall of reels + scrim + logo lockup on top
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; z-index: 2;
  background: var(--bg);
}
.hero__reels {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.reel { position: relative; overflow: hidden; background: #0c0c0f; }
.reel + .reel { border-left: 1px solid rgba(255,255,255,0.05); }
.reel video, .reel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel .reel-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 14px, transparent 14px 28px);
  color: var(--faint);
}
.reel .reel-ph svg { width: 26px; height: 26px; opacity: 0.5; }
.reel .reel-ph span { font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(5,5,6,0.55), rgba(5,5,6,0.82) 70%, rgba(5,5,6,0.95)),
    linear-gradient(180deg, rgba(5,5,6,0.65) 0%, rgba(5,5,6,0.35) 45%, rgba(5,5,6,0.92) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-inline: var(--gutter); }
.hero__logo { width: clamp(78px, 16vw, 110px); height: auto; margin: 0 auto 2rem; }
.hero__inner .eyebrow { display: block; margin-bottom: 1.4rem; }
.hero h1 { max-width: none; margin-inline: auto; white-space: nowrap; letter-spacing: -0.035em; font-size: clamp(1.35rem, 5.7vw, 5rem); }
.hero .lead { max-width: 48ch; margin: 1.6rem auto 0; }
.hero__cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* small per-reel marker the user can delete once real video is in */
.reel__tag {
  position: absolute; top: 0.8rem; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.5rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-dim); border: 1px dashed var(--line-2); border-radius: 999px;
  padding: 0.3rem 0.65rem; background: rgba(0,0,0,0.4); white-space: nowrap;
}

/* ============================================================
   PLACEHOLDERS
   ============================================================ */
.placeholder {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.014) 0 14px, transparent 14px 28px), var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--faint); text-align: center; padding: 1.5rem; aspect-ratio: 4 / 5;
}
.placeholder svg { width: 28px; height: 28px; opacity: 0.5; }
.placeholder span { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; }
.placeholder--wide { aspect-ratio: 16 / 9; }
.placeholder--tall { aspect-ratio: 3 / 4; }

/* ---- Section intro ---- */
.intro { max-width: 62ch; }
.intro .eyebrow { display: block; margin-bottom: 1.3rem; }
.intro h2 { margin-bottom: 1.3rem; }

/* ---- Values ---- */
.values { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.values li { background: var(--bg); padding: 1.8rem var(--gutter); display: flex; align-items: baseline; gap: 1rem; }
.values .num { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--accent-dim); font-weight: 500; }
.values .word { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 300; letter-spacing: -0.01em; }
@media (min-width: 720px) {
  .values { grid-template-columns: repeat(5, 1fr); }
  .values li { flex-direction: column; gap: 0.9rem; padding: 2.6rem 1.5rem; }
}

/* ---- Cards ---- */
.cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 760px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--2 { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--bg); padding: 2.4rem 2rem;
  transition: background 0.45s var(--ease);
}
.card:hover { background: var(--surface); }
.card__price { font-family: var(--ff-display); font-size: 2rem; font-weight: 200; color: var(--text); }
.card__price small { font-size: 0.78rem; color: var(--muted); font-weight: 400; letter-spacing: 0.08em; }
.card h3 { margin: 0.6rem 0 0.8rem; font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* ---- Statement ---- */
.statement { text-align: center; max-width: 24ch; margin-inline: auto; }

/* ---- Full-bleed photo band ---- */
.photoband {
  position: relative; z-index: 2; overflow: hidden;
  min-height: clamp(380px, 62vh, 640px);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.photoband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.photoband__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,0.62), rgba(5,5,6,0.5) 50%, rgba(5,5,6,0.72));
}
.photoband__inner { position: relative; z-index: 2; padding-inline: var(--gutter); }

/* ============================================================
   COLLEGIATE CONVENTION
   ============================================================ */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-top: 3rem;
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--bg); padding: 1.8rem 1.4rem; text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.fact__k { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-dim); }
.fact__v { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 300; }
.fact__v small { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }

.colleges { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .colleges { grid-template-columns: repeat(3, 1fr); } }
.college {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.college:hover { border-color: var(--line-2); transform: translateY(-3px); }
.college__mark {
  width: 92px; height: 92px; margin-bottom: 1.4rem;
  display: grid; place-items: center; padding: 14px;
  background: #ffffff; border-radius: var(--radius);
}
.college__mark img { width: 100%; height: 100%; object-fit: contain; }
.college h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; }
.college .loc { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-dim); margin: 0.35rem 0 0.9rem; }
.college p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.1rem; }
.college .link { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.college .link:hover { color: var(--accent); border-color: var(--accent); }

/* ---- About intro image ---- */
.about-hero { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .about-hero { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.about-hero__img { border-radius: var(--radius); overflow: hidden; }
.about-hero__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

/* ============================================================
   ABOUT
   ============================================================ */
.founder { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .founder { grid-template-columns: 0.85fr 1fr; gap: 4.5rem; } }
.founder__photo { max-width: 460px; }
.founder__photo .placeholder { aspect-ratio: 3 / 4; }

.team { display: grid; gap: 2.5rem 1.5rem; }
@media (min-width: 620px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member__photo .placeholder { aspect-ratio: 4 / 5; margin-bottom: 1.2rem; }
.member h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; }
.member .role { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dim); margin: 0.35rem 0 0.8rem; }
.member p { color: var(--muted); font-size: 0.9rem; }

/* ---- Two centered trainers ---- */
.team--duo { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 3rem; }
.team--duo .member { flex: 0 1 300px; max-width: 300px; }
.member--center { text-align: center; }
.member--center .role { margin-bottom: 0; }

/* ---- Guest choreographer name list ---- */
.choreo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
}
@media (min-width: 620px) { .choreo-list { columns: 3; } }
@media (min-width: 940px) { .choreo-list { columns: 4; } }
.choreo-list li {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}

/* ============================================================
   EVENTS
   ============================================================ */
.event { display: grid; gap: 1.5rem; border-top: 1px solid var(--line); padding-block: 2.3rem; align-items: center; }
.event:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .event { grid-template-columns: 120px 1fr auto; gap: 2.5rem; } }
.event__date { display: inline-flex; flex-direction: column; align-items: flex-start; font-family: var(--ff-display); }
.event__date .month { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent-dim); font-family: var(--ff-body); font-weight: 500; }
.event__date .day { font-size: 2.8rem; line-height: 1; font-weight: 200; }
.event__date .year { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; }
.event__body h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.4rem; }
.event__body p { color: var(--muted); font-size: 0.92rem; }
.event__meta { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 0.9rem; font-size: 0.76rem; color: var(--faint); letter-spacing: 0.05em; }
.event__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.event__meta svg { width: 15px; height: 15px; color: var(--accent-dim); }
.tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-dim); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 0.28rem 0.75rem; margin-bottom: 0.9rem;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.gate {
  max-width: 460px; margin-inline: auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(2rem, 6vw, 3.4rem);
}
.gate__lock { width: 54px; height: 54px; margin: 0 auto 1.5rem; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 50%; color: var(--text); }
.gate__lock svg { width: 22px; height: 22px; }
.gate h2 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.6rem; }
.gate p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.7rem; }
.gate form { display: grid; gap: 0.85rem; text-align: left; }
.field label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.45rem; }
.field input {
  width: 100%; padding: 0.95rem 1rem;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 3px;
  color: var(--text); font-family: inherit; font-size: 0.95rem; letter-spacing: 0.03em;
  transition: border-color 0.3s var(--ease);
}
.field input:focus { outline: none; border-color: var(--text); }
.gate .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.gate__error { color: #e08a7d; font-size: 0.82rem; min-height: 1.2em; }
.gate__note { margin-top: 1.5rem; font-size: 0.78rem; color: var(--faint); }
.gate__note a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.library { display: none; }
.library.is-open { display: block; }
.library__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2.6rem; }
.library__head .lock-state { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-dim); display: inline-flex; align-items: center; gap: 0.5rem; }
.library__head .lock-state svg { width: 15px; height: 15px; }
.btn-link { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.btn-link:hover { color: var(--text); border-color: var(--text); }

.weeks { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .weeks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .weeks { grid-template-columns: repeat(3, 1fr); } }
.video-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.45s var(--ease), transform 0.45s var(--ease); }
.video-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.video-card__thumb { position: relative; aspect-ratio: 16 / 9; }
.video-card__thumb .placeholder { border: 0; border-radius: 0; aspect-ratio: 16/9; height: 100%; }
.video-card__thumb iframe { width: 100%; height: 100%; border: 0; }
.video-card__play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,0.25); color: var(--text); }
.video-card__play svg { width: 44px; height: 44px; opacity: 0.85; }
.video-card__body { padding: 1.2rem 1.3rem 1.5rem; }
.video-card__week { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dim); }
.video-card__body h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400; margin: 0.35rem 0; }
.video-card__body p { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.band { position: relative; z-index: 2; text-align: center; padding-block: clamp(4.5rem, 13vw, 8rem); background: var(--bg-2); border-block: 1px solid var(--line); }
.band h2 { margin-bottom: 1.4rem; }
.band .btn { margin-top: 0.5rem; }

/* photo-wall variant (behind a CTA band) */
.band--photos { overflow: hidden; }
.band--photos .band__inner { position: relative; z-index: 2; }
.band__wall { position: absolute; inset: 0; z-index: 0; display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .band__wall { grid-template-columns: repeat(4, 1fr); } }
.band__wall img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,5,6,0.8), rgba(5,5,6,0.7) 50%, rgba(5,5,6,0.85)); }

/* ---- Inverted "Submit your solo" band (white, to stand out) ---- */
.solo {
  position: relative; z-index: 2; text-align: center;
  background: #f4f4f5; color: #0a0a0c;
  padding-block: clamp(4.5rem, 13vw, 8rem);
  border-block: 1px solid var(--line);
}
.solo .eyebrow { color: #6a6a72; }
.solo .display { color: #0a0a0c; margin-bottom: 1.2rem; }
.solo .lead { color: #3a3a40; max-width: 52ch; }
.solo .btn { margin-top: 2rem; }
.solo__note { color: #6a6a72; font-size: 0.78rem; margin-top: 1rem; }
/* solo requirements list */
.solo-reqs { list-style: none; max-width: 46ch; margin: 1.6rem auto 0; text-align: left; display: grid; gap: 0.6rem; }
.solo-reqs li { position: relative; padding-left: 1.4rem; color: #3a3a40; font-size: 0.95rem; }
.solo-reqs li::before { content: ''; position: absolute; left: 2px; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: #0a0a0c; }
.solo-reqs strong { color: #0a0a0c; font-weight: 500; }
/* upload-preview affordance (opens the Google Form) */
.uploader {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  max-width: 420px; margin: 2rem auto 0; padding: 2.2rem 1.5rem;
  border: 2px dashed #c4c4cc; border-radius: 18px; background: #fff; color: #0a0a0c;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.uploader:hover { border-color: #0a0a0c; background: #fafafa; transform: translateY(-3px); box-shadow: 0 22px 50px -28px rgba(0,0,0,0.5); }
.uploader__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #0a0a0c; color: #fff; margin-bottom: 0.5rem; transition: transform 0.35s var(--ease); }
.uploader:hover .uploader__icon { transform: translateY(-2px); }
.uploader__icon svg { width: 26px; height: 26px; }
.uploader__title { font-family: var(--ff-display); font-size: 1.12rem; }
.uploader__hint { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #6a6a72; }
/* dark button for use on light backgrounds */
.btn--dark { background: #0a0a0c; color: #f4f4f5; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

/* full-page "coming soon" overlay (Videos page) */
.coming-soon {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; text-align: center; padding: 2rem;
  background: rgba(5, 5, 6, 0.8);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
}
.coming-soon .eyebrow { display: block; margin-bottom: 1.1rem; color: var(--accent-dim); }
.coming-soon .display { font-size: clamp(2.6rem, 9vw, 5rem); margin-bottom: 1.1rem; }
.coming-soon p { color: var(--muted); max-width: 42ch; margin-inline: auto; }

/* contained white "window" card (e.g. convention plug on Events) */
.solo-card {
  background: #f4f4f5; color: #0a0a0c;
  max-width: 720px; margin-inline: auto; text-align: center;
  border-radius: 26px;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.6rem, 5vw, 3rem);
  box-shadow: 0 30px 80px -32px rgba(0, 0, 0, 0.65);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}
.solo-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 42px 100px -30px rgba(0, 0, 0, 0.72);
}
.solo-card .eyebrow { color: #6a6a72; }
.solo-card .display { color: #0a0a0c; }
.solo-card .lead { color: #3a3a40; max-width: 52ch; margin-inline: auto; }
.solo-card .btn { margin-top: 1.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; z-index: 2; background: var(--bg); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 8vw, 4.5rem); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand .brand__name { display: inline; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 0.6rem; color: var(--muted); font-size: 0.9rem; padding-block: 0.35rem; }
.footer-col a:hover { color: var(--text); }
.footer-col svg { width: 17px; height: 17px; color: var(--accent-dim); flex: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.72rem; color: var(--faint); letter-spacing: 0.05em; }

/* ---- reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
