
:root {
  --site-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --site-tape: #FF4D00;
  --page-margin: var(--space-section);
  
  --name-rule: var(--color-ink);
  
  --palette-blue: #2240FF;
  --palette-orange: #FF4D00;
  --palette-registration: #F5009B;
  --palette-gold: #E8C384;
  --palette-sage: #9CB484;
  --palette-sky: #95CBD8;
  --palette-highlighter: #C8F000;
  --palette-olive-gold: #AE9F68;
  --prose-size: clamp(18px, 1.67vw, 24px);
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--color-paper); }
body {
  margin: 0;
  padding: var(--page-margin);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--site-sans);
  font-size: 18px;
  line-height: 1.4;
}
h1, h2, h3, p, ul { margin: 0; padding: 0; }
a {
  color: inherit;
  text-decoration-thickness: .06em;
  text-underline-offset: .16em;
}
a:focus-visible {
  outline: 3px solid var(--color-ink);
  outline-offset: 5px;
}

header { position: relative; }
.name {
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: .96;
  font-weight: 700;
  letter-spacing: -.045em;
}

.name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .062em);
  height: .157em;
  background: var(--name-rule);
}
main { flex: 1; }
.heading {
  margin: calc(var(--space-section) * 2) 0 96px -.045em;
  font-size: calc((100vw - 2 * var(--page-margin)) / 6);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.05em;
}
.heading span { display: block; white-space: nowrap; }

.entries {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-section);
}
.entry {
  min-width: 0;
  position: relative;
  container-type: inline-size;
}
.entry h3 {
  font-size: calc(var(--text-prose) * 2);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: var(--space-stack);
}
.entry > p:not(.tape) { max-width: 24ch; font-size: var(--prose-size); line-height: 1.3; text-wrap: pretty; }
.image-frame {
  border: var(--border-width) solid var(--color-ink);
  padding: var(--space-row);
}
.product-image { display: block; width: 100%; height: auto; }
.tape {
  margin-top: var(--space-row);
  padding: .22em .5em .26em;
  background: var(--site-tape);
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  text-align: right;
}
@supports (mix-blend-mode: multiply) {
  .tape {
    position: absolute;
    top: -.12em;
    left: -.5em;
    width: calc(100% + .5em);
    margin: 0;
    mix-blend-mode: multiply;
    transform: rotate(-4deg);
    transform-origin: 10% 50%;
  }
}

@container (max-width: 344px) {
  .tape {
    position: relative;
    top: auto;
    margin-top: var(--space-section);
  }
}
.foot {
  margin-top: calc(var(--space-section) * 2);
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
  gap: var(--space-section);
  text-align: right;
  font-size: var(--text-prose);
}
.intro {
  text-align: left;
  font-family: var(--font-mono);
  font-size: var(--text-base);
  line-height: 1.5;
  text-wrap: pretty;
}
.intro p + p { margin-top: .3em; }
@media (max-width: 720px) {
  :root { --page-margin: var(--space-stack); }
  .name { font-size: clamp(40px, 10.8vw, 58px); }
  .heading { margin-top: calc(var(--space-section) * 1.5); margin-bottom: 64px; }
  .entries { grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .foot { display: block; margin-top: 64px; }
  .intro { margin-bottom: var(--space-section); }
}
