/* ═══════════════════════════════════════════════════════════════
   LAUTECH EEE '05 Portal — Public CSS
   Brand: Deep red + gold + navy, on a warm cream base.
═══════════════════════════════════════════════════════════════ */

:root {
  --brand-red:       #9A1B1E;
  --brand-red-dark:  #6b1316;
  --brand-red-light: #C0393C;
  --brand-gold:      #C9992B;
  --brand-gold-dark: #A17C1F;
  --brand-gold-light:#E7B847;
  --brand-dark:      #1A2240;
  --brand-dark-2:    #0F1529;

  --cream:   #FBF8EF;
  --cream-2: #F6EFD8;
  --cream-3: #F0E6C8;

  --text:    #1f2937;
  --text-2:  #374151;
  --muted:   #6b7280;
  --muted-2: #9ca3af;
  --border:  #e5e7eb;
  --white:   #ffffff;

  --shadow-sm: 0 2px 8px  rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ── RESET & BASE ──────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.le05-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.le05-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 22px;
  border: 1.5px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 0.93rem;
  cursor: pointer; transition: all 0.2s ease;
  white-space: nowrap;
}
.le05-btn--lg  { padding: 15px 32px; font-size: 1rem; }
.le05-btn--primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(154,27,30,0.35);
}
.le05-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(154,27,30,0.45); }
.le05-btn--gold {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(201,153,43,0.35);
}
.le05-btn--gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,153,43,0.45); }
.le05-btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.le05-btn--ghost:hover { background: var(--white); border-color: var(--brand-red); color: var(--brand-red); }
.le05-btn--outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.le05-btn--outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.le05-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-red); font-weight: 600; font-size: 0.95rem;
  transition: gap 0.2s ease;
}
.le05-link-arrow:hover { gap: 12px; }

/* ── TOPBAR ────────────────────────────────────────────────────── */
.le05-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.le05-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.le05-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text);
}
.le05-brand__crest {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff; font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(201,153,43,0.35);
  flex-shrink: 0;
}
.le05-brand__text { line-height: 1.15; }
.le05-brand__name { font-weight: 800; font-size: 1rem; letter-spacing: 0.5px; }
.le05-brand__name span { color: var(--brand-red); }
.le05-brand__motto { font-size: 0.72rem; color: var(--muted); font-style: italic; margin-top: 2px; }
.le05-brand--on-dark { color: #fff; }
.le05-brand--on-dark .le05-brand__motto { color: var(--brand-gold); }

/* ══════════════════════════════════════════════════════════════
   NAV — grouped dropdown layout
══════════════════════════════════════════════════════════════ */
.le05-nav {
  display: flex; align-items: center; gap: 6px;
}
.le05-nav__link, .le05-nav__trigger {
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-2); font-weight: 500; font-size: 0.92rem;
  font-family: inherit; padding: 8px 14px; border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.le05-nav__link:hover, .le05-nav__trigger:hover {
  color: var(--brand-red); background: rgba(154,27,30,0.05);
}

/* Dropdown groups */
.le05-nav__group { position: relative; }
.le05-nav__caret { font-size: 0.7rem; opacity: 0.6; transition: transform 0.2s; }
.le05-nav__group.is-open .le05-nav__caret { transform: rotate(180deg); }
.le05-nav__group.is-open .le05-nav__trigger {
  color: var(--brand-red); background: rgba(154,27,30,0.05);
}

.le05-nav__panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 8px;
  box-shadow: 0 12px 40px rgba(10,17,40,0.15), 0 2px 6px rgba(10,17,40,0.06);
  min-width: 260px; opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 100;
}
.le05-nav__group.is-open .le05-nav__panel,
.le05-nav__group:hover .le05-nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.le05-nav__panel a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: var(--text);
  transition: background 0.12s;
}
.le05-nav__panel a:hover { background: rgba(154,27,30,0.05); }
.le05-nav__panel-icon {
  font-size: 1.3rem; flex-shrink: 0; line-height: 1;
  width: 32px; text-align: center;
}
.le05-nav__panel-title {
  display: block; font-weight: 600; font-size: 0.92rem;
  color: var(--brand-dark); margin-bottom: 1px;
}
.le05-nav__panel-sub {
  display: block; font-size: 0.78rem; color: var(--muted);
  line-height: 1.35;
}

/* CTA cluster (login/join or portal button) */
.le05-nav__cta {
  display: flex; align-items: center; gap: 8px;
  margin-left: 10px; padding-left: 14px;
  border-left: 1px solid var(--border);
}
.le05-nav__cta .le05-btn { font-size: 0.85rem; padding: 9px 18px; }
.le05-nav__cta .le05-btn--ghost { color: var(--text); border: 1.5px solid var(--border); }
.le05-nav__cta .le05-btn--ghost:hover { color: var(--brand-red); border-color: var(--brand-red); }

/* MOBILE menu toggle */
.le05-menu-toggle {
  display: none; background: transparent; border: 0;
  flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.le05-menu-toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all 0.25s ease;
}

/* ── Compact mid-desktop (1024px and below): tighten gaps + hide subtitles in panel) ── */
@media (max-width: 1100px) {
  .le05-nav { gap: 2px; }
  .le05-nav__link, .le05-nav__trigger { padding: 8px 11px; font-size: 0.88rem; }
  .le05-nav__cta { margin-left: 6px; padding-left: 10px; }
}

/* ── MOBILE (< 920px): collapse to vertical accordion menu ── */
@media (max-width: 920px) {
  .le05-nav { display: none; }
  .le05-menu-toggle { display: flex; }

  .le05-nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 14px;
    gap: 4px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .le05-nav.is-open .le05-nav__link,
  .le05-nav.is-open .le05-nav__trigger {
    width: 100%; justify-content: space-between;
    padding: 14px 16px; font-size: 0.96rem;
    border-radius: 10px;
  }
  .le05-nav.is-open .le05-nav__group { width: 100%; }

  /* Mobile: panels become inline accordions, not floating */
  .le05-nav.is-open .le05-nav__panel {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: 0;
    padding: 4px 0 4px 12px; min-width: 0;
    background: transparent;
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .le05-nav.is-open .le05-nav__group.is-open .le05-nav__panel {
    max-height: 600px;
  }
  .le05-nav.is-open .le05-nav__panel a {
    padding: 10px 12px; border-left: 2px solid rgba(201,153,43,0.3);
    margin-left: 4px; border-radius: 0 8px 8px 0;
  }
  /* On mobile, hide subtitles for compactness */
  .le05-nav.is-open .le05-nav__panel-sub { display: none; }

  .le05-nav.is-open .le05-nav__cta {
    margin-left: 0; padding-left: 0; border-left: 0;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 8px;
  }
  .le05-nav.is-open .le05-nav__cta .le05-btn { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.le05-hero { position: relative; color: #fff; overflow: hidden; padding-bottom: 0; }
.le05-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1400px 900px at 25% 20%, rgba(201,153,43,0.25), transparent 60%),
    radial-gradient(ellipse 1200px 900px at 85% 80%, rgba(154,27,30,0.40), transparent 60%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 100%);
}
.le05-hero__overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 42px);
  pointer-events: none;
}
.le05-hero__content {
  position: relative; padding: 90px 20px 120px; text-align: center;
}

.le05-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,153,43,0.15); color: var(--brand-gold-light);
  padding: 7px 16px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
  border: 1px solid rgba(201,153,43,0.3);
  margin-bottom: 28px; text-transform: uppercase;
}
.le05-hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-gold); box-shadow: 0 0 12px var(--brand-gold);
  animation: le05-pulse 2s ease-in-out infinite;
}
@keyframes le05-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.15); }
}

.le05-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.le05-hero__accent {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.le05-hero__subtitle {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 720px; margin: 0 auto 14px;
  opacity: 0.88;
}
.le05-hero__motto {
  font-size: 1.15rem; color: var(--brand-gold); margin-bottom: 38px;
  font-weight: 500;
}
.le05-hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Stats strip */
.le05-hero__stats {
  position: relative; margin-top: -60px; padding: 0 20px 80px;
}
.le05-stats {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.le05-stat { text-align: center; padding: 0 16px; position: relative; }
.le05-stat + .le05-stat::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 48px; background: var(--border);
}
.le05-stat__num {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--brand-red); line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.le05-stat__label {
  font-size: 0.82rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.8px; font-weight: 600;
}
@media (max-width: 700px) {
  .le05-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .le05-stat + .le05-stat::before { display: none; }
  .le05-stat:nth-child(3), .le05-stat:nth-child(4) {
    border-top: 1px solid var(--border); padding-top: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════════════════════════ */
.le05-section { padding: 90px 0; }
.le05-section--cream { background: var(--cream-2); }
.le05-section--dark {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 100%);
  color: #fff;
}
@media (max-width: 700px) { .le05-section { padding: 60px 0; } }

.le05-section__heading { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.le05-section__heading--on-dark { color: #fff; }
.le05-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: var(--brand-red); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.le05-eyebrow--gold { color: var(--brand-gold); }
.le05-section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
  margin-bottom: 14px; color: var(--brand-dark);
}
.le05-section--dark .le05-section__title { color: #fff; }
.le05-section__sub { font-size: 1.05rem; color: var(--muted); }
.le05-section--dark .le05-section__sub { color: rgba(255,255,255,0.75); }
.le05-section__footer { text-align: center; margin-top: 40px; }

/* Two-column */
.le05-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .le05-two-col { grid-template-columns: 1fr; gap: 40px; } }

.le05-quote {
  border-left: 4px solid var(--brand-gold);
  padding: 14px 0 14px 20px; margin-top: 24px;
  font-size: 1.05rem; font-style: italic;
  color: var(--text-2);
}
.le05-quote__attr {
  display: block; margin-top: 10px; font-style: normal;
  font-size: 0.85rem; color: var(--muted); font-weight: 600;
}

/* Milestones */
.le05-milestones {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow-md);
  position: relative;
}
.le05-milestone {
  display: flex; gap: 20px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px dashed var(--border);
}
.le05-milestone:last-child { border-bottom: 0; }
.le05-milestone__year {
  font-weight: 800; color: var(--brand-red);
  min-width: 80px; font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.le05-milestone__text { color: var(--text-2); }
.le05-milestone--current {
  background: linear-gradient(90deg, rgba(201,153,43,0.15) 0%, transparent 100%);
  margin: 8px -16px -8px; padding: 14px 16px; border-radius: var(--radius-sm);
}
.le05-milestone--current .le05-milestone__year { color: var(--brand-gold-dark); }

/* ══════════════════════════════════════════════════════════════
   EXECUTIVE COMMITTEE
══════════════════════════════════════════════════════════════ */
.le05-exco-chair {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.le05-exco-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .le05-exco-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .le05-exco-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.le05-exco-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 20px 16px 18px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.le05-exco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.le05-exco-card--featured {
  padding: 32px 28px 26px; max-width: 280px;
  border-top: 4px solid var(--brand-red);
}
.le05-exco-card__photo {
  width: 92px; height: 92px; margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
  overflow: hidden; position: relative;
  box-shadow: 0 4px 14px rgba(201,153,43,0.3);
}
.le05-exco-card--featured .le05-exco-card__photo {
  width: 130px; height: 130px; border-width: 4px;
}
.le05-exco-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.le05-exco-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 100%);
  color: var(--brand-gold);
  font-size: 2rem; font-weight: 800;
}
.le05-exco-card__name {
  font-weight: 700; font-size: 0.92rem; color: var(--text);
  margin-bottom: 4px;
}
.le05-exco-card--featured .le05-exco-card__name { font-size: 1.15rem; }
.le05-exco-card__office {
  font-size: 0.78rem; color: var(--brand-red); font-weight: 600;
}
.le05-exco-card--featured .le05-exco-card__office {
  font-size: 0.88rem; color: var(--brand-red);
}

/* ══════════════════════════════════════════════════════════════
   ZONES
══════════════════════════════════════════════════════════════ */
.le05-zones-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 900px) { .le05-zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .le05-zones-grid { grid-template-columns: 1fr; } }

.le05-zone {
  display: block; background: #fff;
  padding: 28px 22px; border-radius: var(--radius-md);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  color: var(--text);
}
.le05-zone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}
.le05-zone__num {
  position: absolute; top: 12px; right: 16px;
  font-size: 2.4rem; font-weight: 800;
  color: var(--cream-3); opacity: 0.7;
  line-height: 1;
}
.le05-zone__name {
  font-size: 1.12rem; font-weight: 700; color: var(--brand-red);
  margin-bottom: 8px;
}
.le05-zone__coord {
  font-size: 0.83rem; color: var(--text-2); margin-bottom: 12px;
}
.le05-zone__count {
  display: inline-block; padding: 4px 12px;
  background: var(--cream-2); border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; color: var(--brand-dark);
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER CARDS
══════════════════════════════════════════════════════════════ */
.le05-newsletter-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .le05-newsletter-grid { grid-template-columns: 1fr; } }

.le05-newsletter-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  color: var(--text); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.le05-newsletter-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.le05-newsletter-card__cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  background-size: cover; background-position: center;
  position: relative;
}
.le05-newsletter-card__volume {
  position: absolute; top: 16px; left: 16px;
  background: var(--brand-gold); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.5px;
}
.le05-newsletter-card__body { padding: 22px 22px 26px; }
.le05-newsletter-card__date {
  font-size: 0.78rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; margin-bottom: 8px;
}
.le05-newsletter-card__title {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
  color: var(--brand-dark);
}
.le05-newsletter-card__teaser {
  color: var(--text-2); font-size: 0.92rem; margin-bottom: 16px;
}
.le05-newsletter-card__read {
  color: var(--brand-red); font-weight: 700; font-size: 0.9rem;
}

.le05-empty {
  padding: 40px 24px; border: 2px dashed var(--border);
  border-radius: var(--radius-md); text-align: center;
  color: var(--muted);
}
.le05-empty--on-dark {
  border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════════════════════════
   LEGACY PROJECTS
══════════════════════════════════════════════════════════════ */
.le05-legacy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
@media (max-width: 900px) { .le05-legacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .le05-legacy-grid { grid-template-columns: 1fr; } }

.le05-legacy {
  background: #fff; padding: 28px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-gold);
}
.le05-legacy__icon { font-size: 2.2rem; margin-bottom: 12px; }
.le05-legacy__amount {
  font-size: 1.6rem; font-weight: 800; color: var(--brand-red);
  margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.le05-legacy h3 {
  font-size: 1.05rem; margin-bottom: 10px; color: var(--brand-dark);
}
.le05-legacy p { font-size: 0.9rem; color: var(--text-2); margin: 0; }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.le05-cta {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: #fff; padding: 70px 0;
  position: relative; overflow: hidden;
}
.le05-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 0%, rgba(201,153,43,0.25), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(201,153,43,0.18), transparent 60%);
  pointer-events: none;
}
.le05-cta__inner {
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  .le05-cta__inner { grid-template-columns: 1fr; text-align: center; }
}
.le05-cta__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px;
}
.le05-cta__text p { opacity: 0.9; margin: 0; max-width: 520px; }
.le05-cta__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 800px) { .le05-cta__actions { justify-content: center; } }
.le05-cta .le05-btn--primary {
  background: #fff; color: var(--brand-red); box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.le05-cta .le05-btn--primary:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.25); }
.le05-cta .le05-btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.le05-cta .le05-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.le05-footer {
  background: var(--brand-dark-2); color: rgba(255,255,255,0.75);
  padding: 60px 0 28px;
}
.le05-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px; margin-bottom: 42px;
}
@media (max-width: 900px) {
  .le05-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .le05-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) { .le05-footer__grid { grid-template-columns: 1fr; } }

.le05-footer__col h4 {
  color: #fff; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 18px;
}
.le05-footer__col ul { list-style: none; padding: 0; margin: 0; }
.le05-footer__col li { margin-bottom: 10px; }
.le05-footer__col a { color: rgba(255,255,255,0.75); transition: color 0.15s ease; font-size: 0.92rem; }
.le05-footer__col a:hover { color: var(--brand-gold); }

.le05-footer__about { margin-top: 16px; font-size: 0.9rem; line-height: 1.6; }
.le05-footer__about .le05-rc { display: block; font-size: 0.78rem; color: var(--muted-2); margin-top: 8px; }

.le05-bank {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.le05-bank__name { color: var(--brand-gold); font-weight: 700; margin-bottom: 2px; }
.le05-bank__label { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 10px; }
.le05-bank__line { font-family: "Menlo", "Consolas", monospace; font-size: 0.86rem; padding: 3px 0; display: flex; justify-content: space-between; }
.le05-bank__line span { color: var(--brand-gold); font-weight: 700; }

.le05-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 12px;
}
.le05-footer__tag { color: var(--brand-gold); font-style: italic; font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES (Login, Register, Forgot, Reset)
══════════════════════════════════════════════════════════════ */
.le05-auth {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
  background:
    radial-gradient(ellipse 900px 600px at 20% 10%, rgba(201,153,43,0.10), transparent 60%),
    radial-gradient(ellipse 800px 500px at 80% 90%, rgba(154,27,30,0.08), transparent 60%),
    var(--cream);
}
.le05-auth__card {
  width: 100%; max-width: 460px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-gold);
}
.le05-auth__card--wide { max-width: 620px; }
.le05-auth--wide { padding-top: 40px; padding-bottom: 40px; }

.le05-auth__crest {
  width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(201,153,43,0.4);
}
.le05-auth__title {
  font-size: 1.6rem; font-weight: 800; color: var(--brand-dark);
  text-align: center; margin-bottom: 6px;
}
.le05-auth__sub {
  text-align: center; color: var(--muted); font-size: 0.92rem;
  margin-bottom: 24px; line-height: 1.6;
}

.le05-auth__form { display: flex; flex-direction: column; gap: 14px; }
.le05-auth__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .le05-auth__row { grid-template-columns: 1fr; } }

.le05-field { display: flex; flex-direction: column; gap: 6px; }
.le05-field label {
  font-size: 0.83rem; font-weight: 600; color: var(--text);
}
.le05-field__hint { font-weight: 400; color: var(--muted); font-size: 0.78rem; margin-left: 6px; }
.le05-field input, .le05-field select, .le05-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; background: #fafafa;
  transition: all 0.15s ease;
}
.le05-field input:focus, .le05-field select:focus, .le05-field textarea:focus {
  outline: none; border-color: var(--brand-red);
  background: #fff; box-shadow: 0 0 0 3px rgba(154,27,30,0.1);
}

.le05-auth__alert {
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.88rem; line-height: 1.5;
  margin-bottom: 14px;
}
.le05-auth__alert--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.le05-auth__alert--ok  { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

.le05-auth__links {
  margin-top: 18px; text-align: center;
  font-size: 0.88rem; color: var(--muted);
}
.le05-auth__links a { color: var(--brand-red); font-weight: 500; }
.le05-auth__links .sep { margin: 0 10px; color: var(--muted-2); }

.le05-pin-box {
  background: var(--cream-2); border-radius: 12px;
  padding: 14px 16px; border: 1px dashed var(--brand-gold);
  margin-top: 6px;
}
.le05-pin-box__label { display: block; margin-bottom: 8px; }
.le05-pin-box__title { display: block; font-size: 0.88rem; font-weight: 700; color: var(--brand-dark); }
.le05-pin-box__hint  { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.le05-pin-box__hint a { color: var(--brand-red); font-weight: 600; }
.le05-pin-box input {
  text-align: center; letter-spacing: 0.3em; font-weight: 700;
  font-size: 1.05rem; background: #fff;
}

.le05-oath {
  background: rgba(154,27,30,0.04); border-left: 3px solid var(--brand-red);
  padding: 14px 18px; border-radius: 0 10px 10px 0;
  font-size: 0.87rem; line-height: 1.6; color: var(--text-2);
}
.le05-oath label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.le05-oath input { margin-top: 4px; accent-color: var(--brand-red); }
.le05-oath em { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--muted); }

/* Modal */
.le05-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.le05-modal[hidden] { display: none; }
.le05-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15,21,41,0.7); backdrop-filter: blur(4px);
}
.le05-modal__panel {
  position: relative; background: #fff;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border-top: 4px solid var(--brand-red);
}
.le05-modal__close {
  position: absolute; top: 14px; right: 18px;
  background: transparent; border: 0; font-size: 1.8rem; color: var(--muted);
  cursor: pointer; padding: 4px 10px;
}
.le05-modal__close:hover { color: var(--brand-red); }
.le05-modal__panel h3 {
  font-size: 1.4rem; color: var(--brand-dark); margin-bottom: 6px;
}

/* Flash messages inside authenticated layouts */
.le05-flash {
  margin-bottom: 20px; padding: 14px 18px; border-radius: 10px;
  font-size: 0.92rem;
}
.le05-flash--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.le05-flash--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.le05-flash--info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ── Progressive-enhancement scroll reveal (JS adds .le05-reveal) ── */
.le05-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.le05-reveal.is-revealed {
  opacity: 1;
  transform: none;
}
/* Safety fallback — after 2.5s, reveal everything regardless (handles
   JS errors, screenshot bots, and users scrolling very fast). */
@keyframes le05-safety-reveal {
  to { opacity: 1; transform: none; }
}
.le05-reveal {
  animation: le05-safety-reveal 0.4s ease 2.5s forwards;
}
/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .le05-reveal { opacity: 1; transform: none; transition: none; animation: none; }
}
/* If JS never runs, class .le05-reveal is never added — so no hiding. */

/* ═══════════════════════════════════════════════════════════════
   MOBILE POLISH — tighter typography, better spacing, touch targets
   ═══════════════════════════════════════════════════════════════ */

/* Tablet and below — ≤ 768px */
@media (max-width: 768px) {
  /* Hero compaction — most important: reduce headline size gracefully */
  .le05-hero__content {
    padding: 60px 20px 40px;
  }
  .le05-hero__title {
    font-size: clamp(1.9rem, 9vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .le05-hero__badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
  .le05-hero__motto {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  /* Stats strip — stack nicely at narrow widths */
  .le05-hero__stats {
    margin-top: 32px;
    padding: 18px 14px;
  }
  .le05-hero__stat-value {
    font-size: 1.8rem !important;
  }
  .le05-hero__stat-label {
    font-size: 0.7rem !important;
    letter-spacing: 0.08em;
  }

  /* Section headings */
  .le05-section {
    padding: 48px 0;
  }
  .le05-section__title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }
  .le05-section__sub {
    font-size: 0.95rem;
  }

  /* Buttons — guaranteed 44px+ tap targets for accessibility */
  .le05-btn {
    min-height: 44px;
    padding: 12px 22px;
    font-size: 0.95rem;
  }
  .le05-btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Hero CTA stack on very narrow */
  .le05-hero__cta {
    flex-direction: column;
    width: 100%;
    padding: 0 12px;
  }
  .le05-hero__cta .le05-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Phones ≤ 480px — tighter still */
@media (max-width: 480px) {
  .le05-hero__content {
    padding: 50px 16px 32px;
  }
  .le05-hero__title {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }
  .le05-hero__subtitle {
    font-size: 0.95rem;
  }
  .le05-hero__stats {
    display: block !important;
    padding: 0 16px 60px;
    margin-top: -40px;
  }
  .le05-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding: 28px 18px;
    max-width: 480px;
    margin: 0 auto;
  }
  .le05-stat {
    padding: 0 8px;
  }
  .le05-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .le05-section {
    padding: 40px 0;
  }

  /* Card grid snaps to 1 column */
  .le05-exco-grid,
  .le05-zone-grid,
  .le05-impact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Extra-small phones ≤ 360px */
@media (max-width: 360px) {
  .le05-hero__title {
    font-size: 1.7rem;
  }
  .le05-hero__stat-value {
    font-size: 1.5rem !important;
  }
}

/* ── Ensure content clears the sticky mobile nav (belt + braces) ── */
@media (max-width: 768px) {
  .le05-footer {
    /* The partial adds padding to body, but footer needs its own breathing room too */
    padding-bottom: 30px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   v1.0.7 — DYNAMIC HERO + FLUID SCROLL + FOOTER ACCORDION
   ═══════════════════════════════════════════════════════════════ */

/* ── Typography: Fraunces display + Inter Tight body ── */
:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --brand-dark-2: #14213d;
  --brand-gold-soft: #d4af4f;
  --brand-gold-deep: #8a6815;
}

body, .le05-public {
  font-family: var(--font-body);
}

/* ── Hero layered stack ── */
.le05-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 100px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

/* Layer 1: navy gradient base */
.le05-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--brand-dark) 0%, var(--brand-dark-2) 60%, #1c2a52 100%);
  z-index: -4;
}

/* Layer 2: admin-uploaded image with opacity control */
.le05-hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -3;
  will-change: transform;
  transform: translateZ(0);
}

/* Layer 3: gradient pulse (breathing glow) */
.le05-hero__pulse {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 153, 43, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(154, 27, 30, 0.15) 0%, transparent 50%);
  z-index: -2;
  animation: le05HeroPulse 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes le05HeroPulse {
  0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.08) rotate(3deg); }
}

/* Layer 4: drifting hexagons (EEE motif) */
.le05-hero__shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}
.le05-hero__shape {
  position: absolute;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  will-change: transform;
}
.le05-hero__shape--1 { top:  8%; left:  6%; width: 120px; height: 138px; opacity: 0.08; animation: le05Drift1 22s ease-in-out infinite; }
.le05-hero__shape--2 { top: 18%; right: 8%; width:  80px; height:  92px; opacity: 0.12; animation: le05Drift2 18s ease-in-out infinite; }
.le05-hero__shape--3 { bottom: 12%; left: 10%; width: 100px; height: 115px; opacity: 0.09; animation: le05Drift3 26s ease-in-out infinite; }
.le05-hero__shape--4 { bottom: 22%; right: 12%; width: 160px; height: 184px; opacity: 0.06; animation: le05Drift4 30s ease-in-out infinite; }
.le05-hero__shape--5 { top: 45%; left: 55%;  width:  60px; height:  69px; opacity: 0.14; animation: le05Drift5 20s ease-in-out infinite; }

@keyframes le05Drift1 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(40px,-30px) rotate(25deg)} }
@keyframes le05Drift2 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-30px,40px) rotate(-20deg)} }
@keyframes le05Drift3 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(50px,30px) rotate(15deg)} }
@keyframes le05Drift4 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-50px,-40px) rotate(-30deg)} }
@keyframes le05Drift5 { 0%,100%{transform:translate(0,0) rotate(0) scale(1)} 50%{transform:translate(30px,-50px) rotate(40deg) scale(1.2)} }

/* Layer 5: fine noise grain */
.le05-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Hero content typography ── */
.le05-hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.le05-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 153, 43, 0.12);
  border: 1px solid rgba(201, 153, 43, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--brand-gold-soft);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  animation: le05FadeUp 0.9s cubic-bezier(.22,.61,.36,1) 0.2s forwards;
}
.le05-hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 153, 43, 0.8);
  animation: le05Glow 2s ease-in-out infinite;
}
@keyframes le05Glow {
  0%, 100% { box-shadow: 0 0 12px rgba(201, 153, 43, 0.8); }
  50%      { box-shadow: 0 0 20px rgba(201, 153, 43, 1); }
}

.le05-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.4rem, 7.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: le05FadeUp 1s cubic-bezier(.22,.61,.36,1) 0.4s forwards;
}
.le05-hero__accent {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  background: linear-gradient(120deg, var(--brand-gold) 0%, var(--brand-gold-soft) 50%, var(--brand-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.1em;
}

.le05-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 640px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.005em;
  opacity: 0;
  animation: le05FadeUp 1s cubic-bezier(.22,.61,.36,1) 0.6s forwards;
}
.le05-hero__motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brand-gold-soft);
  margin-bottom: 36px;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 60;
  opacity: 0;
  animation: le05FadeUp 1s cubic-bezier(.22,.61,.36,1) 0.75s forwards;
}

.le05-hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: le05FadeUp 1s cubic-bezier(.22,.61,.36,1) 0.9s forwards;
}

@keyframes le05FadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.le05-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: le05FadeUp 1s ease 1.5s forwards;
  z-index: 1;
}
.le05-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201, 153, 43, 0.8), transparent);
  animation: le05ScrollHint 2s ease-in-out infinite;
}
@keyframes le05ScrollHint {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* ── Section titles: Fraunces treatment ── */
.le05-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.le05-hero__motto em {
  font-style: normal; /* already italic via Fraunces ital axis */
}

/* ── Reveal animations ── */
.le05-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.le05-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced-motion: kill all animations ── */
@media (prefers-reduced-motion: reduce) {
  .le05-hero__shape,
  .le05-hero__pulse,
  .le05-hero__scroll-line,
  .le05-hero__badge-dot { animation: none !important; }
  .le05-hero__title, .le05-hero__subtitle, .le05-hero__motto,
  .le05-hero__badge, .le05-hero__cta, .le05-hero__scroll { opacity: 1 !important; animation: none !important; transform: none !important; }
  .le05-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER ACCORDION on mobile
   ═══════════════════════════════════════════════════════════════ */

/* Chevron for footer headers */
.le05-footer__chev {
  display: none; /* hidden on desktop */
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand-gold-soft);
  border-bottom: 2px solid var(--brand-gold-soft);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
  margin-top: -4px;
}

/* Desktop: columns are always visible */
@media (min-width: 769px) {
  .le05-footer__body {
    /* no-op */
  }
}

/* Mobile: accordion */
@media (max-width: 768px) {
  .le05-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Brand column stays open always */
  .le05-footer__col--brand {
    padding: 24px 20px !important;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4px;
  }

  /* Non-brand columns become accordion cards */
  .le05-footer__col:not(.le05-footer__col--brand) {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s;
  }
  .le05-footer__col:not(.le05-footer__col--brand):hover {
    background: rgba(255,255,255,0.06);
  }

  .le05-footer__col:not(.le05-footer__col--brand) h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin: 0;
    cursor: pointer;
    user-select: none;
    min-height: 56px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
  }
  .le05-footer__col:not(.le05-footer__col--brand) h4:active {
    color: var(--brand-gold);
  }

  .le05-footer__chev {
    display: inline-block;
  }
  .le05-footer__col.is-open .le05-footer__chev {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .le05-footer__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.22,.61,.36,1), padding 0.3s ease;
    padding: 0 20px;
  }
  .le05-footer__col.is-open .le05-footer__body {
    max-height: 600px;
    padding: 0 20px 20px;
  }
}

