:root {
  --bg: #f6f3ec;
  --ink: #111111;
  --lime: #c8f000;
  --muted: #3a3a3a;
  --line: #111111;
  --display: "Archivo", sans-serif;
  --serif: "Newsreader", serif;
  --header-h: 69px;
  --gutter: 40px;
  --wrap: 1120px;
  --deco: 280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.wrap {
  width: min(var(--wrap), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
}

.brand img { width: 22px; height: 22px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: 64px;
}

.hero,
.cream,
.studio { background: var(--bg); }

.lime {
  background: var(--lime);
  border-block: 1px solid var(--line);
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--deco);
  column-gap: 80px;
  align-items: center;
}

.copy {
  min-width: 0;
}

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

h1, .display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0;
}

h1 { font-size: clamp(72px, 11vw, 132px); }

.display {
  font-size: clamp(40px, 5.4vw, 72px);
  max-width: 16ch;
}

.panel .display { max-width: 11ch; }

.slogan {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 20px 0 0;
  max-width: 18em;
}

.lede {
  max-width: 28em;
  font-size: 22px;
  margin: 24px 0 0;
}

h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 22px;
  margin: 0 0 12px;
}

.deco {
  width: var(--deco);
  justify-self: end;
}

.deco img { width: 100%; display: block; }

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid var(--line);
}

.cols,
.facts {
  display: grid;
  width: 100%;
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cols > *,
.facts > * {
  min-width: 0;
  padding: 28px 40px 0 0;
}

.cols > * + *,
.facts > * + * {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.cols > *:last-child,
.facts > *:last-child { padding-right: 0; }

.cols p { margin: 0; }

.facts dt {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.facts dd { margin: 0; }

.mail { border-bottom: 1px solid var(--ink); }

.end-name {
  font-size: clamp(72px, 11vw, 132px);
  max-width: none;
}

.studio-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal { padding: 80px 0; }
.legal h1 { font-size: clamp(36px, 5vw, 56px); }
.legal p { max-width: 40em; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 860px) {
  :root { --gutter: 24px; --deco: 180px; }

  .panel {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .deco { justify-self: start; }

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

  .cols > *,
  .facts > * { padding: 28px 0 0; }

  .cols > * + *,
  .facts > * + * {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    margin-top: 28px;
  }
}
