:root {
  --ink: #0b1930;
  --ink-soft: #172942;
  --paper: #f3f5f4;
  --paper-deep: #e4e8e6;
  --gold: #b8944c;
  --gold-bright: #d1af66;
  --slate: #66717b;
  --white: #fff;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --body: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(11, 25, 48, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 25, 48, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 64px), var(--max-width));
  min-height: 100vh;
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid rgba(11, 25, 48, 0.18);
}

.wordmark {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  place-items: center;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.place {
  margin: 0;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  min-height: 650px;
  padding-block: clamp(64px, 8vw, 112px);
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.15rem, 5.5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.93;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.introduction {
  max-width: 610px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.5vw, 1.38rem);
  line-height: 1.62;
}

.launch-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.launch-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.launch-symbol::after {
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--gold);
  content: "";
}

.launch-note p,
.launch-note strong {
  margin: 0;
}

.launch-note p {
  color: var(--slate);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.launch-note strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.portrait {
  position: relative;
  margin: 0;
}

.portrait::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 45%;
  height: 48%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: var(--ink);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(11, 25, 48, 0.28));
  content: "";
  pointer-events: none;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  filter: saturate(0.82) contrast(1.04);
}

.portrait figcaption {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 24px 0 0 24px;
  border-left: 1px solid var(--gold);
}

.caption-name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
}

.caption-role {
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.65;
}

.credentials {
  border-top: 1px solid rgba(11, 25, 48, 0.18);
  border-bottom: 1px solid rgba(11, 25, 48, 0.18);
  padding-block: 42px;
}

.credentials-label {
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credentials-list article {
  padding-right: clamp(24px, 4vw, 64px);
}

.credentials-list article + article {
  padding-left: clamp(24px, 4vw, 64px);
  border-left: 1px solid rgba(11, 25, 48, 0.16);
}

.year {
  color: var(--slate);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credentials h2 {
  margin: 9px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.credentials article p {
  max-width: 340px;
  margin: 0;
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 32px 42px;
  color: var(--slate);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .portrait {
    width: min(100%, 630px);
    margin-inline: auto;
  }

  .portrait-frame {
    aspect-ratio: 1 / 1;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }

  .credentials-list article {
    padding: 0 0 24px;
  }

  .credentials-list article + article {
    padding: 24px 0;
    border-top: 1px solid rgba(11, 25, 48, 0.16);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-header {
    min-height: 88px;
  }

  .place {
    display: none;
  }

  .hero {
    gap: 62px;
    padding-block: 54px 70px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .introduction {
    margin-top: 26px;
  }

  .portrait::before {
    top: -14px;
    right: -8px;
  }

  .portrait figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
