/* ==========================================================================
   Beta Kappa Sigma Chi — bksigs.com
   Palette and type carried over from the original site:
   blue #00355F, old gold #FFD24F, Heebo (headings) + Work Sans (body).
   ========================================================================== */

:root {
  --blue: #00355f;
  --blue-dk: #002140;
  --blue-lt: #0a4d85;
  --gold: #ffd24f;
  --gold-dk: #e0b02f;
  --ink: #252525;
  --body: #5c5f66;
  --muted: #8a8d95;
  --line: #e3e6ea;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-tint: #eef2f6;

  --wrap: 1180px;
  --radius: 10px;
  --shadow: 0 2px 8px rgba(0, 33, 64, .06), 0 12px 32px rgba(0, 33, 64, .07);
  --shadow-lg: 0 4px 14px rgba(0, 33, 64, .1), 0 24px 60px rgba(0, 33, 64, .12);

  --h-font: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --b-font: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--b-font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--h-font);
  color: var(--blue);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-lt); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold-dk); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--blue-dk); padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--blue);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 4px 20px rgba(0, 33, 64, .18);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; flex: 0 0 auto; }
.brand:hover { color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--h-font); font-weight: 800; font-size: 1.22rem; letter-spacing: .01em; }
.brand__sub { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-weight: 600; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: 10px 14px; color: rgba(255, 255, 255, .88);
  font-size: .875rem; font-weight: 600; letter-spacing: .02em; border-radius: 6px;
}
.nav__link:hover, .nav__link.is-active { color: #fff; background: rgba(255, 255, 255, .1); }
.nav__link.is-active { box-shadow: inset 0 -2px 0 var(--gold); }
.nav__link--cta {
  background: var(--gold); color: var(--blue-dk); margin-left: 10px; padding: 10px 18px; font-weight: 700;
}
.nav__link--cta:hover { background: #fff; color: var(--blue-dk); }

.nav__toggle { display: none; }
.nav__submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 232px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item--has-children:hover .nav__submenu,
.nav__item--has-children:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__submenu a {
  display: block; padding: 9px 14px; border-radius: 6px; color: var(--blue);
  font-size: .875rem; font-weight: 600;
}
.nav__submenu a:hover, .nav__submenu a.is-active { background: var(--bg-tint); color: var(--blue); }

.nav-burger {
  display: none; margin-left: auto; width: 44px; height: 44px; background: none;
  border: 1px solid rgba(255, 255, 255, .3); border-radius: 8px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 6px; font-weight: 700;
  font-size: .92rem; letter-spacing: .03em; border: 2px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--blue-dk); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: var(--blue-dk); }
.btn--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-dk); color: #fff; }
.btn--ghost { border-color: currentColor; color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn--outline { border-color: var(--blue); color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.sec { padding: clamp(56px, 8vw, 104px) 0; }
.sec--alt { background: var(--bg-alt); }
.sec--tint { background: var(--bg-tint); }
.sec--blue { background: var(--blue); color: rgba(255, 255, 255, .84); }
.sec--blue h2, .sec--blue h3 { color: #fff; }
.sec--tight { padding: clamp(40px, 5vw, 64px) 0; }

.kicker {
  font-family: var(--h-font); font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dk); margin: 0 0 .5em;
}
.sec--blue .kicker { color: var(--gold); }

.sec-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); }
.sec-head--center { text-align: center; }
.sec-head--left { margin-left: 0; text-align: left; }
.lead { font-size: 1.08rem; color: var(--body); }
.sec--blue .lead { color: rgba(255, 255, 255, .8); }

/* ---------- Page hero ---------- */
.page-hero {
  background: var(--blue) center/cover no-repeat;
  color: #fff; padding: clamp(64px, 9vw, 118px) 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero__kicker {
  font-family: var(--h-font); font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 .8em;
}
.crumbs { font-size: .84rem; color: rgba(255, 255, 255, .7); font-weight: 500; }
.crumbs a { color: rgba(255, 255, 255, .85); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 2px; }
.crumbs__current { color: var(--gold); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: min(78vh, 660px); display: flex; align-items: center;
  background: var(--blue-dk) center/cover no-repeat; color: #fff; padding: 90px 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0, 33, 64, .93) 0%, rgba(0, 53, 95, .82) 48%, rgba(0, 53, 95, .55) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero__kicker {
  font-family: var(--h-font); font-size: .8rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 1em;
}
.hero__lead { font-size: 1.14rem; color: rgba(255, 255, 255, .88); margin-bottom: 2em; max-width: 60ch; }

/* ---------- Stat strip ---------- */
.stats { background: var(--gold); }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px; padding: 40px 0; text-align: center;
}
.stat__num { font-family: var(--h-font); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--blue-dk); line-height: 1; }
.stat__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(0, 33, 64, .72); margin-top: 10px;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .5em; }
.card__icon {
  width: 46px; height: 46px; margin-bottom: 18px;
  display: grid; place-items: center; border-radius: 10px;
  background: var(--bg-tint); color: var(--blue); font-family: var(--h-font);
  font-weight: 800; font-size: 1.15rem;
}
.card--flat { box-shadow: none; }
.card--flat:hover { transform: none; box-shadow: var(--shadow); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split--top { align-items: start; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 4px; position: relative; }
.timeline__item { text-align: center; padding: 28px 16px; position: relative; }
.timeline__item::before {
  content: ''; position: absolute; top: 62px; left: 0; right: 0; height: 2px;
  background: rgba(255, 255, 255, .22);
}
.timeline__year { font-family: var(--h-font); font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.timeline__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  margin: 22px auto; position: relative; z-index: 1; box-shadow: 0 0 0 5px rgba(255, 210, 79, .22);
}
.timeline__label { font-size: .9rem; color: rgba(255, 255, 255, .82); font-weight: 500; }

/* ---------- Advisor letter ---------- */
.advisor { display: grid; grid-template-columns: minmax(260px, 340px) 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.advisor__photo { position: sticky; top: 104px; }
.advisor__photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.advisor__caption { margin-top: 18px; padding-left: 16px; border-left: 3px solid var(--gold); }
.advisor__name { font-family: var(--h-font); font-weight: 800; color: var(--blue); font-size: 1.16rem; line-height: 1.3; }
.advisor__role { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; margin-top: 4px; }
.advisor__body > h2 + p::first-letter {
  float: left; font-family: var(--h-font); font-size: 3.6rem; line-height: .82;
  font-weight: 800; color: var(--blue); margin: 6px 12px 0 0;
}
.advisor__sign { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.advisor__sign strong { font-family: var(--h-font); color: var(--blue); font-size: 1.1rem; display: block; }

.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.facts li { background: #fff; padding: 16px 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .93rem; }
.facts dt, .facts .facts__k { font-weight: 700; color: var(--blue); }
.facts .facts__v { color: var(--body); text-align: right; }

/* ---------- Quote ---------- */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote blockquote {
  margin: 0; font-family: var(--h-font); font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.45; font-weight: 500; color: #fff;
}
.quote cite { display: block; margin-top: 22px; font-style: normal; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 520px; }
table.data th {
  background: var(--blue); color: #fff; text-align: left; padding: 15px 20px;
  font-family: var(--h-font); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  position: sticky; top: 0;
}
table.data td { padding: 13px 20px; border-top: 1px solid var(--line); }
table.data tbody tr:nth-child(even) { background: var(--bg-alt); }
table.data tbody tr:hover { background: #fffaeb; }
table.data td:first-child { font-weight: 600; color: var(--ink); }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Jordan Standard ---------- */
.standard { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: js; }
.standard li {
  counter-increment: js; position: relative; padding: 16px 20px 16px 62px;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 8px; font-size: 1rem; color: var(--ink); font-weight: 500;
}
.standard li::before {
  content: counter(js); position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-family: var(--h-font); font-size: .82rem; font-weight: 700;
}

/* ---------- Accordion ---------- */
.acc { display: grid; gap: 12px; }
.acc details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.acc summary {
  cursor: pointer; padding: 20px 56px 20px 24px; font-family: var(--h-font); font-weight: 700;
  color: var(--blue); font-size: 1.02rem; position: relative; list-style: none;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--gold-dk); transition: transform .2s ease;
}
.acc details[open] summary::after { content: '\2212'; }
.acc details[open] summary { background: var(--bg-tint); }
.acc__body { padding: 20px 24px 24px; border-top: 1px solid var(--line); }

/* ---------- Gallery ---------- */
.gallery { columns: 4 260px; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: var(--bg-tint); }
.gallery img { width: 100%; transition: transform .35s ease; cursor: zoom-in; }
.gallery figure:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 21, 40, .94);
  display: none; align-items: center; justify-content: center; padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255, 255, 255, .1); color: #fff; border: 0;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center; transition: background .18s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--blue-dk); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--b-font); font-size: 1rem; padding: 13px 16px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue-lt); box-shadow: 0 0 0 3px rgba(10, 77, 133, .12);
}
.field textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .84rem; color: var(--muted); }
.form-status { padding: 14px 18px; border-radius: 8px; font-size: .92rem; font-weight: 600; display: none; }
.form-status.is-ok { display: block; background: #e8f5ec; color: #1c6b39; }
.form-status.is-err { display: block; background: #fdeaea; color: #9b2222; }

/* ---------- Contact info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.info h3 { font-size: 1rem; margin-bottom: .4em; }
.info p { font-size: .95rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); color: #fff; text-align: center; padding: clamp(52px, 7vw, 84px) 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 620px; margin: 0 auto 2em; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Campaign progress ---------- */
.campaign { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); }
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.pillars li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; }
.pillars .pillars__mark {
  width: 34px; height: 34px; border-radius: 8px; background: var(--blue); color: var(--gold);
  display: grid; place-items: center; font-family: var(--h-font); font-weight: 800; font-size: .82rem;
}
.pillars strong { color: var(--blue); font-family: var(--h-font); display: block; margin-bottom: 2px; }

.notice {
  background: #fffaeb; border: 1px solid var(--gold); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 18px 22px; font-size: .93rem;
}
.notice strong { color: var(--blue); }

.prose > * + * { margin-top: 1.1em; }
.prose h3 { margin-top: 1.8em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-dk); color: rgba(255, 255, 255, .72); padding-top: clamp(48px, 6vw, 76px); font-size: .94rem; }
.site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px); padding-bottom: clamp(40px, 5vw, 60px);
}
.site-footer__mark { width: 46px; height: auto; margin-bottom: 20px; }
.site-footer__mark path { fill: var(--gold); }
.site-footer__motto {
  font-family: var(--h-font); font-style: italic; color: var(--gold);
  font-size: 1.02rem; font-weight: 500; margin-bottom: 1em; letter-spacing: .01em;
}
.site-footer__addr { margin-bottom: 1em; line-height: 1.6; }
.site-footer__social { display: flex; gap: 18px; font-weight: 600; }
.site-footer__col h3 {
  color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.2em;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 24px; padding-bottom: 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255, 255, 255, .55);
}
.site-footer__bar p { margin: 0; }

/* Inline brand mark — the archived PNG has a baked-in white background. */
.brand__mark { width: 30px; height: auto; flex: 0 0 auto; }
.brand__mark path { fill: var(--gold); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .nav {
    position: fixed; inset: 78px 0 0 auto; width: min(340px, 86vw);
    background: var(--blue-dk); padding: 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform .26s ease; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__item--has-children { display: grid; grid-template-columns: 1fr 44px; }
  .nav__link { padding: 13px 14px; font-size: .98rem; }
  .nav__link--cta { margin: 12px 0 0; text-align: center; }
  .nav__toggle {
    display: block; background: none; border: 0; color: #fff; cursor: pointer;
    position: relative;
  }
  .nav__toggle::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
    border-right: 2px solid rgba(255,255,255,.8); border-bottom: 2px solid rgba(255,255,255,.8);
    transform: translate(-50%, -70%) rotate(45deg); transition: transform .2s ease;
  }
  .nav__toggle[aria-expanded="true"]::after { transform: translate(-50%, -30%) rotate(225deg); }
  .nav__submenu {
    position: static; grid-column: 1 / -1; opacity: 1; visibility: visible; transform: none;
    background: rgba(0, 0, 0, .22); box-shadow: none; display: none; margin: 2px 0 6px;
  }
  .nav__submenu.is-open { display: block; }
  .nav__submenu a { color: rgba(255, 255, 255, .85); }
  .nav__submenu a:hover, .nav__submenu a.is-active { background: rgba(255, 255, 255, .1); color: #fff; }

  .advisor { grid-template-columns: 1fr; }
  .advisor__photo { position: static; max-width: 320px; }
  .split--reverse .split__media { order: 0; }
  .timeline__item::before { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .gallery { columns: 2 150px; column-gap: 12px; }
  .gallery figure { margin-bottom: 12px; }
  .facts li { flex-direction: column; gap: 2px; }
  .facts .facts__v { text-align: left; }
}

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

@media print {
  .site-header, .site-footer, .cta-band, .nav-burger { display: none; }
  body { font-size: 12pt; color: #000; }
}
