:root {
  --ink: #111111;
  --paper: #f4f3ef;
  --paper-light: #faf9f6;
  --muted: #66645f;
  --line: rgba(17, 17, 17, 0.22);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 0 clamp(24px, 5vw, 76px);
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(17,17,17,.055) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.95), transparent 32%),
    var(--paper);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  pointer-events: none;
}

.corner-top-left { top: 18px; left: 18px; border-top: 3px solid var(--ink); border-left: 3px solid var(--ink); }
.corner-top-right { top: 18px; right: 18px; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); }
.corner-bottom-left { bottom: 18px; left: 18px; border-bottom: 3px solid var(--ink); border-left: 3px solid var(--ink); }
.corner-bottom-right { right: 18px; bottom: 18px; border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

.masthead,
.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.masthead {
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  min-height: 76px;
}

.masthead p,
.site-footer p {
  margin: 0;
}

.masthead p:last-child,
.site-footer p:last-child {
  color: var(--muted);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1280px);
  margin: auto;
  padding: clamp(74px, 10vh, 132px) 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

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

.eyebrow {
  display: flex;
  margin: 0 0 26px;
  gap: 13px;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 710px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.lede {
  max-width: 500px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.contact-button {
  display: inline-flex;
  min-height: 54px;
  margin-top: 38px;
  padding: 15px 21px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.contact-button:focus-visible {
  outline: 3px solid rgba(17, 17, 17, .25);
  outline-offset: 4px;
}

.contact-button span {
  font-size: 1rem;
  line-height: 1;
}

.logo-stage {
  position: relative;
  width: 100%;
}

.logo-frame {
  position: relative;
  padding: clamp(18px, 2.6vw, 34px);
  background: var(--paper-light);
  border: 1px solid var(--ink);
  box-shadow: 22px 22px 0 var(--ink);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.06);
}

.site-footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-shell {
    padding-inline: clamp(24px, 7vw, 60px);
    background: radial-gradient(circle at 76% 56%, rgba(255,255,255,.9), transparent 34%), var(--paper);
  }

  .hero {
    padding-block: 70px 90px;
    grid-template-columns: 1fr;
    gap: 68px;
  }

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

  h1 {
    max-width: 780px;
  }

  .logo-stage {
    width: min(100%, 560px);
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding-inline: 30px;
  }

  .site-shell::before {
    inset: 10px;
  }

  .corner-top-left { top: 10px; left: 10px; }
  .corner-top-right { top: 10px; right: 10px; }
  .corner-bottom-left { bottom: 10px; left: 10px; }
  .corner-bottom-right { right: 10px; bottom: 10px; }

  .masthead,
  .site-footer {
    font-size: .57rem;
    letter-spacing: .15em;
  }

  .masthead { min-height: 52px; }
  .site-footer { min-height: 64px; }

  .masthead p:last-child,
  .site-footer p:last-child {
    display: none;
  }

  .hero {
    padding-block: 55px 75px;
    gap: 54px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .lede {
    margin-top: 25px;
  }

  .logo-frame {
    padding: 16px;
    box-shadow: 12px 12px 0 var(--ink);
  }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
  }
}
