:root {
  --bond: #f4f6f8;
  --ink: #11151a;
  --mute: #3d4650;
  --hair: #11151a;
  --stamp: #c43c28;
  --stamp-ink: #fff7f4;
  --cell: #f4f6f8;
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --text: "Big Shoulders Text", "Arial Narrow", sans-serif;
  --mono: "Azeret Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hair-w: 1px;
}

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

html,
body {
  min-height: 100%;
}

html {
  background: #d8dee6;
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: #d8dee6;
  font-family: var(--text);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 2px solid var(--stamp);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ink) 28%, var(--bond));
}

::-webkit-scrollbar-track {
  background: #d8dee6;
}

input,
textarea,
button {
  font: inherit;
  caret-color: var(--stamp);
}

.visually-hidden,
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.issue {
  display: none;
}

html.js .issue {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  background: var(--bond);
  pointer-events: none;
  clip-path: inset(0);
}

html.js .issue-palm {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 4.8rem);
  line-height: 1;
  transform: scale(0.78) translateY(0.35rem);
  clip-path: inset(100% 0 0 0);
}

html.js.sprout .issue-palm {
  transform: none;
  clip-path: inset(0);
  transition: transform 0.7s var(--ease), clip-path 0.7s var(--ease);
}

html.js.ready .issue {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.62s var(--ease), visibility 0s 0.62s;
}

html.js:not(.ready) {
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 24;
  padding: 0.55rem 0.8rem;
  background: var(--ink);
  color: var(--bond);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip:focus {
  transform: none;
}

.sheet {
  min-height: calc(100dvh - 1.5rem);
  margin: 0.75rem;
  background: var(--bond);
  border: var(--hair-w) solid var(--ink);
  display: flex;
  flex-direction: column;
}

.stage {
  height: calc(100vh - 1.5rem - 2px);
  height: calc(100dvh - 1.5rem - 2px);
  max-height: calc(100vh - 1.5rem - 2px);
  max-height: calc(100dvh - 1.5rem - 2px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) minmax(6.6rem, auto);
  overflow: hidden;
}

.nav {
  display: grid;
  grid-template-columns: minmax(14rem, 18.5rem) 1fr 1fr;
  border-bottom: var(--hair-w) solid var(--ink);
}

.nav a {
  padding: 0.85rem 1.15rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-right: var(--hair-w) solid var(--ink);
}

.nav a:last-child {
  border-right: 0;
  text-align: right;
}

.nav a:nth-child(2) {
  text-align: center;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--ink);
  color: var(--bond);
  outline: none;
}

.field {
  position: relative;
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

.cast {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.85rem 0;
  border-right: var(--hair-w) solid var(--ink);
}

.cast-mark {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.js .cast-mark {
  opacity: 0;
}

html.js.ready .cast-mark {
  opacity: 1;
  transition: opacity 0.55s var(--ease);
}

.plates {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.55rem;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.plate {
  position: relative;
  margin: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #d7d2c8;
  border: var(--hair-w) solid var(--ink);
}

.plate--main {
  grid-row: 1 / 3;
}

.still {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

html.js .still {
  opacity: 0.9;
  clip-path: inset(0 14% 0 0);
}

html.js.ready .still {
  opacity: 1;
  clip-path: inset(0);
  transition: clip-path 0.8s var(--ease), opacity 0.8s var(--ease);
}

html.js.ready .plate--alt:nth-child(2) .still {
  transition-delay: 0.08s;
}

html.js.ready .plate--alt:nth-child(3) .still {
  transition-delay: 0.16s;
}

.block {
  display: grid;
  grid-template-columns: minmax(13rem, 2fr) 6.4rem minmax(4.4rem, 0.7fr) minmax(5.2rem, 0.8fr) minmax(3.8rem, 0.55fr) minmax(3.4rem, 0.45fr) minmax(11rem, 1.35fr);
  border-top: var(--hair-w) solid var(--ink);
  min-height: 6.6rem;
  overflow: visible;
}

.cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.7rem 0.85rem 0.75rem;
  border-right: var(--hair-w) solid var(--ink);
  min-width: 0;
}

.cell:last-child,
.stamp {
  border-right: 0;
}

.cell-key,
.stamp-key {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cell-name {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cell-line {
  margin: 0.35rem 0 0;
  max-width: 22ch;
  color: var(--mute);
  font-size: 0.82rem;
  line-height: 1.25;
}

.cell-val {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cell--mark {
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.2rem;
}

.palm {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 4.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.stamp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 0.9rem 0.7rem;
  background: var(--stamp);
  color: var(--stamp-ink);
  text-decoration: none;
  min-width: 0;
}

.stamp-val,
.write {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.stamp:hover,
.stamp:focus-visible {
  background: color-mix(in srgb, var(--stamp) 82%, var(--ink));
  outline: none;
}

.stamp:active {
  transform: translateY(1px);
}

.reach,
.matter,
.ask,
.colophon {
  border-top: var(--hair-w) solid var(--ink);
}

.reach,
.matter,
.ask {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.reach-head,
.matter-head,
.ask-head {
  padding: 2.6rem 1.4rem 2.8rem 2.2rem;
  border-right: var(--hair-w) solid var(--ink);
}

.reach h2,
.matter h1,
.ask h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.reach-lead,
.lead {
  margin: 0.85rem 0 0;
  max-width: 28ch;
  font-size: 1.15rem;
}

.matter-copy {
  padding: 2.6rem 2.4rem 2.8rem;
  max-width: 46rem;
}

.lead {
  max-width: 38rem;
  margin: 0 0 1.15rem;
}

.matter-copy p + p {
  margin: 0;
}

.reach-done {
  display: none;
  margin: 0 0 1.2rem;
  color: var(--stamp);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reach.is-sent .reach-done {
  display: block;
}

.reach-form {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  border: 0;
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.reach-form label:not(.hp),
.needs {
  display: block;
  margin: 0;
  padding: 0.95rem 1.1rem 1rem;
  border-bottom: var(--hair-w) solid var(--ink);
}

.reach-form label span,
.needs legend {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.needs {
  padding-bottom: 0.85rem;
}

.needs legend {
  padding: 0;
  float: left;
  width: 100%;
}

.needs label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.45rem 1rem 0 0;
  padding: 0;
  border: 0;
  font-family: var(--text);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.needs input {
  accent-color: var(--stamp);
}

.reach-form input,
.reach-form textarea {
  width: 100%;
  padding: 0.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.reach-form input.is-bad,
.reach-form textarea.is-bad {
  box-shadow: inset 0 -2px 0 var(--stamp);
}

.reach-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.write--form {
  width: 100%;
  padding: 1rem 1rem 0.95rem;
  border: 0;
  background: var(--stamp);
  color: var(--stamp-ink);
  cursor: pointer;
}

.write--form:hover,
.write--form:focus-visible {
  background: color-mix(in srgb, var(--stamp) 82%, var(--ink));
}

.write--form:active {
  transform: translateY(1px);
}

.write--form:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.form-status.is-err {
  color: var(--stamp);
}

.form-status.is-ok {
  color: var(--ink);
}

.reach-mail {
  margin: 1.6rem 0 0;
}

.ask {
  padding: 0;
}

.matter a,
.reach-mail a,
.colophon a {
  color: var(--ink);
  text-underline-offset: 0.18em;
}

.matter a:hover,
.reach-mail a:hover,
.colophon a:hover {
  color: var(--stamp);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  margin: 0;
  padding: 2.6rem 2.4rem 2.8rem;
  max-width: 38rem;
}

.faq div {
  margin: 0;
}

.faq dt,
.faq dd {
  margin: 0;
  padding: 0;
}

.faq dt {
  margin-bottom: 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.colophon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 1.5rem 2.4rem;
}

.colophon p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.map a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: var(--hair-w) solid transparent;
}

.map a:hover,
.map a:focus-visible {
  border-bottom-color: var(--stamp);
}

@media (max-width: 860px) {
  .sheet {
    margin: 0;
    border-left: 0;
    border-right: 0;
    min-height: 100dvh;
  }

  .stage {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .nav {
    display: block;
  }

  .block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cell--project,
  .stamp {
    grid-column: 1 / -1;
  }

  .cell--mark {
    display: none;
  }

  .field {
    display: flex;
    flex-direction: column;
  }

  .cast {
    display: none;
  }

  .plates {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .plate--main {
    grid-column: 1 / -1;
    height: 42vw;
    min-height: 11rem;
    max-height: 16rem;
  }

  .plate--alt {
    height: 28vw;
    min-height: 6.4rem;
    max-height: 9rem;
  }

  .nav a,
  .nav a:nth-child(2),
  .nav a:last-child {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    text-align: left;
    border-right: 0;
    border-bottom: var(--hair-w) solid var(--ink);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .cell,
  .stamp {
    border-right: 0;
    border-bottom: var(--hair-w) solid var(--ink);
    min-height: 3.6rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .stamp {
    min-height: 5.2rem;
  }

  .plate {
    border-bottom: var(--hair-w) solid var(--ink);
  }

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

  .pair label:first-child {
    border-bottom: var(--hair-w) solid var(--ink);
  }

  .reach,
  .matter,
  .ask,
  .colophon {
    padding: 0;
  }

  .reach,
  .matter,
  .ask {
    grid-template-columns: 1fr;
  }

  .reach-head,
  .matter-head,
  .ask-head {
    border-right: 0;
    border-bottom: var(--hair-w) solid var(--ink);
    padding: 2rem 1.15rem 1.7rem;
  }

  .matter-copy,
  .faq {
    padding: 1.7rem 1.15rem 2.1rem;
    max-width: none;
  }

  .reach-lead,
  .lead {
    max-width: none;
  }

  .colophon {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.4rem 1.15rem 1.8rem;
  }
}

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

  .stamp:active,
  .write--form:active {
    transform: none;
  }

  html.js .still,
  html.js.ready .still,
  html.js .cast-mark,
  html.js.ready .cast-mark,
  html.js .issue,
  html.js.sprout .issue-palm,
  html.js.ready .issue {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
    visibility: visible;
  }

  html.js .issue {
    display: none;
  }
}
