:root {
  --paper: #f5f5f3;
  --surface: #ffffff;
  --ink: #111210;
  --ink-soft: #484a46;
  --muted: #777a74;
  --line: #dcdeda;
  --accent: #167c5a;
  --accent-dark: #0d6043;
  --night: #101210;
  --night-soft: #1a1d1a;
  --radius: 18px;
  --nav-height: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: "SF Pro Text", "SF Pro Display", Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 243, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transition: background 240ms ease, border-color 240ms ease;
}

.navbar.scrolled {
  border-color: rgba(17, 18, 16, 0.09);
  background: rgba(245, 245, 243, 0.94);
}

.navbar-inner {
  width: min(100% - 64px, 1340px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-image {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 16, 0.12);
  border-radius: 9px;
  background: #fff;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.17em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 520;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links .nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.nav-links .nav-cta:hover {
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: calc(var(--nav-height) + 62px) 0 96px;
  min-height: 820px;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.hero-copy {
  grid-column: 1 / span 6;
  padding-right: 30px;
}

.hero h1 {
  margin-top: 24px;
  max-width: 720px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: clamp(56px, 6.1vw, 92px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero-summary {
  max-width: 530px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 620;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-primary:hover {
  background: #292b28;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
  border-color: #b9bcb6;
  background: #fff;
}

.hero-facts {
  max-width: 560px;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-facts div {
  display: grid;
  gap: 8px;
}

.hero-facts dt {
  color: var(--ink);
  font-size: 17px;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.hero-facts dd {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-visual {
  grid-column: 7 / -1;
  margin-left: 20px;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 16, 0.12);
  border-radius: 24px;
  background: #fff;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  transition: transform 900ms var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.015);
}

.hero-visual figcaption {
  padding: 13px 2px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 620;
  letter-spacing: 0.13em;
}

.section {
  padding: 150px 0;
}

.statement {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.statement .container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.statement-heading {
  grid-column: 5 / span 5;
  grid-row: 1;
}

.statement-heading h2,
.section-head h2,
.honors-head h2,
.alumni-heading h2,
.team-heading h2,
.join-copy h2 {
  margin-top: 22px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.statement-body {
  grid-column: 10 / -1;
  grid-row: 1;
  align-self: center;
  display: grid;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.statement-art {
  grid-column: 1 / span 4;
  grid-row: 1;
  width: min(100%, 390px);
  justify-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.statement-art img,
.discipline-artwork img,
.honor-artwork img,
.alumni-art img,
.team-artwork img,
.join-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disciplines {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 90px;
}

.section-head > p {
  max-width: 360px;
  justify-self: end;
  color: var(--muted);
  font-size: 16px;
}

.discipline-list {
  grid-column: 1 / span 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

.discipline-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.discipline-item {
  min-height: 150px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 150px 1fr;
  gap: 18px;
  align-items: baseline;
  transition: border-color 220ms ease, transform 260ms var(--ease);
}

.discipline-item:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}

.discipline-item > span {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.discipline-item h3 {
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.discipline-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.discipline-artwork {
  grid-column: 9 / -1;
  width: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.discipline-artwork-note {
  width: min(100%, 180px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.discipline-artwork-note {
  aspect-ratio: 251 / 352;
}

.honors {
  color: #f3f4f1;
  background: var(--night);
}

.honors .eyebrow {
  color: #7ebca2;
}

.honors-head {
  max-width: 880px;
  margin-bottom: 90px;
}

.honor-feature {
  padding: 58px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.honor-feature-visual {
  grid-column: 1 / span 5;
  display: grid;
  gap: 28px;
  align-self: stretch;
  align-content: space-between;
}

.honor-feature-year {
  color: #7ebca2;
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.honor-feature-copy {
  grid-column: 7 / -1;
  align-self: center;
}

.honor-label {
  color: #7d827c;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.honor-feature h3 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.honor-feature-copy > p:not(.honor-label) {
  max-width: 660px;
  margin-top: 24px;
  color: #aeb2ac;
  font-size: 16px;
}

.honor-feature a {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.honor-artwork {
  width: min(100%, 430px);
  margin: 0;
  justify-self: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  aspect-ratio: 1080 / 554;
  background: #fff;
}

.honor-artwork img {
  filter: contrast(1.035);
}

.record-list {
  margin-top: 28px;
}

.record-row {
  min-height: 86px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 120px 150px 1fr;
  gap: 24px;
  align-items: baseline;
}

.record-row time,
.record-team {
  color: #7d827c;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.record-team {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.record-row p {
  font-size: 16px;
}

.record-row a {
  transition: color 180ms ease;
}

.record-row a:hover {
  color: #9cd2b8;
}

.record-note {
  max-width: 760px;
  margin: 42px 0 0 auto;
  color: #858a84;
  font-size: 13px;
}

.honors-story {
  margin-top: 72px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  transition: border-color 220ms ease, background 220ms ease;
}

.honors-story:hover {
  border-color: rgba(156, 210, 184, 0.65);
}

.honors-story-media {
  grid-column: 1 / span 7;
  min-height: 350px;
  overflow: hidden;
  border-radius: 14px;
  background: #202320;
}

.honors-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.honors-story:hover .honors-story-media img {
  transform: scale(1.012);
  filter: saturate(0.94) contrast(1.02);
}

.honors-story-copy {
  grid-column: 9 / -1;
  padding: 30px 12px 24px 0;
  display: flex;
  flex-direction: column;
}

.honors-story-copy > p {
  color: #7ebca2;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.honors-story-copy h3 {
  margin-top: 24px;
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.honors-story-copy > span {
  margin-top: auto;
  padding-top: 48px;
  color: #c1c5bf;
  font-size: 13px;
  line-height: 1.6;
}

.honors-story-copy b {
  margin-left: 6px;
  color: #9cd2b8;
  font-size: 17px;
  font-weight: 400;
}

.alumni {
  background: var(--paper);
}

.alumni-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.alumni-heading {
  grid-column: 1 / span 6;
  position: sticky;
  top: calc(var(--nav-height) + 54px);
}

.alumni-content {
  grid-column: 8 / -1;
}

.alumni-summary {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.alumni-art {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.alumni-art img {
  object-position: center 42%;
}

.alumni-list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  list-style: none;
}

.alumni-list li {
  min-height: 82px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 560;
}

.alumni-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 450;
}

.alumni-note {
  margin-top: 52px;
  padding: 26px 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-size: 21px;
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.team {
  background: var(--surface);
}

.team-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.team-heading {
  grid-column: 1 / span 8;
}

.team-heading > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
}

.marquee-toggle {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-artwork {
  grid-column: 9 / -1;
  grid-row: 1;
  width: min(100%, 340px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  background: #fff;
}

.team-artwork img {
  object-position: center 32%;
}

.marquee-toggle:hover {
  color: var(--ink);
  border-color: #b9bcb6;
  background: #fafaf8;
}

.marquee-toggle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.marquee-toggle[aria-pressed="true"] .marquee-toggle-dot {
  background: var(--muted);
}

.member-marquee {
  grid-column: 1 / -1;
  grid-row: 3;
  min-width: 0;
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.member-marquee-track {
  width: max-content;
  padding: 8px 0 14px;
  display: flex;
  will-change: transform;
  animation: member-scroll 40s linear infinite;
}

.members-directory {
  flex: none;
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.member-marquee:hover .member-marquee-track,
.member-marquee:focus-within .member-marquee-track,
.member-marquee.is-paused .member-marquee-track {
  animation-play-state: paused;
}

@keyframes member-scroll {
  to {
    transform: translateX(-50%);
  }
}

.member-profile {
  flex: 0 0 248px;
  width: 248px;
  min-width: 248px;
  min-height: 278px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  background: #fafaf8;
  box-shadow: 0 8px 24px rgba(17, 18, 16, 0.035);
  transition: transform 300ms var(--ease), border-color 240ms ease, box-shadow 240ms ease;
}

.member-profile--captain {
  border-color: rgba(22, 124, 90, 0.28);
  background: #f5f8f5;
}

.member-profile:hover {
  transform: translateY(-3px);
  border-color: #aeb1aa;
  box-shadow: 0 12px 30px rgba(17, 18, 16, 0.07);
}

.member-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.member-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 16, 0.1);
  border-radius: 50%;
  background: #e8e9e5;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.member-profile:hover .member-avatar img {
  transform: scale(1.035);
}

.member-meta {
  margin-top: auto;
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.member-profile strong {
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: 23px;
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.member-profile--long-name strong {
  font-size: 19px;
  letter-spacing: -0.045em;
}

.member-profile strong small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0;
}

.member-link {
  color: var(--accent-dark);
  font-size: 11px;
  white-space: nowrap;
}

.member-bio {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.join {
  padding-top: 0;
  background: var(--surface);
}

.join-panel {
  padding: 82px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  color: #f3f4f1;
  background: var(--night);
}

.join-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.join-summary {
  max-width: 560px;
  margin-top: 26px;
  color: #aeb2ac;
  font-size: 16px;
}

.join-artwork-row {
  width: min(100%, 430px);
  margin-top: 38px;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.join-artwork {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.join-details {
  display: grid;
  align-content: end;
  gap: 28px;
}

.join-details > div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.join-details span {
  color: #7ebca2;
  font-size: 12px;
  font-weight: 650;
}

.join-details p {
  margin-top: 8px;
  color: #b7bbb5;
  font-size: 14px;
}

.join-email {
  width: 100%;
  margin-top: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  color: #d4d7d2;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.join-email:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.join-email > span {
  color: #7ebca2;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.join-email > span:last-child {
  color: #d4d7d2;
  font-size: 15px;
  letter-spacing: 0;
}

.join-email strong {
  overflow-wrap: anywhere;
  color: #f3f4f1;
  font-size: 13px;
  font-weight: 520;
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-nav {
  display: flex;
  gap: 26px;
}

.footer-nav a,
.footer-github {
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-github:hover {
  color: var(--ink);
}

.footer-github {
  justify-self: end;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #9a9d97;
  font-size: 11px;
}

.reveal.is-prepared {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    align-items: start;
  }

  .hero-copy {
    grid-column: 1 / span 7;
    padding-right: 0;
  }

  .hero-visual {
    grid-column: 8 / -1;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 70px);
  }

  .statement-heading {
    grid-column: 4 / span 5;
  }

  .statement-art {
    grid-column: 1 / span 3;
  }

  .statement-body {
    grid-column: 9 / -1;
  }

  .alumni-heading {
    grid-column: 1 / span 6;
  }

  .alumni-content {
    grid-column: 7 / -1;
  }

  .discipline-list {
    column-gap: 40px;
  }

  .discipline-item {
    grid-template-columns: 34px 1fr;
  }

  .discipline-item p {
    grid-column: 2;
  }

  .team-heading {
    grid-column: 1 / span 7;
  }

  .marquee-toggle {
    grid-column: 1 / -1;
  }

  .join-panel {
    padding: 64px;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 62px;
  }

  .container,
  .navbar-inner {
    width: min(100% - 40px, 1280px);
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    display: grid;
    gap: 0;
    background: rgba(245, 245, 243, 0.98);
    border-bottom: 1px solid transparent;
    transition: max-height 300ms var(--ease), padding 300ms var(--ease), border-color 300ms ease;
  }

  .nav-links.open {
    max-height: 360px;
    padding-block: 12px;
    border-color: var(--line);
  }

  .nav-links a,
  .nav-links .nav-cta {
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: 15px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: calc(var(--nav-height) + 48px) 0 76px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy,
  .hero-visual {
    grid-column: 1;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 14.2vw, 66px);
    letter-spacing: -0.065em;
  }

  .hero-summary {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    min-height: 46px;
    padding-inline: 17px;
  }

  .hero-facts {
    margin-top: 48px;
    gap: 12px;
  }

  .hero-facts dt {
    font-size: 15px;
  }

  .hero-facts dd {
    font-size: 10px;
  }

  .hero-visual {
    margin-left: 0;
  }

  .hero-visual figcaption {
    font-size: 8px;
  }

  .section {
    padding: 104px 0;
  }

  .statement .container,
  .alumni-layout,
  .team-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .statement .container {
    gap: 32px;
  }

  .statement-heading,
  .statement-body,
  .statement-art,
  .team-heading,
  .team-artwork,
  .marquee-toggle,
  .member-marquee {
    grid-column: 1;
  }

  .statement-heading,
  .statement-body,
  .statement-art {
    grid-row: auto;
  }

  .statement-art {
    width: min(100%, 320px);
    margin-top: 0;
    justify-self: start;
  }

  .statement-heading h2,
  .section-head h2,
  .honors-head h2,
  .alumni-heading h2,
  .team-heading h2,
  .join-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .statement-body {
    font-size: 16px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 60px;
  }

  .section-head > p {
    justify-self: start;
  }

  .discipline-list {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .discipline-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .discipline-item {
    min-height: 132px;
    grid-template-columns: 34px 108px 1fr;
  }

  .discipline-item p {
    grid-column: auto;
  }

  .discipline-artwork {
    grid-column: 1;
    width: 100%;
    margin-top: 44px;
  }

  .discipline-artwork-note {
    width: min(100%, 160px);
  }

  .honors-head {
    margin-bottom: 60px;
  }

  .honor-feature {
    padding: 42px 0 50px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .honor-feature-visual,
  .honor-feature-copy,
  .honor-artwork {
    grid-column: 1;
  }

  .honor-feature-visual {
    gap: 22px;
  }

  .honor-feature-year {
    font-size: 64px;
  }

  .honor-feature h3 {
    font-size: 31px;
  }

  .honor-artwork {
    width: min(100%, 380px);
    justify-self: start;
  }

  .record-row {
    grid-template-columns: 64px 74px 1fr;
    gap: 14px;
  }

  .record-row p {
    font-size: 14px;
  }

  .team-layout {
    align-items: start;
  }

  .team-artwork,
  .marquee-toggle,
  .member-marquee {
    grid-row: auto;
  }

  .team-artwork {
    width: min(100%, 360px);
    justify-self: start;
  }

  .alumni-heading,
  .alumni-content {
    grid-column: 1;
  }

  .alumni-heading {
    position: static;
  }

  .marquee-toggle {
    justify-self: start;
  }

  .member-marquee {
    margin-top: 12px;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  }

  .member-profile {
    flex-basis: 224px;
    width: 224px;
    min-width: 224px;
    min-height: 270px;
  }

  .join {
    padding-top: 0;
  }

  .join-panel {
    padding: 48px 28px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .join-artwork-row {
    width: 100%;
    margin-top: 34px;
    gap: 9px;
  }

  .join-artwork {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin: 0;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-nav {
    display: none;
  }

  .footer-github {
    grid-column: 2;
  }
}

@media (max-width: 460px) {
  .container,
  .navbar-inner {
    width: min(100% - 32px, 1280px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div:last-child {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .discipline-item {
    grid-template-columns: 32px 1fr;
  }

  .discipline-item p {
    grid-column: 2;
  }

  .record-row {
    grid-template-columns: 54px 1fr;
  }

  .record-row p {
    grid-column: 1 / -1;
  }

  .record-note {
    margin-top: 34px;
  }

  .honors-story {
    margin-top: 48px;
    padding: 16px 0 22px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .honors-story-media {
    grid-column: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .honors-story-copy {
    grid-column: 1;
    padding: 26px 4px 4px;
  }

  .honors-story-copy h3 {
    margin-top: 16px;
    font-size: 34px;
  }

  .honors-story-copy > span {
    margin-top: 30px;
    padding-top: 0;
  }

  .alumni-list {
    grid-template-columns: 1fr;
  }

  .alumni-note {
    padding-left: 20px;
    font-size: 19px;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal.is-prepared {
    opacity: 1;
    transform: none;
  }

  .member-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .member-marquee-track {
    animation: none;
    will-change: auto;
  }

  .marquee-toggle {
    display: none;
  }
}
