:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --page-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --content-width: 100rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 18rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scene-shell,
.museum-header__bar,
.museum-footer {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.museum-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: blur(1.25rem);
}

.museum-header__bar {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.museum-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--header-ink);
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.museum-brand__mark {
  width: 1.05rem;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.museum-nav {
  min-width: 0;
}

.museum-nav ul {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 690;
}

.museum-nav a {
  position: relative;
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.42rem;
  text-decoration: none;
}

.museum-nav a::after {
  position: absolute;
  right: 0.4rem;
  bottom: 0.18rem;
  left: 0.4rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.museum-nav a:hover::after,
.museum-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.scene-kicker {
  margin: 0 0 1.25rem;
  color: var(--accent-strong);
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 820;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scene-lede {
  max-width: 34rem;
  margin: clamp(1.6rem, 3vw, 2.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.next-room {
  padding-block: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--line);
}

.next-room a {
  display: grid;
  grid-template-columns: minmax(5rem, 0.48fr) minmax(12rem, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--ink);
  text-decoration: none;
}

.next-room a > span:first-child {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-room strong {
  font-size: clamp(3rem, 7.3vw, 7.7rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.next-room__arrow {
  display: grid;
  width: clamp(3.75rem, 6vw, 6rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.next-room a:hover .next-room__arrow {
  background: var(--ink);
  color: var(--page);
  transform: translateX(0.35rem);
}

.museum-footer {
  display: flex;
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.museum-footer p {
  margin: 0;
}

.museum-footer nav {
  display: flex;
  gap: 1.5rem;
}

.museum-footer a {
  color: var(--ink);
  font-weight: 720;
  text-underline-offset: 0.25em;
}

/* Djurkanalen */

.exhibit-page--djur {
  --page: #f2eef7;
  --ink: #25152f;
  --muted: #665a6e;
  --accent: #8154bd;
  --accent-strong: #684096;
  --focus: #8140c0;
  --line: rgba(60, 35, 78, 0.16);
  --line-strong: rgba(60, 35, 78, 0.38);
  --header-line: rgba(50, 28, 65, 0.14);
  --header-bg: rgba(246, 243, 249, 0.9);
  --header-ink: #24172b;
}

.exhibit-page--djur h1,
.exhibit-page--djur h2,
.exhibit-page--djur h3,
.exhibit-page--djur .next-room strong {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

.djur-hero {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(27rem, 1.12fr);
  min-height: calc(100svh - 5.25rem);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.djur-hero__copy {
  position: relative;
  z-index: 3;
}

.djur-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.5rem, 10.2vw, 10.8rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.76;
}

.djur-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.djur-hero__notes span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.djur-orbit-stage {
  position: relative;
  width: min(100%, 46rem);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border-radius: 50% 47% 52% 45%;
  background:
    radial-gradient(circle at 33% 27%, rgba(255, 255, 255, 0.9) 0 1.6%, transparent 1.9%),
    radial-gradient(circle at 50% 48%, #d8cae9 0 24%, transparent 24.3%),
    linear-gradient(145deg, #e7e0f0 0 43%, #b99bd9 43% 70%, #7545a2 70% 100%);
  box-shadow: 0 3rem 8rem rgba(76, 44, 104, 0.22);
  isolation: isolate;
  animation: djur-stage-arrive 900ms cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

.djur-orbit-stage::before,
.djur-orbit-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.djur-orbit-stage::before {
  z-index: -1;
  right: -15%;
  bottom: -14%;
  width: 64%;
  aspect-ratio: 1;
  background: #2e153f;
}

.djur-orbit-stage::after {
  top: 8%;
  left: 8%;
  width: 17%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(1px);
}

.djur-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(45, 23, 62, 0.38);
  border-radius: 50%;
}

.djur-orbit--outer {
  inset: 10% 6% 20% 6%;
  transform: rotate(24deg);
  animation: djur-orbit-outer 18s ease-in-out infinite alternate;
}

.djur-orbit--middle {
  inset: 24% 18% 12% 10%;
  transform: rotate(-30deg);
  animation: djur-orbit-middle 14s ease-in-out infinite alternate;
}

.djur-orbit--inner {
  inset: 31% 25% 29% 22%;
  border-color: rgba(45, 23, 62, 0.28);
  transform: rotate(9deg);
}

.djur-satellite {
  position: absolute;
  z-index: 3;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 0.6rem rgba(255, 255, 255, 0.1);
  animation: djur-satellite-float 5s ease-in-out infinite alternate;
}

.djur-satellite--one {
  top: 16%;
  right: 20%;
  width: 10%;
  background: #f7f0d9;
}

.djur-satellite--two {
  bottom: 23%;
  left: 14%;
  width: 7%;
  background: #6c3c97;
  animation-delay: -2.1s;
}

.djur-satellite--three {
  top: 24%;
  left: 18%;
  width: 3.5%;
  background: #2d143e;
  animation-delay: -3.4s;
}

.djur-orbit-stage__glow {
  position: absolute;
  z-index: 0;
  top: 32%;
  left: 28%;
  width: 33%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(2.5rem);
}

.djur-orbit-stage__word {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 17%;
  color: #281338;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -0.09em;
  line-height: 1;
}

.djur-questions {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #2d183d;
  color: #f7f1fa;
  isolation: isolate;
}

.djur-questions__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-block: clamp(5rem, 10vw, 10rem);
}

.djur-questions .scene-kicker {
  color: #bca2dc;
}

.djur-questions h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.djur-questions__answer {
  max-width: 34rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0 auto;
  color: rgba(247, 241, 250, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.65;
}

.djur-questions__halo,
.djur-questions__halo span {
  position: absolute;
  border: 1px solid rgba(220, 199, 240, 0.15);
  border-radius: 50%;
}

.djur-questions__halo {
  z-index: 0;
  top: -26vw;
  right: -17vw;
  width: min(78vw, 76rem);
  aspect-ratio: 1;
  border-width: 0;
  background: radial-gradient(circle, rgba(141, 93, 183, 0.35), transparent 65%);
}

.djur-questions__halo span:nth-child(1) {
  inset: 8%;
}

.djur-questions__halo span:nth-child(2) {
  inset: 24%;
}

.djur-questions__halo span:nth-child(3) {
  inset: 40%;
  background: rgba(166, 119, 208, 0.13);
}

.djur-question-stream {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(5rem, 12vw, 10rem);
  border-top: 1px solid rgba(244, 234, 249, 0.18);
  border-left: 1px solid rgba(244, 234, 249, 0.18);
}

.djur-question-stream span {
  display: grid;
  min-height: clamp(7rem, 13vw, 12rem);
  place-items: end start;
  padding: clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(244, 234, 249, 0.18);
  border-bottom: 1px solid rgba(244, 234, 249, 0.18);
  color: #dfcdec;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 3.6rem);
  letter-spacing: -0.04em;
}

.djur-together {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: clamp(4rem, 8vw, 8rem);
  padding-block: clamp(6rem, 11vw, 11rem);
}

.djur-together__intro {
  display: grid;
  grid-template-columns: minmax(13rem, 0.5fr) minmax(20rem, 1.5fr);
  align-items: end;
  gap: 2rem;
}

.djur-together__intro .scene-kicker {
  margin: 0;
}

.djur-together h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.djur-together__garden {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.djur-petal {
  position: relative;
  display: flex;
  min-height: clamp(23rem, 32vw, 34rem);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(74, 42, 94, 0.14);
  background: #d8c9e8;
  isolation: isolate;
}

.djur-petal::before {
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
}

.djur-petal h3 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.djur-petal p {
  max-width: 18rem;
  margin: 1.15rem 0 0;
  color: rgba(37, 21, 47, 0.7);
  font-size: 0.9rem;
}

.djur-petal--one {
  border-radius: 14rem 14rem 1rem 1rem;
}

.djur-petal--one::before {
  top: 18%;
  right: -8%;
  border: 3rem solid rgba(104, 64, 150, 0.35);
}

.djur-petal--two {
  border-radius: 1rem 10rem 1rem 1rem;
  background: #e7e0ed;
}

.djur-petal--two::before {
  top: 17%;
  left: 17%;
  border: 1px solid rgba(78, 43, 100, 0.33);
  box-shadow: 1.4rem 1.4rem 0 rgba(125, 82, 164, 0.15);
}

.djur-petal--three {
  border-color: transparent;
  border-radius: 1rem 1rem 13rem 1rem;
  background: #76549a;
  color: #fffafc;
}

.djur-petal--three::before {
  top: 13%;
  left: 18%;
  background: #bfa8d6;
  box-shadow: 2rem 2rem 0 #4b2e66;
}

.djur-petal--three p {
  color: rgba(255, 250, 252, 0.76);
}

.next-room--djur {
  background: radial-gradient(circle at 80% 50%, rgba(126, 82, 171, 0.15), transparent 24%);
}

/* 9 månader */

.exhibit-page--nine {
  --page: #faeee7;
  --ink: #371c20;
  --muted: #755c59;
  --accent: #c8453e;
  --accent-strong: #a92f34;
  --focus: #a92f34;
  --line: rgba(96, 43, 41, 0.16);
  --line-strong: rgba(96, 43, 41, 0.4);
  --header-line: rgba(86, 37, 36, 0.13);
  --header-bg: rgba(253, 245, 239, 0.9);
  --header-ink: #351c20;
}

.exhibit-page--nine .museum-brand__mark {
  border-radius: 0 50% 50%;
  transform: rotate(45deg);
}

.nine-hero {
  display: grid;
  grid-template-columns: minmax(21rem, 0.92fr) minmax(27rem, 1.08fr);
  min-height: calc(100svh - 5.25rem);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.nine-hero__copy {
  position: relative;
  z-index: 3;
}

.nine-hero h1 {
  display: grid;
  max-width: 7ch;
  margin: 0;
  font-size: clamp(4.8rem, 10.4vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.nine-hero h1 span {
  color: var(--accent-strong);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.42em;
  font-style: italic;
  font-weight: 500;
  line-height: 0.6;
}

.nine-embrace {
  position: relative;
  width: min(100%, 45rem);
  aspect-ratio: 0.91;
  justify-self: end;
  overflow: hidden;
  border-radius: 48% 48% 4% 48%;
  background: linear-gradient(148deg, #f1c8b8 0 38%, #df8b7d 38% 69%, #aa343a 69% 100%);
  box-shadow: 0 3rem 8rem rgba(109, 50, 46, 0.2);
  isolation: isolate;
  animation: nine-embrace-arrive 950ms cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

.nine-embrace::before {
  position: absolute;
  z-index: -1;
  right: -20%;
  bottom: -8%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #752b34;
  content: "";
}

.nine-embrace__ring {
  position: absolute;
  border: 1px solid rgba(88, 33, 36, 0.32);
  border-radius: 50%;
}

.nine-embrace__ring--one {
  inset: 8% 8% 13% 8%;
  animation: nine-ring-breathe 7s ease-in-out infinite alternate;
}

.nine-embrace__ring--two {
  inset: 20% 20% 23% 20%;
  animation: nine-ring-breathe 7s 1.3s ease-in-out infinite alternate-reverse;
}

.nine-embrace__ring--three {
  inset: 33% 33% 35% 33%;
  background: rgba(255, 239, 225, 0.19);
}

.nine-embrace__sun {
  position: absolute;
  top: 18%;
  left: 14%;
  width: 6%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff1df;
  box-shadow: 0 0 0 0.75rem rgba(255, 241, 223, 0.11);
}

.nine-embrace__number {
  position: absolute;
  z-index: 2;
  top: 3%;
  right: 5%;
  color: rgba(255, 239, 225, 0.72);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(18rem, 38vw, 38rem);
  font-style: italic;
  letter-spacing: -0.14em;
  line-height: 1;
}

.nine-embrace__word {
  position: absolute;
  z-index: 3;
  bottom: 9%;
  left: 9%;
  color: #551f27;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.nine-journey {
  min-height: 100svh;
  overflow: hidden;
  background: #762d35;
  color: #fff2e7;
}

.nine-journey__inner {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: clamp(4rem, 9vw, 8rem);
  padding-block: clamp(5rem, 10vw, 10rem);
}

.nine-journey .scene-kicker {
  color: #f4b6a6;
}

.nine-journey h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 10.5rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.month-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(0.1rem, 0.7vw, 0.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.month-line::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 229, 216, 0.33);
  content: "";
}

.month-line li {
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 232, 220, 0.44);
  border-radius: 50%;
  background: #762d35;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.month-line li:nth-child(2),
.month-line li:nth-child(5),
.month-line li:nth-child(8) {
  transform: translateY(-18%);
}

.month-line li:nth-child(3),
.month-line li:nth-child(6) {
  transform: translateY(18%);
}

.month-line li:last-child {
  border-color: #f5c3af;
  background: #f2b8a4;
  color: #5a222a;
}

.month-line span {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1rem, 2.3vw, 2.2rem);
  font-style: italic;
}

.nine-journey__whisper {
  margin: 0;
  color: rgba(255, 242, 231, 0.7);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.04em;
}

.nine-topics {
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: clamp(4rem, 8vw, 7rem);
  padding-block: clamp(6rem, 10vw, 10rem);
}

.nine-topics__heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(22rem, 1.55fr);
  align-items: end;
  gap: 2rem;
}

.nine-topics__heading .scene-kicker {
  margin: 0;
}

.nine-topics h2 {
  max-width: 11ch;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7.6vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.nine-topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 1.4vw, 1.4rem);
}

.nine-topic {
  position: relative;
  display: flex;
  min-height: clamp(24rem, 34vw, 34rem);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
  isolation: isolate;
}

.nine-topic h3 {
  position: relative;
  z-index: 2;
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 690;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.nine-topic i {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
}

.nine-topic--waiting {
  border-radius: 16rem 16rem 1rem 1rem;
  background: #efc4b4;
  color: #62242a;
}

.nine-topic--waiting i {
  top: 10%;
  right: -3%;
  width: 58%;
  border: clamp(1.8rem, 4vw, 4rem) solid rgba(182, 63, 59, 0.29);
}

.nine-topic--birth {
  border-radius: 1rem 14rem 1rem 1rem;
  background: #d96762;
  color: #fff0e5;
}

.nine-topic--birth i {
  top: 13%;
  left: 20%;
  width: 46%;
  background: #f0a291;
  box-shadow: 2.2rem 2.2rem 0 #b84246;
}

.nine-topic--baby {
  border-radius: 1rem 1rem 1rem 14rem;
  background: #f5ded3;
  color: #5b2428;
}

.nine-topic--baby i {
  top: 11%;
  right: 16%;
  width: 42%;
  border: 1px solid rgba(103, 44, 45, 0.3);
  box-shadow: inset 0 0 0 2.2rem rgba(214, 113, 100, 0.11);
}

.nine-topic--mixed {
  border-radius: 1rem 1rem 14rem 1rem;
  background: #752d35;
  color: #fff2e8;
}

.nine-topic--mixed i {
  top: 12%;
  left: 15%;
  width: 54%;
  background: linear-gradient(150deg, #d66c64 0 50%, #a63d42 50% 100%);
}

.nine-safety {
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.nine-safety p {
  max-width: 62rem;
  margin: 0;
}

.nine-safety strong {
  color: var(--ink);
}

.next-room--nine {
  background: radial-gradient(circle at 15% 45%, rgba(199, 68, 61, 0.11), transparent 26%);
}

/* Illustrated layers: small, recognisable moments give both rooms a heartbeat. */

.exhibit-page--djur,
.exhibit-page--nine {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(70, 42, 72, 0.045) 0.7px, transparent 0.8px);
  background-size: 7px 7px;
}

.djur-orbit-stage {
  border: 0.55rem solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.42), transparent 40%),
    radial-gradient(circle at 76% 14%, #fff6c9 0 7%, rgba(255, 246, 201, 0.32) 7.3% 13%, transparent 13.3%),
    linear-gradient(168deg, #e9e2f4 0 48%, #cfc0e5 48% 100%);
  box-shadow:
    0 3rem 7rem rgba(76, 44, 104, 0.2),
    inset 0 0 0 1px rgba(74, 42, 94, 0.11),
    inset 0 -3rem 5rem rgba(87, 55, 110, 0.1);
}

.djur-orbit-stage::before {
  z-index: 0;
  right: -8%;
  bottom: -26%;
  width: 78%;
  background: #5f3c7b;
  box-shadow: -17rem 1rem 0 2rem #8f74ad;
}

.djur-orbit-stage::after {
  z-index: 0;
  top: auto;
  right: auto;
  bottom: -12%;
  left: -14%;
  width: 67%;
  background: #b7a1cf;
  box-shadow: inset -2rem 2rem 3rem rgba(255, 255, 255, 0.15);
}

.djur-sunbeam {
  position: absolute;
  z-index: 0;
  top: -12%;
  right: -9%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(124, 88, 154, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(255, 246, 201, 0.09),
    0 0 0 5rem rgba(255, 246, 201, 0.05);
}

.djur-cloud {
  position: absolute;
  z-index: 1;
  width: 14%;
  height: 3.8%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 0.45rem 0.5rem rgba(83, 56, 106, 0.08));
  animation: djur-cloud-drift 8s ease-in-out infinite alternate;
}

.djur-cloud::before,
.djur-cloud::after {
  position: absolute;
  bottom: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.djur-cloud::before {
  left: 17%;
  width: 48%;
}

.djur-cloud::after {
  right: 13%;
  width: 64%;
}

.djur-cloud--one {
  top: 18%;
  left: 7%;
}

.djur-cloud--two {
  top: 30%;
  right: 10%;
  width: 10%;
  opacity: 0.68;
  animation-delay: -3.5s;
}

.djur-orbit {
  z-index: 1;
  border-style: dashed;
  border-color: rgba(72, 44, 91, 0.17);
}

.djur-orbit--outer {
  inset: 7% 4% 17% 3%;
}

.djur-orbit--middle {
  inset: 23% 16% 10% 9%;
}

.djur-orbit--inner,
.djur-orbit-stage__glow {
  display: none;
}

.djur-satellite {
  z-index: 2;
  box-shadow: 0 0 0 0.45rem rgba(255, 255, 255, 0.14);
}

.djur-satellite--one {
  top: 11%;
  right: 24%;
  width: 2.4%;
  background: #fffaf0;
}

.djur-satellite--two {
  bottom: 32%;
  left: 7%;
  width: 1.8%;
  background: #fff3c0;
}

.djur-satellite--three {
  top: 36%;
  left: 22%;
  width: 1.4%;
  background: #68488a;
}

.djur-hill {
  position: absolute;
  z-index: 2;
  bottom: -19%;
  border-radius: 50% 50% 0 0;
}

.djur-hill--back {
  right: -8%;
  width: 78%;
  height: 54%;
  background: #8d70a9;
  transform: rotate(-7deg);
}

.djur-hill--front {
  bottom: -25%;
  left: -8%;
  width: 75%;
  height: 48%;
  background: #684986;
  transform: rotate(8deg);
}

.djur-animal,
.djur-animal i {
  position: absolute;
  display: block;
}

.djur-animal {
  z-index: 6;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 1rem 0.7rem rgba(54, 30, 67, 0.16));
}

.djur-animal--dog {
  bottom: 7%;
  left: 29%;
  width: 43%;
  height: 53%;
  animation: djur-dog-bob 4.8s ease-in-out infinite;
}

.djur-animal--dog .djur-body {
  z-index: 0;
  bottom: -2%;
  left: 20%;
  width: 62%;
  height: 53%;
  border-radius: 48% 48% 16% 16%;
  background: #f3dcae;
}

.djur-animal--dog .djur-face {
  z-index: 3;
  top: 4%;
  left: 10%;
  width: 80%;
  height: 59%;
  border: 2px solid rgba(79, 47, 69, 0.14);
  border-radius: 46% 46% 42% 42%;
  background:
    radial-gradient(circle at 35% 47%, #3d2938 0 2.5%, #fff 2.9% 4.1%, transparent 4.5%),
    radial-gradient(circle at 65% 47%, #3d2938 0 2.5%, #fff 2.9% 4.1%, transparent 4.5%),
    radial-gradient(circle at 68% 27%, #bd8b67 0 14%, transparent 14.5%),
    #f5deb0;
  box-shadow: inset 0 -1rem 2rem rgba(174, 121, 88, 0.08);
}

.djur-animal--dog .djur-ear {
  z-index: 2;
  top: 2%;
  width: 34%;
  height: 43%;
  border-radius: 55% 55% 68% 68%;
  background: #77577f;
}

.djur-animal--dog .djur-ear--left {
  left: 0;
  transform: rotate(19deg);
}

.djur-animal--dog .djur-ear--right {
  right: 0;
  transform: rotate(-19deg);
}

.djur-animal--dog .djur-muzzle {
  z-index: 4;
  top: 41%;
  left: 32%;
  width: 36%;
  height: 25%;
  border-radius: 47% 47% 55% 55%;
  background: #fff2d2;
}

.djur-animal--dog .djur-muzzle::before {
  position: absolute;
  top: 12%;
  left: 37%;
  width: 27%;
  aspect-ratio: 1.25;
  border-radius: 60% 60% 48% 48%;
  background: #3d2938;
  content: "";
}

.djur-animal--dog .djur-muzzle::after {
  position: absolute;
  bottom: 18%;
  left: 39%;
  width: 23%;
  height: 16%;
  border-bottom: 2px solid #8e4b55;
  border-radius: 50%;
  content: "";
}

.djur-animal--dog .djur-scarf {
  z-index: 4;
  bottom: 32%;
  left: 20%;
  width: 62%;
  height: 9%;
  border-radius: 999px;
  background: #da6f72;
  transform: rotate(-3deg);
}

.djur-animal--dog .djur-scarf::after {
  position: absolute;
  right: 3%;
  bottom: -140%;
  width: 18%;
  height: 170%;
  border-radius: 0.2rem 0.2rem 0.8rem 0.2rem;
  background: #c95965;
  content: "";
  transform: rotate(-14deg);
}

.djur-animal--cat {
  z-index: 5;
  bottom: 8%;
  left: 5%;
  width: 33%;
  height: 39%;
  transform: rotate(-4deg);
  animation: djur-cat-peek 5.5s ease-in-out infinite;
}

.djur-animal--cat .djur-face {
  z-index: 3;
  top: 0;
  left: 9%;
  width: 70%;
  height: 57%;
  border-radius: 46% 48% 43% 45%;
  background:
    radial-gradient(ellipse at 34% 48%, #3a2538 0 3%, transparent 3.5%),
    radial-gradient(ellipse at 67% 48%, #3a2538 0 3%, transparent 3.5%),
    radial-gradient(circle at 50% 61%, #a5515f 0 2.5%, transparent 3%),
    #dea17f;
}

.djur-animal--cat .djur-face::after {
  position: absolute;
  top: 64%;
  left: 24%;
  width: 53%;
  height: 14%;
  border-top: 1px solid rgba(72, 39, 59, 0.55);
  border-bottom: 1px solid rgba(72, 39, 59, 0.55);
  content: "";
  transform: rotate(-2deg);
}

.djur-animal--cat .djur-ear {
  z-index: 2;
  top: -9%;
  width: 30%;
  aspect-ratio: 0.78;
  border-radius: 80% 10% 35%;
  background: #c27e69;
}

.djur-animal--cat .djur-ear--left {
  left: 7%;
  transform: rotate(-18deg);
}

.djur-animal--cat .djur-ear--right {
  right: 20%;
  transform: scaleX(-1) rotate(-18deg);
}

.djur-animal--cat .djur-body {
  z-index: 1;
  right: 5%;
  bottom: -2%;
  width: 75%;
  height: 57%;
  border-radius: 48% 48% 13% 13%;
  background: #cb876e;
}

.djur-animal--cat .djur-tail {
  z-index: 0;
  right: -8%;
  bottom: 8%;
  width: 48%;
  height: 23%;
  border: clamp(0.55rem, 1vw, 0.95rem) solid #b26a5c;
  border-bottom: 0;
  border-left-color: transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(35deg);
}

.djur-animal--rabbit {
  z-index: 4;
  right: 4%;
  bottom: 7%;
  width: 31%;
  height: 47%;
  animation: djur-rabbit-listen 5.2s ease-in-out infinite;
}

.djur-animal--rabbit .djur-face {
  z-index: 3;
  right: 5%;
  bottom: 20%;
  width: 80%;
  height: 46%;
  border-radius: 50% 50% 43% 43%;
  background:
    radial-gradient(circle at 35% 45%, #38263d 0 3%, transparent 3.5%),
    radial-gradient(circle at 67% 45%, #38263d 0 3%, transparent 3.5%),
    radial-gradient(circle at 51% 62%, #a76b7a 0 3%, transparent 3.5%),
    #d9cbe7;
}

.djur-animal--rabbit .djur-ear {
  z-index: 2;
  top: 0;
  width: 27%;
  height: 53%;
  border: 0.35rem solid #d9cbe7;
  border-radius: 80% 80% 50% 50%;
  background: #b992bd;
}

.djur-animal--rabbit .djur-ear--left {
  left: 25%;
  transform: rotate(-7deg);
}

.djur-animal--rabbit .djur-ear--right {
  right: 17%;
  transform: rotate(10deg);
}

.djur-animal--rabbit .djur-body {
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 43%;
  border-radius: 50% 50% 10% 10%;
  background: #c7b4da;
}

.djur-animal--rabbit .djur-paw {
  z-index: 4;
  right: 7%;
  bottom: 7%;
  width: 35%;
  height: 18%;
  border-radius: 50%;
  background: #e7ddf0;
  transform: rotate(-8deg);
}

.djur-bird {
  position: absolute;
  z-index: 7;
  top: 18%;
  right: 24%;
  width: 10%;
  aspect-ratio: 1.25;
  border-radius: 55% 55% 45% 50%;
  background:
    radial-gradient(circle at 69% 37%, #302036 0 4%, transparent 5%),
    #f6e28d;
  filter: drop-shadow(0 0.6rem 0.35rem rgba(56, 35, 64, 0.14));
  animation: djur-bird-hop 3.2s ease-in-out infinite;
}

.djur-bird::before {
  position: absolute;
  right: -21%;
  top: 36%;
  width: 27%;
  aspect-ratio: 1.6;
  border-radius: 0 100% 0 0;
  background: #d56f68;
  content: "";
  transform: rotate(13deg);
}

.djur-bird::after {
  position: absolute;
  right: 18%;
  bottom: -42%;
  width: 44%;
  height: 55%;
  border-left: 1px solid #4c344d;
  border-right: 1px solid #4c344d;
  content: "";
}

.djur-bird i {
  position: absolute;
  top: 38%;
  left: 3%;
  width: 51%;
  height: 48%;
  border-radius: 60% 10% 70% 40%;
  background: #e8bd67;
  animation: djur-wing-wave 1.9s ease-in-out infinite;
}

.djur-butterfly {
  position: absolute;
  z-index: 8;
  top: 40%;
  left: 15%;
  width: 3.2%;
  height: 4%;
  border-radius: 80% 15% 80% 20%;
  background: #fff1aa;
  animation: djur-butterfly-path 5s ease-in-out infinite alternate;
}

.djur-butterfly::after {
  position: absolute;
  left: 90%;
  width: 100%;
  height: 100%;
  border-radius: 15% 80% 20% 80%;
  background: #f1c9d2;
  content: "";
}

.djur-flower {
  position: absolute;
  z-index: 8;
  width: 3.3%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f9d878;
  box-shadow:
    0 -0.45rem 0 #fff2cf,
    0 0.45rem 0 #fff2cf,
    -0.45rem 0 0 #fff2cf,
    0.45rem 0 0 #fff2cf;
}

.djur-flower--one {
  right: 10%;
  bottom: 18%;
}

.djur-flower--two {
  left: 19%;
  bottom: 14%;
  transform: scale(0.72) rotate(24deg);
}

.djur-orbit-stage__word {
  z-index: 9;
  top: auto;
  right: 8%;
  bottom: 4%;
  left: auto;
  color: rgba(255, 249, 236, 0.84);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-style: italic;
  transform: rotate(-7deg);
}

.djur-night-friend {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 7vw, 8rem);
  bottom: 7%;
  width: min(31vw, 27rem);
  aspect-ratio: 1;
  opacity: 0.82;
}

.djur-night-friend__moon {
  position: absolute;
  inset: 2% 4% auto auto;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e5cfef;
  box-shadow: 0 0 5rem rgba(205, 174, 226, 0.16);
}

.djur-night-friend__moon::after {
  position: absolute;
  top: -7%;
  left: -17%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2d183d;
  content: "";
}

.djur-night-friend__star {
  position: absolute;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f8eab0;
  box-shadow: 0 0 1rem rgba(248, 234, 176, 0.65);
  animation: djur-star-twinkle 2.5s ease-in-out infinite alternate;
}

.djur-night-friend__star--one { top: 9%; left: 9%; }
.djur-night-friend__star--two { top: 38%; right: 2%; animation-delay: -0.8s; }
.djur-night-friend__star--three { top: 30%; left: 22%; animation-delay: -1.6s; }

.djur-night-friend__cat {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 65%;
  height: 51%;
  border-radius: 50% 50% 12% 12%;
  background: #a786bf;
  box-shadow: inset -2rem -1rem 3rem rgba(64, 35, 80, 0.19);
}

.djur-night-friend__ear {
  position: absolute;
  top: -22%;
  width: 34%;
  height: 44%;
  border-radius: 80% 8% 30%;
  background: #a786bf;
}

.djur-night-friend__ear--left { left: 7%; transform: rotate(-13deg); }
.djur-night-friend__ear--right { right: 7%; transform: scaleX(-1) rotate(-13deg); }

.djur-night-friend__eye {
  position: absolute;
  top: 31%;
  left: 25%;
  width: 15%;
  height: 8%;
  border-bottom: 2px solid #321b42;
  border-radius: 50%;
  box-shadow: 4rem 0 0 -0.1rem #a786bf, 4rem 0 0 -0.02rem #321b42;
}

.djur-night-friend__tail {
  position: absolute;
  right: -26%;
  bottom: 8%;
  width: 70%;
  height: 65%;
  border: 1.1rem solid #8e6aa9;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(19deg);
}

.djur-night-friend__zzz {
  position: absolute;
  right: 4%;
  bottom: 54%;
  color: #dcc9e8;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-style: italic;
  letter-spacing: 0.3em;
  transform: rotate(-13deg);
}

.djur-petal {
  box-shadow: 0 1.5rem 4rem rgba(60, 35, 78, 0.08);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.djur-petal:hover {
  box-shadow: 0 2rem 5rem rgba(60, 35, 78, 0.14);
  transform: translateY(-0.45rem) rotate(-0.4deg);
}

.djur-petal__picture {
  position: absolute;
  z-index: 1;
  top: 11%;
  left: 50%;
  width: 74%;
  height: 48%;
  transform: translateX(-50%);
}

.djur-petal__picture i {
  position: absolute;
  display: block;
}

.djur-bowl {
  bottom: 2%;
  left: 17%;
  width: 65%;
  height: 32%;
  border-radius: 0 0 45% 45%;
  background: #7650a1;
  box-shadow: inset 0 0.7rem rgba(255, 255, 255, 0.12);
}

.djur-bowl::before {
  position: absolute;
  top: -18%;
  left: -4%;
  width: 108%;
  height: 33%;
  border-radius: 50%;
  background: #a989c5;
  box-shadow: inset 0 0 0 0.45rem #68438e;
  content: "";
}

.djur-heart {
  z-index: 2;
  top: 11%;
  left: 43%;
  width: 18%;
  aspect-ratio: 1;
  background: #e77a78;
  transform: rotate(45deg);
  animation: djur-heart-hop 2.8s ease-in-out infinite;
}

.djur-heart::before,
.djur-heart::after {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.djur-heart::before { left: -51%; }
.djur-heart::after { top: -51%; }

.djur-pawprint {
  top: 13%;
  right: 7%;
  width: 13%;
  aspect-ratio: 0.82;
  border-radius: 50% 50% 45% 45%;
  background: rgba(83, 48, 106, 0.25);
  transform: rotate(18deg);
}

.djur-pawprint::before {
  position: absolute;
  top: -48%;
  left: -41%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  box-shadow: 1.05rem -0.3rem 0 rgba(83, 48, 106, 0.25), 2rem 0.2rem 0 rgba(83, 48, 106, 0.25);
  content: "";
}

.djur-book {
  bottom: 4%;
  width: 49%;
  height: 72%;
  border: 1px solid rgba(68, 42, 79, 0.17);
  background: #fff9e9;
  box-shadow: 0 0.7rem 1.6rem rgba(64, 42, 75, 0.08);
}

.djur-book::after {
  position: absolute;
  inset: 14% 17%;
  background: repeating-linear-gradient(to bottom, rgba(91, 62, 98, 0.21) 0 1px, transparent 1px 0.7rem);
  content: "";
}

.djur-book--left {
  left: 1%;
  border-radius: 0.8rem 0 0.25rem 0.8rem;
  transform: rotate(5deg) skewY(3deg);
}

.djur-book--right {
  right: 1%;
  border-radius: 0 0.8rem 0.8rem 0.25rem;
  transform: rotate(-5deg) skewY(-3deg);
}

.djur-bookmark {
  z-index: 3;
  right: 40%;
  bottom: 0;
  width: 10%;
  height: 58%;
  background: #d56c6d;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 83%, 0 100%);
}

.djur-book-paw {
  z-index: 4;
  top: 27%;
  left: 44%;
  width: 13%;
  aspect-ratio: 0.82;
  border-radius: 50% 50% 45%;
  background: #8a6ca2;
  transform: rotate(-7deg);
}

.djur-book-paw::before {
  position: absolute;
  top: -47%;
  left: -42%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  box-shadow: 0.95rem -0.25rem 0 #8a6ca2, 1.85rem 0.2rem 0 #8a6ca2;
  content: "";
}

.djur-friend-face {
  bottom: 1%;
  width: 48%;
  height: 78%;
  border-radius: 48% 48% 19% 19%;
}

.djur-friend-face::before,
.djur-friend-face::after {
  position: absolute;
  content: "";
}

.djur-friend-face::before {
  top: -16%;
  left: 4%;
  width: 33%;
  aspect-ratio: 1;
  border-radius: 80% 10% 35%;
  background: inherit;
  box-shadow: 5rem 0 0 currentColor;
  transform: rotate(-15deg);
}

.djur-friend-face::after {
  top: 40%;
  left: 25%;
  width: 9%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #392442;
  box-shadow: 3rem 0 0 #392442;
}

.djur-friend-face--one {
  left: 8%;
  color: #e7cf9e;
  background: #e7cf9e;
  transform: rotate(-5deg);
}

.djur-friend-face--two {
  right: 5%;
  color: #d0b5e0;
  background: #d0b5e0;
  transform: rotate(6deg);
}

.djur-friend-spark {
  z-index: 4;
  top: 8%;
  left: 49%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe49a;
  box-shadow: 0 0 1.4rem rgba(255, 228, 154, 0.7);
}

.nine-embrace {
  border: 0.55rem solid rgba(255, 255, 255, 0.47);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 43%),
    radial-gradient(circle at 18% 18%, #fff2cc 0 5%, rgba(255, 242, 204, 0.27) 5.3% 10%, transparent 10.5%),
    linear-gradient(148deg, #f6d5c5 0 41%, #e79683 41% 72%, #ad3e46 72% 100%);
  box-shadow:
    0 3rem 8rem rgba(109, 50, 46, 0.18),
    inset 0 0 0 1px rgba(100, 45, 45, 0.11),
    inset 0 -3rem 5rem rgba(123, 48, 48, 0.1);
}

.nine-embrace::before {
  z-index: 0;
  right: -18%;
  bottom: -16%;
  width: 72%;
  background: #7e3038;
  box-shadow: -14rem 3rem 0 1rem rgba(198, 82, 76, 0.64);
}

.nine-embrace::after {
  position: absolute;
  z-index: 0;
  bottom: -8%;
  left: -12%;
  width: 72%;
  aspect-ratio: 1.4;
  border-radius: 50% 50% 0 0;
  background: #ca655e;
  content: "";
  transform: rotate(7deg);
}

.nine-embrace__ring {
  z-index: 1;
  border-style: dashed;
  border-color: rgba(100, 45, 45, 0.18);
}

.nine-embrace__ring--three {
  background: rgba(255, 242, 221, 0.12);
}

.nine-embrace__number {
  z-index: 1;
  top: -1%;
  right: 1%;
  color: rgba(255, 239, 225, 0.26);
}

.nine-embrace__sun {
  z-index: 2;
  box-shadow:
    0 0 0 0.75rem rgba(255, 241, 223, 0.11),
    0 0 2.5rem rgba(255, 241, 223, 0.35);
}

.nine-mobile {
  position: absolute;
  z-index: 5;
  top: 5%;
  left: 17%;
  width: 34%;
  height: 31%;
  transform-origin: 50% 0;
  animation: nine-mobile-sway 6s ease-in-out infinite alternate;
}

.nine-mobile::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 18%;
  background: rgba(99, 46, 47, 0.45);
  content: "";
}

.nine-mobile__cloud {
  position: absolute;
  top: 16%;
  left: 26%;
  width: 50%;
  height: 18%;
  border-radius: 999px;
  background: #fff2de;
  filter: drop-shadow(0 0.45rem 0.45rem rgba(94, 43, 43, 0.09));
}

.nine-mobile__cloud::before,
.nine-mobile__cloud::after {
  position: absolute;
  bottom: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.nine-mobile__cloud::before { left: 13%; width: 48%; }
.nine-mobile__cloud::after { right: 12%; width: 63%; }

.nine-mobile__star,
.nine-mobile__moon {
  position: absolute;
  top: 49%;
}

.nine-mobile__star::before,
.nine-mobile__moon::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 3.2rem;
  background: rgba(101, 48, 48, 0.42);
  content: "";
}

.nine-mobile__star {
  width: 10%;
  aspect-ratio: 1;
  background: #f2b66f;
  clip-path: polygon(50% 0, 61% 36%, 100% 39%, 69% 61%, 79% 100%, 50% 76%, 21% 100%, 31% 61%, 0 39%, 39% 36%);
}

.nine-mobile__star--one { left: 12%; transform: rotate(-8deg); }
.nine-mobile__star--two { right: 7%; top: 55%; background: #d86a68; transform: scale(0.75) rotate(15deg); }

.nine-mobile__moon {
  left: 50%;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ad5960;
}

.nine-mobile__moon::after {
  position: absolute;
  top: -16%;
  left: -26%;
  width: 98%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f3c6b4;
  content: "";
}

.nine-nest,
.nine-nest i {
  position: absolute;
  display: block;
}

.nine-nest {
  z-index: 6;
  right: 4%;
  bottom: 5%;
  width: 72%;
  height: 55%;
  filter: drop-shadow(0 1.2rem 0.9rem rgba(87, 34, 39, 0.2));
}

.nine-nest__branch {
  right: 0;
  bottom: 13%;
  width: 92%;
  height: 8%;
  border-radius: 999px;
  background: #66323b;
  transform: rotate(-7deg);
}

.nine-nest__branch::after {
  position: absolute;
  right: 9%;
  bottom: 45%;
  width: 48%;
  height: 35%;
  border-radius: 999px;
  background: #7e4148;
  content: "";
  transform: rotate(-23deg);
  transform-origin: right center;
}

.nine-nest__leaf {
  width: 16%;
  aspect-ratio: 1.7;
  border-radius: 100% 0 100% 0;
  background: #9c5f65;
}

.nine-nest__leaf--one { right: 7%; bottom: 27%; transform: rotate(18deg); }
.nine-nest__leaf--two { right: 28%; bottom: 18%; background: #c78072; transform: rotate(174deg); }
.nine-nest__leaf--three { left: 9%; bottom: 27%; background: #f0b78f; transform: rotate(12deg); }

.nine-nest__egg {
  z-index: 3;
  right: 31%;
  bottom: 18%;
  width: 38%;
  height: 65%;
  border: 2px solid rgba(111, 54, 54, 0.14);
  border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%;
  background:
    radial-gradient(circle at 36% 46%, #5b343c 0 2.5%, transparent 3%),
    radial-gradient(circle at 65% 46%, #5b343c 0 2.5%, transparent 3%),
    #fff0d9;
  box-shadow: inset -1.2rem -1.4rem 2rem rgba(203, 126, 106, 0.13);
  transform: rotate(5deg);
  animation: nine-egg-breathe 5s ease-in-out infinite;
}

.nine-nest__egg::after {
  position: absolute;
  top: 58%;
  left: 41%;
  width: 19%;
  height: 9%;
  border-bottom: 2px solid #b45c65;
  border-radius: 50%;
  content: "";
}

.nine-nest__heart {
  z-index: 4;
  top: 12%;
  right: 15%;
  width: 9%;
  aspect-ratio: 1;
  background: #f18a7b;
  transform: rotate(45deg);
  animation: nine-heart-float 3s ease-in-out infinite;
}

.nine-nest__heart::before,
.nine-nest__heart::after {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.nine-nest__heart::before { left: -50%; }
.nine-nest__heart::after { top: -50%; }

.nine-embrace__spark {
  position: absolute;
  z-index: 7;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff1c9;
  box-shadow: 0 0 1.2rem rgba(255, 241, 201, 0.65);
  animation: nine-spark 2.4s ease-in-out infinite alternate;
}

.nine-embrace__spark--one { top: 42%; right: 12%; }
.nine-embrace__spark--two { top: 24%; right: 7%; animation-delay: -0.8s; }
.nine-embrace__spark--three { top: 45%; left: 10%; animation-delay: -1.4s; }

.nine-embrace__word {
  z-index: 8;
  bottom: 8%;
  left: 7%;
  color: rgba(255, 242, 227, 0.82);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  writing-mode: initial;
  transform: rotate(-8deg);
}

.nine-journey {
  position: relative;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 202, 174, 0.15) 0 0.3rem, transparent 0.35rem),
    radial-gradient(circle at 75% 26%, rgba(255, 225, 194, 0.1) 0 0.2rem, transparent 0.25rem),
    linear-gradient(145deg, #672631, #862f38 56%, #6e2832);
  background-size: auto, auto, auto;
}

.nine-journey::after {
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 44vw;
  max-width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 225, 207, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 225, 207, 0.025), 0 0 0 10rem rgba(255, 225, 207, 0.018);
  content: "";
}

.nine-journey__inner {
  position: relative;
  z-index: 2;
}

.month-line li {
  box-shadow: 0 0.7rem 1.5rem rgba(69, 21, 28, 0.16);
  animation: nine-month-float 5s ease-in-out infinite;
}

.month-line li:nth-child(2n) { animation-delay: -1.2s; }
.month-line li:nth-child(3n) { animation-delay: -2.6s; }

.month-line li::after {
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 9%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 226, 208, 0.36);
  content: "";
}

.month-line li:last-child::after {
  background: #fff1dc;
  box-shadow: 0 0 0 0.35rem rgba(255, 241, 220, 0.16);
}

.nine-growing,
.nine-growing span {
  position: absolute;
  display: block;
}

.nine-growing {
  right: 6%;
  bottom: 8%;
  width: min(17vw, 14rem);
  aspect-ratio: 0.9;
  opacity: 0.88;
}

.nine-growing__seed {
  bottom: 0;
  left: 36%;
  width: 30%;
  aspect-ratio: 1.4;
  border-radius: 50% 15% 50% 15%;
  background: #e89a81;
  transform: rotate(37deg);
}

.nine-growing__stem {
  bottom: 12%;
  left: 49%;
  width: 2px;
  height: 58%;
  border-radius: 999px;
  background: #f2b49a;
  transform: rotate(-4deg);
  transform-origin: bottom;
}

.nine-growing__leaf {
  width: 31%;
  aspect-ratio: 1.7;
  border-radius: 100% 0 100% 0;
  background: #d87d72;
}

.nine-growing__leaf--one { left: 21%; bottom: 39%; transform: rotate(22deg); }
.nine-growing__leaf--two { right: 18%; bottom: 49%; transform: rotate(188deg); }

.nine-growing__flower {
  top: 7%;
  left: 37%;
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe2a9;
  box-shadow:
    0 -0.7rem 0 #ef9585,
    0 0.7rem 0 #ef9585,
    -0.7rem 0 0 #ef9585,
    0.7rem 0 0 #ef9585;
  animation: nine-flower-nod 5s ease-in-out infinite;
}

.nine-growing__spark {
  width: 0.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe9b5;
  box-shadow: 0 0 1rem #f7bd9a;
}

.nine-growing__spark--one { top: 13%; left: 8%; }
.nine-growing__spark--two { top: 35%; right: 2%; }

.nine-topic {
  border: 1px solid rgba(100, 43, 43, 0.09);
  box-shadow: 0 1.5rem 4rem rgba(103, 41, 40, 0.08);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.nine-topic:hover {
  box-shadow: 0 2rem 5rem rgba(103, 41, 40, 0.14);
  transform: translateY(-0.45rem) rotate(0.35deg);
}

.nine-topic__picture {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  width: 72%;
  height: 48%;
  transform: translateX(-50%);
}

.nine-topic__picture i {
  position: absolute;
  display: block;
}

.nine-calendar {
  top: 7%;
  left: 11%;
  width: 76%;
  height: 80%;
  border: 2px solid rgba(106, 38, 43, 0.17);
  border-radius: 1rem;
  background:
    linear-gradient(to bottom, #bc4b4c 0 23%, transparent 23%),
    repeating-linear-gradient(to right, rgba(111, 42, 43, 0.12) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(to bottom, transparent 0 25%, rgba(111, 42, 43, 0.12) 25% calc(25% + 1px)),
    #fff0dc;
  box-shadow: 0 1rem 2rem rgba(100, 38, 42, 0.12);
  transform: rotate(-4deg);
}

.nine-calendar::before,
.nine-calendar::after {
  position: absolute;
  top: -8%;
  width: 5%;
  height: 18%;
  border-radius: 999px;
  background: #703038;
  content: "";
}

.nine-calendar::before { left: 22%; }
.nine-calendar::after { right: 22%; }

.nine-calendar-heart {
  z-index: 2;
  top: 48%;
  left: 45%;
  width: 12%;
  aspect-ratio: 1;
  background: #df7166;
  transform: rotate(45deg);
}

.nine-calendar-heart::before,
.nine-calendar-heart::after,
.nine-bag-heart::before,
.nine-bag-heart::after {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.nine-calendar-heart::before,
.nine-bag-heart::before { left: -50%; }
.nine-calendar-heart::after,
.nine-bag-heart::after { top: -50%; }

.nine-calendar-spark {
  top: 3%;
  right: 2%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff1be;
  box-shadow: 0 0 1rem rgba(255, 241, 190, 0.7);
}

.nine-bag {
  right: 11%;
  bottom: 2%;
  width: 75%;
  height: 68%;
  border-radius: 1.2rem 1.2rem 2rem 2rem;
  background: #fff0df;
  box-shadow: inset -1.5rem -1.5rem 2rem rgba(174, 61, 62, 0.09), 0 1rem 2rem rgba(104, 37, 41, 0.13);
  transform: rotate(3deg);
}

.nine-bag::after {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 48%;
  width: 2px;
  background: rgba(119, 46, 48, 0.17);
  content: "";
}

.nine-bag-handle {
  z-index: -1;
  top: 2%;
  left: 33%;
  width: 37%;
  height: 42%;
  border: 0.8rem solid #7c343c;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.nine-bag-heart {
  z-index: 2;
  right: 43%;
  bottom: 26%;
  width: 12%;
  aspect-ratio: 1;
  background: #d15a5a;
  transform: rotate(45deg);
}

.nine-sock-line {
  top: 10%;
  right: 3%;
  left: 3%;
  height: 2px;
  background: rgba(97, 43, 43, 0.28);
  transform: rotate(-4deg);
}

.nine-sock-line::before,
.nine-sock-line::after {
  position: absolute;
  top: -0.25rem;
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #bc5e59;
  content: "";
}

.nine-sock-line::before { left: 18%; }
.nine-sock-line::after { right: 18%; }

.nine-sock {
  top: 18%;
  width: 30%;
  height: 58%;
  border-radius: 0.5rem 0.5rem 45% 28%;
  background: #d97c70;
  box-shadow: 0 0.8rem 1.3rem rgba(101, 42, 42, 0.1);
  transform-origin: 50% 0;
  animation: nine-sock-sway 4.5s ease-in-out infinite alternate;
}

.nine-sock::before {
  position: absolute;
  top: -8%;
  left: -6%;
  width: 112%;
  height: 22%;
  border-radius: 0.4rem;
  background: #fff0db;
  content: "";
}

.nine-sock::after {
  position: absolute;
  right: -35%;
  bottom: 0;
  width: 65%;
  height: 37%;
  border-radius: 0 90% 55% 0;
  background: inherit;
  content: "";
}

.nine-sock--one { left: 17%; transform: rotate(6deg); }
.nine-sock--two { right: 17%; background: #e9ab88; transform: rotate(-8deg); animation-delay: -2s; }

.nine-wish-thread {
  top: 8%;
  left: 48%;
  width: 1px;
  height: 73%;
  background: rgba(255, 236, 218, 0.32);
}

.nine-wish-moon {
  top: 15%;
  left: 32%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f1bd91;
  box-shadow: 0 0 2rem rgba(241, 189, 145, 0.22);
}

.nine-wish-moon::after {
  position: absolute;
  top: -14%;
  left: -24%;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #752d35;
  content: "";
}

.nine-wish-star {
  width: 10%;
  aspect-ratio: 1;
  background: #ffe2a0;
  clip-path: polygon(50% 0, 61% 36%, 100% 39%, 69% 61%, 79% 100%, 50% 76%, 21% 100%, 31% 61%, 0 39%, 39% 36%);
  animation: nine-spark 2.2s ease-in-out infinite alternate;
}

.nine-wish-star--one { top: 18%; left: 11%; }
.nine-wish-star--two { top: 48%; right: 11%; transform: scale(0.7) rotate(18deg); animation-delay: -1s; }

@keyframes djur-cloud-drift {
  from { transform: translateX(-0.35rem); }
  to { transform: translateX(0.75rem); }
}

@keyframes djur-dog-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-1.2%) rotate(1deg); }
}

@keyframes djur-cat-peek {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-2%) rotate(-1deg); }
}

@keyframes djur-rabbit-listen {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(1.5deg); }
}

@keyframes djur-bird-hop {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-0.45rem) rotate(3deg); }
}

@keyframes djur-wing-wave {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-16deg); }
}

@keyframes djur-butterfly-path {
  from { transform: translate(-0.5rem, 0.3rem) rotate(-12deg); }
  to { transform: translate(1rem, -0.75rem) rotate(14deg); }
}

@keyframes djur-star-twinkle {
  from { opacity: 0.42; transform: scale(0.75); }
  to { opacity: 1; transform: scale(1.15); }
}

@keyframes djur-heart-hop {
  0%, 100% { transform: translateY(0) rotate(45deg) scale(0.95); }
  50% { transform: translateY(-0.6rem) rotate(45deg) scale(1.04); }
}

@keyframes nine-mobile-sway {
  from { transform: rotate(-2.5deg); }
  to { transform: rotate(2.5deg); }
}

@keyframes nine-egg-breathe {
  0%, 100% { transform: rotate(5deg) scale(0.99); }
  50% { transform: rotate(3deg) scale(1.015); }
}

@keyframes nine-heart-float {
  0%, 100% { transform: translateY(0) rotate(45deg) scale(0.92); }
  50% { transform: translateY(-0.6rem) rotate(45deg) scale(1.05); }
}

@keyframes nine-spark {
  from { opacity: 0.38; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1.15); }
}

@keyframes nine-month-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -0.3rem; }
}

@keyframes nine-flower-nod {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(7deg); }
}

@keyframes nine-sock-sway {
  from { rotate: -3deg; }
  to { rotate: 4deg; }
}

@keyframes djur-stage-arrive {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes djur-orbit-outer {
  from { transform: rotate(24deg) scale(1); }
  to { transform: rotate(31deg) scale(1.025); }
}

@keyframes djur-orbit-middle {
  from { transform: rotate(-30deg) translateX(0); }
  to { transform: rotate(-22deg) translateX(1.2%); }
}

@keyframes djur-satellite-float {
  from { transform: translateY(-0.35rem); }
  to { transform: translateY(0.45rem); }
}

@keyframes nine-embrace-arrive {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nine-ring-breathe {
  from { transform: scale(0.98); }
  to { transform: scale(1.025); }
}

@media (max-width: 68rem) {
  .djur-hero,
  .nine-hero {
    grid-template-columns: minmax(18rem, 0.85fr) minmax(22rem, 1.15fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .djur-together__garden {
    grid-template-columns: 1fr 1fr;
  }

  .djur-petal--three {
    grid-column: 1 / -1;
    min-height: 23rem;
  }

  .djur-petal--three::before {
    width: 18rem;
  }
}

@media (max-width: 54rem) {
  .museum-header__bar {
    display: block;
    padding-top: 1.15rem;
    padding-bottom: 0.65rem;
  }

  .museum-brand {
    margin-bottom: 0.65rem;
  }

  .museum-nav {
    overflow-x: auto;
    margin-inline: calc(var(--page-gutter) * -1);
    padding-inline: var(--page-gutter);
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .museum-nav ul {
    justify-content: flex-start;
  }

  .djur-hero,
  .nine-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(3.5rem, 9vw, 6rem);
    padding-top: clamp(4rem, 10vw, 6rem);
    padding-bottom: clamp(5rem, 11vw, 7rem);
  }

  .djur-hero__copy,
  .nine-hero__copy {
    max-width: 42rem;
  }

  .djur-orbit-stage,
  .nine-embrace {
    width: min(100%, 39rem);
    justify-self: center;
  }

  .djur-together__intro,
  .nine-topics__heading {
    grid-template-columns: 1fr;
  }

  .djur-together__intro .scene-kicker,
  .nine-topics__heading .scene-kicker {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 40rem) {
  .scene-kicker {
    max-width: 28rem;
  }

  .djur-hero h1 {
    font-size: clamp(4rem, 19.5vw, 6.2rem);
  }

  .djur-question-stream {
    grid-template-columns: 1fr 1fr;
  }

  .djur-question-stream span {
    min-height: 7.5rem;
  }

  .djur-together__garden,
  .nine-topic-grid {
    grid-template-columns: 1fr;
  }

  .djur-petal,
  .djur-petal--three {
    grid-column: auto;
    min-height: 25rem;
  }

  .nine-hero h1 {
    font-size: clamp(4.35rem, 21vw, 6.4rem);
  }

  .nine-embrace {
    min-height: 29rem;
    aspect-ratio: auto;
  }

  .nine-embrace__number {
    top: 8%;
    font-size: clamp(17rem, 84vw, 25rem);
  }

  .nine-journey h2 {
    font-size: clamp(3.8rem, 17vw, 6.4rem);
  }

  .month-line {
    gap: 0.12rem;
  }

  .month-line span {
    font-size: clamp(0.9rem, 4.8vw, 1.35rem);
  }

  .nine-topic {
    min-height: 24rem;
  }

  .nine-topic--baby,
  .nine-topic--mixed {
    padding-bottom: 3.75rem;
  }

  .nine-topic h3 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
    line-height: 0.86;
  }

  .next-room a {
    grid-template-columns: minmax(0, 1fr);
  }

  .next-room a > span:first-child {
    grid-column: auto;
  }

  .next-room strong {
    min-width: 0;
    font-size: clamp(2.5rem, 12.5vw, 4.4rem);
  }

  .next-room__arrow {
    justify-self: end;
  }

  .museum-footer {
    display: grid;
    align-content: center;
    padding-block: 2rem;
  }
}

/* Shared public frame geometry for Djurkanalen and 9 månader. */
:root {
  --museum-frame-width: 96rem;
  --museum-frame-gutter: clamp(1rem, 4vw, 4rem);
}

.museum-header__bar {
  display: grid;
  width: min(100%, var(--museum-frame-width));
  min-height: 5.25rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
  padding-inline: var(--museum-frame-gutter);
}

.museum-brand {
  width: fit-content;
  align-self: center;
  gap: 0.65rem;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  line-height: 1;
  white-space: nowrap;
}

.museum-brand__mark {
  width: 1rem;
}

.museum-nav {
  width: auto;
  min-width: 0;
  max-width: 100%;
  justify-self: end;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.museum-nav ul {
  min-width: 0;
  justify-content: flex-start;
  gap: 0.1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.68rem, 0.75vw, 0.78rem);
  font-weight: 700;
  line-height: 1.55;
}

.museum-nav a {
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.45rem 0.38rem;
  white-space: nowrap;
}

.museum-footer {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
}

.museum-footer__inner {
  display: flex;
  width: min(100%, var(--museum-frame-width));
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
  padding: 1.5rem var(--museum-frame-gutter);
}

.museum-footer p {
  max-width: 42rem;
  margin: 0;
}

.museum-footer small {
  color: inherit;
  opacity: 0.74;
}

.museum-footer nav {
  margin-left: auto;
}

.museum-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.museum-footer nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

@media (max-width: 64rem) {
  .museum-header__bar {
    display: flex;
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.9rem;
    padding-bottom: 0.45rem;
  }

  .museum-nav {
    width: 100%;
    justify-self: auto;
  }

  .museum-brand {
    align-self: flex-start;
    margin: 0;
  }

  .museum-nav ul {
    min-width: max-content;
  }

  .museum-footer__inner {
    min-height: 9rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
  }

  .museum-footer nav {
    margin-left: 0;
  }

  .museum-footer nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 22rem) {
  :root {
    --page-gutter: 1rem;
  }

  .museum-nav a {
    padding-inline: 0.32rem;
  }

  .djur-hero h1 {
    font-size: 3.85rem;
  }

  .djur-hero__notes {
    gap: 0.4rem;
  }

  .djur-hero__notes span {
    padding-inline: 0.62rem;
    font-size: 0.63rem;
  }

  .nine-hero h1 {
    font-size: 4rem;
  }

  .nine-topic h3 {
    font-size: 3.35rem;
  }

  .nine-topic--baby {
    border-bottom-left-radius: 7rem;
  }

  .nine-topic--mixed {
    border-bottom-right-radius: 7rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Full-scale tactile illustrations anchor the two rooms; CSS details remain as charm. */
.djur-orbit-stage__artwork,
.nine-embrace__artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.djur-orbit-stage__artwork {
  object-position: 61% center;
}

.nine-embrace__artwork {
  object-position: 59% center;
}

.djur-orbit-stage:hover .djur-orbit-stage__artwork,
.nine-embrace:hover .nine-embrace__artwork {
  transform: scale(1.025);
}

.djur-orbit-stage::before,
.nine-embrace::before {
  z-index: 1;
  inset: 0;
  width: auto;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.24), transparent 40%, rgba(45, 21, 63, 0.08));
}

.djur-orbit-stage::after,
.nine-embrace::after {
  z-index: 2;
}

.djur-orbit-stage > span,
.nine-embrace > span {
  z-index: 3;
}

.djur-orbit-stage .djur-hill,
.djur-orbit-stage .djur-animal,
.djur-orbit-stage .djur-bird,
.djur-orbit-stage .djur-butterfly,
.djur-orbit-stage .djur-flower,
.djur-orbit-stage .djur-cloud,
.djur-orbit-stage .djur-sunbeam {
  opacity: 0.32;
}

.nine-embrace .nine-mobile,
.nine-embrace .nine-nest {
  opacity: 0.32;
}

.djur-orbit-stage__word,
.nine-embrace__word {
  text-shadow: 0 0.08em 0.5em rgba(255, 255, 255, 0.55);
}

@media (max-width: 54rem) {
  .djur-orbit-stage__artwork {
    object-position: 64% center;
  }

  .nine-embrace__artwork {
    object-position: 62% center;
  }
}

@media (max-width: 40rem) {
  .djur-orbit-stage,
  .nine-embrace {
    border-radius: 2rem 2rem 42% 2rem;
  }

  .djur-orbit-stage__artwork,
  .nine-embrace__artwork {
    object-position: 68% center;
  }
}
