/* =========================================================
   [CHAPTER NAME] — Fraternity Site
   Light, photo-driven layout. White / black / royal blue.
   Edit brand colors and type below.
   ========================================================= */

:root {
  /* --- BRAND --- */
  --blue:        #1e3fae;   /* royal blue — primary accent */
  --blue-deep:   #142c7a;   /* hover / darker */
  --blue-soft:   #eef1fb;   /* tinted backgrounds */
  --black:       #0d0d0f;
  --white:       #ffffff;

  /* --- SURFACES --- */
  --bg:          #ffffff;
  --bg-alt:      #f6f7f9;   /* subtle off-white section */
  --line:        #e3e5ea;
  --line-soft:   #eef0f3;

  /* --- TEXT --- */
  --text:        #14161a;
  --muted:       #5b6270;
  --dim:         #8a909c;

  /* --- TYPE --- */
  --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --narrow: 760px;
  --nav-h: 78px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  /* Sticky footer: on short pages (contact) the footer would otherwise stop
     mid-screen with white space beneath it. */
  min-height: 100vh;
  min-height: 100dvh;        /* accounts for mobile browser chrome */
  display: flex;
  flex-direction: column;
}
/* Sections must keep their natural height — without this, flex would compress
   tall blocks like the hero to fit. */
body > * { flex: none; }
/* Absorbs the leftover space, pushing the footer to the bottom. */
#site-footer { margin-top: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.15; font-weight: 400; }
p { margin: 0 0 1.2em; }
ul { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .5em; }
hr.rule { border: 0; height: 1px; background: var(--line); margin: 64px 0; }

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }
.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--top { padding-top: 0; }
/* Mission / Vision / Core Values — centred, full width, tighter stack.
   Centring is done here rather than with the .center class, because .center
   also caps width at 68ch, which forced every statement onto two lines. */
/* Fills the leftover height between nav and footer and centres its content
   vertically. Needed on short pages (contact), where the slack would
   otherwise all pool below the content. Beats `body > * { flex: none }`
   on specificity. */
.section--center { flex: 1 0 auto; display: flex; align-items: center; }
.section--center > .wrap { width: 100%; }
.section--statement { padding: 52px 0; text-align: center; }
.section--statement .lede { margin-bottom: .5em; }
.section--statement .lede:last-child { margin-bottom: 0; }
/* Centre the rule under the heading too — that normally comes from .center,
   which we can't use here because it also caps width at 68ch and re-wraps. */
.section--statement .section-title--rule::after { margin: 26px auto 0; }

.grid { display: grid; gap: 34px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr 1fr; }
/* Gives the timeline column room to keep each entry on one line. */
.split--wide-right { grid-template-columns: 1fr 1.35fr; }

/* ---------- TYPE ---------- */
.h-display {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: .005em;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 18px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.section-title--rule::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  background: var(--blue);
  margin: 26px 0 0;
}
.center { text-align: center; }
.center .section-title--rule::after { margin: 26px auto 0; }
.lede { font-size: 1.12rem; color: var(--muted); }
.center .lede, .center p { margin-left: auto; margin-right: auto; max-width: 68ch; }
.muted { color: var(--muted); }
.blue { color: var(--blue); }
.small-caps {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); font-weight: 600;
}
a.link {
  color: var(--blue);
  border-bottom: 1px solid rgba(30,63,174,.3);
  transition: border-color .2s ease;
}
a.link:hover { border-color: var(--blue); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border: 1px solid transparent;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); }
.btn--outline { border-color: var(--black); color: var(--black); }
.btn--outline:hover { background: var(--black); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--black); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-mark {
  /* Crest artwork, not a lettered tile — no blue fill behind it: the crest is
     fine black line art and needs the white nav to stay legible. */
  height: 54px; width: auto; flex: none;
  object-fit: contain;
  display: block;
}
.nav-name {
  font-family: var(--font-head);
  font-size: 21px; line-height: 1.15;
  letter-spacing: .04em;
}
.nav-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--dim); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 9px 13px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.is-active { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--black);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- HERO (full-bleed photo) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--text);
  padding: 110px 0;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  /* Bleed past the hero on all sides: blur softens an element's edges, and the
     parallax shift needs slack so no gap is ever exposed. .hero clips it. */
  inset: -80px;
  background-image: url("../images/_IMG_7.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  transform: scale(1.06);
  will-change: transform;
}
/* Light scrim lives on .hero, not .hero-bg, so it stays put while the photo
   drifts underneath it. Inverted from a dark wash to a light one so the hero
   carries the site's white/black/blue palette instead of fighting it. */
.hero::before {
  /* z-index 1: .hero-bg is positioned and promoted (will-change), so without
     this it paints over the scrim and the scrim does nothing at all. */
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* Strongest under the text, fading outward so the photo still reads at the
     edges. Sized so even the darkest patches (black jackets) stay light
     enough for near-black type. */
  background:
    radial-gradient(ellipse 66% 58% at 50% 48%,
      rgba(255,255,255,.82), rgba(255,255,255,.50) 62%, rgba(255,255,255,.22) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.34), rgba(255,255,255,.46));
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}
/* Local separation, so letterforms hold their edge wherever they land. */
.hero h1, .hero .eyebrow, .hero p.lede {
  text-shadow: 0 1px 14px rgba(255,255,255,.8);
}
.hero .eyebrow { color: var(--blue); }
.hero p.lede { color: var(--muted); max-width: 60ch; margin: 0 auto 34px; }
.hero-meta {
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 34px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim);
}

/* ---------- PAGE HEADER (interior) ---------- */
.pagehead {
  text-align: center;
  padding: 88px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.pagehead h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 7vw, 4.4rem); margin-bottom: 16px; }
.pagehead .lede { max-width: 62ch; margin: 0 auto; }

/* ---------- FULL-WIDTH PHOTO BAND ---------- */
.band {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  background: var(--black);
  overflow: hidden;
  padding: 90px 0;
}
.band-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #16203f, #1e3fae 70%, #101426);
  background-size: cover; background-position: center;
}
.band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,10,18,.5); }
.band .wrap { position: relative; z-index: 1; }
.band h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 6vw, 3.6rem); }
.band p { color: rgba(255,255,255,.9); max-width: 60ch; margin: 0 auto 26px; }
.band .eyebrow { color: rgba(255,255,255,.8); }

/* ---------- IMAGE PLACEHOLDER ---------- */
.ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim); text-align: center; padding: 0 22px;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--tall { aspect-ratio: 3 / 4; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--pano { aspect-ratio: 21 / 9; }

/* ---------- GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.gallery .ph { aspect-ratio: 1/1; transition: opacity .25s ease; }
.gallery .ph:hover { opacity: .85; }

/* ---------- LOGO MARQUEE ----------
   Conveyor belt of company marks. The track holds two identical halves, so
   sliding exactly -50% lands on the seam and loops with no visible jump.
   main.js repeats the authored group first so this works with 1 logo or 30. */
.marquee { position: relative; overflow: hidden; }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-slide linear infinite;
  will-change: transform;
}
.marquee-group { display: flex; align-items: center; flex: none; }
.marquee .logo { flex: none; display: flex; align-items: center; padding: 0 42px; }
.marquee .logo img {
  height: 52px; width: auto; max-width: 210px;
  object-fit: contain; opacity: .92;
  transition: opacity .3s ease, transform .3s ease;
}
.marquee .logo:hover img { opacity: 1; transform: scale(1.05); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
/* Feather both ends so logos slide in and out instead of popping at the edge. */
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 110px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--bg), rgba(255,255,255,0)); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg), rgba(255,255,255,0)); }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 44px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--blue); line-height: 1; margin-bottom: 10px;
}
.stat span { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); font-weight: 600; }

/* ---------- CARDS ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 34px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(20,30,70,.06); }
.card h3 { font-family: var(--font-head); font-size: 1.55rem; margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card--plain { border: 0; padding: 0; background: transparent; }
.card--plain:hover { box-shadow: none; }
.card-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem; color: var(--blue); line-height: 1; margin-bottom: 16px;
}
.card-rule { width: 40px; height: 2px; background: var(--blue); margin: 0 0 20px; }
.card-media { margin: -38px -34px 26px; }
.card-media .ph { border: 0; border-bottom: 1px solid var(--line); }

/* ---------- TIMELINE ---------- */
/* Negative margin + equal padding puts the rule and dots out in the column
   gutter, so the text itself starts flush with the column edge instead of
   being indented past the line. */
.timeline {
  position: relative;
  margin-left: -30px; padding-left: 30px;
  border-left: 1px solid var(--line);
}
.tl-item { position: relative; padding-bottom: 42px; }
.tl-item::before {
  content: ""; position: absolute; left: -35px; top: 10px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px #fff;
}
.timeline p.muted { font-size: 16px; }   /* keeps each entry on one line */
.tl-year { font-family: var(--font-head); font-size: 1.5rem; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.tl-item h3 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: .35em; }

/* ---------- PEOPLE / ROSTER ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.filter {
  padding: 9px 20px; background: #fff; border: 1px solid var(--line); color: var(--muted);
  font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  transition: all .18s ease;
}
.filter:hover { color: var(--black); border-color: var(--black); }
.filter.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- ROSTER LIST ----------
   One person per row, flush left, name on a single line.
   Used for the exec VPs, the actives grid, and the founders list. */
.roster-list {
  list-style: none; padding: 0; margin: 0;
  text-align: left;
  border-top: 1px solid var(--line);
}
.roster-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 28px;
  padding: 15px 0; margin: 0;
  border-bottom: 1px solid var(--line);
}
.roster-list li.is-hidden { display: none; }
.roster-list .name {
  font-family: var(--font-head); font-size: 1.25rem; line-height: 1.25;
  white-space: nowrap;            /* names stay on one line */
}
.roster-list .role {
  flex: none; white-space: nowrap;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); font-weight: 700;
}
.roster-list .meta { flex: none; font-size: 13.5px; color: var(--dim); }
/* Names-only list (founders) — nothing to push to the right edge. */
.roster-list--solo li { justify-content: flex-start; }

/* The president sits alone and centered above the VP list. */
.lead-person { text-align: center; margin-bottom: 42px; }
.lead-person .name { font-family: var(--font-head); font-size: 1.7rem; margin: 0 0 5px; }
.lead-person .role {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin: 0;
}


/* ---------- TABLE ---------- */
.table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.table th, .table td { padding: 17px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.table th { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); font-weight: 600; }
.table tr:hover td { background: var(--bg-alt); }
.tag {
  display: inline-block; padding: 4px 13px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  background: var(--blue-soft); color: var(--blue);
}
.tag--solid { background: var(--blue); color: #fff; }

/* ---------- QUOTE ---------- */
.quote {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.5;
  color: var(--text);
}
.quote cite {
  display: block; margin-top: 22px;
  font-family: var(--font-body); font-style: normal;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim);
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 26px 44px 26px 0; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 1.35rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 22px;
  font-size: 1.5rem; color: var(--blue); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 44px 26px 0; color: var(--muted); }

/* ---------- FORM ---------- */
.form { display: grid; gap: 20px; }
.field label { display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 15px;
  background: #fff; border: 1px solid var(--line); color: var(--text);
  font: inherit; font-size: 16px; border-radius: 0;
  transition: border-color .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); }
.field textarea { min-height: 155px; resize: vertical; }
.form-note { font-size: 13px; color: var(--dim); }
.form-status { font-size: 14px; color: var(--blue); min-height: 20px; margin: 0; }

/* ---------- CONTACT ICONS ----------
   Icons are matched by AREA, not height: Gmail's envelope is 4:3 and Instagram
   is square, so equal heights would make Gmail read ~33% larger. */
.contact-icons {
  display: flex; justify-content: center; align-items: center;
  gap: 68px; flex-wrap: wrap;
}
.contact-icons a {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  transition: transform .25s ease;
}
.contact-icons a:hover { transform: translateY(-5px); }
/* Fixed-height box so the two labels sit on the same baseline even though
   the icons themselves are different heights. */
.contact-icons .icon-box { height: 108px; display: flex; align-items: center; }
.contact-icons img { width: auto; object-fit: contain; display: block; }
.contact-icons .icon--gmail { height: 80px; }   /* -> 107x80 */
.contact-icons .icon--ig    { height: 92px; }   /* ->  92x92 */
.contact-icons .icon--forms { height: 108px; }  /* ->  79x108, portrait */
.contact-icons .label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
  transition: color .25s ease;
}
.contact-icons a:hover .label { color: var(--blue); }

/* Visible to screen readers only. */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.6); padding: 76px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px;
  padding-bottom: 60px;
}
.footer h5 {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; font-weight: 700; margin: 0 0 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 13px; font-size: 15px; }
.footer a { color: rgba(255,255,255,.6); font-size: 15px; transition: color .18s ease; }
.footer a:hover { color: #fff; }
/* Full-bleed strip under the columns — sits outside .wrap on purpose. */
.footer-bottom {
  background: rgba(255,255,255,.045);
  padding: 24px 20px;
  text-align: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; gap: 40px; }
  .timeline { margin-left: 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 28px 24px;
    transform: translateY(-150%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    box-shadow: 0 18px 30px rgba(0,0,0,.06);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: 15px 0; font-size: 13px; border-bottom: 1px solid var(--line-soft); }
  .hero { min-height: 62vh; }
  .hero-meta { gap: 20px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .contact-icons { gap: 48px; }
  .contact-icons .icon--gmail { height: 58px; }
  .contact-icons .icon--ig { height: 66px; }
  .contact-icons .icon--forms { height: 77px; }
  .contact-icons .icon-box { height: 77px; }
  .contact-icons a { gap: 16px; }
  .marquee .logo { padding: 0 24px; }
  .marquee .logo img { height: 38px; max-width: 140px; }
  .marquee::before, .marquee::after { width: 50px; }
  .wrap { padding: 0 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .roster-list li { flex-direction: column; align-items: flex-start; gap: 3px; }
  .roster-list .name { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .card-media { margin: -28px -24px 22px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
