:root {
  --ink: #181b1a;
  --paper: #e8e5dd;
  --muted: #aaa99f;
  --line: rgba(232, 229, 221, 0.22);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Nimbus Sans", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.hero {
  min-height: min(760px, 100svh);
  padding: 28px clamp(24px, 5.5vw, 88px) 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.grid {
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(80px, 10vw, 148px) clamp(80px, 10vw, 148px);
  inset: -1px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95), transparent 87%);
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero::after {
  border: 1px solid rgba(232, 229, 221, 0.52);
  border-radius: 50%;
  content: "";
  height: min(86vw, 850px);
  position: absolute;
  right: max(-28vw, -430px);
  top: 17%;
  width: min(86vw, 850px);
  z-index: -1;
}

.hero__topline {
  background: var(--paper);
  height: 1px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
}

.masthead, .hero__base, footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.wordmark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-decoration: none;
}

.location, .eyebrow, .audience, .index, .contact__label, footer {
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.location { margin: 0; }

.hero__content {
  margin: auto 0;
  padding: clamp(84px, 13vh, 150px) 0 clamp(58px, 9vh, 102px);
}

.eyebrow { color: var(--muted); margin: 0 0 22px; }

h1, h2, p { margin-top: 0; }

h1 {
  font-family: var(--display);
  font-size: clamp(3.55rem, 8.8vw, 8.75rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
  margin-bottom: clamp(42px, 7vw, 90px);
  max-width: 960px;
}

.statement {
  border-left: 1px solid var(--paper);
  margin-left: clamp(7px, 6.6vw, 100px);
  max-width: 485px;
  padding-left: 20px;
}

.statement p {
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.53;
  margin-bottom: 0;
}

.hero__base { gap: 24px; }
.audience { margin: 0; max-width: 290px; }
.index { color: var(--muted); white-space: nowrap; }

.contact {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(0, 3fr);
  min-height: 412px;
  padding: clamp(28px, 4.5vw, 72px) clamp(24px, 5.5vw, 88px);
  position: relative;
}

.contact__rule {
  background: var(--ink);
  height: 1px;
  left: 0;
  opacity: 0.65;
  position: absolute;
  top: 0;
  width: 100%;
}

.contact__label { margin: 0; padding-top: 5px; }
.contact__content { max-width: 660px; }

h2 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
}

.contact__content > p { font-size: 1rem; line-height: 1.45; margin-bottom: 42px; }

.contact__links { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.contact__links a { font-size: 0.84rem; text-underline-offset: 5px; }
.contact__links a:hover { opacity: 0.55; }

footer {
  background: var(--paper);
  border-top: 1px solid rgba(24, 27, 26, 0.32);
  color: var(--ink);
  padding: 18px clamp(24px, 5.5vw, 88px) 21px;
}

@media (max-width: 620px) {
  .hero { min-height: 680px; padding-top: 25px; }
  .hero::after { height: 540px; right: -300px; top: 24%; width: 540px; }
  h1 { font-size: clamp(3.25rem, 17vw, 5.1rem); }
  .statement { margin-left: 0; }
  .contact { display: block; min-height: 380px; }
  .contact__label { margin-bottom: 70px; }
  .contact__links { flex-direction: column; gap: 13px; }
  footer { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: no-preference) {
  .masthead, .hero__content, .hero__base { animation: arrive 850ms both; }
  .hero__content { animation-delay: 120ms; }
  .hero__base { animation-delay: 240ms; }
  @keyframes arrive {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
