/* ============================================================
   mbw-components.css
   Hero · Marquee · Timeline · Audience pills · Supporter logos
   Contact · Footer · Shared section components
   ============================================================ */

/* ---- CINEMATIC HERO -------------------------------------- */
.mbw-hero-cine {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
  color: #fff;
}
.mbw-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.4) 30%, rgba(15,15,15,0.88) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=2200&q=80') center/cover no-repeat fixed;
}
.mbw-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(184,153,104,0.18), transparent 50%);
  pointer-events: none;
}
.mbw-hero-cine .mbw-container { position: relative; z-index: 1; width: 100%; }

.mbw-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mbw-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--mbw-radius-pill);
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.2);
  margin-bottom: 32px;
}
.mbw-hero-pulse {
  width: 8px; height: 8px;
  background: var(--mbw-gold);
  border-radius: 50%;
  animation: mbwPulse 2s infinite;
}
@keyframes mbwPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,153,104,0.6); }
  50%      { box-shadow: 0 0 0 12px rgba(184,153,104,0); }
}

.mbw-hero-cine h1 {
  font-weight: 300;
  font-size: clamp(60px, 9vw, 144px);
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: #fff;
  margin-bottom: 40px;
  max-width: 18ch;
}
.mbw-hero-cine h1 em { font-style: italic; color: var(--mbw-gold); font-weight: 300; }

.mbw-hero-lede {
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  line-height: 1.5;
  margin-bottom: 48px;
}
.mbw-hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.mbw-hero-scroll-hint {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  font-family: var(--mbw-font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 12px;
}
.mbw-hero-scroll-hint .line { width: 32px; height: 1px; background: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .mbw-hero-bg { background-attachment: scroll; }
  .mbw-hero-scroll-hint { display: none; }
}

/* ---- MARQUEE TICKER -------------------------------------- */
.mbw-marquee {
  background: var(--mbw-ink);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mbw-marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: mbwMarquee 50s linear infinite;
}
.mbw-marquee-item {
  font-family: var(--mbw-font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 64px;
  color: rgba(255,255,255,0.9);
}
.mbw-marquee-item em { font-style: italic; color: var(--mbw-gold); }
.mbw-marquee-dot {
  width: 6px; height: 6px;
  background: var(--mbw-gold); border-radius: 50%; flex-shrink: 0;
}
@keyframes mbwMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- ABOUT SECTION --------------------------------------- */
.mbw-about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.mbw-about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--mbw-radius-sm);
}
.mbw-about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mbw-about-img-tag {
  position: absolute; bottom: 24px; left: 24px;
  padding: 8px 16px;
  background: rgba(247,245,241,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--mbw-radius-pill);
  font-family: var(--mbw-font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mbw-ink);
}
.mbw-about-content h2 { margin: 16px 0 32px; }
.mbw-about-content h2 em { font-style: italic; color: var(--mbw-accent); font-weight: 300; }
.mbw-about-content p {
  color: var(--mbw-ink-soft); font-size: 17px; line-height: 1.65; margin-bottom: 20px; max-width: 56ch;
}
.mbw-about-content p.lede { color: var(--mbw-ink); font-size: 19px; line-height: 1.5; font-weight: 400; }

@media (max-width: 900px) { .mbw-about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---- TIMELINE -------------------------------------------- */
.mbw-timeline-head { text-align: center; margin-bottom: 80px; }
.mbw-timeline-head h2 em { font-style: italic; color: var(--mbw-accent); font-weight: 300; }

.mbw-timeline {
  max-width: 900px; margin: 0 auto; position: relative;
}
.mbw-timeline::before {
  content: '';
  position: absolute; left: 80px; top: 0; bottom: 0;
  width: 1px; background: var(--mbw-line);
}
.mbw-tl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 56px;
  padding: 32px 0;
  position: relative;
  align-items: start;
}
.mbw-tl-row::before {
  content: '';
  position: absolute;
  left: 76px; top: 44px;
  width: 9px; height: 9px;
  background: var(--mbw-gold); border-radius: 50%;
  box-shadow: 0 0 0 6px var(--mbw-bg);
}
.mbw-tl-date {
  font-family: var(--mbw-font-mono);
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--mbw-ink-mute); text-transform: uppercase; padding-top: 6px;
}
.mbw-tl-date strong {
  display: block;
  font-family: var(--mbw-font-display);
  font-size: 32px; font-weight: 400;
  color: var(--mbw-ink); letter-spacing: -0.02em; margin-top: 4px;
}
.mbw-tl-content h3 { font-family: var(--mbw-font-display); margin-bottom: 8px; }
.mbw-tl-content p { color: var(--mbw-ink-soft); font-size: 15px; line-height: 1.55; max-width: 56ch; }

@media (max-width: 640px) {
  .mbw-timeline::before { left: 32px; }
  .mbw-tl-row { grid-template-columns: 64px 1fr; gap: 20px; }
  .mbw-tl-row::before { left: 28px; }
}

/* ---- AUDIENCE PILLS -------------------------------------- */
.mbw-audience-head { text-align: center; margin-bottom: 56px; }
.mbw-audience-head h2 em { font-style: italic; color: var(--mbw-accent); font-weight: 300; }
.mbw-audience-head .lede {
  color: var(--mbw-ink-soft); font-size: 17px; max-width: 56ch; margin: 16px auto 0;
}
.mbw-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.mbw-pill {
  padding: 8px 18px;
  border: 1px solid var(--mbw-line);
  border-radius: var(--mbw-radius-pill);
  font-size: 13px;
  color: var(--mbw-ink-soft);
  background: var(--mbw-bg);
  transition: var(--mbw-ease);
}
.mbw-pill:hover { border-color: var(--mbw-accent); color: var(--mbw-accent); }

/* ---- SUPPORTER LOGOS ------------------------------------- */
.mbw-supp-head { text-align: center; margin-bottom: 56px; }
.mbw-supp-head h2 { color: var(--mbw-bg); }
.mbw-supp-head h2 em { font-style: italic; color: var(--mbw-gold); font-weight: 300; }
.mbw-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--mbw-radius-sm);
  overflow: hidden;
}
.mbw-logo-cell {
  background: var(--mbw-ink);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  font-size: 12px; color: var(--mbw-ink-mute); text-align: center;
}
.mbw-logo-cell img {
  max-width: 78%; max-height: 60%;
  object-fit: contain; opacity: 0.88; transition: opacity 0.2s;
}
.mbw-logo-cell:hover img { opacity: 1; }
@media (max-width: 900px) { .mbw-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .mbw-logos { grid-template-columns: repeat(2, 1fr); } }

/* ---- WHY JOIN / SPONSOR CTA ------------------------------ */
.mbw-why-join {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  padding: 100px 0; color: #fff; overflow: hidden;
}
.mbw-why-join-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,15,15,0.85), rgba(47,79,79,0.7)),
    url('https://images.unsplash.com/photo-1551038247-3d9af20df552?w=2200&q=80') center/cover no-repeat;
  z-index: 0;
}
.mbw-why-join .mbw-container { position: relative; z-index: 1; max-width: 920px; }
.mbw-why-join h2 { color: #fff; margin-bottom: 32px; max-width: 18ch; }
.mbw-why-join h2 em { font-style: italic; color: var(--mbw-gold); font-weight: 300; }
.mbw-why-quote {
  font-family: var(--mbw-font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300; line-height: 1.45;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px; max-width: 52ch;
}
.mbw-why-quote::before {
  content: '"';
  display: block; font-size: 80px; line-height: 0.4;
  color: var(--mbw-gold); margin-bottom: 16px;
}

/* ---- CONTACT --------------------------------------------- */
.mbw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.mbw-contact-head h2 { max-width: 14ch; margin-bottom: 24px; }
.mbw-contact-head h2 em { font-style: italic; color: var(--mbw-accent); font-weight: 300; }
.mbw-contact-head .lede { color: var(--mbw-ink-soft); font-size: 17px; max-width: 40ch; line-height: 1.55; }
.mbw-contact-card {
  background: var(--mbw-surface);
  border: 1px solid var(--mbw-line);
  border-radius: var(--mbw-radius-sm);
  padding: 40px;
}
.mbw-contact-card h3 { margin-bottom: 24px; }
.mbw-contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--mbw-line); font-size: 15px;
}
.mbw-contact-detail:last-of-type { border-bottom: none; }
.mbw-contact-detail .label {
  font-family: var(--mbw-font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mbw-ink-mute); min-width: 60px;
}
.mbw-contact-detail .value { color: var(--mbw-ink); font-weight: 500; }
@media (max-width: 900px) { .mbw-contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---- FOOTER ---------------------------------------------- */
.mbw-footer {
  background: #060606;
  color: var(--mbw-bg);
  padding: 64px 0 32px;
}
.mbw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.mbw-footer-brand .mbw-footer-logo {
  font-family: var(--mbw-font-display);
  font-size: 18px; font-weight: 500;
  color: var(--mbw-bg); margin-bottom: 16px;
  display: block;
}
.mbw-footer-brand p { color: var(--mbw-ink-mute); font-size: 14px; max-width: 32ch; }
.mbw-footer-col h4 {
  font-family: var(--mbw-font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mbw-ink-mute); margin-bottom: 20px;
}
.mbw-footer-col ul { list-style: none; }
.mbw-footer-col li { margin-bottom: 12px; font-size: 14px; }
.mbw-footer-col a { color: var(--mbw-bg); opacity: 0.75; transition: var(--mbw-ease); }
.mbw-footer-col a:hover { opacity: 1; color: var(--mbw-gold); }
.mbw-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--mbw-ink-mute);
}
@media (max-width: 900px) { .mbw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .mbw-footer-grid { grid-template-columns: 1fr; } }
