@font-face {
  font-family: KantSans;
  src: url("/assets/body.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: KantDisplay;
  src: url("/assets/display.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}
:root {
  --paper: #f6f2e8;
  --ink: #202b24;
  --green: #194d3b;
  --lime: #dae8a8;
  --orange: #e7744e;
  --line: #cccdbd;
  --muted: #697064;
  --serif: Georgia, "Times New Roman", serif;
  --sans: KantSans, Arial, sans-serif;
  --display: KantDisplay, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' filter='url(%23n)' opacity='.45' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
a,
button {
  touch-action: manipulation;
}
button {
  background: none;
  border: 0;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
h2 {
  font-size: clamp(36px, 4.2vw, 60px);
}
h2 em,
h1 em {
  font-family: var(--serif);
  font-weight: 400;
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
p {
  margin: 0 0 12px;
}
small {
  font-size: 12px;
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
.sr-only,
.skip:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip:focus {
  position: fixed;
  top: 5px;
  left: 5px;
  background: white;
  padding: 10px;
  z-index: 100;
}
.topline {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5%;
  background: var(--green);
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 650;
}
.tiny-star {
  color: var(--lime);
  font-size: 18px;
  vertical-align: middle;
  margin-left: 16px;
}
header {
  height: 99px;
  margin: 0 4.5%;
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
}
.wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.07em;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  margin-left: 4px;
}
.wordmark i {
  position: absolute;
  top: 40px;
  left: 0;
  font-size: 8px;
  letter-spacing: 0.22em;
  font-style: normal;
  white-space: nowrap;
}
nav {
  display: flex;
  gap: 28px;
  margin: auto;
  font-size: 12px;
  font-weight: 550;
}
nav a {
  padding: 9px 0;
  position: relative;
}
nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--green);
  left: 0;
  width: 0;
  transition: width 0.2s;
}
nav a:hover:after,
nav a[aria-current]:after {
  width: 100%;
}
.login-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  border-left: 1px solid var(--line);
  padding: 0 0 0 25px;
  min-width: 95px;
}
.login-button span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}
.demo-banner {
  font-size: 10px;
  background: #e9e8db;
  padding: 8px 4.5%;
  color: #505b4b;
  display: flex;
  gap: 15px;
  align-items: center;
}
.demo-banner span {
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1px solid #aeb4a1;
  padding: 2px 6px;
}
.hero {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding: 63px 5% 51px;
  overflow: hidden;
  min-height: 620px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 20px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 9px;
}
.hero h1 {
  font-size: clamp(80px, 8.7vw, 128px);
  position: relative;
  letter-spacing: -0.075em;
  margin: 21px 0 22px;
  line-height: 0.95;
}
.hero h1 em {
  color: var(--green);
}
.asterisk {
  position: absolute;
  font-family: Arial;
  font-size: 70px;
  color: var(--orange);
  top: 5px;
  margin-left: 30px;
  transform: rotate(10deg);
  animation: star-turn 40s linear infinite;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 15px;
}
.hero-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 48px;
  padding: 13px 21px;
  font-size: 12px;
  font-weight: 650;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--green);
  color: var(--paper);
}
.primary:hover {
  background: #286048;
}
.secondary {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
  padding: 4px 0;
}
.hero-footnote {
  font-size: 10px;
  color: var(--muted);
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-footnote span {
  font-size: 25px;
  color: var(--orange);
}
.hero-art {
  position: relative;
  min-height: 510px;
  margin-left: 16px;
  align-self: center;
}
.yearbook {
  position: absolute;
  background: var(--green);
  color: var(--paper);
  width: 61%;
  height: 405px;
  left: 4%;
  top: 45px;
  transform: rotate(-10deg);
  box-shadow:
    8px 13px 22px #203a2425,
    inset 5px 0 0 #ffffff20,
    inset 8px 0 0 #07180d45;
  padding: 25px 22px;
}
.yearbook:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 5px;
  bottom: -3px;
  width: 5px;
  background: repeating-linear-gradient(
    to bottom,
    #dad7bf,
    #dad7bf 1px,
    #fcf8e5 1px,
    #fcf8e5 3px
  );
}
.book-heading {
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  border-bottom: 1px solid #ffffff65;
  padding-bottom: 9px;
}
.book-heading span {
  display: block;
}
.book-year {
  font-family: var(--display);
  font-size: 130px;
  letter-spacing: -0.065em;
  line-height: 0.8;
  font-weight: 800;
  margin: 22px 0 18px;
  position: relative;
  color: var(--lime);
}
.book-star {
  position: absolute;
  font-size: 85px;
  right: -5px;
  bottom: -3px;
  color: var(--orange);
}
.book-line {
  height: 2px;
  background: var(--lime);
  width: 50%;
  margin-bottom: 10px;
}
.yearbook p {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.yearbook p b {
  font-weight: 400;
  font-size: 9px;
}
.book-bottom {
  font-size: 8px;
  letter-spacing: 0.14em;
  position: absolute;
  bottom: 17px;
  left: 24px;
}
.polaroid {
  position: absolute;
  width: 52%;
  right: 0;
  top: 173px;
  background: #fffdf6;
  padding: 12px 12px 0;
  transform: rotate(9deg);
  box-shadow: 3px 9px 25px #26322230;
  transition: transform 0.4s;
}
.hero-art:hover .polaroid {
  transform: rotate(5deg) translateY(-7px);
}
.polaroid-art {
  height: 230px;
  overflow: hidden;
  background: #e4b391;
  position: relative;
  color: #224537;
  padding: 20px;
  background-image:
    linear-gradient(
      45deg,
      #dec19e55 25%,
      transparent 25%,
      transparent 75%,
      #dec19e55 75%
    ),
    linear-gradient(
      45deg,
      #dec19e55 25%,
      transparent 25%,
      transparent 75%,
      #dec19e55 75%
    );
  background-size: 36px 36px;
  background-position:
    0 0,
    18px 18px;
}
.polaroid-art span {
  font-family: var(--display);
  font-size: 47px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}
.polaroid-art i {
  font-size: 130px;
  position: absolute;
  right: -15px;
  bottom: -42px;
  font-style: normal;
  font-family: Arial;
  transform: rotate(-15deg);
  color: #fff4d8;
}
.polaroid p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  margin: 14px 0;
}
.polaroid p span {
  color: var(--orange);
  margin-left: 7px;
}
.sticker {
  position: absolute;
  right: 4%;
  top: 58px;
  height: 106px;
  width: 106px;
  background: var(--orange);
  color: var(--ink);
  clip-path: polygon(
    50% 0%,
    60% 6%,
    72% 4%,
    78% 15%,
    90% 19%,
    91% 32%,
    100% 41%,
    95% 52%,
    99% 64%,
    88% 72%,
    83% 85%,
    70% 87%,
    60% 98%,
    48% 94%,
    36% 100%,
    27% 89%,
    14% 87%,
    12% 74%,
    2% 65%,
    6% 53%,
    0% 42%,
    10% 33%,
    13% 20%,
    26% 16%,
    34% 5%,
    44% 7%
  );
  text-align: center;
  padding: 19px 10px;
  transform: rotate(12deg);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.sticker b {
  display: block;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.04em;
  margin-top: 4px;
}
.orbit-label {
  position: absolute;
  left: 4%;
  top: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 650;
  transform: rotate(-10deg);
}
.scribble {
  position: absolute;
  bottom: 0;
  right: 4%;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  transform: rotate(-5deg);
}
.tape {
  position: absolute;
  right: 14%;
  top: 161px;
  width: 90px;
  height: 24px;
  background: #e3dabc99;
  transform: rotate(-5deg);
  z-index: 2;
}
.ticker {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 13px 3%;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 650;
  gap: 20px;
  overflow: hidden;
  white-space: nowrap;
}
.ticker b {
  font-size: 25px;
  line-height: 1;
  color: var(--green);
}
.reunion-note {
  margin: 38px 5% 0;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #e9eddc;
  border: 1px solid #c4cfb3;
  border-radius: 4px;
  padding: 25px 30px;
}
.reunion-note .eyebrow {
  margin: 0 0 7px;
  font-size: 9px;
}
.reunion-note h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.reunion-note p:last-child {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
}
.round-icon {
  border: 1px solid #a7b697;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  flex-shrink: 0;
}
.circle-link {
  display: grid;
  place-items: center;
  font-size: 27px;
  margin-left: auto;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.section {
  padding: 68px 5% 55px;
  max-width: 1500px;
  margin: auto;
  min-height: 500px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin-bottom: 20px;
}
.section-heading p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
  color: var(--green);
}
.directory-tools {
  display: flex;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 21px 0;
}
.search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 360px;
  max-width: 65%;
  font-size: 23px;
}
.search input {
  width: 100%;
  padding: 6px 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  outline-offset: 4px;
}
.count {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.count span {
  color: var(--muted);
}
.view-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.view-switch button {
  font-size: 20px;
  line-height: 1;
  padding: 7px 10px;
}
.view-switch button[aria-pressed="true"] {
  background: var(--green);
  color: var(--paper);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.person-card {
  min-width: 0;
  animation: none;
}
.person-card:nth-child(2n) {
  animation-delay: 60ms;
}
.portrait {
  aspect-ratio: 4/5;
  background: #dfddce;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  isolation: isolate;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.45s,
    transform 0.65s;
  position: absolute;
  inset: 0;
}
.portrait .old-photo {
  filter: grayscale(1) sepia(0.22);
  mix-blend-mode: multiply;
}
.portrait .current-photo {
  opacity: 0;
}
.portrait.flipped .current-photo {
  opacity: 1;
}
.portrait.flipped .old-photo {
  opacity: 0;
}
.portrait:hover img {
  transform: scale(1.045);
}
.photo-year {
  position: absolute;
  bottom: 9px;
  left: 9px;
  z-index: 2;
  border: 1px solid #fff9;
  background: #f3ecdccf;
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  color: #3e4436;
}
.flip {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  background: #f9f6ebe6;
  font-size: 10px;
  padding: 5px;
  border-radius: 20px;
  z-index: 3;
}
.portrait-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 55px;
  color: #66705d;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    #d6d7c7 10px,
    #d6d7c7 11px
  );
}
.portrait-placeholder small {
  font-family: var(--sans);
  font-size: 9px;
  padding: 0 10px;
  text-align: center;
}
.person-name {
  padding: 12px 0 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  gap: 5px;
  text-align: left;
  line-height: 1.3;
}
.person-name span:last-child {
  color: var(--muted);
  font-size: 16px;
}
.person-meta {
  font-size: 10px;
  margin: 2px 0;
  min-height: 17px;
  color: var(--muted);
}
.person-city {
  font-size: 10px;
  color: var(--green);
}
.faux-blur {
  filter: blur(3px);
  user-select: none;
  opacity: 0.7;
}
.privacy-strip {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 32px 0 0;
  padding: 18px 20px;
  background: #efebdf;
  border: 1px dashed #c7c9b6;
  border-radius: 4px;
}
.privacy-strip > span {
  font-size: 25px;
  color: var(--green);
}
.privacy-strip p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.privacy-strip p b {
  color: var(--ink);
  display: block;
  font-size: 12px;
}
.privacy-strip button {
  margin-left: auto;
  font-size: 10px;
}
.memory-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 5px 5% 0;
}
.memory-link {
  padding: 35px;
  position: relative;
  overflow: hidden;
  min-height: 295px;
  border-radius: 4px;
  transition: transform 0.2s;
}
.memory-link:hover {
  transform: translateY(-4px);
}
.memory-link.green {
  background: var(--green);
  color: var(--paper);
}
.memory-link.orange {
  background: #e8a387;
  color: #293a2b;
}
.memory-link h3 {
  font-family: var(--display);
  font-size: 39px;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-top: 39px;
}
.memory-link p {
  font-size: 11px;
  margin: 18px 50px 0 0;
  max-width: 75%;
}
.memory-icon {
  position: absolute;
  right: 29px;
  top: 51px;
  font-size: 115px;
  transform: rotate(12deg);
  color: var(--lime);
  line-height: 1;
  opacity: 0.85;
}
.orange .memory-icon {
  font-family: var(--serif);
  font-size: 83px;
  font-style: italic;
  top: 62px;
  right: -9px;
  opacity: 0.2;
  color: var(--green);
}
.round-arrow {
  position: absolute;
  right: 27px;
  bottom: 25px;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.quote {
  padding: 70px 20px 72px;
  text-align: center;
}
.quote > span {
  font-family: var(--serif);
  font-size: 75px;
  color: var(--orange);
  line-height: 0.6;
}
.quote p {
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 12px 0 22px;
}
.quote em {
  font-family: var(--serif);
  color: var(--green);
}
.quote small {
  font-size: 8px;
  letter-spacing: 0.14em;
}
footer {
  margin: 0 5%;
  padding: 40px 0;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 11px;
}
footer .wordmark {
  font-size: 29px;
}
footer p {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--muted);
}
.footer-school img {
  object-fit: contain;
  object-position: left;
  mix-blend-mode: multiply;
  height: 42px;
}
.footer-school a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}
.footer-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}
.footer-right > span {
  font-size: 8px;
  letter-spacing: 0.08em;
}
.footer-right button {
  font-size: 11px;
}
.footer-right small {
  margin-top: auto;
}
.list-view {
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}
.list-view .person-card {
  display: grid;
  grid-template-columns: 65px 1fr;
  column-gap: 20px;
  align-content: center;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.list-view .portrait {
  grid-row: 1/4;
}
.list-view .person-name {
  padding: 7px 0 0;
}
.list-view .photo-year,
.list-view .flip {
  display: none;
}
.list-view .has-current .flip {
  display: block;
  font-size: 0;
  inset: 0;
  background: transparent;
}
.locked-panel,
.empty-archive {
  min-height: 330px;
  text-align: center;
  padding: 55px 20px;
  background: #eeebdf;
  border: 1px dashed #b8bdab;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
}
.lock-art,
.empty-archive > span {
  font-size: 60px;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
}
.locked-panel .eyebrow {
  margin-bottom: 10px;
}
.locked-panel h3,
.empty-archive h3 {
  font-size: 27px;
  margin-bottom: 14px;
}
.locked-panel p,
.empty-archive p {
  font-size: 13px;
  color: var(--muted);
}
.locked-panel small {
  margin-top: 18px;
}
.locked-panel .button,
.empty-archive .button {
  margin-top: 12px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.media-card {
  background: #fffdf7;
  border: 1px solid var(--line);
  padding: 12px;
  box-shadow: 3px 4px 0 #dad7c840;
}
.media-open {
  padding: 0;
  width: 100%;
  text-align: left;
}
.media-open > img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.media-caption {
  padding: 18px 6px 8px;
}
.media-caption h3 {
  font-size: 18px;
  margin-bottom: 9px;
}
.media-caption p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.media-caption small {
  font-size: 10px;
  display: block;
  margin-top: 10px;
}
.document-cover {
  background: var(--green);
  color: var(--lime);
  padding: 25px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.document-cover span {
  font-size: 9px;
  letter-spacing: 0.15em;
}
.document-cover b {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.document-cover i {
  margin-top: auto;
  font-size: 12px;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.post {
  padding: 28px;
  background: #eeebde;
  border: 1px solid #d4d2bf;
  box-shadow: 3px 3px 0 #d7d4c34d;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.post.pinned {
  background: #e0e9bf;
  border-color: #b9c79b;
}
.post-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.post h3 {
  margin-bottom: 15px;
}
.post-body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.8;
}
.post-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #75816440;
  padding-top: 15px;
  margin-top: auto;
  font-size: 10px;
}
.avatar {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  background: #c8d1b3;
  display: grid;
  place-items: center;
  font-size: 9px;
  flex-shrink: 0;
}
.small-action {
  font-size: 11px;
  padding: 7px;
  border: 1px solid #96a08c;
  border-radius: 3px;
  margin-left: auto;
}
.post-bottom .small-action + .small-action {
  margin-left: 0;
}
.empty {
  padding: 30px 0;
  grid-column: 1/-1;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  max-width: 730px;
  width: calc(100% - 32px);
  padding: 46px;
  max-height: 90dvh;
  box-shadow: 0 30px 100px #071e2155;
}
dialog::backdrop {
  background: #10291ed9;
  backdrop-filter: blur(6px);
}
dialog h2 {
  font-size: 45px;
  margin: 0 0 23px;
}
dialog h3 {
  margin-bottom: 15px;
}
dialog > p {
  font-size: 13px;
  color: var(--muted);
}
dialog > small {
  display: block;
  line-height: 1.7;
  margin-top: 22px;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 30px;
  line-height: 1;
  padding: 7px;
}
.modal-eyebrow {
  font-size: 9px !important;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--green) !important;
}
form {
  margin-top: 23px;
}
label {
  font-size: 11px;
  font-weight: 650;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
}
input,
textarea,
select {
  padding: 11px 13px;
  background: #fffcf4;
  border: 1px solid #bcc3af;
  border-radius: 3px;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
textarea {
  resize: vertical;
  min-height: 85px;
}
label small {
  font-size: 10px;
  font-weight: 400;
}
fieldset {
  border: 1px solid var(--line);
  padding: 17px;
  margin: 22px 0;
}
legend {
  font-size: 12px;
  font-weight: 650;
  padding: 0 7px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin: 7px 0;
  font-size: 12px;
}
.checkbox input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}
.hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.form-error {
  font-size: 12px;
  color: #a62c20;
  white-space: pre-wrap;
}
.form-error:not(:empty) {
  padding: 10px 12px;
  background: #f4dfd4;
  border: 1px solid #d5b19c;
  margin-bottom: 15px;
}
.profile-actions,
.admin-shortcut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.admin-shortcut span {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.dropzone {
  border: 1px dashed #8b9b77;
  background: #eaeedb;
  text-align: center;
  padding: 25px;
  align-items: center;
}
.dropzone > span {
  font-size: 38px;
}
.dropzone input {
  font-size: 11px;
  margin: 10px 0;
  background: transparent;
  max-width: 360px;
  padding: 8px;
}
.profile-preview {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
}
.profile-preview .portrait {
  align-self: start;
}
.profile-preview h2 {
  font-size: 38px;
}
.profile-preview p {
  font-size: 13px;
}
.current-name {
  font-weight: 600;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  font-size: 12px;
}
.contact-list p {
  margin: 0;
}
.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.bio {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.8;
}
.media-title {
  font-size: 34px;
}
.tagged-photo {
  position: relative;
  margin: 20px 0;
}
.tagged-photo > img {
  width: 100%;
  max-height: 55vh;
  object-fit: contain;
}
.tagged-photo[data-tagging] {
  cursor: crosshair;
}
.photo-tag {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  background: var(--green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  box-shadow: 0 1px 5px #0008;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.tag-pill {
  background: #e5e8d7;
  border: 1px solid #b9c3a7;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 30px;
}
.danger {
  color: #9e3a28;
  margin-left: 20px;
}
.form-actions {
  display: flex;
  gap: 15px;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 5px 25px #152a2844;
  border: 1px solid #789677;
  padding: 14px 25px;
  max-width: 90%;
  z-index: 100;
  border-radius: 3px;
  font-size: 13px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.loading {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
  gap: 20px;
}
.loading h1 {
  font-size: 65px;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes star-turn {
  to {
    transform: rotate(370deg);
  }
}
@media (min-width: 1600px) {
  header,
  .topline,
  .reunion-note,
  .memory-links,
  footer {
    padding-left: max(0px, calc((100vw - 1400px) / 2));
    padding-right: max(0px, calc((100vw - 1400px) / 2));
  }
  .hero {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1100px) {
  nav {
    gap: 16px;
    font-size: 11px;
  }
  header {
    gap: 25px;
  }
  .hero {
    padding-top: 45px;
  }
  .hero-art {
    min-height: 470px;
  }
  .yearbook {
    height: 360px;
    padding: 22px 18px;
  }
  .book-year {
    font-size: 110px;
  }
  .polaroid {
    top: 173px;
    width: 56%;
  }
  .polaroid-art {
    height: 205px;
    padding: 17px;
  }
  .polaroid-art span {
    font-size: 40px;
  }
  .sticker {
    right: 0;
    top: 50px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .portrait {
    aspect-ratio: 5/5.5;
  }
  .list-view {
    grid-template-columns: 1fr 1fr;
  }
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .topline {
    font-size: 7px;
    letter-spacing: 0.07em;
    height: 28px;
  }
  .topline > span:last-child {
    font-size: 7px;
  }
  .tiny-star {
    margin-left: 5px;
    font-size: 14px;
  }
  header {
    height: auto;
    min-height: 115px;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    padding: 20px 0 0;
    margin: 0 5%;
  }
  .wordmark {
    font-size: 32px;
  }
  .wordmark i {
    top: 34px;
    font-size: 6px;
  }
  .login-button {
    font-size: 12px;
    padding-left: 16px;
    min-width: 80px;
    line-height: 1.5;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0 0;
    font-size: 10px;
    white-space: nowrap;
    overflow: auto;
  }
  nav a {
    padding: 10px 0;
  }
  .demo-banner {
    font-size: 8px;
    gap: 8px;
    line-height: 1.4;
    padding: 7px 5%;
  }
  .demo-banner span {
    font-size: 6px;
    white-space: nowrap;
    padding: 3px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 34px 6% 35px;
    min-height: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .hero h1 {
    font-size: 91px;
    margin-top: 20px;
  }
  .asterisk {
    font-size: 52px;
    margin-left: 22px;
    top: 3px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-sub {
    font-size: 12px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 21px;
  }
  .button {
    font-size: 11px;
    padding: 12px 17px;
    min-height: 46px;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-footnote {
    font-size: 8px;
    margin-top: 20px;
  }
  .hero-art {
    min-height: 385px;
    width: min(100%, 390px);
    margin: 20px auto 0;
  }
  .yearbook {
    top: 30px;
    left: 7%;
    width: 57%;
    height: 310px;
    padding: 19px 18px;
  }
  .book-heading {
    font-size: 6px;
  }
  .book-year {
    font-size: 93px;
    margin: 18px 0 15px;
  }
  .book-star {
    font-size: 60px;
    right: 0;
  }
  .yearbook p {
    font-size: 9px;
  }
  .book-bottom {
    font-size: 6px;
    left: 20px;
  }
  .polaroid {
    top: 130px;
    right: 2%;
    width: 51%;
    padding: 9px 9px 0;
  }
  .polaroid-art {
    height: 180px;
    padding: 14px;
  }
  .polaroid-art span {
    font-size: 36px;
  }
  .polaroid-art i {
    font-size: 115px;
  }
  .polaroid p {
    font-size: 12px;
    margin: 12px 0;
  }
  .sticker {
    height: 90px;
    width: 90px;
    right: 3%;
    top: 27px;
    padding: 15px 8px;
    font-size: 8px;
  }
  .sticker b {
    font-size: 15px;
  }
  .orbit-label {
    font-size: 8px;
    top: -5px;
    left: 9%;
  }
  .scribble {
    font-size: 19px;
    bottom: 0;
    right: 5%;
  }
  .tape {
    top: 120px;
    width: 65px;
    height: 22px;
  }
  .ticker {
    justify-content: flex-start;
    padding: 12px 5%;
    font-size: 8px;
    gap: 22px;
  }
  .ticker b {
    font-size: 20px;
  }
  .ticker span {
    flex-shrink: 0;
  }
  .reunion-note {
    margin: 24px 5% 0;
    padding: 19px 17px;
    gap: 14px;
  }
  .round-icon {
    width: 33px;
    height: 33px;
    font-size: 20px;
  }
  .reunion-note h3 {
    font-size: 17px;
  }
  .reunion-note .eyebrow {
    font-size: 7px;
    margin-bottom: 7px;
  }
  .reunion-note p:last-child {
    font-size: 10px;
  }
  .circle-link {
    width: 25px;
    font-size: 23px;
  }
  .section {
    padding: 42px 5% 30px;
  }
  .section-heading {
    align-items: start;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 37px;
    margin-bottom: 15px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
  }
  .section-heading p:last-child {
    font-size: 11px;
  }
  .section-heading > .text-link {
    font-size: 10px;
  }
  .directory-tools {
    gap: 10px;
    padding: 15px 0;
  }
  .search {
    max-width: 65%;
    flex: 1;
    gap: 7px;
  }
  .search input {
    font-size: 10px;
  }
  .count {
    font-size: 8px;
  }
  .count span {
    display: none;
  }
  .view-switch button {
    font-size: 17px;
    padding: 6px;
  }
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 17px;
  }
  .portrait {
    aspect-ratio: 4/5;
  }
  .person-name {
    font-size: 12px;
  }
  .person-meta {
    font-size: 9px;
  }
  .privacy-strip {
    padding: 15px 13px;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .privacy-strip p {
    font-size: 9px;
    flex: 1;
  }
  .privacy-strip p b {
    font-size: 11px;
  }
  .privacy-strip button {
    margin-left: 32px;
    font-size: 10px;
  }
  .memory-links {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 12px;
  }
  .memory-link {
    min-height: 255px;
    padding: 27px;
  }
  .memory-link h3 {
    font-size: 34px;
    margin-top: 32px;
  }
  .memory-link .eyebrow {
    font-size: 8px;
  }
  .memory-link p {
    font-size: 10px;
  }
  .quote {
    padding: 55px 10px;
  }
  .quote p {
    font-size: 26px;
  }
  .quote small {
    font-size: 7px;
  }
  footer {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
  }
  footer > div:first-child {
    width: calc(45% - 15px);
  }
  .footer-school {
    width: calc(55% - 15px);
  }
  footer p {
    font-size: 10px;
  }
  .footer-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .footer-right > span {
    width: 100%;
  }
  .footer-right small {
    margin: 0 0 0 auto;
    font-size: 10px;
  }
  .list-view {
    grid-template-columns: 1fr;
  }
  .list-view .portrait {
    aspect-ratio: 4/5;
  }
  .media-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }
  .media-card {
    padding: 10px;
  }
  .media-caption h3 {
    font-size: 20px;
  }
  .documents {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .document-cover {
    padding: 18px;
    aspect-ratio: 3/4;
  }
  .document-cover b {
    font-size: 27px;
  }
  .documents .media-caption {
    padding: 13px 0 5px;
  }
  .documents .media-caption h3 {
    font-size: 14px;
  }
  .documents .media-caption p {
    font-size: 8px;
  }
  .locked-panel,
  .empty-archive {
    padding: 40px 20px;
  }
  .locked-panel h3,
  .empty-archive h3 {
    font-size: 23px;
  }
  .locked-panel p,
  .empty-archive p {
    font-size: 12px;
  }
  .post {
    padding: 23px;
    min-height: 250px;
  }
  dialog {
    padding: 36px 23px 27px;
    max-height: 93dvh;
    width: calc(100% - 22px);
  }
  dialog h2 {
    font-size: 36px;
  }
  dialog p {
    font-size: 12px;
  }
  .form-grid {
    gap: 0 12px;
  }
  .form-grid label {
    font-size: 10px;
  }
  .form-grid input {
    padding: 10px;
    font-size: 13px;
  }
  .profile-preview {
    grid-template-columns: 1fr;
  }
  .profile-preview .portrait {
    width: 150px;
    aspect-ratio: 4/5;
  }
  .profile-preview h2 {
    font-size: 35px;
  }
  .check-grid {
    gap: 5px;
  }
  .checkbox {
    font-size: 11px;
  }
  .profile-actions {
    gap: 10px;
  }
  .profile-actions button,
  .admin-shortcut button {
    font-size: 10px;
  }
  .tagged-photo > img {
    max-height: 45vh;
  }
  .danger {
    display: block;
    margin: 20px 0 0;
  }
  .media-title {
    font-size: 28px;
  }
  .desktop {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

nav a,
.button {
  white-space: nowrap;
}
.search {
  flex-direction: row;
  margin-bottom: 0;
  font-weight: 400;
}
.asterisk,
.tiny-star,
.hero-footnote span,
.ticker b {
  font-family: Arial, sans-serif;
}

@media (hover: hover) and (pointer: fine) {
  .portrait.has-current:hover .current-photo {
    opacity: 1;
  }
  .portrait.has-current:hover .old-photo {
    opacity: 0;
  }
}
.tagged-photo {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.tagged-photo > img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: initial;
}

@media (max-width: 760px) {
  .hero .asterisk {
    font-size: 40px;
    right: 2px;
    top: -26px;
    margin-left: 0;
  }
}
