/* NAASC Los Angeles — shared site styles (index.html, recognition-reception.html) */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* NAASC Digital Palette — naasc.org/digital-style-guide */
:root {
  --spelman-blue: #A4C4E9;  /* primary */
  --navy:         #2A3B86;  /* secondary */
  --gray:         #999999;  /* secondary */
  --black:        #000000;  /* secondary */
  --white:        #FFFFFF;

  /* tints & shades derived from the palette */
  --blue-soft:  #D6E4F5;
  --blue-mist:  #F1F6FC;
  --navy-deep:  #1C2865;
  --navy-ink:   #111940;
  --ink:        #14172A;
  --text:       #454A5E;
  --muted:      #6B7084;
  --line:       rgba(42, 59, 134, .14);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Poppins', system-ui, sans-serif;
  --arch:  999px 999px 28px 28px;
  --wrap:  1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--spelman-blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--white); color: var(--navy); padding: 10px 18px;
  border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--spelman-blue); box-shadow: 0 0 0 4px rgba(164,196,233,.35);
}
.eyebrow.on-dark { color: var(--spelman-blue); }

.title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1; letter-spacing: -.025em; color: var(--ink);
}
.title em, .hero-title em {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  letter-spacing: -.01em; color: var(--navy);
}
.lede { font-size: 18px; line-height: 1.8; color: var(--text); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
}
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-blue { background: var(--spelman-blue); color: var(--navy-ink); }
.btn-blue:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42,59,134,.3); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-line { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-line:hover { background: var(--navy); color: var(--white); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: none;
  background: linear-gradient(var(--spelman-blue), var(--spelman-blue)) 0 100% / 0 2px no-repeat;
  padding-bottom: 2px; transition: background-size .3s;
}
.text-link:hover { background-size: 100% 2px; }

/* ─── NAV ─── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  height: 92px;
  transition: background .35s, box-shadow .35s, height .35s;
}
.nav-inner {
  height: 100%; max-width: 1360px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: flex-end; gap: 32px;
  position: relative;
}
.nav-logo {
  position: absolute; left: 40px; top: 0;
  background: var(--white);
  padding: 14px 14px 12px;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 14px 34px rgba(17,25,64,.22);
  transition: padding .35s, box-shadow .35s;
}
.nav-logo img { width: 104px; height: auto; transition: width .35s; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--white);
  text-decoration: none; transition: background .2s, color .2s;
}
.nav-links > li > a:hover,
.nav-links > li:focus-within > a { background: rgba(255,255,255,.14); }
.nav-links > li > a[aria-current="page"] { color: var(--spelman-blue); }
.chev { width: 10px; height: 10px; opacity: .7; transition: transform .25s; }
.has-sub:hover .chev, .has-sub:focus-within .chev { transform: rotate(180deg); }

.sub-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  min-width: 232px; list-style: none;
  background: var(--white); border-radius: 18px; padding: 10px;
  box-shadow: 0 24px 60px rgba(17,25,64,.2);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.sub-menu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub-menu a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--ink); text-decoration: none;
  transition: background .2s, color .2s;
}
.sub-menu a:hover, .sub-menu a:focus-visible { background: var(--blue-mist); color: var(--navy); }

.nav-donate { padding: 11px 24px; font-size: 14px; }

.nav.scrolled { height: 76px; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(17,25,64,.06); backdrop-filter: blur(10px); }
.nav.scrolled .nav-logo { padding: 8px 10px 8px; box-shadow: 0 10px 24px rgba(17,25,64,.14); }
.nav.scrolled .nav-logo img { width: 72px; }
.nav.scrolled .nav-links > li > a { color: var(--ink); }
.nav.scrolled .nav-links > li > a:hover,
.nav.scrolled .nav-links > li:focus-within > a { background: var(--blue-mist); color: var(--navy); }
.nav.scrolled .nav-links > li > a[aria-current="page"] { color: var(--navy); }
.nav.scrolled .btn-blue:hover { background: var(--navy); color: var(--white); }

.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: var(--white); color: var(--navy); cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(17,25,64,.18);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  position: relative; transition: transform .3s, background .3s;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }
.nav-open .menu-toggle span { background: transparent; }
.nav-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--navy-ink) url('../media/hero-poster.jpg') center / cover;
  color: var(--white); overflow: hidden;
  padding: 150px 0 clamp(120px, 14vw, 200px);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17,25,64,.9) 0%, rgba(28,40,101,.62) 45%, rgba(28,40,101,.18) 100%),
    linear-gradient(0deg, rgba(17,25,64,.55) 0%, rgba(17,25,64,0) 40%);
}
.hero-content { position: relative; z-index: 2; }
.hero-content > * { max-width: 720px; }
.hero-content > .hero-title { max-width: 980px; }

.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--spelman-blue);
  animation: rise 1s .15s both;
}
.hero-kicker::before { content: ""; width: 40px; height: 1.5px; background: var(--spelman-blue); }

.hero-title {
  margin-top: 22px;
  font-weight: 600; font-size: clamp(56px, 9.5vw, 140px);
  line-height: .92; letter-spacing: -.045em;
  animation: rise 1.1s .3s both;
}
.hero-title em { display: block; max-width: 13em; text-wrap: balance; color: var(--spelman-blue); font-size: .5em; letter-spacing: -.005em; margin-top: .22em; line-height: 1.05; }

.hero-sub {
  margin-top: 28px; max-width: 520px !important;
  font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.85);
  animation: rise 1.1s .45s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; animation: rise 1.1s .6s both; }

.hero-badge {
  position: absolute; z-index: 2;
  right: clamp(32px, 7vw, 120px); top: 50%;
  width: 200px; height: 200px; margin-top: -60px;
  animation: fade 1.4s .8s both;
}
.hero-badge-ring { width: 100%; height: 100%; animation: spin 36s linear infinite; }
.hero-badge-ring text {
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: .28em; fill: rgba(255,255,255,.85);
}
.hero-badge-core {
  position: absolute; inset: 50px; border-radius: 50%;
  background: rgba(164,196,233,.16); border: 1px solid rgba(164,196,233,.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}

.hero-controls {
  position: absolute; z-index: 3;
  right: clamp(20px, 3vw, 40px); bottom: clamp(96px, 11vw, 170px);
}
.video-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35); background: rgba(17,25,64,.35);
  color: var(--white); font: 500 12px var(--sans); letter-spacing: .06em;
  cursor: pointer; backdrop-filter: blur(6px); transition: background .2s, border-color .2s;
}
.video-toggle:hover { background: rgba(17,25,64,.6); border-color: var(--white); }
.video-toggle .vt-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--white); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.video-toggle .i-play { display: none; }
.video-toggle[aria-pressed="true"] .i-play { display: block; }
.video-toggle[aria-pressed="true"] .i-pause { display: none; }

.hero-curve {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  width: 100%; height: clamp(60px, 9vw, 150px); display: block;
}

/* ─── WELCOME ─── */
.welcome { padding: clamp(72px, 9vw, 120px) 0 clamp(96px, 11vw, 150px); }
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 7vw, 110px); align-items: center;
}
.welcome-media { position: relative; padding: 0 0 56px 0; }
.welcome-media::before {
  content: ""; position: absolute; left: -44px; top: 36px;
  width: 78%; aspect-ratio: 4 / 5; border-radius: var(--arch);
  border: 1.5px solid var(--spelman-blue);
}
.welcome-arch {
  position: relative; width: 78%; aspect-ratio: 4 / 5;
  border-radius: var(--arch); overflow: hidden; background: var(--blue-soft);
}
.welcome-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.welcome-circle {
  position: absolute; right: 0; bottom: 0;
  width: 46%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 10px solid var(--white); box-shadow: 0 24px 50px rgba(17,25,64,.16);
}
.welcome-circle img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.welcome-tag {
  position: absolute; left: 8%; bottom: 20px;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  box-shadow: 0 14px 30px rgba(42,59,134,.3);
}
.welcome-tag b { color: var(--spelman-blue); font-weight: 600; }

.welcome-copy .lede { margin-top: 26px; }
.welcome-copy .lede + .lede { margin-top: 16px; }
.welcome-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 38px; }

/* ─── PILLARS ─── */
.pillars {
  position: relative; background: var(--blue-mist);
  padding: clamp(88px, 10vw, 130px) 0;
  overflow: hidden;
}
.pillars::before, .pillars::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1.5px solid var(--line); pointer-events: none;
}
.pillars::before { width: 620px; height: 620px; right: -220px; top: -260px; }
.pillars::after  { width: 420px; height: 420px; right: -120px; top: -160px; }
.pillars-head { text-align: center; max-width: 720px; margin: 0 auto; position: relative; }
.pillars-head .lede { margin-top: 20px; }
.pillar-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 64px;
}
.pillar {
  background: var(--white); border-radius: 28px; padding: 16px 16px 34px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 var(--line);
  transition: transform .35s, box-shadow .35s;
}
.pillar:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(42,59,134,.14); }
.pillar-img {
  aspect-ratio: 5 / 4; border-radius: 999px 999px 18px 18px; overflow: hidden;
  background: var(--blue-soft);
}
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.pillar:hover .pillar-img img { transform: scale(1.05); }
.pillar-body { padding: 28px 18px 0; display: flex; flex-direction: column; flex: 1; }
.pillar-num {
  font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 600;
  color: var(--navy); opacity: .6;
}
.pillar-title { margin-top: 4px; font-size: 26px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.pillar-text { margin-top: 12px; font-size: 15px; line-height: 1.75; color: var(--text); flex: 1; }
.pillar .text-link { margin-top: 22px; align-self: flex-start; }

/* ─── SCHOLARSHIP ─── */
.scholarship {
  position: relative; background: var(--navy); color: var(--white);
  padding: clamp(96px, 11vw, 150px) 0; overflow: hidden;
}
.scholarship::before {
  content: ""; position: absolute; left: -260px; bottom: -380px;
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(164,196,233,.22), rgba(164,196,233,0) 65%);
  pointer-events: none;
}
.scholarship-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 110px); align-items: center;
}
.scholarship .title { color: var(--white); }
.scholarship .title em { color: var(--spelman-blue); }
.scholarship .lede { color: rgba(255,255,255,.78); margin-top: 26px; }
.scholarship-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.scholarship-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.14);
}
.scholarship-links a {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(164,196,233,.4); color: var(--spelman-blue);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background .2s, color .2s;
}
.scholarship-links a:hover { background: var(--spelman-blue); color: var(--navy-ink); }

.scholarship-media { position: relative; padding: 0 0 60px 60px; }
.scholarship-arch {
  aspect-ratio: 4 / 5; border-radius: var(--arch); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.scholarship-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; }
.scholarship-circle {
  position: absolute; left: 0; bottom: 0;
  width: 44%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 8px solid var(--navy);
}
.scholarship-circle img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.scholarship-fact {
  position: absolute; right: -18px; top: 48px;
  background: var(--white); color: var(--ink);
  border-radius: 20px; padding: 18px 22px; max-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.scholarship-fact strong {
  display: block; font-size: 34px; font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--navy);
}
.scholarship-fact span { display: block; margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ─── GET INVOLVED ─── */
.involved { padding: clamp(88px, 10vw, 130px) 0; }
.involved-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.involved-head .lede { max-width: 440px; }
.involved-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.tile {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 28px 30px; min-height: 290px;
  border-radius: 24px; border: 1.5px solid var(--line); background: var(--white);
  text-decoration: none; color: var(--ink); overflow: hidden; isolation: isolate;
  transition: color .35s, border-color .35s, transform .35s;
}
.tile::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 0; z-index: -1;
  background: var(--navy); border-radius: 50% 50% 0 0 / 40px 40px 0 0;
  transition: height .45s cubic-bezier(.2,.7,.2,1), border-radius .45s;
}
.tile:hover, .tile:focus-visible { color: var(--white); border-color: var(--navy); transform: translateY(-4px); }
.tile:hover::before, .tile:focus-visible::before { height: 100%; border-radius: 0; }
.tile-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-mist); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, color .35s;
}
.tile:hover .tile-icon, .tile:focus-visible .tile-icon { background: var(--spelman-blue); color: var(--navy-ink); }
.tile-title { margin-top: auto; padding-top: 40px; font-size: 21px; font-weight: 600; letter-spacing: -.015em; }
.tile-text { margin-top: 8px; font-size: 14px; line-height: 1.65; color: var(--muted); transition: color .35s; }
.tile:hover .tile-text, .tile:focus-visible .tile-text { color: rgba(255,255,255,.75); }
.tile-arrow {
  position: absolute; top: 32px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid currentColor; opacity: .35;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .35s, transform .35s;
}
.tile:hover .tile-arrow, .tile:focus-visible .tile-arrow { opacity: 1; transform: rotate(-45deg); }

/* ─── CTA ─── */
.cta {
  position: relative; background: var(--spelman-blue); color: var(--navy-ink);
  padding: clamp(88px, 10vw, 130px) 0; overflow: hidden;
}
.cta-rings { position: absolute; right: -140px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.cta-rings span {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1.5px solid rgba(42,59,134,.22); transform: translate(-50%, -50%);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; }
.cta-title {
  font-size: clamp(42px, 6vw, 84px); font-weight: 600; line-height: 1.02; letter-spacing: -.04em;
  color: var(--navy-ink);
}
.cta-title em { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.cta-sub { margin-top: 22px; font-size: 18px; line-height: 1.7; color: rgba(17,25,64,.78); max-width: 520px; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 36px; }
.cta-actions .text-link { color: var(--navy-ink); background-image: linear-gradient(var(--navy), var(--navy)); }
.cta-social {
  justify-self: end; background: rgba(255,255,255,.55); border-radius: 24px;
  padding: 28px 30px; backdrop-filter: blur(4px); min-width: 280px;
}
.cta-social-label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); }
.cta-social-handle { margin-top: 6px; font-size: 15px; color: var(--ink); }
.social-row { display: flex; gap: 10px; margin-top: 18px; list-style: none; }
.social-row a {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white); text-decoration: none;
  transition: background .2s, transform .2s;
}
.social-row a:hover { background: var(--navy-ink); transform: translateY(-3px); }

/* ─── FOOTER ─── */
.footer { background: var(--navy-ink); color: rgba(255,255,255,.7); padding: 88px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-logo { background: var(--white); border-radius: 22px; padding: 10px; }
.footer-logo img { width: 96px; }
.footer-name { font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: -.01em; line-height: 1.3; }
.footer-formal { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-email { font-size: 14px; color: var(--spelman-blue); text-decoration: none; font-weight: 500; }
.footer-email:hover { text-decoration: underline; }
.footer-col h3 {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--spelman-blue); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 30px; font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ─── FEATURED NAV ITEM ─── */
.nav-links > li > a.nav-feature {
  gap: 9px; padding: 8.5px 16px 8.5px 13px;
  border: 1.5px solid var(--spelman-blue); background: rgba(164,196,233,.16);
}
.nav-links > li > a.nav-feature:hover,
.nav-links > li:focus-within > a.nav-feature { background: rgba(164,196,233,.3); }
.nav-feature-dot {
  position: relative; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--spelman-blue);
}
.nav-feature-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
.nav.scrolled .nav-links > li > a.nav-feature { border-color: var(--navy); background: var(--blue-mist); color: var(--navy); }
.nav.scrolled .nav-links > li > a.nav-feature:hover,
.nav.scrolled .nav-links > li:focus-within > a.nav-feature { background: var(--navy); color: var(--white); }
.nav.scrolled .nav-feature-dot { background: var(--navy); }
.nav.scrolled a.nav-feature:hover .nav-feature-dot { background: var(--spelman-blue); }
@keyframes ping { 75%, 100% { transform: scale(2.6); opacity: 0; } }

@media (max-width: 1020px) {
  .nav-links > li > a.nav-feature,
  .nav.scrolled .nav-links > li > a.nav-feature { border: 0; padding: 16px 0; gap: 14px; color: var(--spelman-blue); }
  .nav.scrolled .nav-feature-dot { background: var(--spelman-blue); }
}

/* ─── EVENT PROMO ─── */
.promo { padding: clamp(40px, 5vw, 72px) 0 0; }
.promo-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 80px); align-items: center;
  background: var(--navy-ink); color: var(--white);
  border-radius: 36px; padding: clamp(40px, 6vw, 80px);
}
.promo-card::before, .promo-card::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  border: 1.5px solid rgba(164,196,233,.18); pointer-events: none;
}
.promo-card::before { width: 620px; height: 620px; right: -180px; top: -220px; }
.promo-card::after  { width: 420px; height: 420px; right: -80px; top: -120px; }
.promo-title {
  font-size: clamp(40px, 5.2vw, 72px); font-weight: 600;
  line-height: 1; letter-spacing: -.04em; color: var(--white);
}
.promo-title em { font-family: var(--serif); font-style: italic; font-weight: 600; letter-spacing: -.01em; color: var(--spelman-blue); }
.promo-honor { margin-top: 22px; max-width: 540px; font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.82); }
.promo-honor strong { font-weight: 600; color: var(--white); }
.promo-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.promo-meta li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(164,196,233,.32);
  font-size: 14px; font-weight: 500;
}
.promo-meta svg { flex: none; color: var(--spelman-blue); }
.promo-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.promo-media { position: relative; justify-self: end; width: 100%; max-width: 340px; }
.promo-arch { aspect-ratio: 4 / 5; border-radius: var(--arch); overflow: hidden; background: var(--white); }
.promo-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 44% 0; }
.promo-date {
  position: absolute; right: -10px; top: -10px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--spelman-blue); color: var(--navy-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1; box-shadow: 0 14px 30px rgba(0,0,0,.3);
}
.promo-date span { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.promo-date strong { font-size: 32px; font-weight: 600; letter-spacing: -.03em; margin: 3px 0 2px; }
.promo-tag {
  position: absolute; padding: 7px 14px; border-radius: 999px;
  background: var(--white); color: var(--navy);
  font-size: 12px; font-weight: 500; letter-spacing: .04em; white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.promo-tag b { font-weight: 600; }
.promo-tag-honoree { left: -14px; bottom: 36px; }

@media (max-width: 1020px) {
  .promo-card { grid-template-columns: 1fr; }
  .promo-media { justify-self: start; }
}
@media (max-width: 720px) {
  .promo-card { border-radius: 28px; padding: 36px 22px 44px; }
  .promo-meta li { font-size: 13px; }
  .promo-actions .btn { flex: 1 1 auto; justify-content: center; }
  .promo-date { width: 76px; height: 76px; right: -4px; top: -4px; }
  .promo-date strong { font-size: 26px; }
}

/* ─── MOTION ─── */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
/* clip the image, not the observed frame — a fully clipped target never intersects */
.js .reveal-arch > img { clip-path: inset(100% 0 0 0); transition: clip-path 1.2s cubic-bezier(.7,0,.2,1), transform .8s; }
.js .reveal-arch.in > img { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-arch > img { clip-path: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1180px) {
  .nav-links > li > a { padding: 10px 10px; font-size: 14px; }
  .hero-badge { display: none; }
  .involved-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1020px) {
  .nav { height: 80px; }
  .nav-inner { padding: 0 20px; }
  .nav-logo { left: 20px; padding: 10px 10px 8px; border-radius: 0 0 20px 20px; }
  .nav-logo img { width: 76px; }
  .nav.scrolled { height: 68px; }
  .nav.scrolled .nav-logo img { width: 58px; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 2; }
  .nav-menu {
    position: fixed; inset: 0; z-index: 1;
    background: var(--navy-ink);
    padding: 110px 24px 40px; overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav-open .nav-menu { opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links > li > a,
  .nav.scrolled .nav-links > li > a { color: var(--white); font-size: 22px; font-weight: 500; padding: 16px 0; border-radius: 0; background: none !important; }
  .chev { display: none; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; box-shadow: none; padding: 0 0 14px; min-width: 0;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .sub-menu::before { display: none; }
  .sub-menu a { padding: 6px 12px; font-size: 14px; color: var(--spelman-blue); border: 1px solid rgba(164,196,233,.3); border-radius: 999px; }
  .sub-menu a:hover { background: rgba(164,196,233,.15); color: var(--white); }
  .nav-donate-item { border-bottom: 0 !important; padding-top: 28px; }
  .nav-links > li > a.nav-donate,
  .nav.scrolled .nav-links > li > a.nav-donate { display: flex; padding: 16px 28px; }
  .nav-links > li > a.nav-donate { justify-content: center; background: var(--spelman-blue) !important; color: var(--navy-ink) !important; border-radius: 999px; font-size: 17px; }
  .nav-open .nav-logo { box-shadow: none; }

  .welcome-grid, .scholarship-grid { grid-template-columns: 1fr; }
  .welcome-media { max-width: 520px; margin-left: 44px; }
  .scholarship-media { max-width: 520px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-social { justify-self: start; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 130px 0 110px; align-items: flex-end; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(17,25,64,.92) 0%, rgba(28,40,101,.6) 55%, rgba(17,25,64,.45) 100%);
  }
  .hero-kicker { font-size: 11px; letter-spacing: .16em; }
  .hero-kicker::before { width: 24px; }
  .hero-sub { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-controls { right: 16px; bottom: auto; top: 96px; }
  .video-toggle .vt-label { display: none; }
  .video-toggle { padding: 6px; }

  .welcome-media { margin-left: 24px; }
  .welcome-media::before { left: -24px; top: 24px; }
  .welcome-tag { left: 0; }
  .pillar-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
  .scholarship-media { padding: 0 0 48px 32px; }
  .scholarship-fact { right: 0; top: 24px; padding: 14px 16px; max-width: 160px; }
  .scholarship-fact strong { font-size: 28px; }
  .involved-grid { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
  .tile-title { padding-top: 28px; }
  .cta-social { min-width: 0; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
