/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #1860E1;
  --blue-dk:  #0f47b0;
  --blue-lt:  #3d7ef5;
  --blue-dim: rgba(24,96,225,0.1);
  --red:      #FF3131;
  --white:    #FFFFFF;
  --off:      #F4F8FF;
  --dark:     #060E1F;
  --dark2:    #0b1628;
  --text:     #0d1a3a;
  --muted:    #627090;
  --border:   rgba(24,96,225,0.14);
  --border-s: rgba(24,96,225,0.08);
  --shadow:   0 4px 32px rgba(6,14,31,0.08);
  --shadow-lg:0 12px 48px rgba(6,14,31,0.14);
  --radius:   8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  transition: box-shadow var(--transition);
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(6,14,31,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--text);
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: background var(--transition);
}
.nav-mobile-toggle:hover span { background: var(--blue); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 17px 28px;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-s);
  transition: color var(--transition), background var(--transition);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--blue); background: var(--blue-dim); }

/* ─── HERO ─── */
.hero {
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(24,96,225,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-ornament-line {
  width: 44px;
  height: 1px;
  background: var(--red);
  opacity: 0.75;
}
.hero-ornament-text {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.hero h1 {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: clamp(52px, 10vw, 108px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.hero h1 em { font-style: italic; color: #6aadff; }
.hero-subtitle {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2.2vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
}
.hero-matchup {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-team {
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-vs {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  color: var(--red);
  letter-spacing: 2px;
}
.hero-event-details {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.hero-detail { display: flex; align-items: center; gap: 6px; }
.hero-detail-dot { color: var(--red); opacity: 0.6; }
.hero-section-note {
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #6aadff;
  letter-spacing: 1px;
  opacity: 0.9;
}
.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.btn-gold {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(24,96,225,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,96,225,0.45);
}
.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  display: inline-block;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ─── SECTION ─── */
.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 52px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-eyebrow-text {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.section-title {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 6px;
}
.section-title em { font-style: italic; color: var(--blue); }

/* ─── DIVIDERS ─── */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  max-width: 1060px;
  margin: 0 auto;
}
.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(24,96,225,0.3), transparent);
  max-width: 1060px;
  margin: 0 auto;
}

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.about-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.85;
  border-left: 2px solid var(--blue);
  padding-left: 26px;
  margin-bottom: 28px;
}
.about-copy {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-item {
  background: var(--off);
  border: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-lbl {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 210px;
  gap: 10px;
  margin-top: 44px;
}
.photo-slot {
  background: var(--off);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}
.photo-slot.featured { grid-column: 1 / 3; }
.slot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.slot-placeholder svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  opacity: 0.2;
}
.slot-placeholder span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}
.photo-slot.has-image .slot-placeholder { display: none; }

/* ─── SUPPORT ─── */
.support-bg {
  background: var(--dark);
  border-top: 2px solid rgba(24,96,225,0.5);
}
.support-bg .section-title { color: var(--white); }
.support-bg .section-eyebrow-text { color: #6aadff; }
.support-bg .section-eyebrow-line { background: #6aadff; }

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}

/* ─── LOGOS STRIP ─── */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 40px;
  padding: 28px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.logo-badge {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.logo-badge:hover { opacity: 1; }
.logo-label {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.logo-svg-wrap {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-fallback {
  height: 50px;
}
.logo-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
}

/* ─── SUPPORT CARDS ─── */
.s-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px 40px;
  position: relative;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), #6aadff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}
.s-card:hover {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.s-card:hover::before { transform: scaleX(1); }

.s-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6aadff;
  font-weight: 600;
  margin-bottom: 16px;
}
.s-card h3 {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}
.s-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 20px;
}

.event-info-strip {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(24,96,225,0.08);
  border-left: 2px solid rgba(24,96,225,0.6);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.s-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 24px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}
.s-btn-gold {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(24,96,225,0.3);
}
.s-btn-gold:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,96,225,0.45);
}
.s-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  max-width: 400px;
  margin: 0 auto;
}
.s-btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.link-note {
  font-size: 11px !important;
  color: rgba(106,173,255,0.4) !important;
  text-align: center;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-style: italic;
}
.link-note code {
  font-family: monospace;
  font-size: 10px;
  background: rgba(24,96,225,0.12);
  padding: 1px 5px;
  border-radius: 3px;
}

/* ─── GOFUNDME EXPANDED ─── */
.gofundme-card .gfm-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.gofundme-card .gfm-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.95;
  margin: 0;
}
.gfm-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px !important;
  font-style: italic;
  color: rgba(255,255,255,0.75) !important;
  border-left: 2px solid rgba(24,96,225,0.6);
  padding-left: 22px;
  line-height: 1.85 !important;
}
.gfm-heading {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6aadff;
  padding-top: 20px;
  padding-bottom: 2px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
}
.gfm-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 4px 0;
}
.gfm-pillar {
  background: rgba(24,96,225,0.07);
  border: 1px solid rgba(24,96,225,0.15);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: background var(--transition);
}
.gfm-pillar:hover { background: rgba(24,96,225,0.12); }
.gfm-pillar-icon { font-size: 22px; margin-bottom: 12px; }
.gfm-pillar-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6aadff;
  margin-bottom: 8px;
}
.gfm-pillar-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 4px 0;
}
.donation-tier {
  background: rgba(255,49,49,0.06);
  border: 1px solid rgba(255,49,49,0.18);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.donation-tier:hover {
  background: rgba(255,49,49,0.1);
  transform: translateY(-2px);
}
.donation-amount {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}
.donation-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.gfm-closing {
  font-size: 15px;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.95 !important;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  padding: 60px 52px 40px;
  border-top: 1px solid rgba(24,96,225,0.15);
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  line-height: 1.8;
}
.footer-copy strong { color: rgba(106,173,255,0.75); font-weight: 500; }
.footer-copy.small { font-size: 11px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section { padding: 72px 22px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-slot { min-height: 160px; }
  .photo-slot.featured { grid-column: 1 / 3; min-height: 240px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 44px 22px 30px; }
  .logos-strip { gap: 24px; padding: 20px; }
  .s-card { padding: 32px 24px; }
  .gfm-pillars { grid-template-columns: 1fr; }
  .donation-amounts { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: unset; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 280px; }
  .btn-gold, .btn-ghost { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── LOGO IMAGE VARIANTS ─── */
.logo-badge-destawed {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: none;
  background: white;
  border-radius: 6px;
  padding: 8px 16px;
  transition: opacity var(--transition);
}
.logo-badge-destawed:hover { opacity: 0.9; }

.logo-badge-jays {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
  opacity: 0.95;
  transition: opacity var(--transition);
}
.logo-badge-jays:hover { opacity: 1; }

/* ─── TEXT-ONLY LOGOS ─── */
.logo-text-wrap {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.logo-text-main {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  transition: color var(--transition);
}
.logo-item:hover .logo-text-main { color: #fff; }

/* ─── HERO PHOTO SECTION ─── */
.hero-photo-section {
  background: var(--dark);
  padding: 0 0 0 0;
}
.hero-photo-section .section-eyebrow {
  padding-top: 72px;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-top: 24px;
}
.hero-photo-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 48px 24px;
  background: linear-gradient(to top, rgba(6,14,31,0.85) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  text-align: center;
}

/* ─── REDESIGNED LOGOS STRIP ─── */
.logos-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 36px 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

/* Primary row — large logos */
.logos-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.logos-primary-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
}
.logo-item-lg { gap: 12px; }

.logo-badge-destawed {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: none;
  background: white;
  border-radius: 6px;
  padding: 10px 20px;
  transition: opacity var(--transition);
}
.logo-badge-destawed:hover { opacity: 0.9; }

.logo-badge-jays {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
  opacity: 0.95;
  transition: opacity var(--transition);
}
.logo-badge-jays:hover { opacity: 1; }

.logo-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  text-align: center;
}

/* Secondary row — small text */
.logos-secondary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  justify-content: center;
}
.logo-text-sm {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.logos-secondary-dot {
  color: rgba(255,255,255,0.15);
  font-size: 16px;
}

@media (max-width: 480px) {
  .logos-primary { gap: 24px; }
  .logo-badge-jays { height: 64px; width: 64px; }
  .logo-badge-destawed { height: 40px; }
  .hero-photo-caption { padding: 20px 20px 16px; font-size: 13px; }
}

/* ─── HERO LOGOS ─── */
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

/* Destawed — has black bg, screen blend drops the black leaving white logo */
.hero-logo-destawed {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: screen;
}

/* Blue Jays — has white bg, screen blend drops white on dark background */
.hero-logo-jays {
  height: 96px;
  width: 96px;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: screen;
}

.hero-logo-sep {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

@media (max-width: 480px) {
  .hero-logo-destawed { height: 38px; }
  .hero-logo-jays { height: 72px; width: 72px; }
  .hero-logos { gap: 20px; }
}

/* ─── RAFFLE SECTION ─── */
.raffle-section {
  background: var(--off);
}

.raffle-coming-soon {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 40px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.raffle-coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(24,96,225,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.raffle-icon {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1;
}

.raffle-cs-title {
  font-family: 'Avallon Alt', 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1;
}

.raffle-cs-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 32px;
}

.raffle-cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--border);
  background: var(--blue-dim);
  padding: 10px 22px;
  border-radius: 40px;
}

.raffle-cs-tag::before {
  content: '●';
  font-size: 8px;
  color: var(--red);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

@media (max-width: 768px) {
  .raffle-coming-soon { padding: 52px 24px; }
}

/* ─── WESTJET LOGO ─── */
.logo-badge-westjet {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  background: #000;
  border-radius: 6px;
  padding: 8px 16px;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.logo-badge-westjet:hover { opacity: 1; }

/* ─── HERO COMBINED LOGO ─── */
.hero-logo-combined {
  height: 220px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: screen;
}

@media (max-width: 480px) {
  .hero-logo-combined {
    height: 160px;
    max-width: 280px;
  }
}

/* ─── HERO LOGO PILL ─── */
.hero-logo-pill-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 100px;
  overflow: hidden;
  background: rgba(24,96,225,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-logo-pill-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-logo-pill-wrap {
    max-width: 100%;
    border-radius: 60px;
  }
}

/* ─── TICKETS LOGO PILL ─── */
.tickets-logo-pill-wrap {
  width: 100%;
  max-width: 720px;
  margin: 40px auto 0;
  border-radius: 100px;
  overflow: hidden;
  background: white;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-logo-pill-img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .tickets-logo-pill-wrap {
    max-width: 100%;
    border-radius: 60px;
    padding: 16px 28px;
  }
  .tickets-logo-pill-img { max-height: 60px; }
}

/* ─── GOFUNDME BUTTON ─── */
.s-btn-gofundme {
  background: var(--red);
  color: var(--white);
  max-width: 400px;
  margin: 0 auto;
  font-size: 13px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(255,49,49,0.35);
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.s-btn-gofundme:hover {
  background: #e02020;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,49,49,0.5);
}

/* ─── RED HERO BUTTON ─── */
.btn-red {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(255,49,49,0.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-red:hover {
  background: #e02020;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,49,49,0.5);
}

/* ─── WHITE HERO BUTTON ─── */
.btn-white {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 48px;
  background: var(--white);
  color: var(--text);
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(255,255,255,0.15);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
}
