:root {
  --paper: #f1eee7;
  --ink: #161714;
  --muted: #686961;
  --line: #cbc8bf;
  --acid: #d8ff3e;
  --orange: #f06635;
  --blue: #253c8f;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1440px);
  height: 94px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
}

.wordmark > span:first-child {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}

nav a,
.header-link {
  transition: opacity 180ms ease;
}

nav a:hover,
.header-link:hover {
  opacity: 0.5;
}

.header-link {
  justify-self: end;
  font-size: 13px;
  font-weight: 600;
}

.header-link span {
  margin-left: 5px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr auto;
  width: min(100% - 64px, 1440px);
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 78px 0 28px;
}

.hero-copy {
  align-self: center;
  padding: 0 30px 40px 4vw;
}

.eyebrow,
.section-index,
.project-type,
.article > p,
.about-facts span {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

h1 {
  max-width: 800px;
  margin: 28px 0 30px;
  font-size: clamp(64px, 7.2vw, 116px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
}

h1 .serif {
  display: block;
  margin-top: 0.04em;
  letter-spacing: -0.012em;
  line-height: 1.05;
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: #484942;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  align-self: center;
  width: min(37vw, 520px);
  aspect-ratio: 1;
  justify-self: center;
}

.orbit {
  position: absolute;
  inset: 11%;
  border: 1px solid #a8a69e;
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(30deg) scaleX(0.55);
}

.orbit-two {
  transform: rotate(-30deg) scaleX(0.55);
}

.orbit-three {
  transform: rotate(90deg) scaleX(0.55);
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 160px;
  height: 160px;
  place-content: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 50px rgb(37 60 143 / 20%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.core span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core strong {
  margin: 4px 0;
  color: var(--acid);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.node-a {
  top: 4%;
  left: 43%;
}

.node-b {
  top: 38%;
  right: 0;
  background: var(--acid);
}

.node-c {
  right: 16%;
  bottom: 5%;
}

.node-d {
  bottom: 14%;
  left: 3%;
  color: white;
  background: var(--orange);
}

.hero-foot {
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-foot span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.section-pad {
  padding: 130px max(32px, calc((100vw - 1376px) / 2));
}

.statement {
  color: var(--paper);
  background: var(--ink);
}

.statement .section-index {
  color: #91928a;
}

blockquote {
  max-width: 1150px;
  margin: 85px 0 90px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

blockquote em {
  color: var(--acid);
  font-weight: 400;
}

.statement-note {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 45px;
  align-items: start;
}

.rule {
  display: block;
  height: 1px;
  margin-top: 10px;
  background: #484943;
}

.statement-note p {
  margin: 0;
  color: #b8b9b1;
  font-size: 15px;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: end;
  padding-bottom: 64px;
}

.section-heading h2,
.writing-intro h2,
.about-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.section-heading h2 .serif,
.writing-intro h2 .serif,
.about-copy h2 .serif {
  letter-spacing: -0.01em;
}

.section-heading > p,
.writing-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 30px;
  align-items: start;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  transition: padding 220ms ease;
}

.project:hover {
  padding-right: 20px;
  padding-left: 20px;
}

.project-number {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.project-main h3 {
  margin: 11px 0 15px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.project-main > p:not(.project-type) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-main ul {
  display: flex;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.project-main li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.project-arrow {
  font-size: 30px;
  transition: transform 220ms ease;
}

.project:hover .project-arrow {
  transform: translate(5px, -5px);
}

.all-work {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.all-work span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.all-work b {
  margin-left: 18px;
  color: var(--ink);
  font-size: 15px;
}

.writing {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  gap: 10vw;
  background: #d9d4ca;
}

.writing-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.writing-intro > p:last-child {
  max-width: 360px;
  margin-top: 32px;
}

.article {
  position: relative;
  display: block;
  padding: 38px 50px 38px 0;
  border-top: 1px solid #aaa69d;
}

.article h3 {
  max-width: 650px;
  margin: 14px 0 13px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.article > span {
  color: var(--muted);
  font-size: 13px;
}

.article > b {
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 24px;
  font-weight: 400;
  transition: transform 200ms ease;
}

.article:hover > b {
  transform: translate(5px, -5px);
}

.article-cta {
  margin-top: 40px;
  padding: 35px 80px 35px 35px;
  border: 0;
  background: var(--acid);
}

.article-cta > b {
  right: 35px;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  align-items: start;
}

.photo-frame {
  position: relative;
  max-width: 410px;
  padding: 15px;
  border: 1px solid var(--line);
}

.photo-frame::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 55%;
  height: 55%;
  background: var(--orange);
  content: "";
}

.photo-frame img {
  display: block;
  width: 100%;
  filter: grayscale(100%) contrast(1.05);
}

.about-photo > p {
  margin: 42px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 45px;
}

.about-copy > p:not(.section-index) {
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about-facts p {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.contact {
  padding: 120px max(32px, calc((100vw - 1376px) / 2)) 70px;
  color: white;
  background: var(--blue);
}

.contact .section-index {
  color: #aeb9e8;
}

.contact h2 {
  max-width: 1000px;
  margin: 80px 0 100px;
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 124px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-top: 35px;
  border-top: 1px solid rgb(255 255 255 / 35%);
}

.contact-bottom > p {
  max-width: 450px;
  margin: 0;
  color: #c6cdf0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
}

.contact-links a {
  border-bottom: 1px solid rgb(255 255 255 / 55%);
  padding-bottom: 5px;
  font-size: 13px;
}

.contact-links span {
  margin-left: 6px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px max(32px, calc((100vw - 1376px) / 2));
  color: #aaa;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

footer a {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 1440px);
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1440px);
    padding-top: 60px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(61px, 14vw, 95px);
  }

  .hero-visual {
    width: min(82vw, 490px);
    margin: 70px 0;
  }

  .hero-foot {
    grid-column: 1;
  }

  .section-pad {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading,
  .writing,
  .about {
    grid-template-columns: 1fr;
  }

  .writing {
    gap: 60px;
  }

  .writing-intro {
    position: static;
  }

  .about-photo {
    max-width: 430px;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 76px;
  }

  .wordmark-name {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 55px;
  }

  h1 {
    margin-top: 22px;
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    margin: 50px 0;
  }

  .node {
    width: 58px;
    height: 58px;
    font-size: 8px;
  }

  .core {
    width: 130px;
    height: 130px;
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  blockquote {
    margin: 60px 0;
    font-size: 42px;
  }

  .statement-note {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
  }

  .project {
    grid-template-columns: 42px 1fr 20px;
    gap: 10px;
    padding: 35px 0;
  }

  .project-main ul {
    flex-wrap: wrap;
  }

  .all-work span {
    display: none;
  }

  .article {
    padding-right: 35px;
  }

  .article-cta {
    padding-left: 25px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .contact {
    padding-top: 85px;
  }

  .contact h2 {
    margin: 60px 0 75px;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
