:root {
  --paper: #ed5a24;
  --ink: #fffaf4;
  --muted: rgba(255, 250, 244, 0.78);
  --line: rgba(255, 250, 244, 0.28);
  --accent: #ffffff;
  --deep: #c84216;
  --display: "Avenir Next", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif;
  --sans: "Avenir Next", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.07) 1px) 0 0 / 6.25vw 100%,
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header,
main,
footer {
  width: min(1400px, calc(100% - 3rem));
  margin-inline: auto;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  letter-spacing: -.02em;
}

.wordmark span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: .8rem;
}

.site-header nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.6rem); }
.site-header nav a { text-decoration: none; font-size: .88rem; }
.site-header nav a:not(.nav-contact):hover { text-decoration: underline; text-underline-offset: .3rem; }

.nav-contact {
  padding: .55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-contact:hover { background: var(--ink); color: var(--paper); }

.hero {
  min-height: min(780px, calc(100vh - 92px));
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .94;
}

h1 { max-width: 12ch; margin-bottom: 2rem; font-size: clamp(4rem, 8vw, 8.5rem); }
h2 { font-size: clamp(3rem, 5.4vw, 6rem); }

.lede {
  max-width: 610px;
  margin-bottom: 2.3rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.text-link {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.text-link span { color: var(--accent); }

.hero-mark {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-mark::before,
.hero-mark::after,
.orbit {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-mark::before { width: 68%; height: 68%; }
.hero-mark::after { width: 35%; height: 35%; background: var(--ink); border: 0; }
.orbit-one { width: 100%; height: 35%; }
.orbit-two { width: 35%; height: 100%; }

.monogram {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  font-style: italic;
}

.marker { position: absolute; width: 14px; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }
.marker-a { top: 14%; right: 19%; }
.marker-b { bottom: 5%; left: 41%; }

.work {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(400px, 1.25fr);
  gap: clamp(4rem, 10vw, 12rem);
  padding: clamp(6rem, 12vw, 12rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-intro h2 { max-width: 8ch; }

.activity-rail {
  position: relative;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.activity-rail::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.45rem;
  width: 1px;
  background: var(--line);
}

.activity-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.7rem;
  padding: 0 0 4.5rem;
}

.activity-rail li:last-child { padding-bottom: 0; }

.step {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
}

.activity-rail h3 { margin-bottom: .5rem; font-family: var(--display); font-size: 2rem; font-weight: 650; letter-spacing: -.035em; }
.activity-rail p { max-width: 45ch; color: var(--muted); }

.company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 10vw, 11rem);
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.company h2 { max-width: 8ch; }
.company-copy { padding-top: 3rem; color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.4rem); }
.company-copy p { max-width: 42ch; margin-bottom: 1.5rem; }

.contact {
  padding: clamp(4rem, 8vw, 7rem);
  color: var(--paper);
  background: var(--deep);
}

.contact h2 { max-width: 10ch; }
.contact a { display: inline-block; margin-top: 2rem; color: var(--ink); font-size: clamp(1rem, 2vw, 1.5rem); text-underline-offset: .4rem; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding: 3.5rem 0 5rem;
  font-size: .85rem;
}

.footer-contact { display: flex; flex-direction: column; }
.footer-contact a { width: fit-content; }
.copyright { align-self: end; margin: 0; color: var(--muted); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

@media (max-width: 820px) {
  body { background: var(--paper); }
  .site-header, main, footer { width: min(100% - 2rem, 680px); }
  .site-header nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-mark { width: min(82vw, 420px); justify-self: center; }
  .work, .company { grid-template-columns: 1fr; gap: 3rem; }
  .company-copy { padding-top: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  h1 { font-size: clamp(3.4rem, 17vw, 5.5rem); }
  .contact { padding-inline: 1.5rem; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
