:root {
  --mk-navy: #0d1d1a;
  --mk-navy-deep: #07110f;
  --mk-page-bg: #07110f;
  --mk-blue: #6bb5d7;
  --mk-teal: #6f99a5;
  --mk-slate: #243b52;
  --mk-red: #c9655d;
  --mk-paper: #edf4f8;
  --mk-ink: #25313d;
  --mk-muted: #6d7b89;
  --mk-line: rgba(35, 52, 68, .14);
  --mk-ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow: hidden;
  color: var(--mk-ink);
  background: var(--mk-page-bg);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.mk-page {
  --mk-hero-image: url("./assets/maokego-prelude-refine-h2.png");
  --mk-prelude-image: url("./assets/maokego-prelude-refine-h2.png");
  --open-progress: 0;
  --open-visual: 0;
  --open-veil: 0;
  --open-underlay: 0;
  --open-brand: 1;
  --open-content: 0;
  --open-content-shade: 1;
  height: 100vh;
  overflow: hidden;
}

.mk-opening {
  --open-progress: 0;
  --open-visual: 0;
  --open-veil: 0;
  --open-underlay: 0;
  --open-brand: 1;
  --open-content: 0;
  --open-content-shade: 1;
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  display: block;
  color: #fff;
  background: var(--mk-page-bg);
  transform:
    translate3d(0, calc(var(--open-veil) * -96vh), 0)
    scaleY(calc(1 - var(--open-veil) * .045));
  transform-origin: 50% 0%;
  box-shadow: none;
  transition: transform .96s var(--mk-ease), opacity .56s ease;
  will-change: transform, opacity;
}

.mk-opening::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 12, 11, .26) 0%, rgba(3, 12, 11, .12) 34%, rgba(3, 12, 11, 0) 68%),
    var(--mk-prelude-image);
  background-size: cover;
  background-position: center 44%;
  transform: scale(1.012);
  opacity: 1;
  transition: opacity .56s ease;
}

.mk-opening::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(226, 201, 156, .085), rgba(0, 0, 0, 0));
  opacity: calc(var(--open-veil) * .62);
}

.mk-page:not([data-open="true"]) .mk-opening {
  transform:
    translate3d(0, -96vh, 0)
    scaleY(.955);
  opacity: 0;
  pointer-events: none;
}

.mk-entry-card {
  position: absolute;
  left: clamp(72px, 8.5vw, 128px);
  top: 41.5vh;
  z-index: 4;
  width: min(500px, calc(100% - 144px));
  margin-top: 0;
  min-height: 124px;
  display: block;
  column-gap: 0;
  row-gap: 4px;
  padding: 0;
  color: rgba(245, 240, 226, .9);
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translate3d(0, 0, 0);
  opacity: .98;
  filter: none;
  transition: opacity .42s ease;
}
.mk-page:not([data-open="true"]) .mk-entry-card {
  transform: translate3d(0, 0, 0);
  opacity: 0;
  filter: none;
}
.mk-entry-word {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 0 4px;
  isolation: isolate;
}
.mk-entry-word b {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: rgba(243, 247, 245, .96);
  font-family: Georgia, "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
  font-size: clamp(64px, 6.2vw, 92px);
  font-weight: 380;
  letter-spacing: .12em;
  text-transform: lowercase;
  text-shadow: none;
}
.mk-entry-word span {
  color: rgba(239, 244, 242, .92);
}
.mk-entry-word i {
  color: rgba(255, 226, 145, .82);
  font-style: normal;
  letter-spacing: .03em;
}
.mk-entry-rule {
  display: block;
  width: 74px;
  height: 1px;
  margin: 16px 0 12px;
  background: rgba(226, 201, 156, .58);
}
.mk-entry-logo {
  display: none;
}
.mk-entry-logo img {
  width: 38px;
  height: auto;
  filter: none;
}
.mk-entry-subtitle {
  display: block;
  max-width: 248px;
  color: rgba(235, 238, 229, .58);
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: .18em;
}
.mk-enter {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  width: 54px;
  height: 82px;
  border: 0;
  color: rgba(215, 179, 107, .7);
  background: transparent;
  transform: translate(-50%, 0);
  opacity: calc((1 - var(--open-veil) * .95) * .95);
  cursor: pointer;
  transition: transform .3s ease, opacity .3s ease;
}
.mk-page:not([data-open="true"]) .mk-enter {
  opacity: 0;
  transform: translate(-50%, -22vh);
}
.mk-enter i {
  display: block;
  width: 20px;
  height: 20px;
  margin: -4px auto 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.mk-enter i:nth-child(2) { opacity: .72; }
.mk-enter i:nth-child(3) { opacity: .48; }

.mk-content-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--mk-page-bg);
  transform: translateY(0);
  opacity: 1;
  transform-origin: 50% 72%;
  transition: opacity .48s ease;
}
.mk-content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(3, 10, 9, calc(.58 * var(--open-content-shade)));
  opacity: calc(var(--open-content-shade) * .92);
  transition: opacity .72s ease;
}
.mk-page:not([data-open="true"]) .mk-content-wrapper {
  opacity: 1;
}
.mk-page:not([data-open="true"]) .mk-content-wrapper::before {
  opacity: 0;
}
.mk-scroll {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.mk-scroll:focus { outline: none; }
.mk-scroll::-webkit-scrollbar { width: 0; height: 0; }

.mk-hero {
  position: relative;
  min-height: 108vh;
  color: #fff;
  background: var(--mk-page-bg);
  overflow: hidden;
}

.mk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 12, 11, .72) 0%, rgba(3, 12, 11, .45) 34%, rgba(3, 12, 11, .08) 66%, rgba(3, 12, 11, 0) 100%),
    var(--mk-hero-image);
  background-size: cover;
  background-position: center 44%;
  transform:
    translate3d(calc((1 - var(--open-content)) * -10px), calc((1 - var(--open-content)) * 10px), 0)
    scale(calc(1.035 - var(--open-content) * .035));
  transform-origin: 55% 50%;
  transition: transform .82s var(--mk-ease);
}

.mk-hero::after {
  display: none;
}

.mk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 62px;
  width: 100%;
  margin: 0 auto;
  padding: 0 max(68px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 22px;
  --mk-header-solid: 0;
  opacity: calc(.28 + var(--open-content) * .72);
  background: rgba(7, 17, 15, calc(var(--mk-header-solid) * .985));
  border: 0;
  box-shadow: 0 1px 0 rgba(226, 201, 156, calc(var(--mk-header-solid) * .055));
  backdrop-filter: blur(calc(var(--mk-header-solid) * 14px));
  transform: translateY(calc((1 - var(--open-content)) * -12px));
  transition: background .22s ease, box-shadow .22s ease, backdrop-filter .22s ease, opacity .56s ease, transform .56s var(--mk-ease);
}
.mk-page:not([data-open="true"]) .mk-header {
  opacity: 1;
  transform: translateY(0);
}
.mk-header.is-scrolled {
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(7, 17, 15, .985);
  box-shadow: 0 1px 0 rgba(226, 201, 156, .055);
}
.mk-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  width: auto;
  padding-right: 2px;
  border-right: 0;
}
.mk-brand img {
  width: 25px;
  height: auto;
  filter: brightness(1.45) saturate(.65);
  opacity: .9;
}
.mk-brand span {
  color: rgba(255,255,255,.74);
  font-size: 15px;
  font-weight: 460;
  letter-spacing: .16em;
}
.mk-nav-divider {
  width: 26px;
  height: 1px;
  margin: 0 4px 0 10px;
  border-radius: 99px;
  background: rgba(226, 201, 156, .42);
  flex: 0 0 auto;
}
.mk-mobile-toggle,
.mk-mobile-menu {
  display: none;
}
.mk-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 480;
  letter-spacing: .08em;
}
.mk-nav > a,
.mk-nav-item > a {
  display: flex;
  align-items: center;
  height: 62px;
}
.mk-nav-item { position: relative; }
.mk-nav-item > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid rgba(226, 201, 156, .58);
}
.mk-mega {
  position: absolute;
  top: 54px;
  left: -14px;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px;
  color: rgba(245,250,247,.76);
  background: rgba(7, 15, 13, .88);
  border: 1px solid rgba(226, 201, 156, .1);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transform: translate(0, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--mk-ease), visibility .22s ease;
}
.mk-nav-item:hover .mk-mega,
.mk-nav-item:focus-within .mk-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
}
.mk-mega a {
  min-height: 0;
  padding: 10px 12px 11px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  transition: background .18s ease, opacity .18s ease;
}
.mk-mega a:hover {
  transform: none;
  background: rgba(255,255,255,.016);
}
.mk-mega b { display: block; margin-bottom: 4px; color: rgba(243,239,222,.86); font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.mk-mega span { color: rgba(221,233,228,.38); font-size: 10px; line-height: 1.62; }
.mk-header-cta {
  height: 38px;
  display: none;
  place-items: center;
  padding: 0 18px;
  color: rgba(236, 228, 208, .86);
  background: rgba(7, 18, 15, .24);
  border: 1px solid rgba(226, 201, 156, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, background .18s ease;
}
.mk-header-cta:hover {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(102, 217, 196, .12);
  border-color: rgba(226, 201, 156, .44);
}

.mk-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 144px));
  min-height: calc(108vh - 38px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 540px) 1fr;
  gap: 58px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 122px;
}
.mk-hero-copy {
  display: block;
  padding-top: 16px;
  max-width: 560px;
  opacity: calc(.08 + var(--open-content) * .92);
  transform:
    translateY(calc((1 - var(--open-content)) * 22px))
    scale(calc(.985 + var(--open-content) * .015));
  filter: blur(calc((1 - var(--open-content)) * 1.2px));
  transition: opacity .72s ease, transform .82s var(--mk-ease), filter .72s ease;
}
.mk-page:not([data-open="true"]) .mk-hero-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
.mk-kicker {
  margin: 0;
  color: rgba(226, 198, 156, .88);
  font-family: Georgia, "Times New Roman", "Songti SC", SimSun, serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
}
.mk-title-rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: 28px 0 42px;
  background: rgba(230, 205, 164, .78);
}
.mk-hero-copy h1 {
  margin: 0;
  color: #fffaf0;
  font-family: "Songti SC", "Noto Serif CJK SC", SimSun, serif;
  font-size: clamp(48px, 4.15vw, 70px);
  line-height: 1.22;
  font-weight: 420;
  letter-spacing: .075em;
  text-shadow: none;
}
.mk-hero-tags {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(222, 218, 202, .58);
  font-size: 17px;
  letter-spacing: .32em;
}
.mk-hero-tags i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(222, 190, 132, .46);
}
.mk-hero-copy p:not(.mk-kicker) {
  margin: 28px 0 0;
  max-width: 520px;
  color: rgba(246, 244, 234, .74);
  font-size: 16px;
  line-height: 1.9;
}
.mk-hero-button {
  width: 248px;
  height: 62px;
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px 0 32px;
  color: rgba(241, 230, 207, .82);
  border: 1px solid rgba(226, 201, 156, .34);
  border-radius: 999px;
  background: rgba(8, 18, 16, .18);
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.mk-hero-button:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(226, 201, 156, .56);
}
.mk-hero-button i {
  width: 11px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.mk-quiet-pain {
  position: relative;
  z-index: 10;
  padding: 36px max(60px, calc((100vw - 1320px) / 2)) 32px;
  color: rgba(240, 235, 218, .62);
  background: #07110f;
}
.mk-quiet-pain::before {
  content: "";
  display: block;
  width: min(1320px, 100%);
  height: 1px;
  margin: 0 auto 22px;
  background: rgba(226, 201, 156, .075);
}
.mk-quiet-pain p {
  width: min(1320px, 100%);
  margin: 0 auto 18px;
  color: rgba(226, 201, 156, .58);
  font-size: 12px;
  letter-spacing: .18em;
}
.mk-quiet-pain div {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mk-quiet-pain span {
  display: block;
  padding: 0 24px 0 0;
  color: rgba(239, 242, 232, .58);
  font-size: 15px;
  line-height: 1.72;
}
.mk-scenario {
  --scenario-card-h: 492px;
  --scenario-card-w: min(1344px, calc(100vw - 96px));
  --scenario-top: 172px;
  --mk-head-opacity: 1;
  --mk-scenario-exit: 0;
  position: relative;
  min-height: calc(184px + (var(--scenario-card-h) * 4) + 24vh);
  padding-top: 42px;
  padding-bottom: 24vh;
  background: var(--mk-page-bg);
  overflow: clip;
}
.mk-scenario-stage {
  position: relative;
  z-index: 12;
  display: block;
  min-height: calc(184px + (var(--scenario-card-h) * 4));
  padding-bottom: 0;
  background: transparent;
  box-shadow: none;
  opacity: calc(1 - var(--mk-scenario-exit) * .84);
  transition: opacity .18s ease;
}
.mk-scenario-head {
  position: sticky;
  top: 24px;
  z-index: 30;
  height: 126px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px 10px;
  background: #07110f;
  backdrop-filter: none;
  box-shadow: none;
  opacity: var(--mk-head-opacity);
  transition: opacity .22s ease;
}
.mk-scenario-head::after {
  display: none;
}
.mk-scenario-head p {
  width: var(--scenario-card-w);
  margin: 0;
  color: rgba(242, 247, 242, .88);
  font-family: "Songti SC", "Noto Serif CJK SC", SimSun, serif;
  font-size: 25px;
  font-weight: 420;
  letter-spacing: .022em;
  text-align: center;
  text-shadow: none;
}
.mk-scenario-stack {
  position: relative;
  width: 100%;
  min-height: calc(var(--scenario-card-h) * 4);
  margin: 0 auto;
  isolation: isolate;
}
.mk-scenario-block {
  --mk-card-y: 0px;
  --mk-card-scale: 1;
  --mk-card-opacity: 1;
  --mk-card-pointer: auto;
  --mk-cover-ink: 1;
  --mk-cover-overlay: 0;
  --mk-card-shadow: 0 22px 58px rgba(0, 0, 0, .18);
  --mk-wall-y: 0px;
  --mk-info-y: 0px;
  --mk-accent: 105, 181, 215;
  --mk-accent-soft: 35, 78, 95;
  position: sticky;
  top: var(--scenario-top);
  z-index: 9;
  width: 100%;
  height: var(--scenario-card-h);
  min-height: var(--scenario-card-h);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  will-change: transform, filter;
  isolation: isolate;
  box-shadow: none;
  pointer-events: var(--mk-card-pointer);
  transform: translateY(var(--mk-card-y));
}
.mk-scenario-block:nth-of-type(1) { z-index: 10; }
.mk-scenario-block:nth-of-type(2) { z-index: 11; }
.mk-scenario-block:nth-of-type(3) { z-index: 12; }
.mk-scenario-block:nth-of-type(4) { z-index: 13; }
.mk-scenario-block + .mk-scenario-block { margin-top: 0; }
.mk-scenario-block::after {
  display: none;
}
.mk-scenario-block::before {
  display: none;
}
.mk-scenario-block.is-reverse::before {
  display: none;
}
.mk-scenario-card {
  position: relative;
  width: var(--scenario-card-w);
  min-height: var(--scenario-card-h);
  height: var(--scenario-card-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 39.2857%) minmax(58px, 6.6964%) minmax(560px, 54.0179%);
  gap: 0;
  align-items: stretch;
  color: rgba(239, 247, 244, .88);
  background: #0a1b18;
  opacity: var(--mk-card-opacity);
  transform: scale(var(--mk-card-scale));
  transform-origin: 50% 0;
  filter: saturate(var(--mk-card-sat, 1)) brightness(var(--mk-card-bright, 1));
  box-shadow: none;
  overflow: clip;
  transition: opacity .18s ease, transform .52s var(--mk-ease), filter .26s ease;
}
.mk-scenario-card::before {
  display: none;
}
.mk-scenario-card::before {
  display: none;
}
.mk-scenario-card::after {
  display: none;
}
.mk-scenario-block.is-reverse .mk-scenario-card {
  width: var(--scenario-card-w);
  grid-template-columns: minmax(560px, 54.0179%) minmax(58px, 6.6964%) minmax(410px, 39.2857%);
  gap: 0;
  padding-left: 0;
  padding-right: 0;
  justify-content: normal;
}
.mk-scenario-card > * {
  position: relative;
  z-index: 2;
}
.mk-scenario-info { grid-column: 1; grid-row: 1; }
.mk-grid-wall { grid-column: 3; grid-row: 1; }
.mk-scenario-block.is-reverse .mk-scenario-info { grid-column: 3; grid-row: 1; padding-left: 0; padding-right: 0; }
.mk-scenario-block.is-reverse .mk-grid-wall { grid-column: 1; grid-row: 1; }
.mk-scenario-info {
  position: relative;
  height: auto;
  min-height: 100%;
  align-self: stretch;
  padding: 68px 0 42px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(var(--mk-info-y));
  transition: transform .34s var(--mk-ease);
}
.mk-scenario-info::before {
  display: none;
}
.mk-scenario-block.is-reverse .mk-scenario-info::before {
  left: auto;
  right: 0;
}
.mk-scenario-block.is-reverse .mk-scenario-info {
  padding-left: 0;
  padding-right: 54px;
}
.mk-scenario-block:not(.is-reverse) .mk-scenario-info {
  padding-left: 56px;
}
.mk-scenario-info em {
  display: none;
  color: #3188da;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
}
.mk-scenario-info h2 {
  margin: 0;
  color: rgba(244, 241, 232, .92);
  font-family: "Songti SC", "Noto Serif CJK SC", SimSun, serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 440;
}
.mk-scenario-info h3 {
  margin: 14px 0 0;
  color: rgba(231, 219, 190, .7);
  font-size: 12.5px;
  line-height: 1.54;
}
.mk-scenario-info p {
  margin: 18px 0 0;
  max-width: 35ch;
  color: rgba(224, 234, 231, .52);
  font-size: 11.5px;
  line-height: 1.8;
}
.mk-fit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.mk-fit b {
  flex-basis: 100%;
  margin-bottom: 1px;
  color: rgba(232, 220, 193, .44);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.mk-fit span {
  padding: 6px 10px;
  color: rgba(236, 226, 204, .7);
  background: rgba(226, 201, 156, .055);
  border: 0;
  font-size: 11px;
}
.mk-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 17px;
  color: rgba(236, 229, 212, .72);
  font-size: 13px;
  font-weight: 650;
}
.mk-detail i {
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.mk-grid-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(4, 101px);
  grid-auto-rows: 101px;
  align-self: start;
  min-height: 0;
  width: min(726px, 100%);
  height: 404px;
  margin: 66px 0 0;
  overflow: hidden;
  border-radius: 12px;
  border-top-left-radius: 0;
  background: rgba(10, 28, 24, .18);
  box-shadow: none;
  transform: translateY(var(--mk-wall-y));
  transition: transform .48s var(--mk-ease), box-shadow .3s ease;
}
.mk-grid-wall::before {
  display: none;
}
.mk-wall-tile {
  position: relative;
  overflow: hidden;
  padding: 15px 14px 12px;
  border: 0;
  box-shadow: none;
  color: rgba(250,250,248,.74);
  background: rgba(var(--mk-accent-soft), .26);
  transition: filter .22s ease, transform .22s ease, background .22s ease, opacity .22s ease;
}
.mk-wall-tile:nth-child(1),
.mk-wall-tile:nth-child(4),
.mk-wall-tile:nth-child(9),
.mk-wall-tile:nth-child(12) {
  box-shadow: none;
}
.mk-wall-tile:nth-child(2),
.mk-wall-tile:nth-child(5),
.mk-wall-tile:nth-child(8),
.mk-wall-tile:nth-child(11) {
  background: rgba(24, 63, 56, .28);
}
.mk-wall-tile:nth-child(3),
.mk-wall-tile:nth-child(6),
.mk-wall-tile:nth-child(10) {
  background: rgba(13, 39, 36, .3);
}
.mk-wall-tile::before {
  display: none;
}
.mk-wall-tile::after {
  display: none;
}
.mk-wall-tile:nth-child(2)::after,
.mk-wall-tile:nth-child(3)::after,
.mk-wall-tile:nth-child(5)::after,
.mk-wall-tile:nth-child(6)::after,
.mk-wall-tile:nth-child(7)::after {
  display: none;
}
.mk-wall-tile:nth-child(8)::after,
.mk-wall-tile:nth-child(10)::after,
.mk-wall-tile:nth-child(11)::after {
  display: none;
}
.mk-wall-tile:hover {
  filter: brightness(1.03) saturate(1.02);
  transform: none;
  box-shadow: none;
  background: rgba(var(--mk-accent), .28);
}
.mk-wall-large {
  background: rgba(var(--mk-accent), .34);
}
.mk-wall-wide { background: rgba(34, 71, 63, .28); }
.mk-wall-feature-1 { grid-column: 1 / 3; grid-row: 3 / 5; }
.mk-wall-feature-2 { grid-column: 4 / 6; grid-row: 1 / 3; }
.mk-wall-feature-3 { grid-column: 6 / 8; grid-row: 3 / 5; }
.mk-wall-feature-4 { grid-column: 1 / 3; grid-row: 1 / 2; }
.mk-wall-feature-5 { grid-column: 4 / 6; grid-row: 4 / 5; }
.mk-wall-feature-6 { grid-column: 6 / 8; grid-row: 1 / 2; }
.mk-wall-feature-7 { grid-column: 3 / 4; grid-row: 1 / 2; }
.mk-wall-feature-8 { grid-column: 3 / 4; grid-row: 2 / 3; }
.mk-wall-feature-9 { grid-column: 3 / 4; grid-row: 3 / 4; }
.mk-wall-feature-10 { grid-column: 3 / 4; grid-row: 4 / 5; }
.mk-wall-feature-11 { grid-column: 1 / 2; grid-row: 2 / 3; }
.mk-wall-feature-12 { grid-column: 2 / 3; grid-row: 2 / 3; }
.mk-wall-feature-13 { grid-column: 4 / 5; grid-row: 3 / 4; }
.mk-wall-feature-14 { grid-column: 5 / 6; grid-row: 3 / 4; }
.mk-wall-feature-15 { grid-column: 6 / 7; grid-row: 2 / 3; }
.mk-wall-feature-16 { grid-column: 7 / 8; grid-row: 2 / 3; }
.mk-wall-feature-5,
.mk-wall-feature-15 {
  background: rgba(16, 47, 42, .27);
}
.mk-wall-accent { background: rgba(104, 78, 68, .28); }
.is-blue { --mk-accent: 92, 150, 142; --mk-accent-soft: 17, 55, 49; }
.is-teal { --mk-accent: 100, 156, 142; --mk-accent-soft: 18, 58, 50; }
.is-slate { --mk-accent: 92, 135, 128; --mk-accent-soft: 17, 52, 48; }
.is-red { --mk-accent: 96, 143, 133; --mk-accent-soft: 18, 55, 49; }
.is-teal .mk-scenario-card {
  background: #0a1c19;
}
.is-slate .mk-scenario-card {
  background: #0a1b19;
}
.is-red .mk-scenario-card {
  background: #0a1b19;
}
.is-teal .mk-wall-large { background: rgba(87, 136, 126, .36); }
.is-slate .mk-wall-large { background: rgba(81, 120, 116, .34); }
.is-red .mk-wall-large { background: rgba(82, 126, 117, .34); }
.is-red .mk-wall-accent { background: rgba(108, 78, 69, .26); }
.mk-wall-quiet {
  opacity: .48;
  pointer-events: none;
  background: rgba(var(--mk-accent-soft), .18);
}
.mk-wall-quiet:hover {
  filter: none;
  transform: none;
  box-shadow: none;
}
.mk-wall-tile em {
  display: none;
}
.mk-wall-tile b {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0;
  color: rgba(245, 247, 243, .86);
  font-size: 11.5px;
  line-height: 1.24;
  text-shadow: none;
  opacity: max(.18, var(--mk-cover-ink));
  transition: opacity .22s ease;
}
.mk-wall-large b { margin-top: 46px; font-size: 15.5px; }
.mk-wall-feature-2 b { margin-top: 47px; }
.mk-wall-feature-3 b { margin-top: 47px; }
.mk-wall-feature-5 b,
.mk-wall-feature-15 b { margin-top: 0; }
.mk-wall-tile span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  color: rgba(225, 233, 229, .42);
  font-size: 9px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: max(.1, var(--mk-cover-ink));
  transition: opacity .22s ease;
}
.mk-wall-large span {
  max-width: 220px;
  color: rgba(237, 241, 237, .58);
  font-size: 11px;
  line-height: 1.42;
}
.mk-wall-accent span {
  color: rgba(239, 233, 228, .58);
}
.mk-scenario-meter {
  display: none !important;
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 35;
  width: var(--scenario-card-w);
  margin: 0;
  transform: translateX(-50%);
  display: none !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  color: rgba(225,235,238,.22);
  font-size: 11px;
  letter-spacing: .08em;
  background: transparent;
  pointer-events: none;
}
.mk-scenario-meter::before {
  display: none;
}
.mk-scenario-meter span {
  height: 24px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  background: transparent;
  border: 0;
  opacity: .78;
  transition: color .34s ease, opacity .34s ease;
}
.mk-scenario-meter span.is-active {
  color: rgba(243,239,222,.72);
  opacity: 1;
}

.mk-principles {
  position: relative;
  z-index: 10;
  padding: 132px 0 104px;
  color: #eef8f5;
  background: var(--mk-page-bg);
}
.mk-principles-intro,
.mk-principles-lead,
.mk-principles-grid,
.mk-principles-flow {
  width: min(1180px, calc(100vw - 120px));
  margin: 0 auto;
}
.mk-principles-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 86px;
  align-items: end;
}
.mk-principles p {
  margin: 0 0 16px;
  color: rgba(102, 217, 196, .82);
  font-weight: 800;
}
.mk-principles h2 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif CJK SC", SimSun, serif;
  font-size: 48px;
  line-height: 1.2;
}
.mk-principles-lead {
  max-width: none;
  margin-top: 28px;
  padding-left: 446px;
  color: rgba(231, 242, 238, .62);
  font-size: 16px;
  line-height: 1.9;
}
.mk-principles-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
}
.mk-principles-grid article {
  min-height: 236px;
  padding: 42px 38px 34px;
  background: #10231f;
}
.mk-principles-grid span {
  display: block;
  color: #f1f8f5;
  font-size: 22px;
  font-weight: 700;
}
.mk-principles-grid p {
  margin: 22px 0 0;
  color: rgba(231, 242, 238, .56);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.mk-principles-flow {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(232, 242, 238, .76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.mk-principles-flow span {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: rgba(255,255,255,.045);
  border: 0;
}
.mk-principles-flow i {
  display: none;
}

.mk-contact {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  scroll-margin-top: 0;
  padding: 0;
  color: #fff;
  background: var(--mk-page-bg);
  isolation: isolate;
}
.mk-contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 96px;
  z-index: 0;
  background: var(--mk-page-bg);
}
.mk-contact-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 120px));
  min-height: 100vh;
  margin: 0 auto;
  padding: min(17vh, 156px) 0 38px;
  display: flex;
  flex-direction: column;
}
.mk-contact p {
  margin: 0 0 22px;
  color: rgba(226, 201, 156, .7);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mk-contact h2 {
  max-width: 880px;
  margin: 0 0 34px;
  font-family: "Songti SC", "Noto Serif CJK SC", SimSun, serif;
  font-size: 40px;
  line-height: 1.24;
  font-weight: 430;
  text-align: left;
}
.mk-contact-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mk-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  height: 52px;
  color: rgba(241, 230, 207, .88);
  background: transparent;
  border: 1px solid rgba(226, 201, 156, .36);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}
.mk-contact a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.mk-contact-row span {
  max-width: 430px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.84;
}
.mk-footer-links {
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid rgba(226, 201, 156, .075);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
}
.mk-footer-links b {
  display: block;
  margin-bottom: 14px;
  color: rgba(231, 242, 237, .86);
  font-size: 13px;
  letter-spacing: .05em;
}
.mk-footer-links span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.58;
}
.mk-icp {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 201, 156, .045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.34);
  font-size: 11px;
  line-height: 1.6;
}
.mk-icp-primary,
.mk-icp-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.mk-icp-primary strong {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.mk-icp-primary span {
  color: rgba(255,255,255,.36);
}
.mk-icp a {
  min-width: 0;
  height: auto;
  padding: 0;
  color: rgba(255,255,255,.34);
  background: transparent;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}
.mk-icp a::after {
  content: none;
}
.mk-icp a:hover {
  color: rgba(255,255,255,.68);
}
.mk-police-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mk-police-record img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
  opacity: .72;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) {
  body { overflow: auto; }
  .mk-page { height: auto; overflow: visible; }
  .mk-opening { display: none; }
  .mk-entry-card {
    bottom: 88px;
    width: calc(100% - 36px);
  }
  .mk-entry-word b {
    font-size: 42px;
    letter-spacing: .14em;
  }
  .mk-content-wrapper {
    position: relative;
    min-height: 100vh;
    transform: none;
    opacity: 1;
  }
  .mk-scroll { height: auto; overflow: visible; }
  .mk-header,
  .mk-header.is-scrolled {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: 54px;
    padding: 0 18px 0 16px;
    gap: 10px;
    opacity: 1;
    background: rgba(7, 17, 15, .72);
    box-shadow: 0 1px 0 rgba(226, 201, 156, .055);
    backdrop-filter: blur(14px);
  }
  .mk-brand { width: auto; border-right: 0; padding-right: 0; }
  .mk-brand img { width: 24px; opacity: .76; }
  .mk-brand span {
    font-size: 13px;
    letter-spacing: .2em;
    opacity: .68;
  }
  .mk-nav-divider {
    width: 18px;
    height: 1px;
    margin: 0 0 0 auto;
    opacity: .34;
  }
  .mk-mobile-toggle {
    margin-left: 8px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(226, 201, 156, .16);
    border-radius: 999px;
    background: rgba(255,255,255,.018);
    color: rgba(244, 240, 228, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background .2s ease, border-color .2s ease;
  }
  .mk-mobile-toggle span {
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform .24s var(--mk-ease), opacity .2s ease;
  }
  .mk-page[data-mobile-nav-open="true"] .mk-mobile-toggle {
    background: rgba(226, 201, 156, .06);
    border-color: rgba(226, 201, 156, .28);
  }
  .mk-page[data-mobile-nav-open="true"] .mk-mobile-toggle span:first-child {
    transform: translateY(3px) rotate(38deg);
  }
  .mk-page[data-mobile-nav-open="true"] .mk-mobile-toggle span:last-child {
    transform: translateY(-3px) rotate(-38deg);
  }
  .mk-nav,
  .mk-header-cta { display: none; }
  .mk-mobile-menu {
    position: fixed;
    top: 54px;
    left: 12px;
    right: 12px;
    z-index: 39;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .28s var(--mk-ease), visibility .22s ease;
  }
  .mk-page[data-mobile-nav-open="true"] .mk-mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mk-mobile-menu-inner {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 6px;
    background: rgba(7, 17, 15, .91);
    border: 1px solid rgba(226, 201, 156, .1);
    border-radius: 18px;
    backdrop-filter: blur(18px);
  }
  .mk-mobile-menu a {
    min-height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    color: rgba(244, 240, 228, .74);
    font-size: 12px;
    letter-spacing: .08em;
    border-radius: 12px;
  }
  .mk-mobile-menu a:active {
    background: rgba(226, 201, 156, .055);
    color: rgba(255,255,255,.9);
  }
  .mk-hero-inner {
    width: calc(100% - 40px);
    min-height: calc(100svh - 54px);
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: clamp(126px, 18svh, 154px) 0 72px;
  }
  .mk-hero::before {
    background-image:
      linear-gradient(90deg, rgba(5, 14, 12, .82) 0%, rgba(5, 14, 12, .54) 48%, rgba(5, 14, 12, .16) 100%),
      linear-gradient(180deg, rgba(5, 14, 12, .2) 0%, rgba(5, 14, 12, .12) 44%, rgba(5, 14, 12, .68) 100%),
      var(--mk-hero-image);
    background-position: 56% center;
  }
  .mk-hero-copy {
    max-width: 100%;
    padding-top: 0;
    transform: none;
  }
  .mk-kicker {
    font-size: 16px;
    color: rgba(226, 198, 156, .72);
  }
  .mk-title-rule {
    width: 46px;
    margin: 15px 0 24px;
    background: rgba(226, 201, 156, .6);
  }
  .mk-hero-copy h1 {
    font-size: clamp(32px, 9.7vw, 40px);
    line-height: 1.2;
    letter-spacing: .09em;
  }
  .mk-hero-copy p:not(.mk-kicker) {
    margin-top: 20px;
    max-width: 19em;
    color: rgba(246, 244, 234, .62);
    font-size: 13px;
    line-height: 1.74;
  }
  .mk-hero-tags {
    display: none;
  }
  .mk-hero-button {
    width: min(100%, 246px);
    height: 50px;
    margin-top: 28px;
    padding: 0 18px 0 22px;
    color: rgba(241, 230, 207, .76);
    background: rgba(8, 18, 16, .08);
    font-size: 14px;
    letter-spacing: .02em;
  }
  .mk-quiet-pain {
    padding: 28px 21px 20px;
  }
  .mk-quiet-pain::before {
    margin-bottom: 18px;
  }
  .mk-quiet-pain p {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .mk-quiet-pain div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .mk-quiet-pain span {
    padding: 0;
    font-size: 13px;
    line-height: 1.58;
  }
  .mk-scenario { min-height: auto; padding: 78px 0 68px; }
  .mk-scenario-stage,
  .mk-scenario-stack {
    min-height: auto;
  }
  .mk-scenario-head,
  .mk-scenario-block { position: relative; top: auto; }
  .mk-scenario-head {
    height: auto;
    width: calc(100% - 36px);
    margin-bottom: 30px;
    padding: 18px 6px 0;
  }
  .mk-scenario-head p {
    width: 100%;
    font-size: 29px;
    line-height: 1.34;
    letter-spacing: .035em;
  }
  .mk-scenario-block {
    height: auto;
    min-height: auto;
    margin-bottom: 24px;
    pointer-events: auto !important;
    transform: none !important;
  }
  .mk-scenario-card,
  .mk-scenario-block.is-reverse .mk-scenario-card {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
    min-height: auto;
    background: rgba(10, 27, 24, .32);
  }
  .is-teal .mk-scenario-card,
  .is-slate .mk-scenario-card,
  .is-red .mk-scenario-card {
    background: rgba(10, 27, 24, .32);
  }
  .mk-scenario-info,
  .mk-grid-wall,
  .mk-scenario-block.is-reverse .mk-scenario-info,
  .mk-scenario-block.is-reverse .mk-grid-wall {
    grid-column: 1;
    grid-row: auto;
  }
  .mk-scenario-block.is-reverse .mk-scenario-info,
  .mk-scenario-block.is-reverse .mk-grid-wall {
    padding-left: 0;
    padding-right: 0;
  }
  .mk-scenario-info {
    padding: 30px 18px 0;
    min-height: auto;
  }
  .mk-scenario-info h2 {
    font-size: 26px;
    line-height: 1.26;
  }
  .mk-scenario-info h3 {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }
  .mk-scenario-info p {
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.78;
  }
  .mk-fit {
    gap: 6px;
    margin-top: 18px;
  }
  .mk-fit span {
    padding: 0;
    color: rgba(236, 226, 204, .54);
    background: transparent;
    font-size: 11.5px;
  }
  .mk-fit span + span::before {
    content: "/";
    margin-right: 6px;
    color: rgba(226, 201, 156, .26);
  }
  .mk-detail {
    margin-top: 18px;
    font-size: 12.5px;
  }
  .mk-grid-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(96px, auto);
    width: calc(100% - 36px);
    height: auto;
    margin: 0 18px 24px;
    overflow: visible;
    border-radius: 18px;
    background: transparent;
    gap: 9px;
  }
  .mk-wall-tile,
  .mk-wall-large,
  .mk-wall-wide,
  .mk-wall-feature-1,
  .mk-wall-feature-2,
  .mk-wall-feature-3,
  .mk-wall-feature-4,
  .mk-wall-feature-5,
  .mk-wall-feature-6,
  .mk-wall-feature-7,
  .mk-wall-feature-8,
  .mk-wall-feature-9,
  .mk-wall-feature-10,
  .mk-wall-feature-11,
  .mk-wall-feature-12,
  .mk-wall-feature-13,
  .mk-wall-feature-14,
  .mk-wall-feature-15,
  .mk-wall-feature-16 {
    grid-column: auto;
    grid-row: auto;
  }
  .mk-wall-large b,
  .mk-wall-feature-2 b,
  .mk-wall-feature-3 b {
    margin-top: 0;
  }
  .mk-wall-tile {
    padding: 13px 12px 12px;
    border-radius: 16px;
    background: rgba(var(--mk-accent-soft), .16);
  }
  .mk-wall-tile:nth-child(2),
  .mk-wall-tile:nth-child(3),
  .mk-wall-tile:nth-child(5),
  .mk-wall-tile:nth-child(6),
  .mk-wall-tile:nth-child(8),
  .mk-wall-tile:nth-child(10),
  .mk-wall-tile:nth-child(11),
  .mk-wall-feature-5,
  .mk-wall-feature-15,
  .mk-wall-wide,
  .mk-wall-accent,
  .mk-wall-large,
  .is-teal .mk-wall-large,
  .is-slate .mk-wall-large,
  .is-red .mk-wall-large,
  .is-red .mk-wall-accent {
    background: rgba(var(--mk-accent-soft), .16);
  }
  .mk-wall-tile:hover,
  .mk-wall-large:hover,
  .mk-wall-wide:hover,
  .mk-wall-accent:hover,
  .is-teal .mk-wall-large:hover,
  .is-slate .mk-wall-large:hover,
  .is-red .mk-wall-large:hover,
  .is-red .mk-wall-accent:hover {
    background: rgba(var(--mk-accent), .28);
  }
  .mk-wall-tile b,
  .mk-wall-large b {
    font-size: 14px;
    line-height: 1.22;
  }
  .mk-wall-tile span,
  .mk-wall-large span {
    font-size: 11px;
    line-height: 1.48;
  }
  .mk-principles {
    min-height: auto;
    padding: 90px 18px 86px;
  }
  .mk-principles-intro,
  .mk-principles-lead,
  .mk-principles-grid,
  .mk-principles-flow {
    width: 100%;
  }
  .mk-principles-intro,
  .mk-principles-grid,
  .mk-footer-links {
    grid-template-columns: 1fr;
  }
  .mk-principles-lead {
    padding-left: 0;
  }
  .mk-principles h2,
  .mk-contact h2 { font-size: 32px; }
  .mk-principles-grid {
    margin-top: 44px;
    gap: 18px;
  }
  .mk-principles-grid article {
    min-height: 0;
    padding: 30px 28px 28px;
    background: rgba(16, 35, 31, .56);
  }
  .mk-principles-grid span {
    font-size: 25px;
  }
  .mk-principles-grid p {
    margin-top: 16px;
    font-size: 13px;
  }
  .mk-principles-flow {
    margin-top: 40px;
    justify-content: flex-start;
    gap: 11px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(232, 242, 238, .58);
  }
  .mk-principles-flow span {
    height: auto;
    padding: 0;
    background: transparent;
  }
  .mk-principles-flow i {
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(226, 201, 156, .2);
  }
  .mk-contact {
    min-height: 100svh;
    padding: 0 18px;
    scroll-margin-top: 54px;
  }
  .mk-contact-inner {
    width: 100%;
    min-height: 100svh;
    padding: 118px 0 24px;
  }
  .mk-contact-row { align-items: flex-start; flex-direction: column; }
  .mk-footer-links {
    margin-top: auto;
    padding-top: 26px;
    gap: 24px;
  }
  .mk-footer-links b { margin-bottom: 10px; }
  .mk-footer-links span { margin-top: 5px; }
  .mk-icp {
    margin-top: 22px;
    padding-top: 12px;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  .mk-icp-primary,
  .mk-icp-legal {
    width: 100%;
    gap: 6px 12px;
    justify-content: flex-start;
  }
  .mk-contact h2 {
    max-width: 10.5em;
    font-size: 30px;
    line-height: 1.28;
    letter-spacing: .04em;
  }
  .mk-contact-row span {
    font-size: 13px;
    line-height: 1.78;
  }
  .mk-icp a {
    white-space: normal;
  }
}
