/* Phase 1 prototype styles — the five visual systems are intentionally isolated. */

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

:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

html {
  min-width: 320px;
  background: #d9d0b9;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

::selection {
  color: #f7f1e5;
  background: #9b3428;
}

:focus-visible {
  outline: 3px solid #f3a712;
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 50%;
  padding: 12px 18px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  transform: translate(-50%, -180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

#concept-canvas {
  min-height: 100svh;
  outline: none;
}

.concept {
  position: relative;
  min-height: 100svh;
  animation: concept-arrive 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes concept-arrive {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prototype-badge,
.notes-trigger,
.concept-switcher,
.keyboard-hint {
  position: fixed;
  z-index: 100;
}

.prototype-badge {
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  min-height: 38px;
  overflow: hidden;
  color: #f5f0e7;
  background: #101211;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 16%);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prototype-badge span {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 14px;
}

.prototype-badge span:first-child {
  font-weight: 800;
  background: #a83d2d;
}

.notes-trigger {
  top: 20px;
  right: 20px;
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 0 15px 0 8px;
  color: #f5f0e7;
  cursor: pointer;
  background: #101211;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 16%);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.notes-trigger span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.concept-switcher {
  right: 50%;
  bottom: 20px;
  display: flex;
  align-items: stretch;
  width: min(730px, calc(100vw - 40px));
  min-height: 62px;
  padding: 6px;
  color: #eee9df;
  background: rgb(13 15 14 / 96%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(0 0 0 / 28%);
  transform: translateX(50%);
  backdrop-filter: blur(18px);
}

.switcher-arrow {
  flex: 0 0 48px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 22px;
}

.switcher-arrow:hover {
  background: rgb(255 255 255 / 9%);
}

.concept-tabs {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  min-width: 0;
}

.concept-tabs button {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 7px 10px;
  color: #a6aaa5;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 10px;
  text-align: left;
}

.concept-tabs button span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 500;
}

.concept-tabs button strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-tabs button:hover {
  color: #fff;
  background: rgb(255 255 255 / 6%);
}

.concept-tabs button[aria-pressed="true"] {
  color: #111;
  background: #f1eadc;
}

.concept-tabs button[aria-pressed="true"] span {
  color: #9b3528;
}

.keyboard-hint {
  right: 50%;
  bottom: 91px;
  margin: 0;
  padding: 5px 10px;
  color: rgb(255 255 255 / 72%);
  background: rgb(13 15 14 / 68%);
  border-radius: 999px;
  transform: translateX(50%);
  backdrop-filter: blur(10px);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keyboard-hint kbd {
  font: inherit;
  color: #fff;
}

.concept-notes {
  width: min(920px, calc(100vw - 32px));
  max-height: min(790px, calc(100svh - 32px));
  padding: 0;
  color: #191b19;
  background: #eee9dc;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 36px 90px rgb(0 0 0 / 35%);
}

.concept-notes::backdrop {
  background: rgb(9 11 10 / 70%);
  backdrop-filter: blur(7px);
}

.notes-sheet {
  padding: clamp(25px, 5vw, 56px);
  background:
    linear-gradient(90deg, transparent 49.8%, rgb(29 31 28 / 7%) 50%, transparent 50.2%),
    #eee9dc;
}

.notes-heading {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid #b7b2a7;
}

.notes-index,
.notes-grid dt {
  margin: 0 0 12px;
  color: #98382a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.notes-heading h2 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.notes-premise {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4a4d48;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 19px;
  line-height: 1.45;
}

.notes-close {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid #9d998f;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.notes-grid > div {
  min-height: 150px;
  padding: 26px 30px 25px 0;
  border-bottom: 1px solid #c6c1b6;
}

.notes-grid > div:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid #c6c1b6;
}

.notes-grid dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.project-state {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: max-content;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-state.is-live span {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 16%);
}

.project-action.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

/* -------------------------------------------------------------------------- */
/* 01 — THE LIVING ATLAS                                                      */
/* -------------------------------------------------------------------------- */

.concept-atlas {
  min-height: 760px;
  overflow: hidden;
  color: #20251f;
  background:
    radial-gradient(circle at 74% 40%, rgb(239 230 199 / 62%), transparent 29%),
    radial-gradient(circle at 18% 80%, rgb(133 153 126 / 30%), transparent 28%),
    #d9d0b9;
  isolation: isolate;
}

.atlas-contours,
.atlas-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atlas-contours path {
  fill: none;
  stroke: #4e5b4a;
  stroke-width: 1.2;
  opacity: 0.31;
  vector-effect: non-scaling-stroke;
}

.atlas-contours .contour-b path {
  stroke: #873f33;
  opacity: 0.2;
}

.atlas-contours .contour-c path {
  stroke: #536a70;
  opacity: 0.2;
}

.atlas-contours .contour-a {
  animation: contour-drift 22s ease-in-out infinite alternate;
}

.atlas-contours .contour-b {
  animation: contour-drift 29s ease-in-out -10s infinite alternate-reverse;
}

@keyframes contour-drift {
  to {
    transform: translate3d(16px, -9px, 0);
  }
}

.atlas-grain {
  z-index: -1;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.atlas-header {
  position: absolute;
  z-index: 2;
  top: clamp(105px, 14vh, 150px);
  left: clamp(30px, 5vw, 78px);
  width: min(410px, 28vw);
}

.atlas-eyebrow,
.atlas-index > p,
.atlas-note-index,
.atlas-legend {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.atlas-eyebrow::before {
  display: inline-block;
  width: 29px;
  height: 1px;
  margin: 0 10px 3px 0;
  content: "";
  background: currentColor;
}

.atlas-header h1 {
  margin: 20px 0 22px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(60px, 7.4vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.79;
}

.atlas-deck {
  width: min(340px, 100%);
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.45;
}

.atlas-index {
  position: absolute;
  z-index: 4;
  top: 110px;
  right: clamp(25px, 4vw, 64px);
  width: 165px;
}

.atlas-index > p {
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(31 37 31 / 35%);
}

.atlas-index ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.atlas-index button {
  display: grid;
  grid-template-columns: 32px 1fr;
  width: 100%;
  min-height: 43px;
  padding: 0;
  color: #343c33;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(31 37 31 / 20%);
  text-align: left;
}

.atlas-index button span {
  padding-top: 2px;
  color: #8b3b2f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.atlas-index button:hover,
.atlas-index button[aria-pressed="true"] {
  padding-left: 8px;
  color: #111;
  background: rgb(250 246 228 / 45%);
}

.atlas-index button[aria-pressed="true"]::after {
  justify-self: end;
  content: "•";
  color: #9d3b2c;
}

.atlas-route {
  position: absolute;
  z-index: 1;
  top: 14vh;
  right: 12vw;
  bottom: 14vh;
  left: 29vw;
}

.atlas-route-line {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.atlas-route-line path {
  fill: none;
  stroke: #963f31;
  stroke-dasharray: 2 7;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  animation: atlas-route-draw 1.6s ease-out both;
}

@keyframes atlas-route-draw {
  from {
    opacity: 0;
    stroke-dashoffset: 80;
  }
}

.atlas-waypoint {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.atlas-waypoint-1 { top: 71%; left: 8%; }
.atlas-waypoint-2 { top: 35%; left: 37%; }
.atlas-waypoint-3 { top: 22%; left: 69%; }
.atlas-waypoint-4 { top: 70%; left: 89%; }

.waypoint-ring {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #d9d0b9;
  border: 3px solid #8f392d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(217 208 185 / 80%), 0 0 0 6px rgb(72 80 67 / 55%);
  transition: width 200ms ease, height 200ms ease, background 200ms ease;
}

.atlas-waypoint:hover .waypoint-ring,
.atlas-waypoint[aria-pressed="true"] .waypoint-ring {
  width: 23px;
  height: 23px;
  background: #943c2f;
}

.waypoint-label {
  position: absolute;
  top: 45px;
  left: 22px;
  min-width: max-content;
  padding: 6px 8px;
  color: #20251f;
  background: rgb(231 223 201 / 88%);
  border: 1px solid rgb(42 49 41 / 20%);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 16px;
  line-height: 1;
  transform: rotate(-2deg);
}

.waypoint-label i {
  margin-right: 7px;
  color: #8b392e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-style: normal;
}

.atlas-waypoint-2 .waypoint-label,
.atlas-waypoint-4 .waypoint-label {
  right: 22px;
  left: auto;
  transform: rotate(2deg);
}

.atlas-field-note {
  position: absolute;
  z-index: 3;
  bottom: 125px;
  left: clamp(30px, 5vw, 78px);
  width: min(360px, 29vw);
  min-height: 148px;
  padding: 17px 18px 15px;
  background: rgb(236 228 205 / 82%);
  border: 1px solid rgb(46 52 44 / 33%);
  box-shadow: 10px 12px 0 rgb(74 91 70 / 12%);
  backdrop-filter: blur(8px);
}

.atlas-field-note::before {
  position: absolute;
  top: -7px;
  right: 24px;
  width: 45px;
  height: 14px;
  content: "";
  background: rgb(163 139 91 / 48%);
  transform: rotate(3deg);
}

.atlas-field-note h2 {
  margin: 10px 0 15px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.atlas-note-index {
  color: #8b392e;
}

.atlas-note-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgb(37 43 36 / 22%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.atlas-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.atlas-open:not(.is-disabled):hover {
  color: #8c352a;
}

.atlas-legend {
  position: absolute;
  right: 4vw;
  bottom: 112px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgb(32 37 31 / 65%);
}

.atlas-legend span {
  width: 25px;
  border-top: 2px dotted #963f31;
}

/* -------------------------------------------------------------------------- */
/* 02 — THE DIGITAL MUSEUM                                                    */
/* -------------------------------------------------------------------------- */

.concept-museum {
  min-height: 760px;
  overflow: hidden;
  color: #26231f;
  background: #e9e3d5;
}

.concept-museum::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0.45;
  background:
    linear-gradient(90deg, rgb(100 82 55 / 5%) 1px, transparent 1px) 0 0 / 58px 100%,
    linear-gradient(#fff8e8 0, transparent 24%, transparent 75%, rgb(104 89 65 / 8%));
  pointer-events: none;
}

.museum-entrance {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  display: flex;
  width: 32vw;
  min-width: 360px;
  padding: 115px clamp(28px, 4vw, 66px) 125px;
  flex-direction: column;
  justify-content: space-between;
  background: #e9e3d5;
  border-right: 1px solid #aba596;
  box-shadow: 14px 0 32px rgb(58 49 37 / 7%);
}

.museum-mark {
  display: flex;
  width: 74px;
  height: 36px;
  border: 1px solid #8b3428;
}

.museum-mark span {
  display: grid;
  flex: 1;
  place-items: center;
  color: #8b3428;
  font-family: Georgia, serif;
  font-size: 20px;
}

.museum-mark span + span {
  color: #e9e3d5;
  background: #8b3428;
}

.museum-overline,
.museum-room-number,
.museum-label p,
.museum-direction,
.museum-floorplan,
.museum-label-meta {
  font-family: "Arial Narrow", "Avenir Next Condensed", ui-sans-serif, sans-serif;
  font-size: 9px;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.museum-overline {
  margin: 0 0 25px;
  color: #8b3428;
}

.museum-entrance h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-size: clamp(54px, 6vw, 93px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.museum-intro {
  max-width: 300px;
  margin: 28px 0 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
}

.museum-direction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 15px;
  margin: 0;
  border-top: 1px solid #aaa497;
}

.museum-direction span {
  color: #8b3428;
  font-size: 20px;
}

.museum-floorplan {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: max(380px, 34vw);
  display: flex;
  gap: 4px;
  align-items: stretch;
  min-height: 48px;
  padding: 4px;
  background: rgb(239 234 221 / 88%);
  border: 1px solid #b7b0a2;
  backdrop-filter: blur(10px);
}

.museum-floorplan > span {
  display: grid;
  padding: 0 14px;
  place-items: center;
  color: #8b3428;
}

.museum-floorplan button {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-left: 1px solid #c3bdaf;
}

.museum-floorplan button:hover {
  color: #f5f0e5;
  background: #25221f;
}

.museum-floorplan button i {
  color: #8b3428;
  font-style: normal;
}

.museum-corridor {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 max(360px, 32vw);
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-padding-left: 3vw;
  scrollbar-color: #8b3428 #d8d1c2;
  scrollbar-width: thin;
}

.museum-room {
  position: relative;
  display: grid;
  flex: 0 0 min(67vw, 920px);
  grid-template-rows: auto 1fr auto;
  min-width: 680px;
  min-height: 100%;
  padding: 98px clamp(45px, 6vw, 90px) 125px;
  background: #eee9dc;
  border-right: 1px solid #aaa397;
  box-shadow: inset 18px 0 35px rgb(65 54 39 / 4%);
  scroll-snap-align: center;
}

.museum-room:nth-child(even) {
  background: #e1ddcf;
}

.museum-room::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 70%;
  content: "";
  background: linear-gradient(#c5bdae, transparent);
}

.museum-room-number {
  margin: 0;
  color: #746f66;
}

.museum-artifact {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(31vw, 370px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #d8d1c1;
  border: clamp(9px, 1.4vw, 18px) solid #26231f;
  outline: 1px solid #8b8478;
  outline-offset: 10px;
  box-shadow: 0 24px 38px rgb(53 44 32 / 16%);
}

.artifact-terrain {
  background:
    repeating-radial-gradient(ellipse at 60% 45%, transparent 0 15px, #4f5f4e 16px 17px, transparent 18px 31px),
    #c8c4ae;
}

.artifact-terrain::after {
  position: absolute;
  right: 24%;
  bottom: 25%;
  width: 18px;
  height: 18px;
  content: "";
  background: #9a3b2d;
  border: 5px solid #ded8c8;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #9a3b2d;
}

.artifact-timeline {
  background:
    linear-gradient(90deg, transparent 10%, #222 10% 11%, transparent 11% 23%, #8b3428 23% 25%, transparent 25% 46%, #222 46% 47%, transparent 47% 68%, #a08b5b 68% 71%, transparent 71%),
    linear-gradient(#cdc5b4, #e6dfd1);
}

.artifact-timeline::after {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: #222;
  box-shadow: 0 -65px #847e71, 0 72px #847e71;
}

.artifact-groove {
  background: repeating-radial-gradient(circle, #292724 0 4px, #464039 5px 6px, #292724 7px 10px);
}

.artifact-groove::before {
  position: absolute;
  inset: 37%;
  content: "";
  background: #a34333;
  border: 9px solid #d8bd7c;
  border-radius: 50%;
}

.artifact-letterform {
  display: grid;
  place-items: center;
  color: #ece5d6;
  background: #343b31;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(90px, 12vw, 180px);
  font-style: italic;
  letter-spacing: -0.15em;
}

.artifact-letterform span {
  transform: translateX(-0.06em);
}

.museum-label {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 35px;
  padding: 18px 0 0;
  border-top: 2px solid #27241f;
}

.museum-label p {
  margin: 0 0 9px;
  color: #8b3428;
}

.museum-label h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.museum-label-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-top: 1px;
}

.museum-open {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 32px;
  color: #8b3428;
  text-decoration: none;
}

.museum-open:not(.is-disabled):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.museum-future {
  display: grid;
  flex: 0 0 34vw;
  min-width: 330px;
  padding: 100px 50px 140px;
  place-content: center;
  color: #6f6a61;
  background: #d7d1c4;
  text-align: center;
}

.museum-future div {
  font-family: Didot, Georgia, serif;
  font-size: 100px;
  font-weight: 200;
}

.museum-future p {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 18px;
}

/* -------------------------------------------------------------------------- */
/* 03 — THE KURDISH RADIO DIAL                                                */
/* -------------------------------------------------------------------------- */

.concept-radio {
  min-height: 800px;
  overflow: hidden;
  padding: 100px 5vw 135px;
  color: #f0e4ca;
  background:
    radial-gradient(circle at 50% 30%, rgb(152 79 37 / 24%), transparent 35%),
    linear-gradient(135deg, #1b1a17, #0e100f 65%, #181613);
  isolation: isolate;
}

.radio-ambient {
  position: absolute;
  z-index: -1;
  inset: -30%;
  opacity: 0.2;
  background: repeating-radial-gradient(ellipse at center, transparent 0 35px, #d79844 36px, transparent 37px 78px);
  transform: rotate(-9deg);
  animation: radio-air 18s linear infinite;
}

@keyframes radio-air {
  to { transform: rotate(-9deg) scale(1.06); }
}

.radio-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(1160px, 92vw);
  margin: 0 auto 22px;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  text-transform: uppercase;
}

.radio-header p,
.radio-header span {
  margin: 0;
  color: #a9997d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.radio-header h1 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.radio-set {
  position: relative;
  display: grid;
  width: min(1160px, 92vw);
  min-height: 570px;
  margin: 0 auto;
  padding: clamp(28px, 3.8vw, 55px);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 75px);
  background:
    linear-gradient(115deg, rgb(255 255 255 / 5%), transparent 18% 75%, rgb(0 0 0 / 25%)),
    #37322a;
  border: 2px solid #625748;
  border-radius: 30px 30px 48px 48px;
  box-shadow:
    inset 0 0 0 6px #211f1a,
    inset 0 0 0 7px #746654,
    0 40px 80px rgb(0 0 0 / 48%);
}

.radio-case-top {
  position: absolute;
  top: 15px;
  right: 25px;
  left: 25px;
  height: 1px;
  background: rgb(233 208 166 / 20%);
}

.radio-set::after {
  position: absolute;
  right: 7%;
  bottom: -13px;
  left: 7%;
  height: 16px;
  content: "";
  background: #181714;
  border-radius: 0 0 18px 18px;
  filter: blur(1px);
}

.radio-speaker {
  position: relative;
  display: grid;
  align-self: center;
  width: min(31vw, 390px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: #191916;
  border: 11px solid #29251f;
  border-radius: 50%;
  box-shadow: inset 0 0 55px #000, 0 0 0 1px #6c5e4b;
}

.speaker-grooves {
  position: absolute;
  inset: 2%;
  background:
    repeating-radial-gradient(circle, transparent 0 6px, rgb(218 181 115 / 11%) 7px 8px, transparent 9px 13px),
    repeating-linear-gradient(90deg, transparent 0 4px, rgb(226 202 161 / 6%) 5px, transparent 6px 9px);
  border: 1px solid #75664f;
  border-radius: 50%;
}

.radio-speaker > span {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #23201b;
  background: #ae4634;
  border: 9px solid #d5b978;
  border-radius: 50%;
  box-shadow: 0 5px 20px #000;
  font-family: "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.radio-console {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.radio-display {
  min-height: 205px;
  padding: 26px 30px 22px;
  overflow: hidden;
  color: #edc875;
  background:
    repeating-linear-gradient(0deg, rgb(255 255 255 / 2%) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 70% 70%, rgb(232 150 64 / 12%), transparent 50%),
    #10110e;
  border: 1px solid #75674f;
  border-radius: 7px;
  box-shadow: inset 0 0 28px #000, 0 0 25px rgb(217 150 60 / 8%);
}

.radio-display-top,
.radio-display-action {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.radio-display-top p,
.radio-display > p {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.radio-display-top p span {
  color: #f0dfb6;
}

.signal-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
}

.signal-bars i {
  width: 3px;
  height: 4px;
  background: currentColor;
}

.signal-bars i:nth-child(2) { height: 7px; }
.signal-bars i:nth-child(3) { height: 11px; }
.signal-bars i:nth-child(4) { height: 14px; opacity: 0.3; }

.radio-display h2 {
  margin: 27px 0 8px;
  color: #f4dfb1;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-size: clamp(36px, 4.5vw, 68px);
  font-stretch: condensed;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.radio-display-action {
  min-height: 32px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgb(234 195 112 / 26%);
}

.radio-open {
  color: #f1d89d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.radio-open:not(.is-disabled):hover {
  color: #fff2c8;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.radio-scale {
  position: relative;
  display: grid;
  height: 38px;
  margin: 20px 4px 12px;
  grid-template-columns: auto repeat(3, 1fr) auto repeat(3, 1fr) auto repeat(3, 1fr) auto;
  align-items: end;
  color: #bcaa88;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-align: center;
}

.radio-scale::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: #81745e;
}

.radio-scale i {
  z-index: 1;
  width: 1px;
  height: 6px;
  margin: 0 auto 5px;
  background: #81745e;
}

.radio-scale span {
  z-index: 1;
  padding-bottom: 12px;
}

#radio-needle {
  --needle-left: 0%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: var(--needle-left);
  width: 2px;
  height: 38px;
  background: #d2533c;
  box-shadow: 0 0 8px #d2533c;
  transition: left 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.radio-controls {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}

.radio-dial-wrap {
  position: relative;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border-radius: 50%;
}

.radio-dial-wrap input {
  position: absolute;
  z-index: 2;
  width: 138px;
  height: 138px;
  cursor: grab;
  opacity: 0;
}

.radio-dial-wrap:has(input:focus-visible) {
  outline: 3px solid #f3a712;
  outline-offset: 5px;
}

.radio-dial {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  background:
    repeating-conic-gradient(#171612 0 3deg, #433b31 3deg 6deg),
    #211f1a;
  border: 8px solid #171713;
  border-radius: 50%;
  box-shadow: inset 0 0 20px #000, 0 7px 12px rgb(0 0 0 / 45%), 0 0 0 1px #796a55;
}

.radio-dial i {
  position: absolute;
  inset: 20%;
  background: #332e27;
  border: 1px solid #74654f;
  border-radius: 50%;
}

.radio-dial b {
  position: absolute;
  top: 10px;
  left: calc(50% - 2px);
  width: 4px;
  height: 27px;
  background: #d0503a;
  border-radius: 3px;
  transform: rotate(var(--dial-turn, -116deg));
  transform-origin: 2px 49px;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.radio-presets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #746752;
}

.radio-presets button {
  display: grid;
  min-height: 59px;
  padding: 10px 12px;
  grid-template-columns: 27px 1fr;
  align-items: center;
  color: #bbaa8a;
  cursor: pointer;
  background: #26231e;
  border: 0;
  border-right: 1px solid #5c5142;
  border-bottom: 1px solid #5c5142;
  text-align: left;
}

.radio-presets button:nth-child(even) { border-right: 0; }
.radio-presets button:nth-child(n + 3) { border-bottom: 0; }

.radio-presets button span {
  color: #d0543c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.radio-presets button strong {
  overflow: hidden;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.radio-presets button:hover,
.radio-presets button[aria-checked="true"] {
  color: #f3dbab;
  background: #171714;
  box-shadow: inset 3px 0 #d0543c;
}

.radio-model {
  position: absolute;
  right: 45px;
  bottom: 25px;
  margin: 0;
  color: #92826a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.14em;
}

/* -------------------------------------------------------------------------- */
/* 04 — THE WORD GARDEN                                                       */
/* -------------------------------------------------------------------------- */

.concept-garden {
  min-height: 790px;
  overflow: hidden;
  color: #2d2926;
  background:
    linear-gradient(90deg, rgb(83 81 52 / 5%) 1px, transparent 1px) 0 0 / 9vw 100%,
    #f0e5ce;
  isolation: isolate;
}

.concept-garden::before {
  position: absolute;
  z-index: -1;
  right: -5vw;
  bottom: -28vw;
  left: -5vw;
  height: 50vw;
  content: "";
  background: #344c35;
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.garden-sun {
  position: absolute;
  z-index: -1;
  top: 10vh;
  right: 9vw;
  width: clamp(90px, 13vw, 190px);
  aspect-ratio: 1;
  background: #d99b3c;
  border-radius: 50%;
  opacity: 0.82;
}

.garden-canopy {
  position: absolute;
  z-index: -1;
  inset: 5vh 3vw auto 25vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4vw;
  align-items: center;
  justify-content: center;
  color: rgb(75 84 50 / 12%);
  font-family: Didot, "Iowan Old Style", Georgia, serif;
  font-size: clamp(50px, 8vw, 126px);
  font-style: italic;
  letter-spacing: -0.07em;
  line-height: 0.7;
  pointer-events: none;
}

.garden-canopy span:nth-child(even) {
  color: rgb(133 48 56 / 12%);
  transform: translateY(15px);
}

.garden-canopy span {
  animation: word-breathe 11s ease-in-out infinite alternate;
}

.garden-canopy span:nth-child(2n) { animation-delay: -4s; }
.garden-canopy span:nth-child(3n) { animation-delay: -7s; }

@keyframes word-breathe {
  to { transform: translateY(-7px); }
}

.garden-header {
  position: absolute;
  z-index: 3;
  top: 118px;
  left: clamp(28px, 5vw, 78px);
  width: min(370px, 28vw);
}

.garden-header > p,
.garden-header > span,
.garden-footer,
.garden-number,
.garden-root {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.garden-header > p {
  margin: 0;
  color: #8b3340;
  font-weight: 700;
}

.garden-header h1 {
  margin: 22px 0 25px;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-size: clamp(48px, 5.7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
}

.garden-header > span {
  display: block;
  width: max-content;
  padding-top: 12px;
  border-top: 1px solid #676050;
}

.garden-bed {
  position: absolute;
  z-index: 2;
  top: 24vh;
  right: 4vw;
  bottom: 130px;
  left: 34vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2vh 3vw;
}

.garden-plant {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
}

.garden-plant-2 { transform: translateY(-7vh); }
.garden-plant-3 { transform: translateX(6vw); }
.garden-plant-4 { transform: translate(-2vw, -2vh); }

.garden-seed {
  position: relative;
  display: flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 8px 8px 0;
  align-items: flex-start;
  color: #332a2c;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
}

.garden-number {
  flex: 0 0 27px;
  padding-top: 7px;
  color: #933847;
}

.garden-name {
  display: flex;
  flex-direction: column;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.7;
  transition: color 280ms ease, letter-spacing 400ms ease, transform 400ms ease;
}

.garden-name em {
  margin: 0.15em 0 -0.04em 0.8em;
  color: #526444;
  font-size: 0.43em;
  font-weight: 400;
}

.garden-punctuation {
  position: absolute;
  top: -7px;
  right: -20px;
  color: #d09436;
  font-size: 19px;
  opacity: 0;
  transform: scale(0) rotate(-35deg);
  transition: opacity 250ms ease, transform 400ms cubic-bezier(0.2, 0.9, 0.2, 1.4);
}

.garden-plant.is-blooming .garden-name,
.garden-seed:hover .garden-name {
  color: #8d3340;
  letter-spacing: -0.035em;
  transform: translateX(8px) rotate(-1deg);
}

.garden-plant.is-blooming .garden-punctuation {
  opacity: 1;
  transform: scale(1) rotate(8deg);
}

.garden-root {
  display: grid;
  overflow: hidden;
  max-height: 0;
  grid-template-columns: minmax(30px, 1fr) auto;
  gap: 9px;
  align-items: start;
  visibility: hidden;
  opacity: 0;
  transition: max-height 400ms ease, opacity 300ms ease;
}

.garden-plant.is-blooming .garden-root {
  max-height: 120px;
  padding-top: 13px;
  visibility: visible;
  opacity: 1;
}

.root-line {
  height: 20px;
  border-bottom: 1px solid #526444;
  border-left: 1px solid #526444;
  border-radius: 0 0 0 14px;
}

.garden-root > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 7px 14px;
  align-items: center;
}

.garden-root p {
  grid-column: 1 / -1;
  margin: 0;
  color: #49453d;
  text-transform: none;
}

.garden-open {
  color: #8d3340;
  font-weight: 700;
  text-decoration: none;
}

.garden-open:not(.is-disabled):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.garden-footer {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 105px;
  left: 5vw;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #e8dfc9;
}

.garden-footer p {
  margin: 0;
}

.garden-footer span {
  color: #e5a945;
  font-size: 22px;
}

/* -------------------------------------------------------------------------- */
/* 05 — SIGNAL FROM THE FUTURE                                                */
/* -------------------------------------------------------------------------- */

.concept-signal {
  min-height: 800px;
  overflow: hidden;
  padding: 92px clamp(26px, 4vw, 68px) 120px;
  color: #e6e5da;
  background: #0b0d0c;
  isolation: isolate;
}

.signal-noise,
.signal-network,
.signal-scan {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.signal-noise {
  opacity: 0.18;
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 100% 5px,
    linear-gradient(90deg, rgb(166 211 164 / 7%) 1px, transparent 1px) 0 0 / 9vw 100%;
}

.signal-network {
  right: 16vw;
  left: 35vw;
  opacity: 0.35;
}

.signal-network svg {
  width: 100%;
  height: 100%;
}

.signal-network path {
  fill: none;
  stroke: #84bf92;
  stroke-dasharray: 2 8;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.signal-network circle {
  fill: #d6d572;
}

.signal-scan {
  left: -20%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgb(143 206 151 / 7%), transparent);
  transform: skewX(-15deg);
  animation: signal-scan 8s linear infinite;
}

@keyframes signal-scan {
  to { transform: translateX(760%) skewX(-15deg); }
}

.signal-header {
  position: absolute;
  top: 22px;
  right: clamp(26px, 4vw, 68px);
  left: clamp(26px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(222 224 210 / 22%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-header a {
  color: #d8d873;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.signal-header a span {
  margin: 0 8px;
  color: #768078;
}

.signal-header p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #9da49b;
}

.signal-header p i,
.signal-footer span i {
  width: 6px;
  height: 6px;
  background: #7fc88d;
  border-radius: 50%;
  box-shadow: 0 0 12px #7fc88d;
}

.signal-layout {
  display: grid;
  min-height: calc(100svh - 212px);
  grid-template-columns: minmax(250px, 0.7fr) minmax(370px, 1.2fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

.signal-intro > p,
.signal-resolver-top,
.signal-bands > p,
.signal-domain,
.signal-footer,
.signal-actions {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-intro > p {
  margin: 0 0 28px;
  color: #7fc88d;
}

.signal-intro h1 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(54px, 6.7vw, 108px);
  font-stretch: expanded;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.signal-intro h1 em {
  color: transparent;
  -webkit-text-stroke: 1px #d9d873;
  font-style: normal;
}

.signal-resolver {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background: rgb(17 24 20 / 82%);
  border: 1px solid rgb(134 194 143 / 42%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  backdrop-filter: blur(7px);
}

.signal-resolver::after {
  position: absolute;
  right: -15%;
  bottom: -28%;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgb(216 216 115 / 24%);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgb(216 216 115 / 4%), 0 0 0 56px rgb(216 216 115 / 3%);
}

.signal-resolver-top {
  display: flex;
  justify-content: space-between;
  color: #84c692;
}

.signal-resolver-top p {
  margin: 0;
}

.signal-code {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 60px;
  color: #d9d873;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.signal-code i {
  width: 48px;
  border-top: 1px dashed #d9d873;
}

.signal-resolver h2 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 20px 0 12px;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  font-stretch: expanded;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.83;
  text-transform: uppercase;
}

.signal-domain {
  position: relative;
  z-index: 1;
  color: #9da59d;
}

.signal-actions {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 4vw, 56px);
  bottom: 40px;
  left: clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgb(134 194 143 / 38%);
}

.signal-open {
  color: #d9d873;
  font-weight: 700;
  text-decoration: none;
}

.signal-open:not(.is-disabled):hover {
  color: #fffca3;
}

.signal-bands > p {
  margin: 0 0 13px;
  color: #7fc88d;
}

.signal-bands ol {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgb(225 226 213 / 27%);
  list-style: none;
}

.signal-bands button {
  display: grid;
  width: 100%;
  min-height: 86px;
  padding: 11px 0;
  grid-template-columns: 32px 1fr;
  grid-template-rows: 1fr auto;
  color: #a4aaa4;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(225 226 213 / 27%);
  text-align: left;
}

.signal-bands button > span {
  color: #d9d873;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.signal-bands button strong {
  align-self: start;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signal-bands button > i {
  display: flex;
  grid-column: 2;
  gap: 3px;
  align-items: center;
  height: 12px;
}

.signal-bands button > i b {
  width: 12%;
  height: 1px;
  background: #647068;
}

.signal-bands button > i b:nth-child(2) { width: 22%; }
.signal-bands button > i b:nth-child(3) { width: 8%; }
.signal-bands button > i b:nth-child(4) { width: 17%; }
.signal-bands button > i b:nth-child(5) { width: 11%; }

.signal-bands button:hover,
.signal-bands button[aria-pressed="true"] {
  padding-left: 12px;
  color: #f0f0e4;
  background: rgb(127 200 141 / 8%);
}

.signal-bands button[aria-pressed="true"] > i b {
  background: #7fc88d;
  box-shadow: 0 0 8px rgb(127 200 141 / 65%);
}

.signal-footer {
  position: absolute;
  right: clamp(26px, 4vw, 68px);
  bottom: 94px;
  left: clamp(26px, 4vw, 68px);
  display: flex;
  justify-content: space-between;
  color: #798079;
}

.signal-footer p {
  margin: 0;
}

.signal-footer span {
  display: flex;
  gap: 9px;
  align-items: center;
}

/* -------------------------------------------------------------------------- */
/* 06 — THE CARPET STILL LIFE                                                 */
/* -------------------------------------------------------------------------- */

.concept-still-life {
  isolation: isolate;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  color: #f6ead1;
  background: #4a1714;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
}

.still-life-carpet,
.still-life-wash {
  position: absolute;
  inset: 0;
}

.still-life-carpet {
  z-index: -3;
  background: #5f211c url("./assets/still-life-carpet.webp") center / cover no-repeat;
  filter: saturate(.82) brightness(.74) contrast(1.06);
  transform: scale(1.015);
}

.still-life-wash {
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, transparent 22%, rgb(26 9 8 / 16%) 65%, rgb(15 7 5 / 48%) 112%),
    linear-gradient(180deg, rgb(24 10 8 / 32%), transparent 22% 72%, rgb(25 10 7 / 32%));
  box-shadow: inset 0 0 8vw rgb(12 6 5 / 45%);
}

.still-life-intro {
  position: absolute;
  z-index: 14;
  top: 18px;
  left: 50%;
  width: min(430px, 40vw);
  padding: 9px 24px 10px;
  color: #3a231a;
  background: linear-gradient(105deg, #dec89e, #f0dfbd 50%, #c8aa76);
  border: 1px solid #9c7744;
  box-shadow: 0 8px 22px rgb(25 8 6 / 30%), inset 0 0 0 3px rgb(255 250 220 / 22%);
  text-align: center;
  transform: translateX(-50%) rotate(-.35deg);
}

.still-life-intro::before,
.still-life-intro::after {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 2px;
  content: "";
  border-left: 1px dashed rgb(85 55 27 / 45%);
}

.still-life-intro::before { left: 8px; }
.still-life-intro::after { right: 8px; }

.still-life-intro p,
.still-life-intro span {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.still-life-intro h1 {
  margin: 2px 0 1px;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
}

.still-object {
  position: absolute;
  z-index: 10;
  display: block;
  color: inherit;
  cursor: pointer;
  filter: drop-shadow(0 15px 13px rgb(15 5 4 / 42%));
  text-decoration: none;
  transform-origin: center;
  transition: filter 280ms ease, transform 320ms cubic-bezier(.2, .8, .2, 1);
}

.still-object:hover,
.still-object:focus-visible {
  z-index: 20;
  filter: drop-shadow(0 24px 18px rgb(15 5 4 / 50%));
  transform: translateY(-8px) rotate(0deg) scale(1.025);
}

.still-object:focus-visible {
  outline: 4px solid #f4c550;
  outline-offset: 8px;
  border-radius: 10px;
}

.still-object:active {
  transform: translateY(-2px) scale(.99);
}

.object-invitation {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: -22px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 31px;
  padding: 6px 10px 6px 12px;
  color: #2d2117;
  background: #e5cfa2;
  border: 1px solid #9c7945;
  box-shadow: 0 5px 10px rgb(27 9 5 / 30%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(8px, .72vw, 11px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(1.6deg);
}

.object-invitation b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: #f7dfac;
  background: #7b2e25;
  border-radius: 50%;
  font-size: 10px;
}

.still-book {
  top: 16%;
  left: 6.5%;
  width: clamp(185px, 19vw, 300px);
  aspect-ratio: .72;
  transform: rotate(-5deg);
}

.book-pages,
.book-cover {
  position: absolute;
  inset: 0;
  border-radius: 4px 11px 11px 4px;
}

.book-pages {
  top: 8px;
  right: -9px;
  bottom: -8px;
  left: 8px;
  background: repeating-linear-gradient(0deg, #a89470 0 1px, #ead9b4 1px 4px);
  border: 2px solid #60402b;
  box-shadow: 6px 8px 0 #563520;
}

.book-cover {
  display: flex;
  align-items: center;
  padding: 13% 12%;
  color: #e5ca8d;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 8%), transparent 8%),
    radial-gradient(circle at 25% 20%, rgb(214 169 85 / 12%), transparent 18%),
    linear-gradient(145deg, #39281d, #23170f 56%, #513524);
  border: 4px double #b88a43;
  box-shadow: inset 10px 0 13px rgb(0 0 0 / 24%), inset 0 0 24px rgb(0 0 0 / 35%);
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.book-cover::before,
.book-cover::after {
  position: absolute;
  right: 10%;
  left: 10%;
  height: 13%;
  content: "";
  border: 1px solid rgb(209 166 81 / 65%);
}

.book-cover::before { top: 8%; border-bottom: 0; }
.book-cover::after { bottom: 8%; border-top: 0; }

.book-cover small,
.book-cover em {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(7px, .62vw, 10px);
  font-style: normal;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.book-cover strong {
  margin: 10% 0 7%;
  font-size: clamp(25px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .93;
}

.book-cover i {
  margin-bottom: 8%;
  color: #b64632;
  font-size: clamp(20px, 2vw, 32px);
  font-style: normal;
}

.book-rule {
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 9%;
  width: 4px;
  border-right: 1px solid #936d36;
  border-left: 1px solid #936d36;
}

.still-map {
  top: 18%;
  left: 38%;
  width: clamp(245px, 26vw, 410px);
  aspect-ratio: 1.33;
  transform: rotate(2.5deg);
}

.map-paper {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 32.8%, rgb(86 58 26 / 14%) 33%, transparent 33.8% 65.8%, rgb(86 58 26 / 13%) 66%, transparent 67%),
    linear-gradient(0deg, transparent 49.5%, rgb(86 58 26 / 11%) 50%, transparent 50.8%),
    #d9c290;
  border: 1px solid #82653a;
  clip-path: polygon(1% 2%, 32% 0, 34% 3%, 66% 1%, 68% 4%, 99% 2%, 98% 97%, 67% 99%, 65% 96%, 34% 99%, 32% 96%, 1% 98%);
  box-shadow: inset 0 0 30px rgb(89 57 24 / 24%);
}

.map-paper svg {
  width: 100%;
  height: 100%;
}

.map-paper text {
  fill: #493923;
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 2px;
}

.map-paper .map-sub {
  font-size: 7px;
  letter-spacing: 1.4px;
}

.still-map .object-invitation {
  right: 5%;
  transform: rotate(-2deg);
}

.still-vinyl {
  right: 28%;
  bottom: 15%;
  width: clamp(175px, 18vw, 285px);
  aspect-ratio: 1;
  transform: rotate(4deg);
}

.record-sleeve,
.vinyl-disc {
  position: absolute;
  border-radius: 50%;
}

.record-sleeve {
  inset: 1% 10% 5% -8%;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 46%, rgb(250 217 147 / 15%) 47% 53%, transparent 54%),
    #8a3228;
  border: 2px solid #4e1e1a;
  border-radius: 3px;
  box-shadow: inset 0 0 30px rgb(43 12 9 / 35%);
}

.record-sleeve::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 2px solid #c79e56;
  transform: rotate(45deg);
}

.record-sleeve i,
.record-sleeve b {
  position: absolute;
  z-index: 1;
  font-style: normal;
  font-weight: 400;
}

.record-sleeve i {
  top: 11%;
  left: 11%;
  color: #f0d79d;
  font-size: clamp(14px, 1.5vw, 23px);
  line-height: .9;
}

.record-sleeve b {
  right: 10%;
  bottom: 10%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(7px, .55vw, 9px);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.vinyl-disc {
  top: 0;
  right: -8%;
  bottom: 0;
  width: 92%;
  background:
    repeating-radial-gradient(circle, transparent 0 2px, rgb(255 255 255 / 7%) 3px, transparent 4px 7px),
    radial-gradient(circle at 33% 28%, #3b3832, #131310 42%, #050504 78%);
  border: 2px solid #29251f;
  box-shadow: inset 0 0 0 2px #050504, 0 7px 15px rgb(0 0 0 / 44%);
}

.vinyl-disc > i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 31%;
  aspect-ratio: 1;
  place-items: center;
  color: #352217;
  background: radial-gradient(circle, #17120d 0 4%, transparent 5%), #d2ae5c;
  border: 2px solid #733227;
  border-radius: 50%;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.vinyl-disc > i b {
  position: absolute;
  inset: 9%;
  border: 1px solid #8e392b;
  border-radius: 50%;
}

.vinyl-disc > i em {
  font: 800 clamp(5px, .45vw, 8px) ui-monospace, monospace;
  letter-spacing: .09em;
}

.still-vinyl:hover .vinyl-disc,
.still-vinyl:focus-visible .vinyl-disc {
  animation: still-record-spin 2.4s linear infinite;
}

@keyframes still-record-spin {
  to { transform: rotate(1turn); }
}

.still-phone {
  top: 29%;
  right: 5%;
  width: clamp(190px, 20vw, 315px);
  padding: 0;
  background: transparent;
  border: 0;
  transform: rotate(3deg);
}

.still-phone svg,
.tea-service svg,
.tembur svg {
  display: block;
  width: 100%;
  height: auto;
}

.still-phone .object-invitation {
  right: 9%;
  bottom: 1px;
  transform: rotate(-2deg);
}

.still-life-decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 12px 10px rgb(20 7 5 / 36%));
}

.peacock-feathers {
  top: 5%;
  right: 20%;
  width: clamp(210px, 21vw, 330px);
  transform: rotate(8deg);
}

.kilim-fold {
  top: 51%;
  left: -3%;
  display: grid;
  width: clamp(180px, 19vw, 300px);
  height: clamp(150px, 21vw, 320px);
  overflow: hidden;
  background: #263e3d;
  border: 5px solid #c28a39;
  box-shadow: inset 0 0 0 8px #7c2c25, inset 0 0 32px rgb(0 0 0 / 25%);
  grid-template-columns: repeat(5, 1fr);
  transform: rotate(8deg);
}

.kilim-fold::after {
  position: absolute;
  inset: 14%;
  content: "";
  background: repeating-linear-gradient(45deg, #c4903e 0 5px, #732b25 5px 10px, #d9bf7e 10px 14px, #263e3d 14px 20px);
  border: 5px double #d2a95f;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.kilim-fold i:nth-child(odd) { background: rgb(148 51 39 / 38%); }
.kilim-fold i { border-right: 1px dashed rgb(235 201 125 / 38%); }

.tea-service {
  bottom: 7%;
  left: 16%;
  width: clamp(175px, 18vw, 285px);
  transform: rotate(-3deg);
}

.pomegranates {
  top: 10%;
  left: 29%;
  width: 140px;
  height: 90px;
}

.pomegranates i {
  position: absolute;
  display: block;
  width: 55px;
  height: 55px;
  background: radial-gradient(circle at 32% 25%, #c95b43, #8a271f 56%, #41130f);
  border: 2px solid #5d1b16;
  border-radius: 46% 49% 52% 48%;
  box-shadow: inset -8px -9px 13px rgb(40 7 5 / 25%);
}

.pomegranates i::before {
  position: absolute;
  top: -8px;
  left: 19px;
  width: 17px;
  height: 13px;
  content: "";
  background: #713120;
  clip-path: polygon(0 100%, 18% 0, 50% 48%, 82% 0, 100% 100%);
}

.pomegranates i:nth-child(1) { top: 13px; left: 2px; transform: rotate(-13deg); }
.pomegranates i:nth-child(2) { top: 0; left: 43px; transform: rotate(7deg); }
.pomegranates i:nth-child(3) { top: 23px; left: 82px; transform: rotate(16deg); }

.tembur {
  right: -6%;
  bottom: 6%;
  width: min(42vw, 650px);
  transform: rotate(-9deg);
}

.metal-charms {
  right: 45%;
  bottom: 9%;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #d4b365;
  font-size: 20px;
  text-shadow: 0 1px #503619;
  transform: rotate(-13deg);
}

.metal-charms::before {
  width: 68px;
  content: "";
  border-top: 2px dotted #b78c42;
}

.metal-charms span:nth-child(even) { color: #9b7741; font-size: 14px; }

.phone-note {
  width: min(500px, calc(100vw - 30px));
  padding: 10px;
  color: #3b281b;
  background: linear-gradient(135deg, #775022, #d3a952 43%, #654018);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 70px rgb(18 5 4 / 65%);
}

.phone-note::backdrop {
  background: rgb(28 8 7 / 62%);
  backdrop-filter: blur(5px) saturate(.7);
}

.phone-note-frame {
  position: relative;
  padding: clamp(34px, 7vw, 58px) clamp(27px, 6vw, 52px) 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.6%, rgb(95 62 30 / 8%) 50%, transparent 50.4%),
    #ead9b6;
  border: 1px solid #65441f;
  text-align: center;
}

.phone-note-frame::before {
  position: absolute;
  inset: 11px;
  content: "";
  pointer-events: none;
  border: 1px dashed rgb(102 69 35 / 43%);
}

.phone-note form {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.phone-note form button {
  display: grid;
  width: 35px;
  height: 35px;
  padding: 0;
  place-items: center;
  color: #3c2818;
  cursor: pointer;
  background: #d2b77f;
  border: 1px solid #76552f;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.phone-note p,
.phone-note i {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone-note i {
  display: block;
}

.phone-note h2 {
  margin: 12px 0 17px;
  font-size: clamp(35px, 8vw, 52px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}

.phone-note-frame > span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}

.phone-note a {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 18px 0 27px;
  color: #732b23;
  font: 750 clamp(15px, 4vw, 21px) ui-monospace, SFMono-Regular, Menlo, monospace;
  text-underline-offset: 5px;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE COMPOSITIONS                                                    */
/* -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .atlas-header {
    width: 34vw;
  }

  .atlas-route {
    right: 13vw;
    left: 33vw;
  }

  .atlas-field-note {
    width: 32vw;
  }

  .museum-floorplan button span {
    display: none;
  }

  .radio-set {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .radio-speaker {
    width: min(30vw, 330px);
  }

  .signal-layout {
    grid-template-columns: minmax(210px, 0.55fr) minmax(340px, 1fr) minmax(230px, 0.65fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .prototype-badge span:last-child {
    display: none;
  }

  .concept-switcher {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-height: 58px;
    transform: none;
  }

  .keyboard-hint {
    display: none;
  }

  .switcher-arrow {
    flex-basis: 42px;
  }

  .concept-tabs button {
    align-items: center;
    padding: 6px 3px;
    text-align: center;
  }

  .concept-tabs button strong {
    font-size: 9px;
  }

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

  .notes-grid > div,
  .notes-grid > div:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }

  .concept-atlas,
  .concept-museum,
  .concept-radio,
  .concept-garden,
  .concept-signal {
    min-height: 100svh;
  }

  /* Atlas becomes a vertical route rather than a miniaturized map. */
  .concept-atlas {
    min-height: 1260px;
    overflow: hidden;
    padding: 105px 22px 135px;
  }

  .atlas-header,
  .atlas-index,
  .atlas-route,
  .atlas-field-note,
  .atlas-legend {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .atlas-header {
    max-width: 600px;
  }

  .atlas-header h1 {
    margin: 17px 0 20px;
    font-size: clamp(66px, 19vw, 118px);
  }

  .atlas-deck {
    max-width: 430px;
  }

  .atlas-index {
    z-index: 5;
    margin-top: 34px;
    overflow-x: auto;
  }

  .atlas-index > p {
    display: none;
  }

  .atlas-index ol {
    display: flex;
    width: max-content;
    border-top: 1px solid rgb(31 37 31 / 30%);
  }

  .atlas-index li {
    width: 118px;
  }

  .atlas-index button {
    grid-template-columns: 25px 1fr;
    min-height: 48px;
    border-right: 1px solid rgb(31 37 31 / 20%);
  }

  .atlas-route {
    height: 540px;
    margin: 28px 0 12px;
  }

  .atlas-route::before {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 50%;
    content: "";
    border-left: 2px dotted #943c2f;
  }

  .atlas-route-line {
    display: none;
  }

  .atlas-waypoint {
    right: auto;
    left: calc(50% - 24px);
  }

  .atlas-waypoint-1 { top: 2%; }
  .atlas-waypoint-2 { top: 32%; }
  .atlas-waypoint-3 { top: 61%; }
  .atlas-waypoint-4 { top: 89%; }

  .atlas-waypoint-1 .waypoint-label,
  .atlas-waypoint-3 .waypoint-label {
    right: auto;
    left: 54px;
  }

  .atlas-waypoint-2 .waypoint-label,
  .atlas-waypoint-4 .waypoint-label {
    right: 54px;
    left: auto;
  }

  .waypoint-label {
    top: 8px;
    font-size: 18px;
  }

  .atlas-field-note {
    max-width: 540px;
    margin: 18px auto 0;
  }

  .atlas-legend {
    display: none;
  }

  /* Museum becomes a vertical catalogue. */
  .concept-museum {
    overflow: visible;
  }

  .museum-entrance {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 78svh;
    padding: 100px 24px 110px;
    border-right: 0;
    border-bottom: 1px solid #aaa397;
  }

  .museum-entrance h1 {
    font-size: clamp(58px, 16vw, 104px);
  }

  .museum-floorplan {
    position: sticky;
    top: 70px;
    left: 0;
    width: 100%;
    min-height: 58px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
  }

  .museum-floorplan > span {
    padding: 0 10px;
  }

  .museum-floorplan button {
    flex: 1 0 58px;
    justify-content: center;
  }

  .museum-corridor {
    position: relative;
    inset: auto;
    display: block;
    overflow: visible;
  }

  .museum-room {
    min-width: 0;
    min-height: 82svh;
    padding: 76px 24px 110px;
  }

  .museum-artifact {
    width: min(70vw, 380px);
  }

  .museum-label {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .museum-future {
    min-width: 0;
    min-height: 60svh;
  }

  /* Radio stacks into a handheld object. */
  .concept-radio {
    padding: 100px 18px 120px;
  }

  .radio-header {
    width: 100%;
  }

  .radio-header span {
    display: none;
  }

  .radio-set {
    width: 100%;
    padding: 32px 24px 48px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .radio-speaker {
    width: min(58vw, 330px);
    margin: 0 auto;
  }

  .radio-display {
    min-height: 220px;
  }

  .radio-controls {
    grid-template-columns: 130px 1fr;
  }

  .radio-dial-wrap {
    width: 124px;
    height: 124px;
  }

  .radio-dial-wrap input {
    width: 124px;
    height: 124px;
  }

  .radio-dial {
    width: 108px;
    height: 108px;
  }

  /* Garden becomes a vertical reading composition. */
  .concept-garden {
    min-height: 1380px;
    overflow: hidden;
    padding: 100px 22px 140px;
  }

  .concept-garden::before {
    bottom: -4%;
    height: 32%;
  }

  .garden-header,
  .garden-bed,
  .garden-footer {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .garden-header {
    max-width: 560px;
  }

  .garden-header h1 {
    font-size: clamp(58px, 15vw, 100px);
  }

  .garden-canopy {
    top: 13%;
    right: -10%;
    left: 10%;
    opacity: 0.7;
  }

  .garden-bed {
    display: flex;
    gap: 40px;
    margin-top: 90px;
    flex-direction: column;
  }

  .garden-plant-1,
  .garden-plant-2,
  .garden-plant-3,
  .garden-plant-4 {
    transform: none;
  }

  .garden-plant:nth-child(even) {
    align-items: flex-end;
  }

  .garden-plant:nth-child(even) .garden-seed {
    text-align: right;
  }

  .garden-name {
    font-size: clamp(50px, 14vw, 84px);
  }

  .garden-root,
  .garden-plant.is-blooming .garden-root {
    width: min(100%, 430px);
    max-height: 120px;
    padding-top: 12px;
    visibility: visible;
    opacity: 1;
  }

  .garden-footer {
    margin-top: 80px;
  }

  /* Signal becomes a vertical receiver deck. */
  .concept-signal {
    min-height: 1300px;
    padding: 100px 22px 130px;
  }

  .signal-header {
    right: 22px;
    left: 22px;
  }

  .signal-layout {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .signal-intro {
    margin: 40px 0 55px;
  }

  .signal-intro h1 {
    font-size: clamp(62px, 16.5vw, 112px);
  }

  .signal-resolver {
    min-height: 480px;
    order: 2;
  }

  .signal-bands {
    margin-top: 45px;
    order: 3;
  }

  .signal-bands ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .signal-bands li:nth-child(odd) button {
    border-right: 1px solid rgb(225 226 213 / 27%);
  }

  .signal-footer {
    right: 22px;
    bottom: 93px;
    left: 22px;
  }

  .signal-footer p {
    max-width: 55%;
    line-height: 1.5;
  }

  .signal-network {
    top: 22%;
    right: -30%;
    bottom: 35%;
    left: 10%;
  }
}

@media (max-width: 560px) {
  .prototype-badge,
  .notes-trigger {
    top: 12px;
  }

  .prototype-badge {
    left: 12px;
  }

  .notes-trigger {
    right: 12px;
    width: 38px;
    padding: 6px;
    overflow: hidden;
    color: transparent;
  }

  .notes-trigger span {
    flex: 0 0 24px;
    color: #f5f0e7;
  }

  .concept-switcher {
    padding: 5px;
    border-radius: 16px;
  }

  .switcher-arrow {
    flex-basis: 34px;
    font-size: 18px;
  }

  .concept-tabs button strong {
    font-size: 0;
  }

  .concept-tabs button strong::first-letter {
    font-size: 0;
  }

  .concept-tabs button span {
    font-size: 10px;
  }

  .notes-sheet {
    padding: 25px 20px;
  }

  .notes-heading {
    gap: 15px;
  }

  .notes-heading h2 {
    font-size: 42px;
  }

  .notes-premise {
    font-size: 17px;
  }

  .atlas-waypoint-1 .waypoint-label,
  .atlas-waypoint-3 .waypoint-label {
    left: 45px;
  }

  .atlas-waypoint-2 .waypoint-label,
  .atlas-waypoint-4 .waypoint-label {
    right: 45px;
  }

  .waypoint-label {
    font-size: 15px;
  }

  .radio-header p {
    max-width: 45%;
    line-height: 1.5;
  }

  .radio-set {
    padding: 28px 17px 44px;
    border-radius: 22px 22px 34px 34px;
  }

  .radio-speaker {
    width: min(70vw, 290px);
  }

  .radio-display {
    padding: 22px 19px;
  }

  .radio-display h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .radio-controls {
    grid-template-columns: 1fr;
  }

  .radio-dial-wrap {
    margin: 0 auto;
  }

  .radio-presets button {
    min-height: 62px;
  }

  .radio-model {
    right: 28px;
  }

  .garden-root,
  .garden-plant.is-blooming .garden-root {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .garden-root > div {
    grid-template-columns: 1fr;
  }

  .garden-root p {
    overflow-wrap: anywhere;
  }

  .garden-plant:nth-child(even) .garden-root {
    align-self: flex-end;
  }

  .signal-header p {
    font-size: 0;
  }

  .signal-header {
    top: 68px;
  }

  .signal-header p i {
    display: block;
  }

  .signal-resolver {
    min-height: 430px;
    padding: 27px 22px;
  }

  .signal-resolver h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .signal-actions {
    right: 22px;
    bottom: 30px;
    left: 22px;
  }

  .signal-bands ol {
    grid-template-columns: 1fr;
  }

  .signal-bands li:nth-child(odd) button {
    border-right: 0;
  }

  .signal-footer span {
    font-size: 0;
  }
}

@media (max-width: 820px) {
  .still-life-intro {
    top: 60px;
    width: min(64vw, 320px);
    padding: 7px 18px 8px;
  }

  .still-life-intro p,
  .still-life-intro span {
    display: none;
  }

  .still-life-intro h1 {
    margin: 0;
    font-size: clamp(18px, 5.4vw, 25px);
  }

  .still-book {
    top: 16%;
    left: 4%;
    width: min(39vw, 260px);
  }

  .still-map {
    top: 18%;
    right: 3%;
    left: auto;
    width: min(47vw, 300px);
  }

  .still-phone {
    top: 43%;
    right: auto;
    left: 3%;
    width: min(42vw, 260px);
  }

  .still-vinyl {
    right: 4%;
    bottom: 18%;
    width: min(39vw, 245px);
  }

  .object-invitation {
    right: 0;
    bottom: -19px;
    gap: 5px;
    min-height: 25px;
    padding: 5px 6px 5px 8px;
    font-size: clamp(6px, 1.8vw, 9px);
  }

  .object-invitation b {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }

  .peacock-feathers {
    top: 7%;
    right: -4%;
    width: 40vw;
    opacity: .7;
  }

  .kilim-fold {
    top: 51%;
    left: -19%;
    width: 42vw;
    height: 34vw;
    opacity: .72;
  }

  .tea-service {
    bottom: 6%;
    left: 2%;
    width: 35vw;
  }

  .pomegranates {
    top: 37%;
    left: 47%;
    transform: scale(.72);
    transform-origin: top left;
  }

  .tembur {
    right: -30%;
    bottom: 8%;
    width: 79vw;
    opacity: .86;
  }

  .metal-charms {
    right: auto;
    bottom: 14%;
    left: 40%;
    transform: scale(.72) rotate(-13deg);
  }

  .metal-charms::before {
    width: 32px;
  }
}

@media (max-width: 420px) {
  .still-life-carpet {
    background-position: 48% center;
  }

  .book-cover {
    border-width: 3px;
  }

  .book-cover strong {
    font-size: clamp(19px, 7vw, 29px);
  }

  .record-sleeve i {
    font-size: 12px;
  }

  .pomegranates {
    left: 45%;
    transform: scale(.58);
  }

  .phone-note-frame {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (min-width: 821px) and (max-height: 720px) {
  .still-book { top: 14%; width: min(18vw, 230px); }
  .still-map { top: 16%; width: min(24vw, 330px); }
  .still-phone { top: 25%; width: min(18vw, 245px); }
  .still-vinyl { bottom: 18%; width: min(16vw, 215px); }
  .tea-service { bottom: 7%; width: min(16vw, 220px); }
  .tembur { bottom: 8%; width: min(37vw, 520px); }
  .kilim-fold { top: 47%; width: min(17vw, 240px); height: min(19vw, 260px); }
}

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