:root {
  --bg: #ece9e4;
  --text: #181818;
  --muted: #6f6b65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px 0;
}

.site-brand {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

/* PAGE */

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.about-image {
  margin: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-copy-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-copy {
  max-width: 760px;
  text-align: center;
}

.about-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 18px;
}

.about-signoff {
  margin-top: 26px;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 18px 18px 0;
  }

  .site-nav {
    gap: 20px;
  }

  .about-page {
    padding: 40px 18px 80px;
  }

  .about-copy p {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .about-page {
    padding: 28px 16px 56px;
  }

  .about-copy-wrap {
    margin-top: 24px;
  }

  .about-signoff {
    font-size: 20px;
  }
}