/* ═══════════════════════════════════════════
   BLASC – Black Lawyers Association Student Chapter
   Shared Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --black:       #0a0c0f;
  --off-black:   #111418;
  --ink:         #1a1e24;
  --blue:        #1565a8;
  --blue-mid:    #1d7fd4;
  --blue-light:  #4ba3e3;
  --blue-pale:   #ddeefa;
  --gold:        #c4962a;
  --gold-light:  #e8b84b;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --surface:     #ffffff;
  --surface-soft:#f4f7fb;
  --muted:       #5a6475;
  --grey:        #8a95a0;
  --border:      #dfe7f0;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm:   0 4px 14px rgba(10, 12, 15, 0.06);
  --shadow-md:   0 14px 34px rgba(10, 12, 15, 0.09);
  --shadow-lg:   0 24px 58px rgba(10, 12, 15, 0.14);
  --ring:        rgba(29,127,212,0.18);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, p, a, span, label { overflow-wrap: break-word; }
::selection { background: rgba(196,150,42,0.24); color: var(--ink); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 76px;
  padding: 0 clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.nav.scrolled,
.nav.dark {
  background: rgba(10, 12, 15, 0.93);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.nav-name span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.1);
}
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  font-weight: 700;
  padding: 9px 19px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 12px 24px rgba(196,150,42,0.25);
}
.nav-links a.nav-cta:hover {
  background: var(--gold-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 899;
  background:
    radial-gradient(circle at top right, rgba(21,101,168,0.25), transparent 36%),
    var(--black);
  display: flex;
  flex-direction: column;
  padding: 96px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .m-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  text-align: center;
  padding: 15px;
  border-radius: 16px;
  font-weight: 700;
  border-bottom: none !important;
}

/* ── INNER PAGE HERO (used on sub-pages) ── */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--off-black);
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg:not(:has(img)) {
  background:
    linear-gradient(135deg, rgba(21,101,168,0.18), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(232,184,75,0.14), transparent 26%),
    var(--off-black) !important;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.95) contrast(1.08);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,12,15,0.92) 0%, rgba(10,12,15,0.62) 48%, rgba(10,12,15,0.3) 100%),
    linear-gradient(to top, rgba(10,12,15,0.86), rgba(10,12,15,0.08));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(38px,5vw,68px) clamp(16px,4vw,56px);
  width: min(100%, 900px);
  max-width: 900px;
  text-shadow: 0 16px 34px rgba(0,0,0,0.32);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.76);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 58ch;
  line-height: 1.75;
}

/* ── SECTION LAYOUT ── */
.section { padding: clamp(64px, 7vw, 110px) clamp(16px, 4vw, 56px); }
.section-inner { width: min(100%, 1200px); max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue-mid);
}
.section-label.gold { color: var(--gold); }
.section-label.gold::before { background: var(--gold); }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 18px;
}
h2.section-title.light { color: #fff; }
.section-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 64ch;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 46px;
  padding: 13px 27px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10,12,15,0.08);
  transition: transform 0.22s, filter 0.22s, background 0.22s, box-shadow 0.22s, border-color 0.22s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 30px rgba(10,12,15,0.13); }
.btn:focus-visible,
.nav-links a:focus-visible,
.hamburger:focus-visible,
.mobile-menu a:focus-visible {
  outline: 3px solid rgba(232,184,75,0.32);
  outline-offset: 3px;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); }
.btn-blue { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  filter: none;
  box-shadow: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); filter: none; transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  filter: none;
  box-shadow: none;
}
.btn-outline-dark:hover { border-color: rgba(21,101,168,0.42); background: #fff; filter: none; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,168,0.22);
}
.card-img {
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; }
.card-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.card-body p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

/* ── FORMS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d6e0eb;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px var(--ring), inset 0 1px 0 rgba(255,255,255,0.72);
}
.field input[type="file"] { padding: 9px 12px; }
.field input[type="checkbox"],
.field input[type="radio"] { width: auto; }
.fieldset-block {
  border: 1px solid #d8e2ec;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.72);
}
.fieldset-block legend {
  padding: 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.58;
  cursor: pointer;
}
.check-label input { margin-top: 4px; flex-shrink: 0; accent-color: var(--blue); }
.radio-group, .check-group {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

/* ── FOOTER ── */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(21,101,168,0.18), transparent 34%),
    linear-gradient(180deg, #0b0d10 0%, #050608 100%);
  border-top: 1px solid rgba(232,184,75,0.18);
  padding: 64px clamp(16px, 4vw, 56px) 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  margin-top: 10px;
  max-width: 30ch;
}
.footer-col h4 {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.44);
  font-size: 0.87rem;
  margin-bottom: 10px;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 0 !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); color: #fff !important; }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── PRESENTATION POLISH LAYER ── */
body .hero {
  isolation: isolate;
}
body .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(10,12,15,0.9) 0%, rgba(10,12,15,0.55) 48%, rgba(10,12,15,0.18) 100%),
    linear-gradient(to top, rgba(10,12,15,0.94) 0%, rgba(10,12,15,0.44) 52%, rgba(10,12,15,0.14) 100%);
}
body .hero-content {
  max-width: 1040px;
  text-shadow: 0 18px 42px rgba(0,0,0,0.34);
}
body .hero-desc,
body .about-text .bp,
body .cta-band p,
body .apply-band p {
  color: rgba(255,255,255,0.72);
}
body .section-body {
  color: #4f5b6d !important;
  opacity: 1;
}
body .about-card,
body .pillar,
body .benefit,
body .detail-card,
body .info-card,
body .moot-card,
body .op-card,
body .leader-card,
body .subcom-card,
body .sidebar-card,
body .form-panel,
body .app-panel,
body .value-item,
body .aim-item {
  border-color: rgba(21,101,168,0.13);
  box-shadow: var(--shadow-sm);
}
body .about-card,
body .pillar,
body .benefit,
body .detail-card,
body .info-card,
body .moot-card,
body .op-card,
body .subcom-card,
body .sidebar-card,
body .form-panel,
body .app-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
body .about-card:hover,
body .pillar:hover,
body .benefit:hover,
body .detail-card:hover,
body .info-card:hover,
body .moot-card:hover,
body .op-card:hover,
body .leader-card:hover,
body .subcom-card:hover {
  border-color: rgba(21,101,168,0.24);
  box-shadow: var(--shadow-md);
}
body .benefit,
body .detail-card,
body .info-card,
body .moot-card,
body .subcom-card,
body .aim-item {
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
body .benefit:hover,
body .detail-card:hover,
body .info-card:hover,
body .moot-card:hover,
body .subcom-card:hover,
body .aim-item:hover {
  transform: translateY(-2px);
}
body .benefit-icon,
body .detail-icon,
body .pillar-icon {
  box-shadow: inset 0 0 0 1px rgba(21,101,168,0.12);
}
body .benefit > div:last-child,
body .detail-body,
body .leader-info,
body .footer-col,
body .footer-brand {
  min-width: 0;
}
body .form-panel,
body .app-panel {
  padding: clamp(28px, 4vw, 42px);
}
body .form-panel h2,
body .app-panel h3 {
  line-height: 1.18;
}
body .form-panel .sub,
body .app-panel .sub {
  line-height: 1.65;
}
body .prog-tabs {
  background: #fff;
  border: 1px solid rgba(21,101,168,0.12);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
body .tab-btn {
  border: 1px solid transparent;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 11px 16px;
}
body .tab-btn.active {
  background: var(--blue-pale);
  border-color: rgba(21,101,168,0.16);
  color: var(--blue);
}
body .tab-btn:hover {
  background: rgba(21,101,168,0.06);
}
body .events-tabs {
  background: #fff;
  border: 1px solid rgba(21,101,168,0.12);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
body .etab {
  border: 1px solid transparent;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 11px 16px;
}
body .etab.active {
  background: var(--blue-pale);
  border-color: rgba(21,101,168,0.16);
  color: var(--blue);
}
body .etab:hover {
  background: rgba(21,101,168,0.06);
}
body .event-img-wrap,
body .einfo,
body .banking-box {
  box-shadow: var(--shadow-sm);
}
body .einfo {
  border-color: rgba(21,101,168,0.13);
  background: #fff;
}
body .banking-box {
  background:
    radial-gradient(circle at top right, rgba(232,184,75,0.18), transparent 34%),
    var(--off-black);
  border: 1px solid rgba(255,255,255,0.08);
}
body .week-slot {
  box-shadow: 0 1px 0 rgba(10,12,15,0.03);
}
body .calendar-note,
body .cta-band,
body .apply-band,
body .subcom-intro {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), var(--shadow-md);
}
body .leader-photo {
  background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}
body .leader-photo.placeholder {
  color: rgba(21,101,168,0.35);
}
body .gallery-grid .g-item,
body .media-duo img,
body .event-img-wrap,
body .about-img {
  box-shadow: var(--shadow-md);
}
body .gallery-grid .g-item {
  border-color: rgba(255,255,255,0.12);
}

/* ── SECOND PASS: PRESENTATION WOW-FACTOR ── */
@media (min-width: 769px) {
  .nav {
    top: 14px;
    left: clamp(18px, 2.4vw, 34px);
    right: clamp(18px, 2.4vw, 34px);
    height: 64px;
    padding: 0 14px 0 18px;
    border-radius: 999px;
    background: rgba(10,12,15,0.42);
    border-color: rgba(255,255,255,0.11);
    box-shadow: 0 18px 46px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px) saturate(1.15);
  }
  .nav.scrolled,
  .nav.dark {
    background: rgba(8,10,13,0.9);
    box-shadow: 0 20px 54px rgba(0,0,0,0.22);
  }
  .nav-links a {
    padding: 9px 15px;
  }
  .nav-logo {
    width: 40px;
    height: 40px;
  }
}

body .hero {
  min-height: 680px;
  background: var(--off-black);
}
body .hero::before,
body .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0, transparent 12%),
    radial-gradient(circle at 18% 82%, rgba(232,184,75,0.18), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.58;
}
body .hero-content,
body .page-hero-content {
  z-index: 2;
}
body .hero h1,
body .page-hero-content h1 {
  letter-spacing: -0.01em;
  text-shadow: 0 18px 44px rgba(0,0,0,0.42);
}
body .hero h1 em {
  text-shadow: 0 14px 34px rgba(196,150,42,0.22);
}
body .hero-eyebrow,
body .eyebrow,
body .section-label {
  letter-spacing: 0.2em;
}
body .page-hero {
  min-height: 390px;
}
body .page-hero-content h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
}

body .section {
  position: relative;
}
body .section[style*="off-white"],
body .pillars {
  background:
    linear-gradient(180deg, #f9fbfe 0%, #f2f6fb 100%) !important;
}
body .values-strip,
body .cta-band,
body .apply-band,
body .subcom-intro {
  background:
    radial-gradient(circle at 18% 0%, rgba(232,184,75,0.14), transparent 34%),
    linear-gradient(135deg, #123f6d 0%, #0a223c 100%) !important;
}

body .about-card,
body .pillar,
body .benefit,
body .detail-card,
body .info-card,
body .moot-card,
body .op-card,
body .leader-card,
body .subcom-card,
body .form-panel,
body .app-panel,
body .fieldset-block {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 16px 42px rgba(21,101,168,0.08),
    0 2px 10px rgba(10,12,15,0.04);
}
body .about-card,
body .pillar,
body .benefit,
body .detail-card,
body .info-card,
body .moot-card,
body .op-card,
body .subcom-card,
body .form-panel,
body .app-panel {
  border-color: rgba(21,101,168,0.15);
}
body .about-card:hover,
body .pillar:hover,
body .benefit:hover,
body .detail-card:hover,
body .info-card:hover,
body .moot-card:hover,
body .op-card:hover,
body .leader-card:hover,
body .subcom-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 22px 56px rgba(21,101,168,0.12),
    0 8px 22px rgba(10,12,15,0.08);
}
body .leader-card {
  background: #fff;
}
body .leader-info {
  border-top: 1px solid rgba(21,101,168,0.08);
}
body .leader-role,
body .info-card strong,
body .detail-body strong,
body .einfo strong,
body .fieldset-block legend {
  letter-spacing: 0.14em;
}
body .prog-badge,
body .event-meta-tag,
body .card-tag {
  box-shadow: inset 0 0 0 1px rgba(21,101,168,0.1);
}
body .prog-tabs,
body .events-tabs {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 18px 46px rgba(21,101,168,0.1);
}
body .tab-btn,
body .etab {
  min-height: 44px;
}
body .tab-btn.active,
body .etab.active {
  background: linear-gradient(180deg, #e8f4ff 0%, #d7ecfb 100%);
  box-shadow: inset 0 0 0 1px rgba(21,101,168,0.1);
}

body .btn {
  letter-spacing: 0.01em;
}
body .btn-gold {
  box-shadow: 0 16px 32px rgba(196,150,42,0.28);
}
body .btn-blue {
  box-shadow: 0 16px 32px rgba(21,101,168,0.22);
}
body .btn-outline-white {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

body .form-panel,
body .app-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
}
body .field input,
body .field select,
body .field textarea {
  min-height: 46px;
  border-color: #ccd9e7;
}
body .fieldset-block legend {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.74rem;
}
body .check-label {
  background: rgba(21,101,168,0.035);
  border-radius: 12px;
  padding: 12px 14px;
}

body .site-footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
body .footer-grid {
  position: relative;
}
body .footer-grid::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 16px;
    border-radius: 0;
    background: rgba(8,10,13,0.88);
    backdrop-filter: blur(14px);
  }
  .nav-brand { gap: 9px; }
  .nav-logo { width: 34px; height: 34px; }
  .nav-name { font-size: 0.9rem; }
  .nav-name span { font-size: 0.55rem; }
  body .hero { min-height: 620px; }
  body .hero-content { padding-top: 112px; padding-bottom: 70px; }
  .page-hero { min-height: 350px; height: 45vh; }
  .page-hero-content { padding-top: 112px; padding-bottom: 44px; }
  .section { padding: 56px 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  body .form-panel,
  body .app-panel { padding: 24px 18px; }
  body .benefit,
  body .detail-card { padding: 18px; }
  body .prog-tabs { display: grid; grid-template-columns: 1fr; }
  body .tab-btn { width: 100%; text-align: left; }
  body .events-tabs { display: grid; grid-template-columns: 1fr; }
  body .etab { width: 100%; text-align: left; }
}
@media (max-width: 480px) {
  body .hero { min-height: 600px; }
  .page-hero { min-height: 330px; }
  body .hero h1 { font-size: clamp(2.25rem, 13vw, 3.5rem); }
  .page-hero-content h1 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .hero-btns,
  .cta-btns { gap: 10px; }
  .hero-btns .btn,
  .cta-btns .btn { width: 100%; }
  .field input,
  .field select,
  .field textarea { font-size: 1rem; }
  .fieldset-block { padding: 18px; }
  .mobile-menu { padding: 88px 22px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
