:root {
  --yellow: #FFCD01;
  --yellow-soft: #ffe071;
  --navy: #0B344C;
  --navy-deep: #082739;
  --teal: #2F7F93;
  --teal-dark: #266a7c;
  --white: #ffffff;
  --ink: #16242c;
  --muted: #50656f;
  --cloud: #f4f7f8;

  --maxw: 1200px;
  --maxw-wide: 1800px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(11, 52, 76, .08);
  --shadow-md: 0 14px 40px rgba(11, 52, 76, .14);
  --shadow-lg: 0 26px 70px rgba(11, 52, 76, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-head: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-nav: "Raleway", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-200%);
  top: 8px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); font-family: var(--font-nav); font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); color:#fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.container--narrow { max-width: 880px; }
.container--wide { max-width: var(--maxw-wide); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-white { background: var(--white); }
.bg-cloud { background: var(--cloud); }
.bg-navy  { background: var(--navy); color: #eaf2f6; }
.bg-teal  { background: var(--teal); color: #fff; }
.bg-yellow{ background: var(--yellow); color: var(--navy); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-teal h1, .bg-teal h2, .bg-teal h3 { color: #fff; }
.bg-yellow h1, .bg-yellow h2, .bg-yellow h3 { color: var(--navy); }

.eyebrow {
  font-family: var(--font-nav); font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: 13px; color: var(--teal); margin: 0 0 14px;
}
.bg-navy .eyebrow, .bg-teal .eyebrow { color: var(--yellow); }
.bg-yellow .eyebrow { color: var(--navy); }
.lead { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; color: var(--muted); }
.bg-navy .lead, .bg-teal .lead { color: #cfe0e8; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.nowrap-md { white-space: normal; }
@media (min-width: 760px) { .nowrap-md { white-space: nowrap; } }

h1, .h1 { font-size: clamp(38px, 6vw, 64px); }
h2, .h2 { font-size: clamp(28px, 4.4vw, 46px); }
h3, .h3 { font-size: clamp(20px, 2.6vw, 27px); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-nav); font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: var(--r-sm); border: 1.5px solid var(--navy);
  background: var(--yellow); color: var(--navy); cursor: pointer;
  transition: all .25s var(--ease); letter-spacing: .02em; line-height: 1;
}
.btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; border-color: #fff; }
.btn--navy:hover { background: var(--teal); border-color: var(--teal); color:#fff; }
.btn--white { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn--white:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--lg { padding: 17px 38px; font-size: 17px; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.topbar {
  background: var(--teal); color: #fff; text-align: center;
  font-family: var(--font-nav); font-size: 14px; font-weight: 500;
  padding: 8px 16px;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.topbar a:hover { color: var(--yellow); }

.site-header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  box-shadow: 0 2px 16px rgba(11, 52, 76, .07);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px clamp(20px, 5vw, 40px);
  max-width: var(--maxw-wide); margin-inline: auto;
}
.nav__brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__brand img { width: 64px; height: 64px; }
.nav__brand-text { font-family: var(--font-head); font-weight: 800; color: var(--navy); line-height: 1; font-size: 19px; }
.nav__brand-text span { display: block; font-family: var(--font-nav); font-weight: 600; font-size: 10.5px; letter-spacing: .18em; color: var(--teal-dark); margin-top: 4px; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav__links a {
  font-family: var(--font-nav); font-weight: 600; font-size: 13.5px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--navy); padding: 9px 10px; border-radius: var(--r-sm);
  position: relative; white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 6px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--teal); }
.nav__cta { margin-left: 6px; flex-shrink: 0; }
.nav__cta .btn { padding: 11px 20px; font-size: 14.5px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px;
}
.nav__toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1140px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw);
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 96px 28px 40px; gap: 6px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__links a { color: #fff; font-size: 16px; padding: 14px 12px; border-radius: 8px; }
  .nav__links a::after { display: none; }
  .nav__links a:hover, .nav__links a[aria-current="page"] { background: rgba(255,255,255,.1); color: var(--yellow); }
  .nav__cta { margin: 18px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(8,39,57,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 850; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

.hero {
  position: relative; min-height: clamp(560px, 88vh, 920px);
  display: flex; align-items: center; isolation: isolate; overflow: hidden;
  background-size: cover; background-position: center; background-color: var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,39,57,.30) 0%, rgba(8,39,57,.55) 100%);
}
.hero__inner { padding-block: clamp(120px, 18vh, 240px) clamp(120px, 16vh, 200px); color: #fff; max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); margin-bottom: .25em; }
.hero__sub { font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 3vw, 32px); color: var(--yellow); margin: 0 0 28px; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.pagehero { min-height: clamp(420px, 62vh, 620px); }
.pagehero .hero__inner { max-width: 820px; }

.wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 2; pointer-events: none; }
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; transform: rotate(180deg); }
.wave svg { display: block; width: 100%; height: clamp(40px, 6vw, 80px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
.media-round { border-radius: 50%; box-shadow: var(--shadow-md); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }

.hlj { max-width: 460px; width: 100%; margin: 18px auto; }

.glance { font-family: var(--font-body); font-weight: 400; font-size: clamp(15px, 1.55vw, 17.5px); line-height: 1.95; color: #cfe0e8; max-width: 1000px; margin-inline: auto; text-align: center; }

.cards { display: grid; gap: 28px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .cards--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards--3, .cards--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--cloud); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; }
.card__body h3 { color: var(--navy); }
.card__body p { color: var(--muted); font-size: 16px; }

.offerings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; counter-reset: off; }
@media (max-width: 760px) { .offerings { grid-template-columns: 1fr; } }
.offering {
  position: relative; background: #fff; border-radius: var(--r-md); padding: 28px 28px 28px 84px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06);
}
.offering::before {
  counter-increment: off; content: counter(off);
  position: absolute; left: 24px; top: 26px; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--yellow); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 20px;
}
.offering h3 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.offering p { font-size: 15.5px; color: var(--muted); margin: 0; }

.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5vw, 56px); }
@media (max-width: 760px) { .team { grid-template-columns: 1fr; } }
.member { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; }
@media (max-width: 520px) { .member { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.member__photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-md); border: 5px solid var(--yellow); }
.member__name { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--navy); margin: 14px 0 2px; }
.member__role { font-family: var(--font-nav); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; color: var(--teal); margin-bottom: 12px; }
.member p { font-size: 15.5px; color: var(--muted); }

.parallax {
  position: relative; isolation: isolate; color: #fff;
  background-size: cover; background-position: center; background-color: var(--navy);
  padding: clamp(120px, 22vh, 280px) 0;
}
.parallax::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8,39,57,.72); }
@media (min-width: 1025px) { .parallax { background-attachment: fixed; } }
.parallax h2 { color: #fff; }
.parallax .lead { color: #dceaf0; }
.parallax .eyebrow { color: var(--yellow); }
.parallax__panel { max-width: 620px; }
.parallax--right .parallax__panel { margin-left: auto; text-align: right; }
@media (max-width: 720px) { .parallax--right .parallax__panel { text-align: left; } }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 7vw, 64px); color: var(--yellow); line-height: 1; }
.stat__label { font-family: var(--font-nav); font-weight: 600; letter-spacing: .04em; color: #cfe0e8; margin-top: 8px; }

.ctastrip { text-align: center; }
.ctastrip h2 { margin-bottom: .3em; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border-radius: var(--r-md); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06); text-align: center; }
.info-card .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; margin: 0 auto 16px; color: var(--navy); }
.info-card h3 { font-size: 18px; color: var(--navy); }
.info-card a { font-weight: 600; }

.form { display: grid; gap: 18px; max-width: 640px; margin-inline: auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-nav); font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #cdd9de; border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 16px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47,127,147,.14); }

.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .give-grid { grid-template-columns: 1fr; } }
.give-card { background:#fff; border-radius: var(--r-md); padding: 34px 30px; box-shadow: var(--shadow-sm); border:1px solid rgba(11,52,76,.06); text-align:center; display:flex; flex-direction:column; }
.give-card h3 { color: var(--navy); }
.give-card p { color: var(--muted); font-size: 15.5px; flex: 1; }

.prose-check { list-style: none; padding: 0; display: grid; gap: 18px; }
.prose-check li { position: relative; padding-left: 42px; }
.prose-check li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B344C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.prose-check li strong { color: var(--navy); }

.site-footer { background: var(--navy); color: #c3d4dd; padding-top: clamp(56px, 8vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { width: 92px; height: 92px; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; color: #a9c0cb; }
.footer-col h3 { font-family: var(--font-nav); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #c3d4dd; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-contact p { font-size: 15px; margin-bottom: 10px; color: #c3d4dd; }
.footer-contact a { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: all .25s var(--ease);
}
.socials a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 30px; text-align: center; font-size: 13.5px; color: #9fb6c1; }
.footer-bottom a { color: #c3d4dd; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom .legal { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 6px; }
.footer-bottom .heart { color: #ffa4a8; font-style: normal; }

.footer-about { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 64px; padding-bottom: 44px; }
@media (max-width: 760px) { .footer-about { grid-template-columns: 1fr; gap: 28px; } }
.footer-about h3 { font-family: var(--font-nav); font-size: 17px; letter-spacing: .01em; text-transform: none; color: var(--yellow); margin-bottom: 12px; }
.footer-about p { font-size: 15px; color: #c3d4dd; margin: 0; line-height: 1.7; }
.footer-about a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-about a:hover { color: var(--yellow); }

.footer-cols { display: grid; grid-template-columns: 1.1fr 1.1fr 1.3fr 1fr; gap: 36px; padding: 8px 0 46px; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-cols h3 { font-family: var(--font-nav); font-size: 17px; letter-spacing: .01em; text-transform: none; color: var(--yellow); margin-bottom: 14px; }
.footer-cols .footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-cols .footer-nav a { color: #c3d4dd; font-size: 15px; }
.footer-cols .footer-nav a:hover { color: #fff; }
.footer-cols p { font-size: 15px; color: #c3d4dd; margin-bottom: 8px; }
.footer-cols .footer-contact a { color: #fff; }

.site-footer .socials { gap: 20px; margin-top: 2px; }
.site-footer .socials a { width: auto; height: auto; border-radius: 0; background: transparent; color: #2E8FC0; }
.site-footer .socials a:hover { background: transparent; color: var(--yellow); transform: translateY(-3px); }
.site-footer .socials svg { width: 30px; height: 30px; }

.roster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 820px) { .roster { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .roster { grid-template-columns: 1fr; } }
.roster-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06); padding: 30px 24px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.roster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.roster-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 5px solid var(--yellow); background: var(--cloud); }
.roster-card .r-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy); }
.roster-card .r-role { font-family: var(--font-nav); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--teal); margin: 4px 0 14px; }
.roster-card .r-links { display: flex; gap: 12px; justify-content: center; }
.roster-card .r-links a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--cloud); color: var(--navy); transition: all .2s var(--ease); }
.roster-card .r-links a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-2px); }

.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 680px) { .event-grid { grid-template-columns: 1fr; } }
.event-card { background: #fff; border-radius: var(--r-md); padding: 26px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06); border-left: 5px solid var(--yellow); }
.event-card h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 8px; font-family: var(--font-nav); }
.event-card p { font-size: 16px; color: var(--ink); margin: 0; }

.year-switch { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.year-switch a { font-family: var(--font-nav); font-weight: 700; font-size: 15px; padding: 9px 22px; border-radius: 999px; border: 1.5px solid var(--navy); color: var(--navy); transition: all .2s var(--ease); }
.year-switch a:hover { background: var(--navy); color: #fff; }
.year-switch a[aria-current="page"] { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.archive-list { display: grid; gap: 26px; max-width: 1040px; margin: 0 auto; }
.proj { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(11,52,76,.06); border-left: 5px solid var(--yellow); padding: 26px 30px;
  display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); column-gap: clamp(22px, 3.5vw, 46px); align-items: stretch; }
.proj:not(:has(.proj__imgs)) { display: block; }
.proj > h3 { grid-column: 2; grid-row: 1; color: var(--navy); margin-bottom: 12px; align-self: start; }
.proj > p { grid-column: 2; grid-row: 2; color: var(--muted); font-size: 16px; align-self: start; }
.proj p + p { margin-top: 12px; }
.proj__imgs { grid-column: 1; grid-row: 1 / span 2; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; align-content: center; justify-content: center; }
.proj__imgs img { width: 150px; height: 112px; object-fit: cover; border-radius: 10px; background: var(--cloud); }
.proj__imgs img:only-child { width: 100%; height: 100%; min-height: 230px; max-height: 360px; }
@media (max-width: 720px) {
  .proj { display: block; }
  .proj__imgs { margin-bottom: 16px; }
  .proj__imgs img:only-child { height: auto; max-height: none; }
}
.month-head { max-width: 1040px; margin: 48px auto 6px; }
.month-head h2 { color: var(--navy); display: inline-block; border-bottom: 4px solid var(--yellow); padding-bottom: 6px; }

.reveal { animation: shoReveal .7s var(--ease) both; }
.reveal--left { animation-name: shoRevealLeft; }
@keyframes shoReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes shoRevealLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .parallax { background-attachment: scroll !important; }
}

.carousel { position: relative; }
.carousel__track > * { display: none; }
.carousel__track > .is-active { display: block; animation: cfade .8s var(--ease); }
@keyframes cfade { from { opacity: 0; } to { opacity: 1; } }
.carousel__dots { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.carousel__dots button { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid currentColor; background: transparent; cursor: pointer; padding: 0; opacity: .5; transition: opacity .2s, background .2s; }
.carousel__dots button.is-active { opacity: 1; background: currentColor; }
