/* LunexLab — Dark Type Specimen
   THESIS: Premium dark editorial specimen; refuses crimson agency theater and metaphor toys.
   OWN-WORLD: Rich black #0A0A0A, newsprint #F5F3EC, synth coral #FF5A3C; Pixelify display + Archivo body; hairline rules; square controls.
   STORY: Visitor sees AI+mobile shipping proof (Fubble first), browses specimens, requests estimate.
   FIRST VIEWPORT: Split masthead — display offer left, Fubble still right, coral CTA, specimen strip below.
   FORM: Dark Type Specimen · staging Split masthead (comp-A) · seed 292b7333 · chosen emigre-bitmap-specimen.
*/

:root {
  --rich-black: #0a0a0a;
  --ink-elevated: #121212;
  --newsprint: #f5f3ec;
  --newsprint-muted: #a8a49a;
  --synth-coral: #ff5a3c;
  --rule: rgba(245, 243, 236, 0.18);
  --rail: min(1120px, calc(100% - 2.5rem));
  --font-display: "Pixelify Sans", "Courier New", monospace;
  --font-body: Archivo, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--rich-black);
  color: var(--newsprint);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--synth-coral);
}

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

.rail {
  width: var(--rail);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  width: var(--rail);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--newsprint);
}

.brand:hover {
  color: var(--newsprint);
}

.brand span {
  color: var(--synth-coral);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--newsprint-muted);
}

.nav a[aria-current="page"],
.nav a.is-active {
  color: var(--synth-coral);
}

.nav a:hover {
  color: var(--newsprint);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--newsprint);
  padding: 0.45rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--synth-coral);
  color: #fff;
  border-color: var(--synth-coral);
}

.btn--primary:hover {
  background: var(--newsprint);
  color: var(--rich-black);
  border-color: var(--newsprint);
}

.btn--ghost {
  background: transparent;
  color: var(--newsprint);
  border-color: var(--rule);
}

.btn--ghost:hover {
  border-color: var(--newsprint);
  color: var(--newsprint);
}

.hero {
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem 0 0;
}

.hero__grid {
  width: var(--rail);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  padding-bottom: 3rem;
}

.kicker {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
  position: relative;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 2px;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--synth-coral);
  animation: kicker-tick 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes kicker-tick {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  40% {
    transform: scaleX(1.8);
    opacity: 1;
  }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.hero__lede {
  margin: 1.5rem 0 0;
  max-width: 36ch;
  color: var(--newsprint-muted);
  font-size: 1.0625rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__still {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--ink-elevated);
  min-height: 28rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    transform 0.2s ease;
}

.hero__still img {
  width: 100%;
  filter: grayscale(0.35) contrast(1.05);
}

.hero__still-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.specimen-strip {
  width: var(--rail);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.specimen-strip a {
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--rule);
  text-decoration: none;
  color: var(--newsprint);
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.specimen-strip a:last-child {
  border-right: 0;
}

.specimen-strip a:hover {
  background: var(--ink-elevated);
  color: var(--newsprint);
}

.specimen-strip__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}

.specimen-strip__meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.section__head {
  width: var(--rail);
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.05;
}

.section__note {
  margin: 0;
  max-width: 28ch;
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.services-grid {
  width: var(--rail);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service {
  padding: 1.75rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.service__index {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  color: var(--synth-coral);
  font-size: 1.15rem;
}

.service h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.service p {
  margin: 0;
  color: var(--newsprint-muted);
}

.work-list {
  width: var(--rail);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.work-item {
  display: grid;
  grid-template-columns: 7rem 1fr minmax(12rem, 22rem);
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}

.work-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.work-item__index {
  font-family: var(--font-display);
  color: var(--newsprint-muted);
  font-size: 1.15rem;
}

.work-item__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.work-item__tags {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--synth-coral);
}

.work-item__body {
  margin: 0;
  max-width: 62ch;
  color: var(--newsprint-muted);
}

.work-item__media {
  border: 1px solid var(--rule);
  background: var(--ink-elevated);
  min-height: 10rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.work-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 14rem;
  filter: grayscale(0.2) contrast(1.05);
}

.prose {
  width: min(68ch, var(--rail));
  margin-inline: auto;
}

.prose h1,
.prose h2 {
  font-family: var(--font-display);
  line-height: 1.05;
}

.prose h1 {
  font-size: clamp(2.75rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
}

.prose h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 2.5rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--newsprint-muted);
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  color: var(--synth-coral);
  background: var(--ink-elevated);
  padding: 0.1em 0.35em;
  border: 1px solid var(--rule);
}

.review-grid {
  width: var(--rail);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.review-card {
  background: var(--rich-black);
  padding: 1.5rem 2.25rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.review-card:hover {
  background: var(--ink-elevated);
  color: inherit;
}

.review-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.review-card h3 {
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.review-card p {
  margin: 0;
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.contact-grid {
  width: var(--rail);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--ink-elevated);
  color: var(--newsprint);
  padding: 0.9rem 1rem;
  font: inherit;
  border-radius: 0;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--synth-coral);
  outline-offset: 0;
  border-color: transparent;
}

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

.form__note {
  margin: 0;
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.form__status {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  color: var(--newsprint);
}

.form__status.is-visible {
  display: block;
}

.form__status.is-error {
  border-color: var(--synth-coral);
  color: var(--synth-coral);
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

.site-footer__inner {
  width: var(--rail);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--newsprint-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--synth-coral);
}

.page-hero {
  width: var(--rail);
  margin: 3rem auto 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.page-hero h1 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.8rem);
  line-height: 1;
  max-width: 14ch;
}

/* —— Project overview pages —— */
.breadcrumbs {
  width: var(--rail);
  margin: 1.75rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.breadcrumbs a {
  color: var(--newsprint-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--synth-coral);
}

.project-hero {
  width: var(--rail);
  margin: 1.5rem auto 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.project-hero__index {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--synth-coral);
}

.project-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  max-width: 16ch;
}

.project-hero__lede {
  margin: 1.5rem 0 0;
  max-width: 58ch;
  color: var(--newsprint-muted);
  font-size: 1.125rem;
}

.project-hero__meta {
  margin: 1rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.project-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.project-gallery {
  width: var(--rail);
  margin: 0 auto 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.project-gallery__item {
  margin: 0;
  border: 1px solid var(--rule);
  background: var(--ink-elevated);
  overflow: hidden;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.project-gallery__item:hover img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.05);
}

.project-body {
  padding-top: 1rem;
}

.project-grid {
  width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.7fr);
  gap: 2.5rem;
  align-items: start;
}

.project-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 5.5rem;
}

.project-aside__card {
  border: 1px solid var(--rule);
  background: var(--rich-black);
  padding: 1.25rem 1.35rem;
}

.project-aside__card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.project-aside__kw {
  margin: 0 0 0.75rem;
  color: var(--synth-coral);
  font-size: 0.95rem;
  font-weight: 600;
}

.project-aside__note {
  margin: 0;
  color: var(--newsprint-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.project-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.project-aside__list a {
  color: var(--newsprint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.project-aside__list a:hover {
  color: var(--synth-coral);
  border-bottom-color: var(--synth-coral);
}

.project-aside__list li {
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.project-adjacent {
  width: var(--rail);
  margin: 0 auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-adjacent__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.project-adjacent__link:hover {
  background: var(--ink-elevated);
  border-color: rgba(255, 90, 60, 0.45);
}

.project-adjacent__link--next {
  text-align: right;
  margin-left: auto;
  width: 100%;
}

.project-adjacent__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
}

.project-adjacent__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.work-item__name a {
  color: inherit;
  text-decoration: none;
}

.work-item__name a:hover {
  color: var(--synth-coral);
}

.work-item__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--synth-coral);
  text-decoration: none;
}

.work-item__cta:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-aside {
    position: static;
  }

  .project-adjacent {
    grid-template-columns: 1fr;
  }

  .project-adjacent__link--next {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .contact-grid,
  .review-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .specimen-strip {
    grid-template-columns: 1fr 1fr;
  }

  .specimen-strip a:nth-child(2n) {
    border-right: 0;
  }

  .specimen-strip a {
    border-bottom: 1px solid var(--rule);
  }

  .work-item {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header.is-open .nav {
    display: flex;
  }
}

@media (max-width: 560px) {
  .specimen-strip {
    grid-template-columns: 1fr;
  }

  .specimen-strip a {
    border-right: 0;
  }

  .hero__still {
    min-height: 22rem;
  }
}

/* —— Motion & exploration —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.hero__title {
  overflow: hidden;
}

.hero__title.is-ready {
  animation: title-settle 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes title-settle {
  from {
    opacity: 0;
    transform: translateY(0.6em);
    letter-spacing: 0.08em;
  }
  to {
    opacity: 1;
    transform: none;
    letter-spacing: -0.02em;
  }
}

.hero__still.is-live {
  border-color: rgba(255, 90, 60, 0.45);
  box-shadow: 0 18px 40px -28px rgba(255, 90, 60, 0.55);
}

.hero__still-stack {
  position: relative;
  width: min(70%, 280px);
  aspect-ratio: 9 / 19;
}

.hero__still-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96) translateY(0.5rem);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
  filter: grayscale(0.35) contrast(1.05);
}

.hero__still-stack img.is-active {
  opacity: 1;
  transform: none;
  z-index: 1;
}

.specimen-strip a {
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.specimen-strip a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--synth-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.specimen-strip a.is-active,
.specimen-strip a:hover,
.specimen-strip a:focus-visible {
  background: var(--ink-elevated);
  color: var(--newsprint);
}

.specimen-strip a.is-active::after,
.specimen-strip a:hover::after,
.specimen-strip a:focus-visible::after {
  transform: scaleX(1);
}

.explore-hint {
  width: var(--rail);
  margin: -0.25rem auto 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--newsprint-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.explore-hint::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--synth-coral);
  flex-shrink: 0;
  animation: hint-pulse 2.2s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.explorer-dots {
  width: var(--rail);
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.explorer-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.explorer-dot:hover {
  border-color: var(--synth-coral);
}

.explorer-dot.is-active {
  background: var(--synth-coral);
  border-color: var(--synth-coral);
  transform: scale(1.35);
}

.hero__still-caption span[data-explorer-name] {
  display: inline-block;
  animation: caption-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__still.is-live .hero__still-caption span[data-explorer-name] {
  animation: caption-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes caption-in {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.work-item__media {
  overflow: hidden;
  position: relative;
}

.work-item__media img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: var(--mx, 50%) var(--my, 50%);
}

.work-item:hover .work-item__media img {
  transform: scale(1.06);
}

.review-card::after {
  content: "→";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--synth-coral);
  opacity: 0;
  transform: translateX(-0.4rem);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover::after {
  opacity: 1;
  transform: none;
}

.review-article.is-flash,
.work-item.is-flash {
  animation: target-flash 1.1s ease;
}

@keyframes target-flash {
  0% {
    box-shadow: inset 0 0 0 0 transparent;
  }
  30% {
    box-shadow: inset 3px 0 0 0 var(--synth-coral);
  }
  100% {
    box-shadow: inset 0 0 0 0 transparent;
  }
}

.filter-chip {
  animation: chip-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.filter-chip:nth-child(1) { animation-delay: 0.02s; }
.filter-chip:nth-child(2) { animation-delay: 0.06s; }
.filter-chip:nth-child(3) { animation-delay: 0.1s; }
.filter-chip:nth-child(4) { animation-delay: 0.14s; }
.filter-chip:nth-child(5) { animation-delay: 0.18s; }
.filter-chip:nth-child(6) { animation-delay: 0.22s; }

@keyframes chip-in {
  from {
    transform: translateY(0.4rem);
  }
  to {
    transform: none;
  }
}

.filter-bar {
  width: var(--rail);
  margin: 0 auto 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--newsprint-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover {
  color: var(--newsprint);
  border-color: var(--newsprint-muted);
}

.filter-chip.is-active {
  background: var(--synth-coral);
  border-color: var(--synth-coral);
  color: #fff;
}

.work-item,
.review-card,
.review-article {
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease;
}

.work-item.is-filtered-out,
.review-card.is-filtered-out,
.review-article.is-filtered-out {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  max-height: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-color: transparent !important;
  overflow: hidden;
}

.review-card {
  transition: background-color 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-article {
  width: min(68ch, var(--rail));
  margin: 0 auto 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 5rem;
}

.review-article:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service {
  transition: background-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service:hover {
  background: var(--ink-elevated);
  transform: translateY(-2px);
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary:hover::after {
  transform: translateX(120%);
}

.empty-filter {
  width: var(--rail);
  margin: 1rem auto 0;
  display: none;
  color: var(--newsprint-muted);
  font-size: 0.95rem;
}

.empty-filter.is-visible {
  display: block;
}

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

  .btn,
  .specimen-strip a,
  .review-card,
  .service,
  .work-item,
  .reveal,
  .hero__still-stack img,
  .btn--primary::after,
  .filter-chip,
  .explore-hint::before,
  .kicker::before,
  .work-item__media img {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero__title.is-ready {
    animation: none;
  }

  .hero__still {
    transform: none;
  }

  .review-card:hover,
  .service:hover,
  .work-item:hover .work-item__media img {
    transform: none;
  }

  .review-card::after {
    opacity: 0;
  }
}
