:root {
  --charcoal: #232323;
  --paper: #ffffff;
  --soft-charcoal: #44413f;
  --line: rgba(35, 35, 35, 0.22);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Helvetica Neue", Helvetica, sans-serif;
  --sans: "Helvetica Neue", Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 8.5rem;
  padding: 1rem var(--page-pad);
  border-bottom: 1px solid var(--charcoal);
}

.brand {
  display: inline-block;
  width: 5rem;
  height: 5.25rem;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.site-nav a,
.footer-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 0.8fr);
  min-height: calc(100vh - 8.5rem);
  border-bottom: 1px solid var(--charcoal);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vw, 9rem) var(--page-pad);
}

.eyebrow,
.section-label,
.folio {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: clamp(2.5rem, 8vh, 6rem) 0 2rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 8.5vw, 9.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.hero-intro {
  max-width: 40rem;
  margin: 0 0 3.25rem auto;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.text-link {
  align-self: flex-start;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.text-link:hover {
  opacity: 0.55;
}

.hero-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 37rem;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
}

.hero-mark::after {
  position: absolute;
  top: 12%;
  right: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-mark img {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(78%, 20rem);
  height: auto;
  margin: auto 0;
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.hero-mark:hover img {
  transform: rotate(-2deg) scale(1.025);
}

.hero-mark p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  line-height: 1.45;
}

.margin-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.folio {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) 1fr;
  min-height: 48rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--charcoal);
}

.section-label {
  display: flex;
  justify-content: space-between;
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid var(--charcoal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-copy {
  align-self: center;
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(4rem, 10vw, 9rem) clamp(2rem, 7vw, 8rem);
}

.about h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.5vw, 7rem);
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 62rem;
  margin: clamp(4rem, 8vw, 7rem) 0 0 auto;
}

.about-columns p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.about-columns p:first-child::first-letter {
  float: left;
  margin: 0.1em 0.12em 0 0;
  font-family: var(--display);
  font-size: 4.4em;
  line-height: 0.72;
}

.newsletter {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 10rem);
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
}

.newsletter-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 19rem;
}

.newsletter h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.newsletter-form-wrap {
  align-self: end;
}

.newsletter-form-wrap > p {
  max-width: 34rem;
  margin: 0 0 3rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.signup-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--charcoal);
}

.input-row input {
  min-width: 0;
  padding: 1rem 1rem 1rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.input-row input::placeholder {
  color: rgba(35, 35, 35, 0.38);
}

.input-row:focus-within {
  box-shadow: 0 2px 0 var(--charcoal);
}

.input-row button {
  padding: 1rem 0 1rem 1rem;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.input-row button:hover {
  opacity: 0.55;
  transform: translateX(0.2rem);
}

.input-row button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.form-status {
  min-height: 1.5em;
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.form-status.is-error {
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) 1fr auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  min-height: 25rem;
  padding: clamp(3rem, 7vw, 6rem) var(--page-pad) 2rem;
  background: var(--charcoal);
  color: var(--paper);
}

.footer-brand {
  align-self: start;
  width: clamp(7rem, 12vw, 10rem);
  height: clamp(8rem, 13vw, 11rem);
}

.site-footer > p:not(.copyright) {
  align-self: center;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  align-self: center;
}

.copyright {
  grid-column: 1 / -1;
  margin: 4rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  animation: reveal-up 700ms both cubic-bezier(.2, .8, .2, 1);
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 220ms; }
.reveal-delay-3 { animation-delay: 340ms; }

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    min-height: 36rem;
  }

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

  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter-heading {
    min-height: 15rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 7rem;
  }

  .brand {
    width: 4rem;
    height: 4.3rem;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: calc(100svh - 7rem);
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    margin-top: 4rem;
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .hero-intro {
    margin-left: 0;
  }

  .hero-mark {
    min-height: 31rem;
  }

  .about {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .section-label {
    writing-mode: initial;
    transform: none;
    padding: 1.25rem var(--page-pad);
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .about-copy {
    padding: 5rem var(--page-pad);
  }

  .about-columns {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .newsletter {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row button {
    justify-self: start;
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer > p:not(.copyright),
  .footer-links {
    align-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
