:root {
  --ink: #10100e;
  --paper: #fbfbf6;
  --soft: #efefe8;
  --line: #d7d7ce;
  --muted: #66665e;
  --accent: #ffffff;
  --font: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro,
.pattern {
  min-height: 100svh;
  padding: clamp(34px, 5vw, 72px);
}

.intro {
  display: grid;
  min-height: 56svh;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.label,
.site-header p,
.mv-index,
.lower-panel span,
.project-strip,
.node,
.ribbon-art p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.intro h1 {
  max-width: 12em;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 6.2vw, 104px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

.intro > p:last-child {
  max-width: 48em;
  margin: 28px 0 0;
  color: #30302c;
  font-size: clamp(15px, 1.06vw, 18px);
  font-weight: 700;
  line-height: 2;
}

.pattern {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 32px;
  left: clamp(34px, 5vw, 72px);
  right: clamp(34px, 5vw, 72px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

.site-header.dark {
  color: rgba(255, 255, 255, 0.86);
}

.site-header a {
  font-size: 16px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(62px, 5.8vw, 96px);
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.social-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.icon-link {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 16, 14, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 251, 246, 0.54);
  backdrop-filter: blur(10px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.icon-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.icon-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.icon-link:hover svg {
  opacity: 1;
  transform: none;
}

.art-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mv-copy {
  position: absolute;
  left: clamp(34px, 5vw, 72px);
  bottom: clamp(150px, 16vh, 220px);
  z-index: 2;
  display: grid;
  gap: 24px;
  width: min(880px, 62vw);
}

.mv-copy h2 {
  margin: 0;
  color: var(--ink);
  font-feature-settings: "palt";
  font-size: clamp(62px, 6.2vw, 108px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.03;
}

.mv-copy h2 span {
  display: block;
  white-space: nowrap;
}

.mv-copy > p:last-child {
  max-width: 43em;
  margin: 0;
  color: #2f2f2b;
  font-size: clamp(15px, 1.04vw, 18px);
  font-weight: 700;
  line-height: 2.05;
}

.pattern-orbit {
  background: var(--paper);
}

.orbit-art {
  background:
    radial-gradient(circle at 72% 42%, rgba(16, 16, 14, 0.08), transparent 32%),
    linear-gradient(180deg, var(--paper), #f2f2ec);
}

.orbit {
  position: absolute;
  left: 48%;
  top: 48%;
  border: 1px solid rgba(16, 16, 14, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit-a {
  width: min(62vw, 900px);
  aspect-ratio: 1 / 0.62;
  animation: orbitDrift 18s ease-in-out infinite alternate;
}

.orbit-b {
  width: min(48vw, 680px);
  aspect-ratio: 1 / 0.72;
  transform: translate(-50%, -50%) rotate(22deg);
}

.orbit-c {
  width: min(30vw, 430px);
  aspect-ratio: 1;
  border-color: rgba(16, 16, 14, 0.32);
}

@keyframes orbitDrift {
  to {
    transform: translate(-50%, -50%) rotate(7deg);
  }
}

.core {
  position: absolute;
  left: 48%;
  top: 48%;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 122px);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.node {
  position: absolute;
  color: var(--ink);
}

.node-1 {
  left: 69%;
  top: 29%;
}

.node-2 {
  left: 34%;
  top: 33%;
}

.node-3 {
  left: 61%;
  top: 67%;
}

.node-4 {
  left: 78%;
  top: 55%;
}

.mv-index {
  position: absolute;
  right: clamp(34px, 5vw, 72px);
  bottom: clamp(44px, 5vw, 78px);
  z-index: 3;
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 16, 14, 0.4);
  color: var(--ink);
}

.pattern-ribbon {
  background: #11110f;
  color: var(--accent);
}

.pattern-ribbon .mv-copy h2,
.pattern-ribbon .mv-copy > p:last-child {
  color: var(--accent);
}

.pattern-ribbon .mv-copy > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.ribbon-art {
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.08), transparent 34%),
    #11110f;
}

.ribbon {
  position: absolute;
  height: clamp(120px, 13vw, 220px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.ribbon-1 {
  left: 30%;
  top: 18%;
  width: 62vw;
}

.ribbon-2 {
  left: 52%;
  top: 33%;
  width: 42vw;
  transform: rotate(24deg);
}

.ribbon-3 {
  left: 42%;
  top: 53%;
  width: 54vw;
  background: rgba(255, 255, 255, 0.06);
}

.ribbon-4 {
  left: 68%;
  top: 8%;
  width: 20vw;
  aspect-ratio: 1;
  height: auto;
}

.ribbon-art p {
  position: absolute;
  right: clamp(34px, 5vw, 72px);
  bottom: 46%;
  color: rgba(255, 255, 255, 0.56);
  text-align: right;
}

.lower-panel {
  position: absolute;
  right: clamp(34px, 5vw, 72px);
  bottom: clamp(44px, 5vw, 78px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1px;
  width: min(520px, 38vw);
  background: rgba(255, 255, 255, 0.22);
}

.lower-panel article {
  display: grid;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  background: rgba(17, 17, 15, 0.82);
  backdrop-filter: blur(12px);
}

.lower-panel strong {
  color: var(--accent);
  font-size: clamp(24px, 2.2vw, 40px);
  font-weight: 850;
  line-height: 1.05;
}

.pattern-map {
  background: var(--paper);
}

.pattern-map .site-header > a {
  color: #ffffff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.map-photo {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(360px, 35vw, 540px);
  margin: 0;
  overflow: hidden;
  background: #2f2f2b;
}

.map-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 14, 0.08), rgba(16, 16, 14, 0)),
    rgba(251, 251, 246, 0.03);
  content: "";
  pointer-events: none;
}

.map-photo img {
  width: 116%;
  max-width: none;
  filter: saturate(0.88) contrast(1.04) brightness(0.98);
  object-position: 48% 50%;
  transform: translate3d(0, 0, 0);
  animation: photoPan 34s ease-in-out infinite alternate;
}

.map-art {
  left: clamp(360px, 35vw, 540px);
  background:
    linear-gradient(rgba(16, 16, 14, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 14, 0.022) 1px, transparent 1px),
    var(--paper);
  background-position: 0 0;
  background-size: 76px 76px;
  animation: chaosGrid 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

@keyframes photoPan {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1.01);
  }

  100% {
    transform: translate3d(-11.5%, 0, 0) scale(1.01);
  }
}

@keyframes chaosGrid {
  0%,
  100% {
    background-position: 0 0;
    background-size: 76px 76px;
  }

  34% {
    background-position: 22px 14px;
    background-size: 74px 74px;
  }

  66% {
    background-position: 96px -40px;
    background-size: 108px 62px;
  }

  82% {
    background-position: -42px 88px;
    background-size: 42px 124px;
  }
}

.grid-lines {
  position: absolute;
  inset: 12% 8% 12% 0;
  border: 1px solid rgba(16, 16, 14, 0.05);
  animation: chaosField 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.city-sketch {
  position: absolute;
  inset: 6% 6% 8% 0;
  opacity: 0.42;
  pointer-events: none;
  transform: rotate(-2deg);
}

.city-plan {
  position: absolute;
  inset: -3% -3%;
  width: 106%;
  height: 106%;
  pointer-events: none;
}

.city-town {
  position: absolute;
  inset: 2% 2% auto;
  width: 96%;
  height: 94%;
  pointer-events: none;
}

.city-town path,
.city-town rect,
.city-town text {
  vector-effect: non-scaling-stroke;
}

.town-roads path {
  fill: rgba(16, 16, 14, 0.018);
  stroke: rgba(16, 16, 14, 0.1);
  stroke-width: 1.1;
}

.town-road-lines path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.2);
  stroke-dasharray: 12 10;
  stroke-width: 1.2;
}

.town-green path {
  fill: rgba(16, 16, 14, 0.014);
  stroke: rgba(16, 16, 14, 0.1);
  stroke-width: 1;
}

.town-building path,
.town-small-buildings path,
.town-trees path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.26);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.town-building .roof {
  fill: rgba(255, 255, 255, 0.42);
}

.town-building .front,
.town-building .side {
  fill: rgba(16, 16, 14, 0.016);
}

.town-building text {
  fill: rgba(16, 16, 14, 0.64);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.town-small-buildings path {
  opacity: 0.82;
  stroke-width: 0.95;
}

.town-trees path {
  opacity: 0.65;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.city-plan path,
.city-plan rect,
.city-plan circle {
  vector-effect: non-scaling-stroke;
}

.plan-river path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.08);
  stroke-width: 42;
}

.plan-major path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.15);
  stroke-dasharray: 22 10;
  stroke-width: 2.2;
}

.plan-streets path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.13);
  stroke-dasharray: 13 8;
  stroke-width: 1.4;
}

.plan-blocks rect {
  fill: rgba(16, 16, 14, 0.012);
  stroke: rgba(16, 16, 14, 0.14);
  stroke-width: 1.15;
}

.plan-details rect,
.plan-details circle,
.plan-details path {
  fill: rgba(16, 16, 14, 0.014);
  stroke: rgba(16, 16, 14, 0.12);
  stroke-width: 1;
}

.plan-lots rect {
  fill: rgba(16, 16, 14, 0.018);
  stroke: rgba(16, 16, 14, 0.135);
  stroke-width: 0.8;
}

.city-sketch::before,
.city-sketch::after {
  position: absolute;
  border: 1px solid rgba(16, 16, 14, 0.08);
  border-radius: 50%;
  content: "";
}

.city-sketch::before {
  left: 42%;
  top: 30%;
  width: 18vw;
  height: 18vw;
  transform: rotate(14deg) scaleX(1.24);
}

.city-sketch::after {
  right: 7%;
  bottom: 18%;
  width: 12vw;
  height: 8vw;
  transform: rotate(-18deg);
}

.city-road,
.city-block {
  position: absolute;
  display: block;
}

.city-road {
  height: 1px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(16, 16, 14, 0.14) 0 10px,
      transparent 10px 15px
    );
  filter: blur(0.12px);
  transform-origin: left center;
}

.city-road::after {
  position: absolute;
  inset: 4px 0 auto;
  height: 1px;
  background: rgba(16, 16, 14, 0.07);
  content: "";
}

.city-block {
  border: 1px solid rgba(16, 16, 14, 0.105);
  background: rgba(16, 16, 14, 0.012);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    10px 9px 0 rgba(16, 16, 14, 0.012);
}

.road-a {
  left: 6%;
  top: 24%;
  width: 76%;
  transform: rotate(13deg);
}

.road-b {
  left: 16%;
  top: 64%;
  width: 74%;
  transform: rotate(-9deg);
}

.road-c {
  left: 38%;
  top: 7%;
  width: 60%;
  transform: rotate(58deg);
}

.road-d {
  left: 2%;
  top: 78%;
  width: 56%;
  transform: rotate(-31deg);
}

.road-e {
  left: 54%;
  top: 46%;
  width: 38%;
  transform: rotate(28deg);
}

.block-a {
  left: 14%;
  top: 15%;
  width: 9vw;
  height: 6.4vw;
  transform: rotate(12deg);
}

.block-b {
  left: 31%;
  top: 35%;
  width: 7.4vw;
  height: 11vw;
  transform: rotate(-17deg);
}

.block-c {
  left: 55%;
  top: 18%;
  width: 10.5vw;
  height: 7vw;
  transform: rotate(7deg);
}

.block-d {
  left: 72%;
  top: 43%;
  width: 7.5vw;
  height: 9.5vw;
  transform: rotate(-24deg);
}

.block-e {
  left: 9%;
  top: 58%;
  width: 11vw;
  height: 8vw;
  transform: rotate(21deg);
}

.block-f {
  left: 46%;
  top: 66%;
  width: 8vw;
  height: 6vw;
  transform: rotate(-8deg);
}

.block-g {
  left: 83%;
  top: 21%;
  width: 5.5vw;
  height: 12vw;
  transform: rotate(18deg);
}

.road-f {
  left: 7%;
  top: 43%;
  width: 46%;
  transform: rotate(47deg);
}

.road-g {
  left: 58%;
  top: 72%;
  width: 42%;
  transform: rotate(-38deg);
}

.road-h {
  left: 18%;
  top: 88%;
  width: 58%;
  transform: rotate(4deg);
}

.block-h {
  left: 3%;
  top: 30%;
  width: 8vw;
  height: 14vw;
  transform: rotate(-29deg);
}

.block-i {
  left: 23%;
  top: 73%;
  width: 13vw;
  height: 6vw;
  transform: rotate(9deg);
}

.block-j {
  left: 62%;
  top: 54%;
  width: 12vw;
  height: 8vw;
  transform: rotate(16deg);
}

.block-k {
  left: 78%;
  top: 70%;
  width: 9vw;
  height: 5.8vw;
  transform: rotate(-11deg);
}

.block-l {
  left: 39%;
  top: 9%;
  width: 7vw;
  height: 4.8vw;
  transform: rotate(32deg);
}

.full-sketch-map {
  background: var(--paper);
}

.full-sketch-map .site-header > a {
  color: var(--ink);
  text-shadow: none;
}

.full-sketch-map .map-art {
  left: 0;
  background:
    linear-gradient(rgba(16, 16, 14, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 14, 0.024) 1px, transparent 1px),
    var(--paper);
  background-size: 82px 82px;
}

.full-sketch-map .city-sketch {
  inset: -1% 3% 3% 2%;
  opacity: 0.22;
  transform: rotate(-1.4deg) scale(1.02);
}

.full-sketch-map .city-plan {
  opacity: 0.12;
}

.full-sketch-map .city-town {
  opacity: 1;
}

.full-sketch-map .city-sketch::before,
.full-sketch-map .city-sketch::after {
  border-color: rgba(16, 16, 14, 0.13);
}

.full-sketch-map .city-road {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(16, 16, 14, 0.24) 0 12px,
      transparent 12px 18px
    );
}

.full-sketch-map .city-road::after {
  background: rgba(16, 16, 14, 0.12);
}

.full-sketch-map .city-block {
  border-color: rgba(16, 16, 14, 0.16);
  background: rgba(16, 16, 14, 0.018);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    12px 10px 0 rgba(16, 16, 14, 0.018);
}

.full-sketch-map .grid-lines {
  inset: 10% 7% 9%;
  border-color: rgba(16, 16, 14, 0.07);
}

.full-sketch-map .field-cell {
  opacity: 0.56;
}

.full-sketch-map .route {
  opacity: 0.48;
}

.full-sketch-map .right-copy {
  left: clamp(72px, 7.5vw, 118px) !important;
  right: auto !important;
  bottom: clamp(118px, 13.5vh, 168px) !important;
  width: min(780px, 58vw) !important;
  max-width: none;
}

.full-sketch-map .mv-copy .label {
  font-size: clamp(18px, 1.7vw, 28px);
}

.full-sketch-map .mv-copy h1,
.full-sketch-map .mv-copy h2 {
  font-size: clamp(48px, 5.1vw, 82px);
  line-height: 1.08;
}

.full-sketch-map .mv-copy > p:last-child {
  max-width: 720px;
  white-space: normal;
}

.full-sketch-map .project-strip {
  left: auto;
  right: clamp(72px, 7.5vw, 118px);
  bottom: clamp(48px, 5vw, 72px);
  z-index: 3;
}

.wide-city-map .city-town {
  inset: -10% -17% auto;
  width: 134%;
  height: 108%;
  opacity: 0.96;
  transform: scale(0.69);
  transform-origin: center center;
}

.wide-city-map .city-plan {
  opacity: 0;
  animation: cityPlanAppear 22.4s ease both;
  animation-delay: 1s;
}

.wide-city-map .city-sketch {
  opacity: 0;
  animation: citySketchAppear 22.4s ease both;
  animation-delay: 1.9s;
}

.town-distant path {
  fill: rgba(16, 16, 14, 0.01);
  stroke: rgba(16, 16, 14, 0.2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.wide-city-map .town-building path {
  stroke: rgba(16, 16, 14, 0.28);
  stroke-width: 1.25;
}

.wide-city-map .town-building text {
  opacity: 0;
  animation: mvLabelAppear 5.2s ease both;
  animation-delay: 14.8s;
}

.wide-city-map .town-small-buildings path,
.wide-city-map .town-distant path {
  opacity: 0.86;
}

.wide-city-map .town-road-lines path {
  stroke: rgba(16, 16, 14, 0.18);
}

.wide-city-map .town-building path,
.wide-city-map .town-small-buildings path,
.wide-city-map .town-distant path {
  animation:
    townLineDraw 13.6s cubic-bezier(0.62, 0, 0.18, 1) both,
    townInkPass 15.2s ease both;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.wide-city-map .town-trees path,
.wide-city-map .town-road-lines path {
  animation: townSoftDraw 16s cubic-bezier(0.62, 0, 0.18, 1) both;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}

.wide-city-map .town-trees path {
  stroke: rgba(16, 16, 14, 0.21);
  stroke-width: 0.95;
  animation:
    townTreeGrow 12s cubic-bezier(0.62, 0, 0.18, 1) both,
    townTreeBreathe 9s ease-in-out infinite alternate;
  transform: translate3d(var(--tree-x, 0), var(--tree-y, 0), 0);
}

.wide-city-map .town-building.gallery path {
  animation-delay: 0s, 0s;
}

.wide-city-map .town-building.stay path {
  animation-delay: 0.25s, 0.25s;
}

.wide-city-map .town-building.sweets path {
  animation-delay: 0.5s, 0.5s;
}

.wide-city-map .town-building.media path {
  animation-delay: 0.75s, 0.75s;
}

.wide-city-map .town-building.studio path {
  animation-delay: 1s, 1s;
}

.wide-city-map .town-building.work path {
  animation-delay: 1.25s, 1.25s;
}

.wide-city-map .town-small-buildings path:nth-child(3n + 1),
.wide-city-map .town-distant path:nth-child(3n + 1) {
  animation-delay: 0.18s, 0.18s;
}

.wide-city-map .town-small-buildings path:nth-child(3n + 2),
.wide-city-map .town-distant path:nth-child(3n + 2) {
  animation-delay: 0.62s, 0.62s;
}

.wide-city-map .town-small-buildings path:nth-child(3n),
.wide-city-map .town-distant path:nth-child(3n) {
  animation-delay: 1.06s, 1.06s;
}

.wide-city-map .town-trees path:nth-child(odd),
.wide-city-map .town-road-lines path:nth-child(odd) {
  animation-delay: 0.8s;
}

.wide-city-map .town-trees path:nth-child(even),
.wide-city-map .town-road-lines path:nth-child(even) {
  animation-delay: 1.7s;
}

.wide-city-map .town-trees path:nth-child(4n + 1) {
  animation-delay: 0.45s, -1.5s;
  stroke-opacity: 0.72;
}

.wide-city-map .town-trees path:nth-child(4n + 2) {
  animation-delay: 0.9s, -3s;
  stroke-opacity: 0.58;
}

.wide-city-map .town-trees path:nth-child(4n + 3) {
  animation-delay: 1.35s, -5s;
  stroke-opacity: 0.66;
}

.wide-city-map .town-trees path:nth-child(4n) {
  animation-delay: 1.8s, -7s;
  stroke-opacity: 0.48;
}

.wide-city-map .shape {
  opacity: 0;
  animation:
    shapeWander 22s cubic-bezier(0.7, 0, 0.2, 1) infinite,
    mvElementAppear 20s ease both;
}

.wide-city-map .s1 {
  animation-delay: -2s, 3.84s;
}

.wide-city-map .s2 {
  animation-delay: -5s, 5.92s;
}

.wide-city-map .s3 {
  animation-delay: -8s, 8s;
}

.wide-city-map .s4 {
  animation-delay: -12s, 10.08s;
}

.wide-city-map .plot {
  opacity: 0;
  animation:
    chaosPlot 22s cubic-bezier(0.7, 0, 0.2, 1) infinite,
    mvElementAppear 21.6s ease both;
}

.wide-city-map .p1 {
  animation-delay: 0s, 3.36s;
}

.wide-city-map .p2 {
  animation-delay: 0.7s, 5.28s;
}

.wide-city-map .p3 {
  animation-delay: 1.4s, 7.2s;
}

.wide-city-map .p4 {
  animation-delay: 2.1s, 9.12s;
}

.wide-city-map .p5 {
  animation-delay: 2.8s, 11.04s;
}

.wide-city-map .route {
  opacity: 0;
  background: rgba(16, 16, 14, 0.22);
  animation: mvElementAppear 22.4s ease both;
}

.wide-city-map .route-1 {
  animation-delay: 7.68s;
}

.wide-city-map .route-2 {
  animation-delay: 10.56s;
}

@keyframes townLineDraw {
  0% {
    opacity: 0.36;
    stroke-dashoffset: 420;
  }

  16% {
    opacity: 0.58;
  }

  54% {
    opacity: 0.82;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes townSoftDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 360;
  }

  22% {
    opacity: 0.08;
  }

  68% {
    opacity: 0.34;
  }

  100% {
    opacity: 0.62;
    stroke-dashoffset: 0;
  }
}

@keyframes townTreeGrow {
  0% {
    opacity: 0;
    stroke-dashoffset: 360;
    transform: translate3d(var(--tree-x, 0), calc(var(--tree-y, 0) + 8px), 0) scaleY(0.72);
  }

  20% {
    opacity: 0.16;
  }

  62% {
    opacity: 0.5;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.68;
    stroke-dashoffset: 0;
    transform: translate3d(var(--tree-x, 0), var(--tree-y, 0), 0) scaleY(1);
  }
}

@keyframes townTreeBreathe {
  from {
    transform: translate3d(var(--tree-x, 0), var(--tree-y, 0), 0) rotate(-0.8deg);
  }

  to {
    transform: translate3d(var(--tree-x, 0), var(--tree-y, 0), 0) rotate(1.1deg);
  }
}

@keyframes townInkPass {
  0%,
  32% {
    stroke-opacity: 0.52;
  }

  62% {
    stroke-opacity: 0.72;
  }

  100% {
    stroke-opacity: 0.92;
  }
}

@keyframes cityPlanAppear {
  0%,
  28% {
    opacity: 0;
  }

  58% {
    opacity: 0.025;
  }

  100% {
    opacity: 0.055;
  }
}

@keyframes citySketchAppear {
  0%,
  34% {
    opacity: 0;
  }

  64% {
    opacity: 0.045;
  }

  100% {
    opacity: 0.095;
  }
}

@keyframes mvElementAppear {
  0%,
  48% {
    opacity: 0;
  }

  76% {
    opacity: 0.26;
  }

  100% {
    opacity: 0.86;
  }
}

@keyframes mvLabelAppear {
  0%,
  30% {
    opacity: 0;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wide-city-map .right-copy {
  left: auto !important;
  right: clamp(72px, 7.2vw, 126px) !important;
  bottom: clamp(104px, 11.5vh, 148px) !important;
  width: min(820px, 58vw) !important;
  gap: 0;
  animation: mvCopyFloat 16s ease-in-out infinite alternate;
  transform: translate3d(0, var(--mv-copy-y, 0px), 0);
  transition: transform 0.16s linear;
}

.wide-city-map .mv-copy .label {
  display: inline-block;
  width: fit-content;
  padding: 6px 9px 5px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(11px, 0.82vw, 13px);
  margin-bottom: clamp(10px, 0.95vw, 14px);
  animation: mvCopyAppear 2.4s ease both;
  animation-delay: 0.85s;
}

.wide-city-map .mv-copy h1,
.wide-city-map .mv-copy h2 {
  font-size: clamp(44px, 4.6vw, 74px);
  margin: 0;
  animation: mvCopyAppear 2.6s ease both;
  animation-delay: 1s;
}

.wide-city-map .mv-copy > p:last-child {
  max-width: 820px;
  margin-top: clamp(10px, 1vw, 14px);
  line-height: 1.75;
  white-space: nowrap;
  animation: mvCopyAppear 2.7s ease both;
  animation-delay: 1.2s;
}

.wide-city-map .project-strip {
  opacity: 0;
  animation: mvCopyAppear 2.8s ease both;
  animation-delay: 1.45s;
}

@keyframes mvCopyAppear {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mvCopyFloat {
  from {
    translate: 0 -4px;
  }

  to {
    translate: 0 8px;
  }
}

.forest-city-map .city-town {
  opacity: 1;
}

.forest-city-map .forest-canopy,
.forest-city-map .forest-clusters,
.forest-city-map .forest-trees,
.forest-city-map .town-trees {
  opacity: 0;
}

.forest-canopy path {
  fill: rgba(16, 16, 14, 0.026);
  stroke: rgba(16, 16, 14, 0.12);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.05;
  vector-effect: non-scaling-stroke;
}

.forest-paths path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.16);
  stroke-dasharray: 16 10;
  stroke-linecap: round;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.forest-clusters ellipse {
  fill: rgba(16, 16, 14, 0.024);
  stroke: rgba(16, 16, 14, 0.11);
  stroke-width: 0.9;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.forest-city-map .town-roads path {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(16, 16, 14, 0.06);
}

.forest-city-map .town-road-lines path {
  stroke: rgba(16, 16, 14, 0.08);
}

.forest-city-map .town-building path {
  stroke: rgba(16, 16, 14, 0.16);
  stroke-width: 0.95;
}

.forest-city-map .town-building path.press {
  stroke: rgba(16, 16, 14, 0.48);
  stroke-width: 1.35;
}

.forest-city-map .town-building .roof {
  fill: rgba(255, 255, 255, 0.56);
}

.forest-city-map .town-building .front,
.forest-city-map .town-building .side {
  fill: rgba(255, 255, 255, 0.18);
}

.forest-city-map .town-green path {
  fill: rgba(16, 16, 14, 0.02);
  stroke: rgba(16, 16, 14, 0.08);
}

.forest-city-map .city-plan {
  opacity: 0.08;
}

.forest-city-map .city-sketch {
  opacity: 0.12;
}

.forest-trees path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.05;
  vector-effect: non-scaling-stroke;
}

.forest-understory path {
  fill: rgba(16, 16, 14, 0.01);
  stroke: rgba(16, 16, 14, 0.08);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.85;
  vector-effect: non-scaling-stroke;
}

.forest-understory path:nth-child(7n) {
  stroke: rgba(16, 16, 14, 0.14);
  stroke-width: 0.95;
}

.forest-city-map .town-small-buildings path {
  stroke: rgba(16, 16, 14, 0.1);
}

.forest-micro ellipse,
.forest-micro path {
  fill: rgba(16, 16, 14, 0.008);
  stroke: rgba(16, 16, 14, 0.15);
  stroke-linecap: round;
  stroke-width: 0.82;
  vector-effect: non-scaling-stroke;
}

.forest-micro path {
  fill: none;
  stroke: rgba(16, 16, 14, 0.13);
}

.forest-city-map .mv-copy {
  text-shadow:
    0 0 22px rgba(251, 251, 246, 0.86),
    0 0 54px rgba(251, 251, 246, 0.76);
}

.wide-city-map .mv-copy .label {
  display: inline-block;
  width: fit-content;
  padding: 7px 10px 6px;
  background: var(--ink);
  color: var(--paper);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}

@keyframes chaosField {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  44% {
    opacity: 0.82;
    transform: translate3d(8px, -6px, 0) scale(1.01);
  }

  72% {
    opacity: 0.46;
    transform: translate3d(-28px, 18px, 0) scale(1.08, 0.9) rotate(-1.5deg);
  }

  86% {
    opacity: 0.7;
    transform: translate3d(24px, -16px, 0) scale(0.94, 1.12) rotate(1deg);
  }
}

.field-cell {
  position: absolute;
  border: 1px solid rgba(16, 16, 14, 0.12);
  background: rgba(16, 16, 14, 0.018);
  opacity: 0.7;
  animation: chaosCell 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.cell-a {
  left: 16.2%;
  top: 23%;
  width: 15.8vw;
  height: 15.8vw;
  transform: rotate(-12deg);
}

.cell-b {
  left: 45.4%;
  top: 18.3%;
  width: 11.2vw;
  height: 11.2vw;
  animation-delay: -6s;
  transform: rotate(18deg);
}

.cell-c {
  left: 62.3%;
  top: 53.2%;
  width: 18.4vw;
  height: 18.4vw;
  animation-delay: -11s;
  transform: rotate(-8deg);
}

@keyframes chaosCell {
  0%,
  100% {
    opacity: 0.18;
    transform: rotate(var(--tilt, -10deg)) scale(0.985);
  }

  34% {
    opacity: 0.68;
    transform: rotate(0deg) scale(1.015);
  }

  68% {
    opacity: 0.86;
    transform: rotate(16deg) scale(1.28, 0.72) translate3d(22px, -18px, 0);
  }

  82% {
    opacity: 0.4;
    transform: rotate(-18deg) scale(0.74, 1.42) translate3d(-18px, 22px, 0);
  }
}

.cell-a {
  --tilt: -12deg;
}

.cell-b {
  --tilt: 18deg;
}

.cell-c {
  --tilt: -8deg;
}

.den-emblem {
  position: absolute;
  left: clamp(34px, 5vw, 72px);
  bottom: clamp(44px, 6vw, 86px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  width: clamp(180px, 20vw, 310px);
  aspect-ratio: 1;
  opacity: 0.9;
  animation: emblemGather 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.pattern-map .den-emblem {
  display: none;
}

.den-emblem span {
  border: 1px solid rgba(16, 16, 14, 0.38);
  background: rgba(16, 16, 14, 0.026);
}

.den-emblem span:nth-child(1) {
  transform: translate3d(-12px, 8px, 0) rotate(-18deg);
}

.den-emblem span:nth-child(2) {
  transform: translate3d(14px, -10px, 0) rotate(12deg);
}

.den-emblem span:nth-child(3) {
  transform: translate3d(8px, 16px, 0) rotate(8deg);
}

.den-emblem span:nth-child(4) {
  transform: translate3d(-10px, -6px, 0) rotate(-10deg);
}

@keyframes emblemGather {
  0%,
  100% {
    filter: blur(0);
    transform: rotate(-7deg) scale(0.96);
  }

  36% {
    transform: rotate(0deg) scale(1);
  }

  58% {
    transform: rotate(0deg) scale(1);
  }

  78% {
    filter: blur(0.5px);
    transform: rotate(11deg) scale(1.08, 0.92);
  }
}

.shape {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(16, 16, 14, 0.42);
  opacity: 0.78;
  animation: shapeWander 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.shape-square {
  width: 18px;
  height: 18px;
}

.shape-bar {
  width: 52px;
  height: 10px;
}

.shape-diamond {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
}

.shape-ring {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.s1 {
  left: 31%;
  top: 29%;
  animation-delay: -2s;
}

.s2 {
  left: 74%;
  top: 28%;
  animation-delay: -5s;
}

.s3 {
  left: 56%;
  top: 48%;
  animation-delay: -8s;
}

.s4 {
  left: 26%;
  top: 70%;
  animation-delay: -12s;
}

@keyframes shapeWander {
  0%,
  100% {
    border-radius: 0;
    transform: translate3d(0, 0, 0) rotate(-24deg) scale(1);
  }

  28% {
    transform: translate3d(18px, -26px, 0) rotate(16deg) scale(1.18);
  }

  48% {
    transform: translate3d(-24px, 18px, 0) rotate(0deg) scale(0.8, 1.4);
  }

  68% {
    border-radius: 50%;
    transform: translate3d(34px, 34px, 0) rotate(54deg) scale(1.4, 0.7);
  }

  82% {
    border-radius: 2px;
    transform: translate3d(-42px, -18px, 0) rotate(-72deg) scale(2, 0.48);
  }
}

.geo-line {
  position: absolute;
  background: rgba(16, 16, 14, 0.26);
  transform: rotate(var(--angle, 0deg));
  transform-origin: left center;
  opacity: 0.6;
}

.geo-h {
  height: 1px;
  animation: chaosLineX 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.geo-v {
  width: 1px;
  transform-origin: center top;
  animation: chaosLineY 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.h1 {
  left: 22%;
  top: 33%;
  width: 48vw;
  --angle: -8deg;
}

.h2 {
  left: 36%;
  top: 66.5%;
  width: 28vw;
  animation-delay: -5.5s;
  --angle: 12deg;
}

.v1 {
  left: 48%;
  top: 24%;
  height: 42vh;
  animation-delay: -2.6s;
  --angle: 8deg;
}

.v2 {
  left: 70%;
  top: 38%;
  height: 32vh;
  animation-delay: -8.2s;
  --angle: -13deg;
}

@keyframes chaosLineX {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: scaleX(1) rotate(var(--angle, 0deg));
  }

  18% {
    clip-path: inset(0 0 0 0);
    opacity: 0.62;
    transform: scaleX(1) rotate(var(--angle, 0deg));
  }

  58% {
    clip-path: inset(0 0 0 0);
    opacity: 0.78;
    transform: scaleX(1.18) rotate(0deg);
  }

  74% {
    clip-path: inset(0 0 0 0);
    opacity: 0.9;
    transform: scaleX(1.45) rotate(9deg);
  }

  82%,
  100% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    transform: scaleX(0.7) rotate(-4deg);
  }
}

@keyframes chaosLineY {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transform: scaleY(1) rotate(var(--angle, 0deg));
  }

  18% {
    clip-path: inset(0 0 0 0);
    opacity: 0.62;
    transform: scaleY(1) rotate(var(--angle, 0deg));
  }

  58% {
    clip-path: inset(0 0 0 0);
    opacity: 0.78;
    transform: scaleY(1.18) rotate(0deg);
  }

  74% {
    clip-path: inset(0 0 0 0);
    opacity: 0.9;
    transform: scaleY(1.5) rotate(-10deg);
  }

  82%,
  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: scaleY(0.7) rotate(4deg);
  }
}

.traveler {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  opacity: 0;
}

.traveler-a {
  left: 22%;
  top: calc(33% - 4px);
  animation: chaosTravelerA 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.traveler-b {
  left: 48%;
  top: 24%;
  animation: chaosTravelerB 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
  animation-delay: -4s;
}

@keyframes chaosTravelerA {
  0%,
  10% {
    opacity: 0;
    border-radius: 50%;
    transform: translate3d(0, 0, 0) scale(1);
  }

  18% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: translate3d(22vw, -8vh, 0) scale(1.35);
  }

  66% {
    border-radius: 50%;
    transform: translate3d(48vw, 0, 0) scale(0.85);
  }

  78% {
    border-radius: 2px;
    transform: translate3d(34vw, 30vh, 0) scale(2.2, 0.7) rotate(45deg);
  }

  100% {
    opacity: 0;
    border-radius: 50%;
    transform: translate3d(48vw, 33vh, 0) scale(1);
  }
}

@keyframes chaosTravelerB {
  0%,
  10% {
    opacity: 0;
    border-radius: 50%;
    transform: translate3d(0, 0, 0) scale(1);
  }

  18% {
    opacity: 1;
  }

  40% {
    opacity: 1;
    transform: translate3d(-14vw, 19vh, 0) scale(0.8);
  }

  64% {
    transform: translate3d(0, 42vh, 0) scale(1.45);
  }

  80% {
    border-radius: 1px;
    transform: translate3d(14vw, 42vh, 0) scale(0.7, 2.3) rotate(-38deg);
  }

  100% {
    opacity: 0;
    border-radius: 50%;
    transform: translate3d(14vw, 42vh, 0) scale(1);
  }
}

.plot {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transform-origin: center;
  animation: chaosPlot 18s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.plot i {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(16, 16, 14, 0.18);
  border-radius: 50%;
  opacity: 0;
  animation: chaosRipple 18s ease-out infinite;
}

.p2,
.p2 i {
  animation-delay: 0.7s;
}

.p3,
.p3 i {
  animation-delay: 1.4s;
}

.p4,
.p4 i {
  animation-delay: 2.1s;
}

.p5,
.p5 i {
  animation-delay: 2.8s;
}

@keyframes chaosPlot {
  0%,
  100% {
    border-radius: 50%;
    transform: translate3d(0, 0, 0) scale(1);
  }

  24% {
    transform: translate3d(4px, -8px, 0) scale(1.12);
  }

  52% {
    transform: translate3d(-12px, 10px, 0) scale(0.84);
  }

  70% {
    border-radius: 50%;
    transform: translate3d(22px, -16px, 0) scale(1.55);
  }

  82% {
    border-radius: 2px;
    transform: translate3d(-28px, 24px, 0) scale(2.2, 0.66) rotate(34deg);
  }
}

@keyframes chaosRipple {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  34% {
    opacity: 0.65;
  }

  70% {
    opacity: 0;
    transform: scale(2.2);
  }

  100% {
    opacity: 0;
    transform: scale(0.4);
  }
}

.p1 {
  left: 22%;
  top: 32%;
}

.p2 {
  left: 48%;
  top: 24%;
}

.p3 {
  left: 70%;
  top: 38%;
}

.p4 {
  left: 36%;
  top: 66%;
}

.p5 {
  left: 62%;
  top: 70%;
}

.route {
  position: absolute;
  height: 1px;
  background: rgba(16, 16, 14, 0);
  transform-origin: left center;
}

@keyframes routeDraw {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0.3;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.route-1 {
  left: 22.5%;
  top: 33%;
  width: 50vw;
  transform: rotate(7deg);
}

.route-2 {
  left: 36.5%;
  top: 67%;
  width: 28vw;
  transform: rotate(8deg);
}

.right-copy {
  left: auto;
  right: clamp(34px, 5vw, 72px);
  justify-self: end;
}

.pattern-map .right-copy {
  left: calc(clamp(360px, 35vw, 540px) + clamp(42px, 5vw, 80px));
  right: clamp(42px, 5vw, 72px);
  bottom: clamp(112px, 13.5vh, 168px);
  width: auto;
  max-width: none;
}

.pattern-map .mv-copy .label {
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: clamp(20px, 2.4vw, 34px);
}

.pattern-map .mv-copy h1,
.pattern-map .mv-copy h2 {
  font-size: clamp(38px, 3.75vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.pattern-map .mv-copy h1 span,
.pattern-map .mv-copy h2 span {
  display: block;
}

.pattern-map .mv-copy > p:last-child {
  max-width: 760px;
  color: #30302c;
  font-size: clamp(13px, 0.9vw, 15.5px);
  font-weight: 700;
  line-height: 1.9;
  white-space: nowrap;
  margin-top: clamp(22px, 2.3vw, 34px);
}

.project-strip {
  position: absolute;
  left: calc(clamp(360px, 35vw, 540px) + clamp(42px, 5vw, 80px));
  bottom: clamp(44px, 5vw, 78px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(18px, 3vw, 46px);
  color: var(--ink);
}

.animation-options {
  min-height: 100svh;
  padding: clamp(72px, 8vw, 120px) clamp(34px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.option-title {
  display: grid;
  gap: 22px;
  max-width: 940px;
}

.option-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 92px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.03;
}

.option-title > p:last-child {
  max-width: 48em;
  margin: 0;
  color: #30302c;
  font-size: clamp(15px, 1.06vw, 18px);
  font-weight: 700;
  line-height: 2;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 90px);
  background: var(--line);
  border-top: 1px solid var(--ink);
}

.anim-card {
  display: grid;
  gap: 20px;
  min-height: 480px;
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper);
}

.anim-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.1vw, 56px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.anim-card > p:last-child {
  max-width: 25em;
  margin: 0;
  color: #30302c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.mini-map {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 16, 14, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 14, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.mini-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.mini-map span:nth-child(1) {
  left: 18%;
  top: 62%;
}

.mini-map span:nth-child(2) {
  left: 48%;
  top: 36%;
}

.mini-map span:nth-child(3) {
  left: 72%;
  top: 55%;
}

.mini-map i {
  position: absolute;
  left: 20%;
  top: 66%;
  width: 58%;
  height: 1px;
  background: var(--ink);
  transform: rotate(-14deg);
  transform-origin: left center;
}

.anim-grow .mini-map span {
  animation: miniPop 3.8s ease-in-out infinite;
}

.anim-grow .mini-map span:nth-child(2) {
  animation-delay: 0.45s;
}

.anim-grow .mini-map span:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes miniPop {
  0%,
  100% {
    transform: scale(0.75);
    opacity: 0.45;
  }

  45% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.anim-connect .mini-map i {
  animation: miniDraw 3.4s ease-in-out infinite alternate;
}

@keyframes miniDraw {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

.anim-breathe .mini-map {
  animation: miniGrid 5s ease-in-out infinite alternate;
}

@keyframes miniGrid {
  from {
    background-size: 30px 30px;
  }

  to {
    background-size: 42px 42px;
  }
}

@media (max-width: 980px) {
  .intro,
  .pattern {
    padding: 28px;
  }

  .mv-copy,
  .right-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    justify-self: start;
  }

  .mv-copy h2 span {
    white-space: normal;
  }

  .lower-panel,
  .mv-index,
  .project-strip {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 36px;
  }

  .map-photo {
    position: relative;
    width: 100%;
    height: 52vh;
  }

  .map-art {
    left: 0;
  }

  .pattern-map .right-copy {
    left: auto;
    right: auto;
    width: auto;
  }

  .pattern-map .mv-copy > p:last-child {
    white-space: normal;
  }

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

@media (min-width: 700px) and (max-width: 980px) {
  .pattern-map.wide-city-map {
    padding: 40px;
  }

  .pattern-map.wide-city-map .right-copy {
    left: 56px !important;
    right: 56px !important;
    bottom: 118px !important;
  }

  .pattern-map.wide-city-map .mv-copy .label {
    margin-bottom: 14px;
    padding: 7px 10px 6px;
    font-size: 12px;
  }

  .pattern-map.wide-city-map .mv-copy h1,
  .pattern-map.wide-city-map .mv-copy h2 {
    font-size: clamp(42px, 6.2vw, 56px);
  }

  .pattern-map.wide-city-map .mv-copy > p:last-child {
    max-width: 44em;
    font-size: 13.5px;
    line-height: 1.9;
  }

  .pattern-map.wide-city-map .project-strip {
    left: 56px !important;
    right: 56px !important;
    bottom: 40px !important;
    font-size: 10px;
  }
}

@media (min-width: 981px) {
  .mv-copy {
    position: absolute !important;
    left: clamp(34px, 5vw, 72px) !important;
    right: auto !important;
    bottom: clamp(150px, 16vh, 220px) !important;
  }

  .right-copy {
    left: auto !important;
    right: clamp(34px, 5vw, 72px) !important;
  }

  .pattern-map .right-copy {
    left: calc(clamp(360px, 35vw, 540px) + clamp(42px, 5vw, 80px)) !important;
    right: clamp(42px, 5vw, 72px) !important;
    bottom: clamp(112px, 13.5vh, 168px) !important;
    width: auto !important;
  }
}

.pattern-map.wide-city-map .right-copy {
  left: auto !important;
  right: clamp(38px, 4.6vw, 72px) !important;
  bottom: clamp(128px, 14vh, 178px) !important;
  width: min(690px, 50vw) !important;
  gap: 0;
}

.pattern-map.wide-city-map .mv-copy .label {
  display: inline-block;
  width: fit-content;
  padding: 7px 10px 6px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(12px, 0.95vw, 15px);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}

.pattern-map.wide-city-map .project-strip {
  border-top: 0 !important;
}

@media (max-width: 980px) {
  .pattern-map.wide-city-map {
    min-height: 100svh;
    padding: 24px;
    align-items: end;
  }

  .pattern-map.wide-city-map .right-copy {
    position: absolute !important;
    left: 24px !important;
    right: 24px !important;
    bottom: 92px !important;
    width: auto !important;
    max-width: none !important;
    gap: 0;
    justify-self: stretch;
  }

  .pattern-map.wide-city-map .mv-copy .label {
    display: inline-block;
    width: fit-content;
    margin: 0 0 12px;
    padding: 6px 8px 5px;
    background: var(--ink);
    color: var(--paper);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }

  .pattern-map.wide-city-map .mv-copy h1,
  .pattern-map.wide-city-map .mv-copy h2 {
    max-width: none;
    font-size: clamp(34px, 9.8vw, 38px);
    line-height: 1.08;
  }

  .pattern-map.wide-city-map .mv-copy h1 span,
  .pattern-map.wide-city-map .mv-copy h2 span {
    white-space: nowrap;
  }

  .pattern-map.wide-city-map .mv-copy > p:last-child {
    max-width: 27em;
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.85;
    white-space: normal;
  }

  .pattern-map.wide-city-map .project-strip {
    position: absolute;
    left: 24px !important;
    right: 24px !important;
    bottom: 28px !important;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: auto;
    margin: 0;
    font-size: 9.5px;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
}

@media (max-width: 699px) {
  .pattern-map.wide-city-map .project-strip {
    display: none;
  }
}
