@font-face {
  font-family: Bree Serif;
  src: url("assets/BreeSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("assets/Nunito.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #f9f5ee;
  --chocolate: #4c2e27;
  --blush: #efc2cf;
  --rose: #e5b8c1;
  --muted: #765c54;
  --line: rgba(76, 46, 39, 0.23);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Nunito, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--chocolate);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 2px solid var(--chocolate);
  outline-offset: 7px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
em {
  font-weight: 400;
}
::selection {
  color: var(--chocolate);
  background: var(--blush);
}
.wrap {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(calc(-100% - 1rem));
  z-index: 10;
  background: var(--chocolate);
  color: var(--cream);
  padding: 1rem;
}
.skip-link:focus {
  top: 1rem;
  transform: none;
}
.site-header {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}
.wordmark {
  font-family: "Bree Serif", var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.07rem;
  line-height: 1.2;
  white-space: normal;
}
.wordmark span {
  color: #b87988;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
}
.site-header nav a {
  padding: 12px 0;
}
.site-header nav a:hover {
  color: #995d6c;
}
.nav-contact {
  border-bottom: 1px solid var(--chocolate);
}
.nav-contact .arrow-icon {
  margin-left: 0.6rem;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.91fr);
  gap: 6%;
  position: relative;
  padding-top: 55px;
  padding-bottom: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.7;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7.8vw, 7rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  margin: 28px 0 29px;
}
.hero h1 em {
  letter-spacing: -0.065em;
}
.hero-intro {
  max-width: 390px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.text-link {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--chocolate);
  padding-bottom: 7px;
  font-weight: 650;
  min-height: 44px;
}
.text-link:hover {
  color: #995d6c;
  border-color: #995d6c;
}
.hero-copy > .text-link {
  margin-top: 29px;
}
.hero-image {
  position: relative;
  min-width: 0;
  padding-top: 0;
}
.hero-image:before {
  content: "";
  position: absolute;
  inset: 18px -18px 25px 18px;
  background: var(--blush);
  z-index: -1;
}
.hero-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}
.hero-side-note {
  position: absolute;
  right: -41px;
  top: 50%;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.chapter-line {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.chapter-line span + span:before {
  content: "·";
  margin: 0 44px;
  font-size: 1rem;
}
.about {
  padding-block: 106px 115px;
  display: grid;
  grid-template-columns: 1fr 2.45fr;
  gap: 4%;
}
.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.section-label .eyebrow {
  max-width: 150px;
}
.section-number {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  padding-top: 2px;
  opacity: 0.75;
}
.about h2,
.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.7vw, 3.5rem);
  line-height: 1.13;
  letter-spacing: -0.04em;
}
.about h2 {
  margin-top: -8px;
}
.about-portrait {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 33%;
  margin-top: 27px;
}
.about-story {
  align-self: center;
}
.about-body {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.world {
  background: #f2e4df;
  padding: 79px 0 85px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 43px;
}
.section-heading h2 {
  margin-top: 15px;
}
.section-heading > .text-link {
  flex-shrink: 0;
  margin-bottom: 4px;
}
.stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}
.story {
  display: block;
  min-width: 0;
}
.story-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.story-image img {
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.student-image img {
  object-position: 50% 37%;
}
.story:hover .story-image img {
  transform: scale(1.025);
}
.story-type {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: var(--cream);
  padding: 7px 13px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 19px;
}
.story h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.story > p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}
.collaborate {
  display: grid;
  grid-template-columns: 1fr 2.45fr;
  gap: 4%;
  padding-block: 111px 119px;
}
.collaborate-content h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.4vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-top: -12px;
}
.collaborate-content > p {
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.85;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 23px;
  background: var(--chocolate);
  color: var(--cream);
  font-size: 0.875rem;
  min-height: 56px;
  align-items: center;
  margin-top: 29px;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: var(--blush);
  color: var(--chocolate);
}
.collaborate-content > .contact-email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.35em;
  font-size: 0.9rem;
  margin-top: 12px;
}
.contact-email a {
  display: inline-block;
  min-height: 44px;
  max-width: 100%;
  padding-block: 8px;
  color: var(--chocolate);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  overflow-wrap: anywhere;
}
.contact-email a:hover {
  color: #995d6c;
}
.site-footer {
  background: var(--blush);
}
.footer-main {
  padding-block: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-main .wordmark {
  font-size: 1.7rem;
}
.footer-main > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 19px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero {
    gap: 95px;
  }
  .hero h1 {
    font-size: 7rem;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 1.5rem;
  }
  .hero {
    gap: 7%;
    padding-top: 40px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 8.8vw, 6rem);
  }
  .hero-intro {
    font-size: 1rem;
  }
  .desktop-break {
    display: none;
  }
  .hero-side-note {
    right: -24px;
    font-size: 0.75rem;
  }
  .hero-image figcaption {
    font-size: 0.75rem;
  }
  .chapter-line span + span:before {
    margin-inline: 25px;
  }
  .about,
  .collaborate {
    grid-template-columns: 1fr 2.5fr;
    gap: 5%;
    padding-block: 80px;
  }
  .section-label {
    gap: 12px;
  }
  .about-body {
    gap: 25px;
  }
  .stories {
    gap: 20px;
  }
  .story h3 {
    font-size: 1.35rem;
  }
  .story-type {
    font-size: 0.75rem;
    padding: 6px 9px;
    left: 10px;
    bottom: 10px;
  }
  .footer-main > p {
    font-size: 0.95rem;
  }
  .footer-main {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 85px;
    gap: 12px;
    flex-wrap: wrap;
    padding-block: 16px;
  }
  .wordmark {
    font-size: 1.5rem;
    letter-spacing: -0.05rem;
  }
  .site-header nav {
    gap: 0;
    font-size: 0.8rem;
  }
  .site-header nav > a:not(.nav-contact) {
    display: none;
  }
  .site-header nav a {
    padding: 9px 0;
  }
  .nav-contact .arrow-icon {
    margin-left: 0.3rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 36px 30px;
    gap: 34px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: clamp(2.5rem, calc(1rem + 11vw), 6.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    margin-block: 20px 23px;
  }
  .hero h1 em br {
    display: none;
  }
  .hero h1 em {
    letter-spacing: -0.06em;
  }
  .hero-intro {
    max-width: 340px;
    line-height: 1.7;
  }
  .hero-copy > .text-link {
    margin-top: 22px;
  }
  .hero-image {
    margin-right: 11px;
  }
  .hero-image img {
    aspect-ratio: 4/4.65;
    object-position: center 38%;
  }
  .hero-image:before {
    inset: 12px -11px 24px 11px;
  }
  .hero-image figcaption {
    font-size: 0.75rem;
    margin-top: 18px;
  }
  .hero-side-note {
    display: none;
  }
  .chapter-line {
    justify-content: space-between;
    padding-block: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    gap: 8px;
  }
  .chapter-line span + span:before {
    content: none;
  }
  .about,
  .collaborate {
    grid-template-columns: 1fr;
    padding-block: 59px 63px;
    gap: 28px;
  }
  .section-label {
    gap: 16px;
    align-items: center;
  }
  .section-label .eyebrow {
    max-width: none;
    font-size: 0.75rem;
  }
  .section-number {
    font-size: 0.85rem;
    padding: 0;
  }
  .about h2 {
    font-size: 2.35rem;
    margin: 0;
    line-height: 1.16;
  }
  .about-aside {
    display: contents;
  }
  .about-portrait {
    display: none;
  }
  .about-body {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .world {
    padding-block: 54px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 2.4rem;
    line-height: 1.13;
    margin-top: 13px;
    max-width: 330px;
  }
  .section-heading .eyebrow {
    font-size: 0.75rem;
  }
  .section-heading > .text-link {
    margin-top: 20px;
    font-size: 0.85rem;
  }
  .stories {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-image img {
    aspect-ratio: 4/4.8;
  }
  .student-image img {
    object-position: 50% 38%;
  }
  .story-type {
    font-size: 0.75rem;
    padding: 7px 12px;
    left: 14px;
    bottom: 14px;
  }
  .story h3 {
    font-size: 1.6rem;
  }
  .story > p {
    font-size: 0.9rem;
    margin-top: 7px;
  }
  .story-caption {
    margin-top: 17px;
  }
  .collaborate-content h2 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    margin: 0;
    line-height: 1.12;
  }
  .collaborate-content > p {
    margin-top: 23px;
    font-size: 1rem;
  }
  .collaborate-content > p br {
    display: none;
  }
  .button {
    margin-top: 25px;
    padding-inline: 20px;
  }
  .footer-main {
    flex-wrap: wrap;
    padding-block: 34px;
    gap: 20px;
  }
  .footer-main .wordmark {
    font-size: 1.5rem;
  }
  .footer-main > p {
    order: 3;
    flex-basis: 100%;
    font-size: 1rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

@media (max-width: 380px) {
  .site-header .wordmark {
    font-size: 1.3rem;
  }
  .site-header nav {
    font-size: 0.75rem;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--chocolate);
  border-radius: 50%;
  transition: background 0.2s ease;
}
.social-link svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.social-link:hover {
  background: rgba(249, 245, 238, 0.45);
}

/* Let content reflow when the screen is narrow or text is enlarged. */
.site-header,
.site-header nav,
.footer-main,
.footer-bottom,
.chapter-line {
  flex-wrap: wrap;
}
.site-header {
  padding-block: 20px;
}
.site-header nav {
  row-gap: 4px;
  max-width: 100%;
}
.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.wordmark {
  display: inline-block;
  min-height: 44px;
  padding-block: 5px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero > *,
.about > *,
.about-body > *,
.collaborate > *,
.section-heading > * {
  min-width: 0;
}
.hero h1 > span {
  display: block;
}
.hero h1,
.about h2,
.section-heading h2,
.collaborate h2,
.story h3 {
  overflow-wrap: anywhere;
}
.hero-image figcaption {
  flex-wrap: wrap;
  gap: 8px 16px;
}
.section-heading {
  flex-wrap: wrap;
}
.chapter-line {
  row-gap: 12px;
}
.button {
  max-width: 100%;
  gap: 20px;
}
.text-link {
  max-width: 100%;
}
.footer-bottom {
  gap: 8px 20px;
  align-items: center;
  padding-block: 12px;
}
.footer-bottom > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
@media (max-width: 1000px) {
  .about-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .site-header {
    padding-block: 16px;
  }
}

/* Draw navigation arrows consistently; never rely on platform emoji fonts. */
.arrow-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}
.nav-contact .arrow-icon,
.footer-bottom .arrow-icon {
  width: 1rem;
  height: 1rem;
}
.story-caption > .arrow-icon {
  align-self: center;
}
.footer-bottom > a {
  gap: 0.375rem;
}
