:root {
  color-scheme: light;
  --ink: #20191d;
  --plum: #2c1f2b;
  --fig: #5b3448;
  --rose: #b98287;
  --moss: #263f35;
  --ivory: #fbf8f1;
  --petal: #f3e7e3;
  --white: #ffffff;
  --muted: rgba(32, 25, 29, 0.64);
  --line: rgba(44, 31, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 5vw, 78px);
  color: var(--white);
}

.wordmark,
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.wordmark {
  font-size: 1.18rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: var(--white);
}

.hero {
  position: relative;
  min-height: min(720px, 84vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--plum);
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("/assets/christine-kang-abstract-hero.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(1.02) contrast(0.98);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(44, 31, 43, 0.46) 0%, rgba(44, 31, 43, 0.26) 38%, rgba(44, 31, 43, 0.04) 100%),
    linear-gradient(180deg, rgba(32, 25, 29, 0.1) 0%, rgba(32, 25, 29, 0.02) 42%, rgba(32, 25, 29, 0.48) 100%);
}

.hero-content {
  width: min(690px, calc(100% - 44px));
  margin: 0 0 clamp(52px, 9vh, 92px) clamp(22px, 7vw, 96px);
  padding-top: 118px;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 8.8ch;
  margin-bottom: 22px;
  font-size: 6.9rem;
  line-height: 0.92;
}

.role {
  margin-bottom: 14px;
  color: #f2d7d5;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lede {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  line-height: 1.18;
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(185, 130, 135, 0.18), transparent 24%),
    var(--ivory);
}

.focus-item {
  min-height: 196px;
  padding: clamp(30px, 5vw, 58px);
  border-right: 1px solid var(--line);
}

.focus-item:last-child {
  border-right: 0;
}

.focus-item span {
  display: block;
  margin-bottom: 24px;
  color: var(--fig);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  line-height: 1;
}

.focus-item p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(22px, 7vw, 96px);
  background: var(--petal);
  color: rgba(32, 25, 29, 0.72);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--plum);
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 22px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-media {
    background-position: 43% center;
  }

  .hero-content {
    width: min(100% - 40px, 620px);
    margin-left: 20px;
    margin-bottom: 68px;
  }

  h1 {
    font-size: 4.7rem;
  }

  .lede {
    font-size: 1.42rem;
  }

  .focus-band {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-item:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header {
    position: absolute;
  }

  .hero-content {
    padding-top: 138px;
  }

  .role {
    font-size: 0.76rem;
  }

  h1 {
    font-size: 4rem;
  }

  .lede {
    font-size: 1.16rem;
  }
}
