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

:root {
  --forest:      #094F37;
  --forest-dark: #051F16;
  --forest-deep: #030F0A;
  --forest-mid:  #0C3D28;
  --forest-lite: #135C3D;
  --forest-pale: #1E7A51;
  --gold:        #E1E1E1;
  --gold-dim:    #9A9A9A;
  --cream:       #F4EFE4;
  --warm-white:  #FDFAF3;
  --muted:       #7AAD8F;
  --muted-dark:  #3D6E53;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Nunito Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--forest-dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.5rem;
  background: linear-gradient(to bottom, rgba(3,15,10,.97) 0%, rgba(3,15,10,0) 100%);
  transition: background .4s;
}
nav.scrolled {
  background: rgba(3,15,10,.98);
  border-bottom: 1px solid rgba(225,225,225,.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  border: 2px solid rgba(225,225,225,.25);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  padding: .5rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold) !important;
  opacity: 1 !important;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--forest-deep) !important; }

/* ── HAMBURGER ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 35%, rgba(9,79,55,.55) 0%, transparent 70%),
    linear-gradient(165deg, #040D09 0%, #051F16 40%, #030F0A 100%);
  z-index: 0;
}

/* Curtain drapes */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 18%;
  background: radial-gradient(ellipse at top, rgba(9,79,55,.7) 0%, rgba(3,15,10,.8) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero::before { left: 0; border-radius: 0 0 70% 0 / 0 0 80% 0; }
.hero::after  { right: 0; border-radius: 0 0 0 70% / 0 0 0 80%; }

/* Spotlight beam */
.spotlight {
  position: absolute;
  top: -5%;
  left: 50%;
  width: 500px;
  height: 850px;
  background: conic-gradient(from -10deg at 50% 0%, transparent 0%, rgba(225,225,225,.03) 30%, rgba(225,225,225,.07) 50%, rgba(225,225,225,.03) 70%, transparent 100%);
  clip-path: polygon(35% 0%, 65% 0%, 88% 100%, 12% 100%);
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 0%;
  animation: spotlight-move 18s ease-in-out infinite;
}
@keyframes spotlight-move {
  0%   { transform: translateX(-50%) rotate(-10deg); opacity: .6; }
  20%  { opacity: 1; }
  35%  { transform: translateX(-50%) rotate(8deg);  opacity: .75; }
  50%  { transform: translateX(-50%) rotate(-4deg); opacity: 1; }
  65%  { transform: translateX(-50%) rotate(12deg); opacity: .65; }
  80%  { opacity: .9; }
  100% { transform: translateX(-50%) rotate(-10deg); opacity: .6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up .8s .15s forwards;
}
.hero-logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid rgba(225,225,225,.35);
  box-shadow: 0 0 40px rgba(9,79,55,.6), 0 0 80px rgba(225,225,225,.08);
}
.hero-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fade-up .8s .35s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: .8rem;
  opacity: 0;
  animation: fade-up .9s .55s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fade-up .9s .75s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .9s .95s forwards;
}

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

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  padding: .85rem 2.2rem;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
  padding: .85rem 2.2rem;
  border: 1px solid rgba(225,225,225,.3);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(225,225,225,.08); transform: translateY(-2px); }

/* ── DIVIDER ─────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2.8rem;
}

/* ── SECTIONS ─────────────────────────────────────────── */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  text-align: center;
  color: var(--warm-white);
  line-height: 1.18;
  margin-bottom: .8rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

/* ── MISSION ─────────────────────────────────────────── */
#mission {
  background: var(--forest-deep);
  border-top: 1px solid rgba(225,225,225,.1);
  border-bottom: 1px solid rgba(225,225,225,.1);
}
.mission-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  text-align: center;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
.mission-attribution {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* ── WHAT WE DO ──────────────────────────────────────── */
#what-we-do { background: var(--forest-dark); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
}
.pillar {
  background: var(--forest-mid);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s;
}
.pillar:hover { background: var(--forest-lite); }
.pillar:hover::after { transform: scaleX(1); }

.pillar-icon { font-size: 1.9rem; margin-bottom: 1.2rem; display: block; }
.pillar-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6rem;
}
.pillar-text { font-size: .86rem; color: var(--muted); line-height: 1.8; }

/* ── GET INVOLVED ────────────────────────────────────── */
#get-involved {
  background: linear-gradient(155deg, #030D07 0%, #051F16 100%);
  border-top: 1px solid rgba(225,225,225,.08);
}

.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.involve-card {
  background: rgba(9,79,55,.25);
  border: 1px solid rgba(225,225,225,.15);
  border-radius: 4px;
  padding: 3.2rem 2.8rem;
  text-align: center;
  transition: border-color .3s, transform .3s, background .3s;
}
.involve-card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(9,79,55,.4); }

.involve-icon { font-size: 2.6rem; margin-bottom: 1.4rem; display: block; }
.involve-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: .7rem;
}
.involve-text { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

/* ── EVENTS ──────────────────────────────────────────── */
#events {
  background: var(--forest-dark);
  border-top: 1px solid rgba(225,225,225,.08);
}

.events-list { display: flex; flex-direction: column; gap: 2px; }

.event-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 2.5rem;
  align-items: center;
  background: var(--forest-mid);
  padding: 2rem 2.5rem;
  transition: background .3s;
}
.event-item:hover { background: var(--forest-lite); }

.event-date-box {
  text-align: center;
  border-right: 1px solid rgba(225,225,225,.15);
  padding-right: 2.5rem;
}
.event-month {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-day {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1;
}

.event-type {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.event-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: .25rem;
}
.event-meta { font-size: .8rem; color: var(--muted); }

.event-action {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(225,225,225,.25);
  padding: .5rem 1.2rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.event-action:hover { background: rgba(225,225,225,.1); border-color: var(--gold); }

.events-more { text-align: center; margin-top: 3rem; }

/* ── BOARD ───────────────────────────────────────────── */
#board {
  background: var(--forest-dark);
  border-top: 1px solid rgba(225,225,225,.08);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.board-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(225,225,225,.15);
  margin: 0 auto 1.2rem;
  display: block;
  background: var(--forest-mid);
}

.board-initials {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(225,225,225,.15);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-mid);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--muted);
}

.board-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: .25rem;
}

.board-role {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.board-bio {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── GALLERY ─────────────────────────────────────────── */
#gallery {
  background: var(--forest-deep);
  border-top: 1px solid rgba(225,225,225,.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(225,225,225,.08);
  background: var(--forest-mid);
  cursor: pointer;
  padding: 0;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(3,15,10,.85));
  color: var(--cream);
  font-size: .75rem;
  padding: 1.5rem .75rem .6rem;
  text-align: left;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.gallery-item:hover img     { transform: scale(1.04); }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,15,10,.95);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
  gap: .75rem;
}
#lightbox.open { display: flex; }

body.lightbox-open { overflow: hidden; }

#lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
}

#lightbox-caption {
  color: var(--gold-dim);
  font-size: .82rem;
  text-align: center;
  min-height: 1.2em;
}

#lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold-dim);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
#lightbox-close:hover { color: var(--warm-white); }

#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(225,225,225,.15);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-prev:hover,
#lightbox-next:hover { background: rgba(225,225,225,.12); color: var(--warm-white); }

/* ── ABOUT ───────────────────────────────────────────── */
#about {
  background: var(--forest-deep);
  border-top: 1px solid rgba(225,225,225,.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.about-body p:last-child { margin-bottom: 0; }

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: rgba(9,79,55,.35);
  border: 1px solid rgba(225,225,225,.14);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
  background: var(--forest-deep);
  border-top: 1px solid rgba(225,225,225,.14);
  padding: 5rem 2rem;
  text-align: center;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: .8rem;
}
.contact-title em { font-style: italic; color: var(--gold); }

.contact-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .86rem;
  transition: color .2s;
}
.contact-link:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--forest-deep);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-dim);
  margin-bottom: .5rem;
}
.footer-copy {
  font-size: .7rem;
  color: rgba(122,173,143,.4);
  letter-spacing: .05em;
}
.footer-copy a { color: rgba(225,225,225,.25); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .involve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .event-item { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; }
  .event-action { grid-column: 2; margin-top: .5rem; align-self: start; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  nav .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3,15,10,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
  }
  nav .nav-links.open { display: flex; }
  nav .nav-links a { font-size: 1.1rem; opacity: .85; }
  .hero { padding: 8rem 1.5rem 4rem; }
  section { padding: 5rem 1.5rem; }
  .pillars { grid-template-columns: 1fr; }
  .involve-card { padding: 2.5rem 1.8rem; }
  .event-item { grid-template-columns: 1fr; }
  .event-date-box { border-right: none; border-bottom: 1px solid rgba(225,225,225,.12); padding: 0 0 .8rem; text-align: left; display: flex; gap: .8rem; align-items: baseline; }
  .event-action { grid-column: 1; margin-top: .8rem; display: inline-block; align-self: start; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ── SPONSOR TICKER ─────────────────────────────────────────── */
.sponsor-ticker {
  position: fixed;
  top: 66px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(3,10,7,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(225,225,225,.08);
  padding: .55rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sponsor-ticker-label {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 0 1.5rem 0 2rem;
  white-space: nowrap;
  border-right: 1px solid rgba(225,225,225,.1);
}

.sponsor-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 56s linear infinite;
  width: max-content;
}

.sponsor-track:hover { animation-play-state: paused; }

.sponsor-item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 0 2.5rem;
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold-dim);
  border-right: 1px solid rgba(225,225,225,.08);
  transition: color .2s;
}
.sponsor-item:hover { color: var(--gold); }

.sponsor-note {
  font-style: normal;
  color: var(--muted-dark);
  font-size: 1rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sponsor-tier {
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: .1em .4em;
  margin-left: .4rem;
  vertical-align: middle;
  font-style: normal;
}
