:root { color-scheme: light; --background: #d9d9d9; --blue: #2000b3; --red: #ff3034; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--background); color: #080808; font-family: Arial, Helvetica, sans-serif; font-size: 1rem; }
.opening { min-height: 100svh; padding: 0 8.65vw; display: flex; flex-direction: column; }
.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 28.5svh; }
.category { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; color: inherit; text-decoration: none; font-size: clamp(1rem, 1.38vw, 1.35rem); text-align: center; }
.circle { display: block; width: clamp(3.5rem, 5.57vw, 6rem); aspect-ratio: 1; border-radius: 50%; background: var(--blue); transition: transform 160ms ease, background 160ms ease; }
.category:hover .circle { background: var(--red); transform: scale(1.08); }
.category:focus-visible { outline: 2px solid var(--blue); outline-offset: 10px; border-radius: 2px; }
.name { width: 88%; position: relative; align-self: center; text-align: center; margin: auto 0 11.5svh; color: var(--blue); line-height: 1.05; }
.name-back { display: block; font-size: clamp(2.2rem, 7.6vw, 9rem); font-weight: 700; letter-spacing: -.025em; white-space: nowrap; }
.name-strip { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); display: block; background: var(--red); color: var(--background); font-size: clamp(1.5rem, 3.6vw, 4.3rem); line-height: 1.05; font-weight: 700; letter-spacing: -.05em; }
.project { max-width: 75rem; margin: 0 auto; padding: 3rem 7vw; min-height: 100svh; }
.back { color: var(--blue); text-underline-offset: .25em; }
.project h1 { margin: 18vh 0 2rem; font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.project .circle { margin-bottom: 3rem; }
.project p { font-size: 1rem; line-height: 1.6; }
.project-page { min-height: 100svh; padding: clamp(3.5rem, 10.3svh, 7rem) 5.6vw 5rem; }
.project-nav { position: absolute; top: 1.5rem; right: 5.6vw; font-size: .875rem; }
.project-entry + .project-entry { margin-top: 5rem; }
.project-title { margin: 0 0 .75rem; font-size: clamp(2rem, 3.6vw, 3.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -.055em; text-transform: uppercase; }
.project-title span { color: var(--background); background: var(--blue); padding: 0 .14em .08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; overflow-wrap: anywhere; }
.project-caption { max-width: 48rem; font-size: clamp(1rem, 1.38vw, 1.25rem); line-height: 1.32; }
.project-caption p { margin: 0; }
@media (max-width: 800px) { .caption-break { display: none; } }
@media (max-width: 600px) {
  .opening { padding: 0 6vw; min-height: 100svh; }
  .categories { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; margin-top: 14svh; }
  .category { gap: 1rem; }
  .circle { width: 3.6rem; }
  .name { width: 100%; margin-top: 7rem; margin-bottom: 12svh; }
  .name-back { font-size: 11.3vw; }
  .name-strip { font-size: 6vw; }
  .project { padding-top: 2rem; }
}
@media (prefers-reduced-motion: reduce) { .circle { transition: none; } }
