:root {
  --ink: #14191d;
  --ink-soft: #596168;
  --paper: #f1f0eb;
  --paper-bright: #fbfaf6;
  --white: #ffffff;
  --line: rgba(20, 25, 29, 0.17);
  --line-dark: rgba(255, 255, 255, 0.18);
  --navy: #10263d;
  --navy-deep: #0a1b2c;
  --metal: #a79d88;
  --nav-text-size: 13px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.masthead {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.brand,
.masthead nav {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.masthead nav {
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--nav-text-size);
  font-weight: 600;
}

.masthead nav a {
  padding-block: 8px;
}

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

.masthead nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--metal);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 81% 28%, rgba(167, 157, 136, 0.15), transparent 25%),
    linear-gradient(122deg, #192027 0%, #12171b 48%, #0c1013 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  align-items: center;
  padding-top: 136px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 19px;
  color: #7c7568;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--metal);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7.4vw, 98px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-dek {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.releases {
  padding-block: 100px 124px;
}

.section-heading {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.3vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.release-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  box-shadow: 0 24px 80px rgba(20, 25, 29, 0.08);
}

.release-art {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--navy);
}

.release-art::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 22, 37, 0.14), rgba(7, 22, 37, 0.45)),
    linear-gradient(90deg, rgba(7, 22, 37, 0.2), transparent 60%);
}

.release-art picture,
.release-art img {
  width: 100%;
  height: 100%;
}

.release-art img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 66% center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.release-card:hover .release-art img {
  transform: scale(1.025);
}

.release-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6.5vw, 82px);
}

.release-kicker {
  margin: 0 0 28px;
  color: #657383;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.release-copy h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.release-description {
  max-width: 500px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
}

.release-facts {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.release-facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.release-facts dt {
  color: #7b8389;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.release-link {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  gap: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.release-link:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.mission {
  scroll-margin-top: 24px;
  padding-block: 112px 136px;
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.mission-page .site-header {
  position: relative;
  background: var(--ink);
}

.mission-page .mission {
  border-top: 0;
}

.mission-grid {
  max-width: 820px;
}

.mission-heading {
  margin: 0 auto 70px;
  text-align: center;
}

.mission-heading h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(43px, 6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.mission-body {
  min-width: 0;
  max-width: 760px;
  margin-inline: auto;
}

.mission-body p {
  margin: 0;
  color: #3f474d;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.74;
}

.mission-body > p {
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.mission-body p + p {
  margin-top: 26px;
}

.mission-body .mission-lede {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.66;
}

.mission-body h2 {
  margin: 72px 0 28px;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(29px, 3.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-align: center;
}

.mission-body .mission-declaration {
  margin-block: 38px;
  color: var(--navy-deep);
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.mission-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-pair p {
  padding: 26px 28px 28px;
  color: var(--navy-deep);
  font-size: 21px;
  line-height: 1.45;
  text-align: center;
}

.mission-pair p + p {
  margin: 0;
  border-left: 1px solid var(--line);
}

.mission-ending {
  margin-top: 52px;
  text-align: center;
}

.mission-ending p {
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.5;
}

.mission-ending p + p {
  margin-top: 8px;
}

a:focus-visible {
  outline: 3px solid #8ab7d4;
  outline-offset: 4px;
}

footer {
  padding-block: 54px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--ink);
}

.footer-note {
  display: flex;
  justify-content: center;
}

.footer-note p {
  width: 100%;
  max-width: 960px;
  margin: 0;
  font-size: var(--nav-text-size);
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: 560px;
    padding-top: 128px;
    padding-bottom: 64px;
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .release-art {
    min-height: 500px;
  }

  .release-copy {
    padding: 60px;
  }

}

@media (max-width: 640px) {
  :root {
    --nav-text-size: 12px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .masthead {
    min-height: 74px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .masthead nav {
    gap: 16px;
  }

  .masthead nav a:last-child {
    display: none;
  }

  .hero-grid {
    min-height: 500px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 64px);
    line-height: 0.98;
  }

  .hero-dek {
    margin-top: 28px;
    font-size: 18px;
  }

  .releases {
    padding-block: 80px 90px;
  }

  .release-card {
    margin-top: 46px;
  }

  .release-art {
    min-height: 390px;
  }

  .release-art img {
    object-position: 62% center;
  }

  .release-copy {
    padding: 42px 28px 48px;
  }

  .release-copy h3 {
    font-size: clamp(50px, 17vw, 70px);
  }

  .release-description {
    font-size: 16px;
  }

  .release-facts > div {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }

  .mission {
    padding-block: 82px 92px;
  }

  .mission-heading h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .mission-body p {
    font-size: 17px;
    line-height: 1.68;
  }

  .mission-body .mission-lede {
    font-size: 21px;
  }

  .mission-body h2 {
    margin-top: 64px;
    font-size: 31px;
  }

  .mission-body .mission-declaration {
    margin-block: 34px;
    font-size: 20px;
  }

  .mission-pair {
    grid-template-columns: 1fr;
  }

  .mission-pair p,
  .mission-pair p + p {
    padding: 22px 0;
    border-left: 0;
  }

  .mission-pair p + p {
    border-top: 1px solid var(--line);
  }

  .mission-ending p {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  :root {
    --nav-text-size: 11px;
  }

  .brand {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .masthead nav {
    gap: 12px;
  }
}

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

  .release-art img,
  .release-link {
    transition: none;
  }
}
