:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5a6169;
  --rule: #d9dde1;
  --page-width: 52rem;
  --sans: Arial, Helvetica, sans-serif;
  --display: "Futura PT Book", Futura, "Century Gothic", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: #24384b;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: #20262c;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-180%);
}

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

main {
  width: min(calc(100% - 3rem), var(--page-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(5rem, 10vw, 8rem);
}

.hero,
.story,
.story-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

h1,
h2,
p {
  max-width: none;
}

h1,
.subtitle {
  font-family: var(--display);
}

h1 {
  margin: 0;
  color: #15181b;
  font-size: clamp(3rem, 8.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.subtitle {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.8rem);
  line-height: 1.35;
}

.lead {
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-copy {
  display: block;
  margin: 1.4rem 0 0;
  padding: 0;
  border: 0;
}

.story {
  margin-top: 3.5rem;
}

.story-section + .story-section {
  margin-top: 3.25rem;
}

.story-section h2 {
  position: static;
  margin: 0 0 1.15rem;
  color: #15181b;
  font-family: var(--sans);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.story-section p,
.hero-copy p {
  margin: 0;
}

.story-section p + p,
.hero-copy p + p {
  margin-top: 1.25rem;
}

.story-section strong,
.hero-copy strong {
  color: inherit;
  font-weight: 700;
}

.hero-copy p:last-child {
  color: inherit;
  font-size: inherit;
  font-style: normal;
}

.closing-line {
  margin-top: 2.5rem !important;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.closing-line strong {
  font-weight: 700;
}

.signature {
  margin-top: 2rem !important;
  color: var(--ink);
  line-height: 1.45;
}

.signature em {
  color: var(--muted);
  font-size: 0.94em;
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
    line-height: 1.64;
  }

  main {
    width: min(calc(100% - 2rem), var(--page-width));
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
    letter-spacing: -0.045em;
  }

  .lead {
    font-size: 1.04rem;
  }

  .story {
    margin-top: 3rem;
  }

  .story-section + .story-section {
    margin-top: 2.8rem;
  }
}

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

@media print {
  body {
    color: #000;
    font-size: 11pt;
  }

  main {
    width: 100%;
    padding: 0;
  }

  h1 {
    color: #000;
    font-size: 36pt;
  }
}
