:root { --ink: #16140f; --bg: #f5f5ee; --fade: #8a8575; --orange: #ff6600; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: #000; color: #fff; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 28px;
  height: 64px; padding: 0 20px 0 16px;
  background: var(--bg);
}
.mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  font-family: Georgia, "Source Serif 4", serif;
  font-size: 22px; font-weight: 500; line-height: 1;
}
.nav nav {
  display: flex; gap: 28px;
  font-size: 14px; letter-spacing: 0.3px; font-weight: 400;
}
.nav nav a:hover { opacity: 0.6; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.login { font-size: 14px; letter-spacing: 0.3px; }
.login:hover { opacity: 0.6; }
.apply {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 20px 2px; border-radius: 999px;
  background: #000; color: #fff;
  font-family: "Source Serif 4", serif;
  font-size: 14px; font-style: italic; font-weight: 400;
  letter-spacing: 0.015rem;
}
.apply:hover { opacity: 0.8; }
.apply--lg { height: 48px; padding: 0 28px; font-size: 16px; }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 16px 80px; text-align: center;
}
.hero h1 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.5rem, 5vw + 1rem, 5.25rem);
  font-weight: 400; line-height: 1.1;
}
.hero h1 .italic { font-style: italic; }
.hero h1 sup {
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  font-style: normal; vertical-align: super;
}
.hero__note { max-width: clamp(280px, 60vw, 420px); margin-top: 48px; text-align: left; }
.hero__note p {
  margin: 0 0 12px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1rem, 2vw + 0.25rem, 1.125rem);
  font-style: italic; line-height: 1.6;
}
.hero__note .not-italic { font-style: normal; }
.hero__note cite {
  display: block; text-align: right; padding-right: 8px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(0.875rem, 1.5vw + 0.2rem, 1rem);
  font-style: normal;
}
.hero__chevron {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; opacity: 0.8;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__chevron svg { width: 100%; height: 100%; }

.trio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 32%) 1fr minmax(220px, 32%);
  gap: 24px;
  align-items: center;
  min-height: 80vh;
  padding: 60px 5% 120px;
}
.trio__side { text-align: center; }
.trio__label {
  margin: 0 0 8px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-style: italic; font-weight: 400;
}
.trio__side img {
  display: block; width: 100%; aspect-ratio: 1;
  object-fit: cover; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.trio__cap {
  margin: 12px 8% 0;
  font-weight: 300; font-size: 14px; line-height: 1.5; opacity: 0.9;
}
.trio__names { display: flex; flex-direction: column; align-items: center; }
.trio__names button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  padding: 14px 8px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--fade); opacity: 0.15;
  transition: opacity 0.45s, color 0.45s;
}
.trio__names button.is-on { color: var(--ink); opacity: 1; }
.trio__stat {
  margin-top: 48px; text-align: center;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 400;
  color: var(--fade); opacity: 0.15; letter-spacing: -0.02em;
}
.trio__stat small {
  display: block;
  font-size: 0.95rem; font-style: italic; font-weight: 350; letter-spacing: 0;
}
.trio__all {
  display: inline-block; margin-top: 8px;
  font-family: "Source Serif 4", serif; font-size: 17px; font-style: italic;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(22,20,15,0.15);
  opacity: 0.35;
}
.trio__all:hover { opacity: 1; text-decoration-color: var(--ink); }

.about {
  max-width: 40rem; margin: 0 auto; padding: 24px 28px 80px;
  font-family: "Source Serif 4", serif; font-size: 20px; line-height: 1.45;
}
.about p + p { margin-top: 1.15em; }

.quotes, .room, .partners, .library { max-width: 1080px; margin: 0 auto; padding: 20px 28px 64px; }
.quotes h2, .room h2, .partners h2, .library h2 {
  margin: 0 0 28px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 400; line-height: 1.15;
}
.quotes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
blockquote { margin: 0; }
blockquote p {
  margin: 0 0 10px;
  font-family: "Source Serif 4", serif; font-size: 22px; line-height: 1.35; font-weight: 400;
}
blockquote footer { font-size: 13px; color: #5c574d; }
.room ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.room li { padding: 18px 16px; background: #fff; border: 1px solid #e7e7e0; }
.room strong { display: block; font-family: "Source Serif 4", serif; font-size: 20px; font-weight: 400; }
.room span { font-size: 13px; color: #5c574d; }
.partners__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.partners h3 { margin: 0; font-family: "Source Serif 4", serif; font-size: 22px; font-weight: 400; }
.partners .batch { margin: 2px 0 8px; font-size: 13px; color: #5c574d; }
.partners p { margin: 0; font-size: 14px; line-height: 1.45; color: #5c574d; }
.library__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; }
.kicker { margin: 0 0 10px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #5c574d; }
.library article h3 { margin: 0 0 10px; font-family: "Source Serif 4", serif; font-size: 28px; font-weight: 400; }
.essays { list-style: none; margin: 0; padding: 0; }
.essays li { border-top: 1px solid #e7e7e0; }
.essays a { display: block; padding: 12px 0; font-family: "Source Serif 4", serif; font-size: 16px; }
.essays a:hover { opacity: 0.6; }
.essays a::after { content: " ›"; }
.cta { text-align: center; padding: 88px 24px 96px; background: #fff; }
.cta h2 { margin: 0 0 12px; font-family: "Source Serif 4", serif; font-size: clamp(32px, 5vw, 52px); font-weight: 400; }
.cta p { margin: 0 0 24px; color: #5c574d; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 1024px) {
  .nav nav { display: none; }
  .trio { grid-template-columns: 1fr; padding: 24px 20px 64px; min-height: 0; }
  .trio__side--right { display: none; }
  .quotes__grid, .room ul, .partners__grid, .library__grid { grid-template-columns: 1fr; }
}
