:root {
  --ground: #E8E7E4;
  --ink: #2C2E30;
  --muted: #646761;
  --thread-coral: #EC7A50;
  --thread-gold: #EFB54C;
  --thread-blue: #8FAECB;
  --thread-cream: #F2F0EB;
}

* { box-sizing: border-box; }

html, body { margin: 0; }

body {
  font-family: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  background: var(--ground);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page {
  min-height: 100vh;
  min-height: 100svh;           /* iOS toolbar-safe */
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(20px, 3.5vw, 40px);
  background: var(--ground);
  color: var(--ink);
}

.corners {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stage {
  display: grid;
  place-items: center;
  min-width: 0;
}

.wordmark {
  margin: 0;
  font-size: clamp(56px, 15.5vw, 208px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.05em;
  text-transform: lowercase;
  color: var(--ink);
}

.i   { position: relative; display: inline-block; }
.dot {
  position: absolute;
  left: .0525em;                /* stem centre .140em − half the dot */
  bottom: .63em;
  width: .175em;
  height: .175em;
  border-radius: 999px;
  background: var(--ink);
}
