:root {
  --ink: #10110f;
  --paper: #f2f0ea;
  --white: #fcfbf7;
  --accent: #e6aa19;
  --muted: #66675f;
  --line: rgba(16, 17, 15, 0.2);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.company,
.work,
.contact,
footer {
  width: min(100% - 64px, 1400px);
  margin-inline: auto;
}

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

.wordmark {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  width: 7px;
  height: 7px;
  margin-top: -1px;
  background: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

nav a {
  text-decoration: none;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.72fr);
  border-bottom: 1px solid var(--ink);
}

.hero-main {
  padding: clamp(74px, 9vw, 138px) clamp(42px, 7vw, 108px) 72px 0;
  display: flex;
  flex-direction: column;
}

.kicker,
.section-label,
.note-topline,
.note-copy > p:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 52px;
}

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

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4.8rem, 9.6vw, 9.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

h1 span {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.hero-support {
  max-width: 720px;
  margin-top: auto;
  padding-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
}

.hero-support p {
  max-width: 540px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  letter-spacing: -0.012em;
}

.hero-support a,
.contact a {
  display: inline-flex;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  white-space: nowrap;
}

.studio-note {
  position: relative;
  min-height: 610px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.studio-note::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 38%;
  background: var(--accent);
}

.note-topline {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  color: #adada6;
}

.note-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 340px;
}

.note-copy > p:first-child {
  margin-bottom: 24px;
  color: var(--accent);
}

.note-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.note-copy > p:last-child {
  max-width: 270px;
  margin-bottom: 0;
  color: #bdbdb6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.note-corner {
  position: absolute;
  right: -18px;
  bottom: -58px;
  color: #1c1d1a;
  font-size: clamp(10rem, 18vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  user-select: none;
}

.company,
.work {
  padding: 124px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  gap: 60px;
  border-bottom: 1px solid var(--ink);
}

.section-label {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.section-label span {
  color: var(--muted);
}

.section-label p {
  margin-bottom: 0;
}

.company-content h2 {
  max-width: 1020px;
  margin: 0 0 92px;
  font-size: clamp(3.1rem, 6.3vw, 6.6rem);
  font-weight: 450;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.company-copy {
  max-width: 760px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  color: #45463f;
  line-height: 1.68;
}

.company-copy p {
  margin-bottom: 0;
}

.work {
  align-items: start;
}

.work-list {
  border-top: 1px solid var(--ink);
}

.work-row {
  min-height: 138px;
  display: grid;
  grid-template-columns: 46px minmax(220px, 0.8fr) minmax(240px, 1fr);
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.work-row > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.work-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 450;
  letter-spacing: -0.05em;
}

.work-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  padding: 124px 0 132px;
}

.contact .kicker {
  margin-bottom: 48px;
}

.contact h2 {
  max-width: 990px;
  margin: 0 0 62px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 450;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.contact a {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-wordmark {
  color: var(--ink);
}

footer p {
  margin-bottom: 0;
}

footer > a:last-child {
  justify-self: end;
  text-underline-offset: 5px;
}

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

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

  .hero-main {
    min-height: 720px;
    padding-right: 0;
  }

  .studio-note {
    min-height: 500px;
  }

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

  .company-content h2 {
    margin-bottom: 68px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .company,
  .work,
  .contact,
  footer {
    width: min(100% - 32px, 1400px);
  }

  .site-header {
    min-height: 80px;
  }

  nav > a:first-child {
    display: none;
  }

  .nav-contact {
    gap: 18px;
    padding: 10px 12px;
  }

  .hero-main {
    min-height: auto;
    padding: 68px 0 72px;
  }

  .kicker {
    margin-bottom: 38px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .hero-support {
    margin-top: 82px;
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .studio-note {
    min-height: 460px;
    padding: 22px;
  }

  .company,
  .work {
    padding: 88px 0;
    gap: 52px;
  }

  .company-content h2 {
    margin-bottom: 54px;
  }

  .company-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .work-row {
    padding: 30px 0;
    grid-template-columns: 32px 1fr;
    gap: 10px 18px;
  }

  .work-row p {
    grid-column: 2;
  }

  .contact {
    padding: 92px 0 100px;
  }

  footer {
    padding: 40px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer > a:last-child {
    justify-self: start;
  }
}
