:root {
  --map-canvas: #f3f5f8;
  --map-paper: #fbfcfe;
  --map-ink: #151821;
  --map-muted: #626875;
  --map-line: rgba(21, 24, 33, .18);
  --map-blue: #315dca;
  --map-blue-soft: #86a9df;
  --map-periwinkle: #daddf3;
  --map-green: #dce8b8;
  --map-signal: #d8f04c;
  --map-radius: 30px;
  --map-serif: "Noto Serif SC", "Songti SC", STSong, serif;
  --map-sans: Geist, "Noto Sans SC", system-ui, sans-serif;
  --map-utility: "Space Grotesk", Geist, "Noto Sans SC", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.route-home {
  overflow-x: hidden;
  background: var(--map-canvas);
  color: var(--map-ink);
  font-family: var(--map-sans);
}

.route-home::before {
  display: none;
}

.map-home {
  padding: 18px 0 0;
}

.map-home h1,
.map-home h2,
.map-home h3,
.map-home p,
.map-home dl,
.map-home dd,
.map-home ol,
.map-home ul {
  margin: 0;
}

.map-home a {
  color: inherit;
  text-decoration: none;
}

.map-index {
  color: var(--map-blue);
  font-family: var(--map-utility);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.map-index span {
  padding: 0 .35em;
  color: var(--map-ink);
}

.map-hero {
  width: min(1260px, calc(100% - 48px));
  margin-inline: auto;
}

.map-hero-board {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--map-periwinkle);
  isolation: isolate;
}

.map-hero-board::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("home-services/path-atlas-v2.png");
  background-position: 55% center;
  background-size: cover;
  content: "";
  filter: saturate(.88) contrast(.98);
}

.map-hero-board::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(218, 221, 243, .99) 0%, rgba(218, 221, 243, .96) 31%, rgba(218, 221, 243, .74) 47%, rgba(218, 221, 243, .08) 75%);
  content: "";
}

.map-hero-copy {
  width: min(620px, 52%);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 56px 0 56px 74px;
}

.map-hero h1 {
  max-width: 12ch;
  margin-top: 0;
  font-family: var(--map-serif);
  font-size: clamp(2.8rem, 4.05vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.25;
  text-wrap: balance;
}

.map-lead {
  max-width: 520px;
  margin-top: 24px !important;
  color: #353a46;
  font-size: 1rem;
  line-height: 1.85;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.map-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 19px;
  border: 1px solid var(--map-ink);
  border-radius: 11px;
  background: transparent;
  color: var(--map-ink);
  font: 650 .84rem/1 var(--map-sans);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.map-button:active {
  transform: scale(.96);
}

.map-button:focus-visible,
.map-home a:focus-visible {
  outline: 3px solid var(--map-signal);
  outline-offset: 3px;
}

.map-home .map-button-ink {
  background: var(--map-ink);
  color: white;
}

.map-button-clear {
  background: rgba(255, 255, 255, .26);
}

.map-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 8px;
  border: 1px solid rgba(21, 24, 33, .28);
  border-radius: 99px;
  background: rgba(251, 252, 254, .86);
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.map-node i {
  width: 11px;
  height: 11px;
  border: 3px solid var(--map-ink);
  border-radius: 50%;
  background: var(--map-paper);
}

.map-node-now {
  top: 42%;
  left: 54%;
}

.map-node-target {
  right: 23%;
  bottom: 27%;
}

.map-node-target i {
  background: var(--map-blue-soft);
}

.map-node-next {
  top: 42%;
  right: 7.5%;
}

.map-node-next i {
  background: var(--map-signal);
}

.map-proof {
  position: absolute;
  bottom: 36px;
  left: 74px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 42px;
}

.map-proof div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: baseline;
}

.map-proof dt {
  color: var(--map-muted);
  font-family: var(--map-utility);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-proof dd {
  font-family: var(--map-utility);
  font-size: .92rem;
  font-weight: 700;
}

.map-diagnosis,
.map-scope,
.map-universities,
.map-about,
.map-close {
  width: min(1260px, calc(100% - 48px));
  margin-inline: auto;
}

#position,
#scope,
#about,
#archive,
#contact {
  scroll-margin-top: 110px;
}

.map-diagnosis {
  padding: 96px 0 104px;
}

.map-section-intro {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(300px, 1fr) minmax(270px, .62fr);
  gap: 38px;
  align-items: end;
}

.map-section-intro h2,
.map-scope-head h2,
.map-universities h2,
.map-about h2,
.map-close h2 {
  font-family: var(--map-serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.25;
}

.map-section-intro h2 {
  font-size: clamp(2.3rem, 3.35vw, 3.2rem);
}

.map-section-intro > p:last-child,
.map-scope-head > p {
  color: var(--map-muted);
  font-size: .9rem;
  line-height: 1.75;
}

.map-steps {
  position: relative;
  margin-top: 58px !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.map-steps::before {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--map-ink);
  content: "";
}

.map-steps li {
  position: relative;
  min-height: 190px;
  padding: 44px 32px 24px 0;
}

.map-steps li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--map-ink);
  border-radius: 50%;
  background: var(--map-canvas);
  content: "";
}

.map-steps li:nth-child(2)::before,
.map-steps li:nth-child(3)::before {
  background: var(--map-blue-soft);
}

.map-steps li:last-child::before {
  background: var(--map-signal);
}

.map-steps span {
  display: block;
  color: var(--map-blue);
  font-size: .72rem;
  font-weight: 700;
}

.map-steps strong {
  display: block;
  margin-top: 13px;
  font-family: var(--map-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.map-steps p {
  max-width: 230px;
  margin-top: 12px !important;
  color: var(--map-muted);
  font-size: .84rem;
  line-height: 1.7;
}

.map-scope {
  padding-bottom: 108px;
}

.map-scope-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .48fr);
  gap: 58px;
  align-items: end;
}

.map-scope-head h2 {
  margin-top: 14px;
  font-size: clamp(2.3rem, 3.35vw, 3.2rem);
}

.map-fields {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.map-field {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--map-radius);
  isolation: isolate;
}

.map-field-study {
  grid-column: span 7;
  background: var(--map-periwinkle);
}

.map-field-choice {
  grid-column: span 5;
  background: var(--map-blue-soft);
}

.map-field-making {
  grid-column: span 5;
  background: var(--map-green);
}

.map-field-life {
  grid-column: span 7;
  background: var(--map-ink);
  color: #f7f8fb;
}

.map-field-copy {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: 42px;
}

.map-field-choice .map-field-copy,
.map-field-making .map-field-copy {
  width: 70%;
}

.map-field-no {
  font-family: var(--map-utility);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-field h3 {
  max-width: 12ch;
  margin-top: 22px;
  font-family: var(--map-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.28;
}

.map-field-copy > p:not(.map-field-no) {
  max-width: 390px;
  margin-top: 19px;
  color: rgba(21, 24, 33, .72);
  font-size: .88rem;
  line-height: 1.75;
}

.map-field-life .map-field-copy > p:not(.map-field-no) {
  color: rgba(247, 248, 251, .67);
}

.map-field ul {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  list-style: none;
}

.map-field li {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 700;
}

.map-field > img,
.map-field-stack {
  position: absolute;
  z-index: 1;
  top: -7%;
  right: -3%;
  width: 52%;
  height: 114%;
  opacity: .58;
  filter: grayscale(.8) contrast(.88);
  mix-blend-mode: multiply;
  clip-path: polygon(19% 3%, 100% 0, 91% 91%, 4% 100%, 0 22%);
}

.map-field > img {
  object-fit: cover;
}

.map-field-choice > img {
  top: 31%;
  right: -8%;
  width: 65%;
  height: 78%;
  object-position: 50% 57%;
}

.map-field-life > img {
  opacity: .32;
  filter: grayscale(1) invert(.06) contrast(1.1);
  mix-blend-mode: screen;
}

.map-field-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.map-field-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-field-line {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: -1%;
  width: 60%;
  height: 64%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.map-field-line circle {
  fill: var(--map-signal);
  stroke: currentColor;
}

.map-universities {
  padding: 102px 0 118px;
  border-top: 1px solid var(--map-line);
}

.map-universities-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .48fr);
  gap: 72px;
  align-items: end;
}

.map-universities h2 {
  max-width: 13ch;
  margin-top: 17px;
  font-size: clamp(2.4rem, 3.65vw, 3.45rem);
}

.map-universities-note {
  padding-bottom: 6px;
}

.map-universities-note p {
  max-width: 500px;
  color: var(--map-muted);
  font-size: .9rem;
  line-height: 1.78;
}

.map-universities-note a {
  margin-top: 24px;
  display: inline-flex;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--map-ink);
  font-size: .8rem;
  font-weight: 700;
}

.map-trial-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.map-trial {
  position: relative;
  overflow: hidden;
  border-radius: var(--map-radius);
  background: var(--map-paper);
  transition: transform .28s ease;
}

.map-trial-ucl {
  grid-column: 1 / span 7;
}

.map-trial-glasgow {
  grid-column: 8 / -1;
  margin-top: 84px;
  background: var(--map-green);
}

.map-trial-visual {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.map-trial-glasgow .map-trial-visual {
  height: 280px;
}

.map-trial-visual picture,
.map-trial-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.map-trial-visual img {
  object-fit: cover;
  filter: contrast(.99) saturate(.92);
  mix-blend-mode: multiply;
  transition: transform .45s ease;
}

.map-trial-visual > span {
  position: absolute;
  top: 24px;
  left: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--map-ink);
  font-family: var(--map-utility);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.map-trial-copy {
  min-height: 218px;
  padding: 32px 36px 35px;
}

.map-trial-copy > p {
  color: var(--map-blue);
  font-family: var(--map-utility);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.map-trial-copy h3 {
  margin-top: 14px;
  font-family: var(--map-serif);
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.25;
}

.map-trial-copy > span {
  max-width: 440px;
  margin-top: 15px;
  display: block;
  color: var(--map-muted);
  font-size: .82rem;
  line-height: 1.7;
}

.map-trial-copy b {
  margin-top: 28px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: .76rem;
}

.map-trial-copy i {
  font-style: normal;
}

.map-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .62fr);
  gap: 100px;
  padding: 104px 0;
  border-top: 1px solid var(--map-line);
}

.map-about h2 {
  max-width: 18ch;
  margin-top: 19px;
  font-size: clamp(2.3rem, 3.35vw, 3.2rem);
}

.map-about-main a {
  margin-top: 32px;
  display: inline-flex;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--map-ink);
  font-size: .84rem;
  font-weight: 700;
}

.map-about-path {
  position: relative;
  align-self: end;
  display: grid;
  gap: 0;
}

.map-about-path::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: var(--map-ink);
  content: "";
}

.map-about-path div {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px 18px;
  padding: 0 0 29px;
}

.map-about-path div:last-child {
  padding-bottom: 0;
}

.map-about-path b {
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border: 2px solid var(--map-ink);
  border-radius: 50%;
  background: var(--map-canvas);
  font-family: var(--map-utility);
  font-size: .62rem;
}

.map-about-path div:last-child b {
  background: var(--map-signal);
}

.map-about-path span {
  font-family: var(--map-serif);
  font-size: 1.25rem;
}

.map-about-path small {
  color: var(--map-muted);
  font-size: .75rem;
}

.map-close {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 48px;
}

.map-close-single {
  display: block;
}

.map-close-single .map-contact {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(170px, .48fr) minmax(270px, .66fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.map-contact-art {
  width: min(100%, 270px);
  justify-self: center;
}

.map-contact-art img {
  width: 100%;
  height: auto;
  display: block;
}

.map-contact-action {
  align-self: center;
}

.map-contact-action > p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  line-height: 1.75;
}

.map-close article {
  min-height: 470px;
  padding: 48px;
  border-radius: var(--map-radius);
}

.map-archive {
  background: var(--map-blue-soft);
}

.map-contact {
  background: var(--map-blue);
  color: white;
}

.map-contact .map-index {
  color: var(--map-signal);
}

.map-close h2 {
  max-width: 12ch;
  margin-top: 23px;
  font-size: clamp(2.15rem, 3vw, 3rem);
}

.map-close article > p:not(.map-index) {
  max-width: 440px;
  margin-top: 20px;
  color: rgba(21, 24, 33, .7);
  font-size: .88rem;
  line-height: 1.75;
}

.map-contact > p:not(.map-index) {
  color: rgba(255, 255, 255, .72) !important;
}

.map-archive-links {
  margin-top: 46px;
  border-top: 1px solid var(--map-ink);
}

.map-archive-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(21, 24, 33, .25);
}

.map-archive-links span {
  font-size: .73rem;
}

.map-archive-links b {
  font-family: var(--map-utility);
  font-size: .9rem;
}

.map-contact .map-actions {
  margin-top: 34px;
}

.map-button-paper {
  border-color: white;
  background: white;
  color: var(--map-blue);
}

.map-button-darkline {
  border-color: rgba(255, 255, 255, .72);
  color: white;
}

.route-home .site-foot {
  border-top: 1px solid var(--map-line);
  background: var(--map-canvas);
}

.route-home .site-foot .inner {
  width: min(1260px, calc(100% - 48px));
}

@media (hover: hover) and (pointer: fine) {
  .map-button:hover {
    transform: translateY(-2px);
  }

  .map-field {
    transition: transform .3s ease, filter .3s ease;
  }

  .map-field:hover {
    transform: translateY(-4px);
    filter: saturate(1.04);
  }

  .map-field:hover .map-field-line {
    transform: translate3d(7px, -4px, 0);
  }

  .map-trial:hover {
    transform: translateY(-4px);
  }

  .map-trial:hover .map-trial-visual img {
    transform: scale(1.018);
  }

  .map-field-line {
    transition: transform .35s ease;
  }
}

@media (max-width: 980px) {
  .map-hero-copy {
    width: 59%;
    padding-left: 46px;
  }

  .map-proof {
    left: 46px;
  }

  .map-section-intro {
    grid-template-columns: 1fr 1.25fr;
  }

  .map-section-intro > p:last-child {
    grid-column: 2;
  }

  .map-fields {
    grid-template-columns: 1fr 1fr;
  }

  .map-field-study,
  .map-field-choice,
  .map-field-making,
  .map-field-life {
    grid-column: span 1;
  }

  .map-field-copy,
  .map-field-choice .map-field-copy,
  .map-field-making .map-field-copy {
    width: 75%;
  }

  .map-about {
    gap: 54px;
  }

  .map-universities-head {
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .map-home {
    padding-top: 8px;
  }

  .map-hero,
  .map-diagnosis,
  .map-scope,
  .map-universities,
  .map-about,
  .map-close,
  .route-home .site-foot .inner {
    width: min(100% - 24px, 520px);
  }

  .map-hero-board {
    min-height: 750px;
    border-radius: 24px;
  }

  .map-hero-board::before {
    background-position: 52% bottom;
    background-size: auto 64%;
    background-repeat: no-repeat;
  }

  .map-hero-board::after {
    background: linear-gradient(180deg, rgba(218, 221, 243, 1) 0%, rgba(218, 221, 243, .98) 48%, rgba(218, 221, 243, .2) 73%, rgba(218, 221, 243, 0) 100%);
  }

  .map-hero-copy {
    width: auto;
    min-height: 0;
    display: block;
    padding: 42px 26px 0;
  }

  .map-hero h1 {
    max-width: 11ch;
    margin-top: 0;
    font-size: clamp(2.55rem, 12vw, 3.05rem);
    line-height: 1.24;
  }

  .map-lead {
    margin-top: 22px !important;
    font-size: .92rem;
    line-height: 1.78;
  }

  .map-actions {
    margin-top: 23px;
  }

  .map-button {
    flex: 1 1 135px;
    padding-inline: 14px;
  }

  .map-node {
    font-size: .66rem;
  }

  .map-node-now {
    top: auto;
    bottom: 214px;
    left: 9%;
  }

  .map-node-target {
    right: 36%;
    bottom: 139px;
  }

  .map-node-next {
    top: auto;
    right: 7%;
    bottom: 202px;
  }

  .map-proof {
    right: 24px;
    bottom: 24px;
    left: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .map-proof div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .map-diagnosis {
    padding: 68px 0 76px;
  }

  .map-section-intro,
  .map-scope-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .map-section-intro > p:last-child {
    grid-column: auto;
  }

  .map-section-intro h2,
  .map-scope-head h2 {
    font-size: 2.35rem;
  }

  .map-steps {
    margin-top: 40px !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .map-steps::before {
    display: none;
  }

  .map-steps li {
    min-height: 178px;
    padding: 36px 14px 18px;
    border-top: 1px solid var(--map-ink);
  }

  .map-steps li::before {
    top: -10px;
    left: 14px;
  }

  .map-steps strong {
    font-size: 1.14rem;
  }

  .map-steps p {
    font-size: .77rem;
  }

  .map-scope {
    padding-bottom: 78px;
    overflow: hidden;
  }

  .map-fields {
    margin-top: 34px;
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    grid-auto-columns: min(84vw, 350px);
    grid-auto-flow: column;
    gap: 12px;
    padding: 0 18px 16px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .map-fields::-webkit-scrollbar {
    display: none;
  }

  .map-field-study,
  .map-field-choice,
  .map-field-making,
  .map-field-life {
    grid-column: auto;
  }

  .map-field {
    min-height: 455px;
    border-radius: 24px;
    scroll-snap-align: start;
  }

  .map-field-copy,
  .map-field-choice .map-field-copy,
  .map-field-making .map-field-copy {
    width: 86%;
    padding: 30px;
  }

  .map-field h3 {
    font-size: 2rem;
  }

  .map-field > img,
  .map-field-stack {
    top: 40%;
    width: 67%;
    height: 68%;
  }

  .map-field-line {
    width: 82%;
    height: 58%;
  }

  .map-about {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 74px 0;
  }

  .map-about h2 {
    font-size: 2.35rem;
  }

  .map-universities {
    padding: 74px 0 82px;
  }

  .map-universities-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .map-universities h2 {
    font-size: 2.35rem;
  }

  .map-trial-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-trial-ucl,
  .map-trial-glasgow {
    grid-column: auto;
    margin-top: 0;
  }

  .map-trial {
    border-radius: 24px;
  }

  .map-trial-visual,
  .map-trial-glasgow .map-trial-visual {
    height: 248px;
  }

  .map-trial-copy {
    min-height: 208px;
    padding: 27px 28px 30px;
  }

  .map-trial-copy h3 {
    font-size: 1.85rem;
  }

  .map-close {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 28px;
  }

  .map-close article {
    min-height: 420px;
    padding: 34px 28px;
    border-radius: 24px;
  }

  .map-close h2 {
    font-size: 2.15rem;
  }

  .map-close-single .map-contact {
    min-height: 600px;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .map-contact-art {
    width: min(68vw, 230px);
    justify-self: end;
    margin: -8px -8px -14px 0;
  }

  .map-contact-action {
    align-self: end;
  }
}

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

  .map-button,
  .map-field,
  .map-field-line,
  .map-trial,
  .map-trial-visual img {
    transition: none !important;
  }
}
