/* ==========================================================================
   Mavqor — The Aubergine Atelier
   Avant-garde luxury × digital couture house
   ========================================================================== */

:root {
  --aubergine: #4b2142;
  --plum: #6d3d64;
  --lavender: #c4a4d0;
  --ivory: #fffdf9;
  --charcoal: #1e1b1f;
  --lilac: #f5f0f8;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "Bodoni Moda", "Bodoni MT", serif;
  --font-body: "Inter", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-slow: 1.4s;
  --duration-medium: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-medium) var(--ease-luxury),
    opacity var(--duration-medium) var(--ease-luxury);
}

a:hover {
  color: var(--plum);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: 0.5rem 1rem;
  background: var(--aubergine);
  color: var(--ivory);
  z-index: 1000;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Floating identity plaque & micro navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.identity-plaque {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--aubergine);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--aubergine);
  line-height: 1.15;
  padding: 0.35rem 0;
  background: transparent;
  transition: background var(--duration-medium) var(--ease-luxury),
    color var(--duration-medium) var(--ease-luxury);
}

.identity-plaque span {
  display: block;
}

.identity-plaque:hover {
  background: var(--aubergine);
  color: var(--ivory);
}

.micro-nav {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
}

.micro-nav a {
  position: relative;
}

.micro-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--aubergine);
  transition: width var(--duration-medium) var(--ease-luxury);
}

.micro-nav a:hover::after {
  width: 100%;
}

.nav-dot {
  margin: 0 0.35em;
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   Reveal animations (CSS only)
   -------------------------------------------------------------------------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(8px, -12px) rotate(2deg);
  }
  66% {
    transform: translate(-6px, 8px) rotate(-1deg);
  }
}

@keyframes floatAlt {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, 15px) scale(1.02);
  }
}

.reveal {
  animation: fadeUp var(--duration-slow) var(--ease-luxury) both;
}

.reveal--delay-1 {
  animation-delay: 0.25s;
}

.reveal--delay-2 {
  animation-delay: 0.5s;
}

/* --------------------------------------------------------------------------
   Section index labels
   -------------------------------------------------------------------------- */

.section-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--lavender);
  display: block;
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Introduction — full-screen artistic opening
   -------------------------------------------------------------------------- */

.introduction {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 18vh, 10rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}

.introduction__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 48% 52% 48% 52%;
  opacity: 0.35;
}

.shape--1 {
  width: clamp(280px, 42vw, 520px);
  height: clamp(320px, 48vw, 580px);
  top: -8%;
  right: -6%;
  background: linear-gradient(145deg, var(--lilac) 0%, var(--lavender) 55%, transparent 100%);
  animation: float 18s ease-in-out infinite;
}

.shape--2 {
  width: clamp(200px, 28vw, 380px);
  height: clamp(240px, 32vw, 420px);
  bottom: 15%;
  left: -4%;
  background: var(--aubergine);
  opacity: 0.12;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  animation: floatAlt 22s ease-in-out infinite;
}

.shape--3 {
  width: clamp(120px, 18vw, 220px);
  height: clamp(140px, 20vw, 260px);
  top: 35%;
  left: 38%;
  background: var(--plum);
  opacity: 0.08;
  animation: float 14s ease-in-out infinite reverse;
}

.shape--4 {
  width: clamp(80px, 12vw, 160px);
  height: clamp(100px, 14vw, 180px);
  bottom: 28%;
  right: 22%;
  border: 1px solid var(--lavender);
  background: transparent;
  opacity: 0.5;
  animation: floatAlt 16s ease-in-out infinite;
}

.introduction__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.introduction__label {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-style: italic;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: var(--plum);
  margin-bottom: var(--space-md);
}

.introduction__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  transition: letter-spacing var(--duration-slow) var(--ease-luxury);
}

.introduction__headline:hover {
  letter-spacing: 0.01em;
}

.introduction__editorial {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 36rem;
  color: var(--charcoal);
  opacity: 0.85;
}

.introduction__scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3rem);
  right: clamp(1.5rem, 6vw, 5rem);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.5;
  writing-mode: vertical-rl;
}

/* --------------------------------------------------------------------------
   Collections — luxury exhibition entries
   -------------------------------------------------------------------------- */

.collections {
  padding: var(--space-2xl) clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(75, 33, 66, 0.12);
}

.collections__header {
  margin-bottom: clamp(3rem, 8vw, 6rem);
  max-width: 20rem;
}

.collections__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--aubergine);
}

.collections__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--plum);
  margin-top: var(--space-sm);
}

.collections__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.collection-entry {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(75, 33, 66, 0.1);
  transition: padding-left var(--duration-medium) var(--ease-luxury);
}

.collection-entry:first-child {
  border-top: 1px solid rgba(75, 33, 66, 0.1);
}

.collection-entry:hover {
  padding-left: 1.5rem;
}

.collection-entry__num {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--lavender);
  padding-top: 0.25rem;
}

.collection-entry__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  transition: color var(--duration-medium) var(--ease-luxury),
    letter-spacing var(--duration-medium) var(--ease-luxury);
}

.collection-entry:hover .collection-entry__name {
  color: var(--aubergine);
  letter-spacing: 0.06em;
}

.collection-entry__desc {
  font-size: 0.875rem;
  max-width: 32rem;
  opacity: 0.7;
  line-height: 1.8;
}

.collection-entry__body::before {
  content: "Collection";
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Artist statement
   -------------------------------------------------------------------------- */

.statement {
  padding: clamp(8rem, 20vh, 14rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  background: var(--lilac);
}

.statement__quote {
  max-width: 48rem;
  margin: 0 auto;
}

.statement__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--aubergine);
  letter-spacing: 0.01em;
}

.statement__cite {
  display: block;
  margin-top: clamp(2rem, 5vw, 4rem);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-style: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Gallery grid — museum installation map
   -------------------------------------------------------------------------- */

.gallery {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 5rem) var(--space-2xl);
}

.gallery__header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.gallery__cell {
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 2vw, 1.75rem);
  background: var(--lilac);
  border: 1px solid rgba(75, 33, 66, 0.08);
  min-height: 140px;
  transition: background var(--duration-medium) var(--ease-luxury),
    border-color var(--duration-medium) var(--ease-luxury);
}

.gallery__cell:hover {
  background: var(--aubergine);
  border-color: var(--aubergine);
}

.gallery__cell:hover .gallery__label {
  color: var(--ivory);
  letter-spacing: 0.2em;
}

.gallery__cell--large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 280px;
}

.gallery__cell--tall {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 280px;
}

.gallery__cell--wide {
  grid-column: span 6;
}

.gallery__cell:not(.gallery__cell--large):not(.gallery__cell--tall):not(.gallery__cell--wide) {
  grid-column: span 3;
}

.gallery__label {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--aubergine);
  letter-spacing: 0.08em;
  transition: color var(--duration-medium) var(--ease-luxury),
    letter-spacing var(--duration-medium) var(--ease-luxury);
}

/* --------------------------------------------------------------------------
   Numbers — artistic scatter layout
   -------------------------------------------------------------------------- */

.numbers {
  padding: clamp(6rem, 15vh, 10rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  min-height: 70vh;
}

.numbers__field {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  min-height: 420px;
}

.metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric__value {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--aubergine);
  transition: letter-spacing var(--duration-slow) var(--ease-luxury);
}

.metric:hover .metric__value {
  letter-spacing: 0.05em;
}

.metric__value--symbol {
  font-family: var(--font-display);
  font-style: italic;
}

.metric__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.8;
}

.metric--1 {
  top: 0;
  left: 5%;
}

.metric--2 {
  top: 18%;
  right: 8%;
  text-align: right;
}

.metric--3 {
  bottom: 28%;
  left: 32%;
}

.metric--4 {
  bottom: 5%;
  right: 12%;
  text-align: right;
}

/* --------------------------------------------------------------------------
   The Atelier — split screen
   -------------------------------------------------------------------------- */

.atelier {
  border-top: 1px solid rgba(75, 33, 66, 0.12);
}

.atelier__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.atelier__editorial {
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atelier__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--aubergine);
  margin-bottom: var(--space-md);
}

.atelier__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--plum);
  margin-bottom: var(--space-lg);
  max-width: 28rem;
}

.atelier__text {
  font-size: 0.875rem;
  line-height: 1.9;
  opacity: 0.8;
  max-width: 26rem;
  margin-bottom: var(--space-md);
}

.atelier__text:last-of-type {
  margin-bottom: 0;
}

.atelier__composition {
  position: relative;
  background: var(--lilac);
  overflow: hidden;
  min-height: 400px;
}

.composition__plane {
  position: absolute;
  border-radius: 50% 50% 45% 55% / 52% 48% 52% 48%;
}

.composition__plane--1 {
  width: 70%;
  height: 55%;
  top: 10%;
  right: -15%;
  background: var(--aubergine);
  opacity: 0.85;
  animation: float 20s ease-in-out infinite;
}

.composition__plane--2 {
  width: 45%;
  height: 40%;
  bottom: 20%;
  left: 10%;
  background: var(--plum);
  opacity: 0.6;
  animation: floatAlt 16s ease-in-out infinite;
}

.composition__plane--3 {
  width: 25%;
  height: 30%;
  top: 45%;
  left: 45%;
  background: var(--lavender);
  opacity: 0.9;
  animation: float 12s ease-in-out infinite reverse;
}

.composition__line {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 1px;
  background: var(--ivory);
  opacity: 0.4;
  transform: rotate(-12deg);
}

.composition__circle {
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  border: 1px solid var(--ivory);
  border-radius: 50%;
  opacity: 0.5;
  animation: floatAlt 14s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Archive timeline
   -------------------------------------------------------------------------- */

.archive {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 5rem) var(--space-2xl);
  background: var(--ivory);
}

.archive__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.archive__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--aubergine);
}

.archive__timeline {
  list-style: none;
  max-width: 40rem;
  margin-left: clamp(0, 8vw, 15%);
}

.archive__entry {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(75, 33, 66, 0.08);
  transition: transform var(--duration-medium) var(--ease-luxury);
}

.archive__entry:hover {
  transform: translateX(0.75rem);
}

.archive__entry--future .archive__year,
.archive__entry--future .archive__event {
  opacity: 0.55;
  font-style: italic;
}

.archive__year {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--lavender);
}

.archive__event {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Invitation
   -------------------------------------------------------------------------- */

.invitation {
  padding: clamp(6rem, 18vh, 12rem) clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(
    165deg,
    var(--plum) 0%,
    var(--aubergine) 45%,
    #3a1a34 100%
  );
  text-align: center;
}

.invitation__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.invitation__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
}

.invitation__button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 1.25rem 3rem;
  border: 1px solid rgba(255, 253, 249, 0.6);
  background: transparent;
  transition: background var(--duration-medium) var(--ease-luxury),
    border-color var(--duration-medium) var(--ease-luxury),
    letter-spacing var(--duration-medium) var(--ease-luxury);
}

.invitation__button:hover {
  background: var(--ivory);
  color: var(--aubergine);
  border-color: var(--ivory);
  letter-spacing: 0.45em;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 5rem) var(--space-lg);
  border-top: 1px solid rgba(75, 33, 66, 0.1);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: 72rem;
  margin: 0 auto;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--aubergine);
  margin-bottom: var(--space-lg);
}

.contact__address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: var(--space-lg);
}

.contact__address a:hover {
  color: var(--aubergine);
}

.contact__hours {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
  line-height: 1.9;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--charcoal);
  padding: 0.5rem 0;
  outline: none;
  resize: vertical;
  transition: border-color var(--duration-medium) var(--ease-luxury);
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--aubergine);
}

.contact__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aubergine);
  background: none;
  border: none;
  border-bottom: 1px solid var(--aubergine);
  padding: 0.25rem 0;
  cursor: pointer;
  transition: letter-spacing var(--duration-medium) var(--ease-luxury),
    opacity var(--duration-medium) var(--ease-luxury);
}

.contact__submit:hover {
  letter-spacing: 0.4em;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Footer — massive wordmark
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.site-footer__wordmark {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--aubergine);
  opacity: 0.06;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
  margin-bottom: -0.15em;
}

.site-footer__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(75, 33, 66, 0.08);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

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

  .atelier__composition {
    min-height: 50vh;
  }

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

  .gallery__cell--large,
  .gallery__cell--tall,
  .gallery__cell--wide,
  .gallery__cell:not(.gallery__cell--large):not(.gallery__cell--tall):not(.gallery__cell--wide) {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 160px;
  }

  .gallery__cell--large,
  .gallery__cell--tall {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .micro-nav {
    font-size: 0.5625rem;
    max-width: 55%;
    text-align: right;
    line-height: 1.8;
  }

  .nav-dot {
    display: none;
  }

  .micro-nav a {
    display: inline-block;
    margin-left: 0.5em;
  }

  .micro-nav a::before {
    content: "· ";
    opacity: 0.4;
  }

  .micro-nav a:first-of-type::before {
    content: "";
  }

  .introduction {
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .introduction__scroll-hint {
    display: none;
  }

  .collection-entry {
    grid-template-columns: 3rem 1fr;
  }

  .numbers__field {
    min-height: 520px;
  }

  .metric--1 {
    left: 0;
  }

  .metric--2 {
    right: 0;
    top: 25%;
  }

  .metric--3 {
    left: 0;
    bottom: 35%;
  }

  .metric--4 {
    right: 0;
    bottom: 8%;
  }

  .archive__timeline {
    margin-left: 0;
  }

  .archive__entry {
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery__cell--large,
  .gallery__cell--tall,
  .gallery__cell--wide,
  .gallery__cell:not(.gallery__cell--large):not(.gallery__cell--tall):not(.gallery__cell--wide) {
    grid-column: span 6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
