:root {
  --ink: #151716;
  --ink-soft: #242826;
  --paper: #f2efe7;
  --paper-deep: #e8e3d8;
  --muted: #73766f;
  --line: #cbc7bb;
  --accent: #f2be42;
  --blue: #a7b7f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  align-items: center;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: 1440px;
  padding: 28px 6vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.wordmark,
.footer-wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wordmark img,
.footer-wordmark img {
  display: block;
  height: 27px;
  width: 27px;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: #d8d9d1;
  font-size: 13px;
  transition: color 180ms ease;
}

.site-nav a:hover,
.hero-link:hover,
.company-action:hover {
  color: var(--accent);
}

.hero {
  background: var(--ink);
  color: var(--paper);
  min-height: 88svh;
  overflow: hidden;
  padding: 118px 6vw 56px;
  position: relative;
}

.hero::before,
.hero::after {
  border: 1px solid rgba(242, 239, 231, 0.17);
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero::before {
  height: 31vw;
  right: -13vw;
  top: 15vh;
  transform: rotate(17deg);
  width: 31vw;
}

.hero::after {
  bottom: -18vw;
  height: 37vw;
  left: -11vw;
  transform: rotate(17deg);
  width: 37vw;
}

.hero-inner {
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: calc(88svh - 174px);
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #a56e1c;
}

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 76px;
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 780px;
}

.hero-lead {
  color: #b7bab2;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-link,
.company-action {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 13px;
  transition: color 180ms ease;
}

.hero-link span,
.company-action span {
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.hero-art {
  align-self: center;
  border-left: 1px solid rgba(242, 239, 231, 0.28);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding: 24px 0 24px 38px;
  position: relative;
  z-index: 1;
}

.hero-art-topline,
.hero-art-footer {
  color: #8e938c;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-art-topline span:first-child {
  color: var(--accent);
}

.hero-art-mark {
  color: var(--accent);
  font-size: 270px;
  font-weight: 700;
  line-height: 0.8;
  margin-left: -11px;
  transform: rotate(-12deg);
  user-select: none;
}

.hero-art-rule {
  background: rgba(242, 239, 231, 0.3);
  flex: 1;
  height: 1px;
  margin: 8px 13px 0;
}

.scroll-cue {
  align-items: center;
  bottom: 0;
  color: #8e938c;
  display: flex;
  font-size: 11px;
  gap: 12px;
  left: 0;
  letter-spacing: 0.13em;
  position: absolute;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  color: var(--accent);
  font-size: 17px;
}

.portfolio {
  margin: 0 auto;
  max-width: 1440px;
  padding: 128px 6vw 140px;
}

.section-intro {
  display: grid;
  gap: 20px 6vw;
  grid-template-columns: 1fr 1.7fr;
  margin-bottom: 78px;
  max-width: 980px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-intro h2 {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 0;
}

.section-intro > p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 4px;
  max-width: 380px;
}

.company-list {
  border-top: 1px solid var(--line);
}

.company-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 1fr) minmax(270px, 1.25fr) minmax(150px, 0.6fr);
  min-height: 190px;
  padding: 32px 0;
}

.company-identity {
  align-items: center;
  display: flex;
  gap: 18px;
}

.company-logo {
  display: block;
  flex: 0 0 auto;
  height: 66px;
  width: 66px;
}

.company-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.company-identity h3 {
  font-size: 31px;
  line-height: 1;
  margin-bottom: 0;
}

.company-description {
  color: #5b5f58;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 410px;
}

.company-status {
  color: #6b6f69;
  font-size: 13px;
  justify-self: end;
}

.company-action {
  justify-self: end;
}

.statement {
  background: var(--ink-soft);
  color: var(--paper);
  padding: 135px 6vw;
}

.statement-inner {
  margin: 0 auto;
  max-width: 920px;
}

.statement h2 {
  font-size: 58px;
  line-height: 1.03;
  margin-bottom: 32px;
  max-width: 780px;
}

.statement p:last-child {
  color: #b8bbb4;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 460px;
}

.site-footer {
  align-items: center;
  background: var(--paper-deep);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 27px 6vw;
}

.footer-wordmark {
  color: var(--ink);
  font-size: 15px;
}

.footer-wordmark img {
  height: 23px;
  width: 23px;
}

.site-footer p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.reveal {
  animation: reveal 720ms ease both;
}

.reveal-one {
  animation-delay: 80ms;
}

.reveal-two {
  animation-delay: 160ms;
}

.reveal-three {
  animation-delay: 240ms;
}

.reveal-four {
  animation-delay: 320ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-art {
    min-height: 260px;
    padding: 18px 0 18px 25px;
  }

  .hero-art-mark {
    font-size: 180px;
  }

  .scroll-cue {
    display: none;
  }

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

  .company-description {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 520px;
  }

  .company-action,
  .company-status {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 22px 22px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 22px 42px;
  }

  .hero-inner {
    min-height: calc(92svh - 154px);
  }

  h1 {
    font-size: 53px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-art {
    min-height: 220px;
  }

  .hero-art-mark {
    font-size: 150px;
  }

  .portfolio {
    padding: 84px 22px 96px;
  }

  .section-intro {
    display: block;
    margin-bottom: 56px;
  }

  .section-intro .eyebrow {
    margin-bottom: 22px;
  }

  .section-intro h2 {
    font-size: 42px;
    margin-bottom: 22px;
  }

  .company-row {
    display: block;
    padding: 28px 0;
  }

  .company-description {
    margin: 23px 0;
  }

  .company-action,
  .company-status {
    justify-self: start;
  }

  .statement {
    padding: 92px 22px;
  }

  .statement h2 {
    font-size: 43px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 26px 22px;
  }
}

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

  .reveal {
    animation: none;
  }
}
