/* LAV8 Theme — main.css v1.1 */

/* ---- Variables ---- */
:root {
  --primary:   #1980FF;
  --secondary: #55BD81;
  --dark:      #030624;
  --fg:        #060E2E;
  --muted:     #5B6783;
  --border:    #DDDEE6;
  --bg:        #ffffff;
  --gray50:    #F9FAFB;
  --radius:    0.75rem;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography helpers ---- */
.lav8-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.lav8-display {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}
.lav8-gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Layout ---- */
.lav8-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Buttons ---- */
.lav8-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
  white-space: nowrap;
}
.lav8-btn--gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
}
.lav8-btn--gradient:hover { opacity: .9; transform: scale(1.02); }
.lav8-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.lav8-btn--outline:hover { background: rgba(255,255,255,.1); }
.lav8-btn--lg { padding: 1rem 2rem; font-size: 1.05rem; height: 56px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.lav8-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.lav8-nav.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.lav8-nav__inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}
.lav8-nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.lav8-nav__brand img { height: 36px; width: auto; mix-blend-mode: multiply; }
/* custom logo from WP */
.lav8-nav__brand .custom-logo { height: 36px; width: auto; mix-blend-mode: multiply; }

/* Desktop menu — rendered by wp_nav_menu() */
.lav8-nav__links { flex: 1; }
.lav8-nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.lav8-nav__menu li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.lav8-nav__menu li a:hover,
.lav8-nav__menu .current-menu-item a { color: var(--primary); }

.lav8-nav__cta { padding: .6rem 1.25rem; font-size: .875rem; flex-shrink: 0; }

/* Burger */
.lav8-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.lav8-nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .2s;
}

/* Mobile overlay */
.lav8-nav__mobile {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.lav8-nav__mobile.is-open { display: flex; }
/* Mobile menu from wp_nav_menu() */
.lav8-nav__mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0; padding: 0;
}
.lav8-nav__mobile-menu li a {
  display: block;
  padding: .55rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .lav8-nav__links, .lav8-nav__cta { display: none; }
  .lav8-nav__burger { display: flex; }
}

/* ================================================================
   HERO
   ================================================================ */
.lav8-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(80px + 5rem) 0 6rem;
  background: var(--dark);
  overflow: hidden;
}
.lav8-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lav8-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.lav8-hero__bg-overlay-t {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark), rgba(3,6,36,.4) 60%, transparent);
}
.lav8-hero__bg-overlay-r {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark), rgba(3,6,36,.2) 60%, transparent);
}
.lav8-hero__content { position: relative; z-index: 1; }
.lav8-hero__pill {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(25,128,255,.3);
  background: rgba(25,128,255,.1);
  color: var(--primary);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.lav8-hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 1.75rem;
  max-width: 600px;
}
.lav8-hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.lav8-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ================================================================
   ABOUT
   ================================================================ */
.lav8-about { padding: 6rem 0; background: var(--gray50); }
.lav8-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lav8-about__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.lav8-about__text { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }
.lav8-about__meta { display: flex; align-items: center; gap: 1rem; margin-top: .5rem; }
.lav8-about__avatars { display: flex; }
.lav8-about__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #eee;
  display: flex; align-items: center; justify-content: center;
  margin-left: -12px;
  color: var(--muted);
  font-size: .8rem;
}
.lav8-about__avatar:first-child { margin-left: 0; }
.lav8-about__meta-text { font-size: .875rem; }
.lav8-about__meta-text strong { display: block; color: var(--fg); font-weight: 600; }
.lav8-about__meta-text span { color: var(--muted); }

/* ================================================================
   SLIDER / CAROUSEL
   ================================================================ */
.lav8-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.lav8-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.lav8-slide.is-active { opacity: 1; }
.lav8-slide img { width: 100%; height: 100%; object-fit: cover; }
.lav8-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.lav8-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.lav8-dot.is-active { background: #fff; transform: scale(1.3); }

/* ================================================================
   PILLARS
   ================================================================ */
.lav8-pillars {
  padding: 6rem 0;
  background: #fff;
  position: relative;
}
.lav8-pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(25,128,255,.05) 0%, transparent 70%);
}
.lav8-pillars__header { max-width: 700px; margin: 0 0 3.5rem; }
.lav8-pillars__title  { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.lav8-pillars__sub    { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }
.lav8-pillars__grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.lav8-pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s, box-shadow .2s;
}
.lav8-pillar-card:hover { border-color: rgba(25,128,255,.3); box-shadow: var(--shadow-md); }
.lav8-pillar-card__icon {
  width: 52px; height: 52px;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}
.lav8-pillar-card__icon svg { width: 26px; height: 26px; color: #fff; }
.lav8-pillar-card__title { font-size: 1.4rem; font-weight: 700; font-family: 'Outfit', sans-serif; margin-bottom: .75rem; color: var(--fg); }
.lav8-pillar-card__desc  { color: var(--muted); line-height: 1.7; }

/* ================================================================
   COMMUNITY
   ================================================================ */
.lav8-community {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.lav8-community::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: rgba(25,128,255,.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lav8-community__header { max-width: 640px; margin: 0 0 3.5rem; }
.lav8-community__title  { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.lav8-community__sub    { color: rgba(255,255,255,.5); font-size: 1.05rem; line-height: 1.6; }
.lav8-community__tiles  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 4rem; }
.lav8-tile {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s, border-color .2s;
}
.lav8-tile:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.lav8-tile__bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.lav8-tile__icon {
  width: 48px; height: 48px;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.lav8-tile__icon svg   { width: 24px; height: 24px; color: #fff; }
.lav8-tile__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.lav8-tile__desc  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.lav8-community__who-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.lav8-community__who-border { border-top: 1px solid rgba(255,255,255,.1); padding-top: 3rem; }
.lav8-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.lav8-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.lav8-pill:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.lav8-pill__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lav8-pill__icon svg { width: 14px; height: 14px; }

/* ================================================================
   EVENTS
   ================================================================ */
.lav8-events {
  padding: 6rem 0 8rem;
  background: #fff;
}
.lav8-events__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 4rem;
}
.lav8-events__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.lav8-events__sub {
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.65;
  font-size: 1.125rem;
  margin: 0;
}
.lav8-events__grid  { display: grid; grid-template-columns: 5fr 7fr; gap: 2rem; }
.lav8-events__empty {
  padding: 2rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
.lav8-event-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 420px;
}
.lav8-event-featured--empty {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}
.lav8-event-featured img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.lav8-event-featured:hover img { transform: scale(1.04); }
.lav8-event-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, rgba(3,6,36,.4) 55%, transparent 100%);
}
.lav8-event-featured__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.lav8-event-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  color: #fff;
}
.lav8-event-featured__title    { font-size: 1.6rem; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 800; margin-bottom: .5rem; }
.lav8-event-featured__cosponsor{ color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.lav8-event-featured__meta     { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .875rem; color: rgba(255,255,255,.55); }
.lav8-event-featured__meta span{ display: flex; align-items: center; gap: .3rem; }
.lav8-event-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  padding: .5rem 1.1rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.lav8-event-link:hover { background: rgba(255,255,255,.25); }
.lav8-events__list    { display: flex; flex-direction: column; gap: 1rem; }
.lav8-event-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.lav8-event-row:hover { border-color: rgba(25,128,255,.2); box-shadow: var(--shadow); }
.lav8-event-row__date  { flex-shrink: 0; width: 10rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .875rem; color: var(--primary); }
.lav8-event-row__info  { flex: 1; }
.lav8-event-row__title { font-size: 1.25rem; font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--fg); margin-bottom: .2rem; }
.lav8-event-row__loc   { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .25rem; }
.lav8-event-row__time  { flex-shrink: 0; font-size: .875rem; font-weight: 500; color: var(--muted); }
.lav8-event-row__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .9rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: .5rem;
  font-size: .8rem;
  font-weight: 700;
  transition: opacity .2s;
}
.lav8-event-row__link:hover { opacity: .85; }

/* ================================================================
   PAST EVENTS
   ================================================================ */
.lav8-past {
  padding: 4rem 0 6rem;
  background: var(--gray50);
  border-top: 1px solid var(--border);
}
.lav8-past__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2rem;
}
.lav8-past__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.lav8-past__card:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
/* Override slider radius/shadow inside past events */
.lav8-past .lav8-slider { border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.lav8-past__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 9999px;
  background: #e5e7eb;
  color: #6b7280;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.lav8-past__title { font-size: 1.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--fg); margin-bottom: .75rem; }
.lav8-past__desc  { color: var(--muted); margin-bottom: .5rem; line-height: 1.65; }
.lav8-past__loc   { font-size: .875rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; margin-top: .25rem; }

/* ================================================================
   SPONSORS
   ================================================================ */
.lav8-sponsors { padding: 5rem 0; background: var(--gray50); border-top: 1px solid var(--border); }
.lav8-sponsors__label { text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }
.lav8-sponsors__grid  { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem; }
.lav8-sponsor { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lav8-sponsor img { max-height: 60px; width: auto; opacity: .55; transition: opacity .25s; }
.lav8-sponsor:hover img { opacity: 1; }
.lav8-sponsor__name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--fg); }
.lav8-sponsor__sub { font-size: .75rem; color: var(--muted); text-align: center; max-width: 240px; }
@media (min-width: 768px) { .lav8-sponsors__grid { flex-direction: row; gap: 5rem; } }
.lav8-sponsors__note { text-align: center; max-width: 600px; margin: 3rem auto 0; font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   APPLY
   ================================================================ */
.lav8-apply {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.lav8-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(25,128,255,.12) 0%, transparent 65%);
}
.lav8-apply__inner   { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; text-align: center; }
.lav8-apply__label   { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
.lav8-apply__title   { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1.25rem; }
.lav8-apply__sub     { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.lav8-apply__form    { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.lav8-apply__form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lav8-field label    { display: block; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .4rem; }
.lav8-field input {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .6rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}
.lav8-field input::placeholder { color: rgba(255,255,255,.35); }
.lav8-field input:focus        { outline: none; border-color: var(--primary); }
.lav8-apply__submit  { width: 100%; margin-top: .5rem; justify-content: center; height: 52px; font-size: 1rem; }
.lav8-apply__privacy { text-align: center; font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .75rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.lav8-footer {
  background: var(--gray50);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.lav8-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.lav8-footer__copy  { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.lav8-footer__links { display: flex; gap: 1.5rem; }
.lav8-footer__links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.lav8-footer__links a:hover { color: var(--fg); }
@media (min-width: 640px) { .lav8-footer__inner { flex-direction: row; align-items: center; } }

/* ================================================================
   GRADIENT HELPERS
   ================================================================ */
.grad-blue   { background: linear-gradient(135deg, var(--primary), #60a5fa); }
.grad-green  { background: linear-gradient(135deg, var(--secondary), #4ade80); }
.grad-both   { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.grad-orange { background: linear-gradient(135deg, #f97316, #fbbf24); }
.grad-wa     { background: linear-gradient(135deg, #22c55e, #16a34a); }
.grad-li     { background: linear-gradient(135deg, #2563eb, #60a5fa); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .lav8-community__tiles { grid-template-columns: repeat(2, 1fr); }
  .lav8-events__grid     { grid-template-columns: 1fr; }
  .lav8-event-featured   { min-height: 320px; }
}
@media (max-width: 768px) {
  .lav8-about__grid      { grid-template-columns: 1fr; }
  .lav8-pillars__grid    { grid-template-columns: 1fr; }
  .lav8-community__tiles { grid-template-columns: 1fr; }
  .lav8-past__grid       { grid-template-columns: 1fr; }
  .lav8-apply__form-row  { grid-template-columns: 1fr; }
  .lav8-event-row        { flex-wrap: wrap; }
  .lav8-event-row__date  { min-width: auto; width: 100%; }
}
