:root {
  --mmk-black: #0e0e0e;
  --mmk-panel: #171613;
  --mmk-bone: #f4f1ea;
  --mmk-muted: rgba(244, 241, 234, .68);
  --mmk-gold: #8a6d3b;
  --mmk-gold-2: #b89968;
  --mmk-steel: #44505e;
  --mmk-steel-2: #6e7d8c;
  --mmk-ash: #8a8580;
  --mmk-shadow: 0 34px 100px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mmk-black);
  color: var(--mmk-bone);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.mmk-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(138, 109, 59, .13), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(68, 80, 94, .16), transparent 32%),
    var(--mmk-black);
}

.mmk-page:before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(var(--mmk-accent-rgb), .14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(110, 125, 140, .12), transparent 30%),
    linear-gradient(115deg, transparent 0 34%, rgba(244, 241, 234, .035) 39%, transparent 44% 100%);
  filter: blur(.2px);
  opacity: .78;
  transform: translate3d(0, 0, 0);
  animation: mmk-page-drift 22s ease-in-out infinite alternate;
}

.mmk-page > * {
  position: relative;
  z-index: 1;
}

.mmk-page.steel {
  --mmk-accent: var(--mmk-steel-2);
  --mmk-accent-deep: var(--mmk-steel);
  --mmk-accent-rgb: 110, 125, 140;
}

.mmk-page:not(.steel) {
  --mmk-accent: var(--mmk-gold);
  --mmk-accent-deep: var(--mmk-gold-2);
  --mmk-accent-rgb: 138, 109, 59;
}

.mmk-wrap {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
}

.mmk-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 14, .9);
  border-bottom: 1px solid rgba(244, 241, 234, .1);
  backdrop-filter: blur(18px);
}

.mmk-nav {
  min-height: 76px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.mmk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mmk-brand-mark {
  width: 34px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .32));
  transform: translateY(1px);
}

.mmk-brand-copy {
  display: grid;
  gap: 6px;
}

.mmk-brand strong {
  color: var(--mmk-bone);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 900;
}

.mmk-brand span {
  color: var(--mmk-accent);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 800;
}

.mmk-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  color: rgba(244, 241, 234, .7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mmk-links a {
  padding: 10px 0;
  transition: color .2s ease;
}

.mmk-links a:hover {
  color: var(--mmk-bone);
}

.mmk-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--mmk-accent-rgb), .46);
  background: rgba(244, 241, 234, .045);
  color: var(--mmk-bone);
  cursor: pointer;
}

.mmk-menu-toggle span {
  width: 19px;
  height: 1px;
  display: block;
  position: relative;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.mmk-menu-toggle span:before,
.mmk-menu-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 1px;
  background: currentColor;
  transition: transform .22s ease;
}

.mmk-menu-toggle span:before {
  transform: translateY(-7px);
}

.mmk-menu-toggle span:after {
  transform: translateY(7px);
}

.mmk-brand:focus-visible,
.mmk-links a:focus-visible,
.mmk-menu-toggle:focus-visible,
.mmk-btn:focus-visible,
.mmk-source-action:focus-visible,
.mmk-channel:focus-visible,
.mmk-field input:focus-visible,
.mmk-field select:focus-visible,
.mmk-field textarea:focus-visible,
.mmk-choice:focus-within {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--mmk-accent-rgb), .24), 0 0 0 1px rgba(244, 241, 234, .5);
}

.mmk-topbar.is-menu-open .mmk-menu-toggle span {
  background: transparent;
}

.mmk-topbar.is-menu-open .mmk-menu-toggle span:before {
  transform: rotate(45deg);
}

.mmk-topbar.is-menu-open .mmk-menu-toggle span:after {
  transform: rotate(-45deg);
}

.mmk-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(var(--mmk-accent-rgb), .64);
  background: linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .22), rgba(244, 241, 234, .04));
  color: var(--mmk-bone);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.mmk-btn:hover {
  transform: translateY(-2px);
  border-color: var(--mmk-accent);
}

.mmk-btn-dark {
  background: var(--mmk-black);
  border-color: rgba(14, 14, 14, .82);
}

.mmk-btn-soft {
  border-color: rgba(244, 241, 234, .26);
  background: rgba(244, 241, 234, .055);
}

.mmk-arrow {
  width: 18px;
  height: 1px;
  display: inline-block;
  position: relative;
  background: currentColor;
}

.mmk-arrow:after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.mmk-hero {
  position: relative;
  padding: clamp(86px, 12vw, 150px) 0 clamp(66px, 8vw, 110px);
  border-bottom: 1px solid rgba(244, 241, 234, .1);
}

.mmk-live-hero {
  min-height: clamp(540px, 72vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .76) 0%, rgba(14, 14, 14, .5) 44%, rgba(14, 14, 14, .14) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .08), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-online-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .54) 46%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .08), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-golf-hero {
  background:
    linear-gradient(90deg, rgba(12, 16, 18, .76) 0%, rgba(12, 16, 18, .52) 42%, rgba(12, 16, 18, .14) 100%),
    linear-gradient(180deg, rgba(12, 16, 18, .06), rgba(12, 16, 18, .66)),
    url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-concierge-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .55) 48%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .08), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-contact-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .56) 46%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .08), rgba(14, 14, 14, .66)),
    url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-founder-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .76) 0%, rgba(14, 14, 14, .52) 46%, rgba(14, 14, 14, .14) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .66)),
    url("https://images.unsplash.com/photo-1576678927484-cc907957088c?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-path-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .54) 46%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-system-hero {
  background:
    linear-gradient(90deg, rgba(9, 10, 11, .78) 0%, rgba(9, 10, 11, .54) 44%, rgba(9, 10, 11, .18) 100%),
    linear-gradient(180deg, rgba(9, 10, 11, .06), rgba(9, 10, 11, .68)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-research-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .54) 48%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-brief-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .8) 0%, rgba(14, 14, 14, .54) 52%, rgba(14, 14, 14, .18) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .06), rgba(14, 14, 14, .7)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-access-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .52) 46%, rgba(14, 14, 14, .15) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-services-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .76) 0%, rgba(14, 14, 14, .52) 44%, rgba(14, 14, 14, .15) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .06), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-thanks-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .52) 46%, rgba(14, 14, 14, .15) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1518609878373-06d740f60d8b?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(244, 241, 234, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .026) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .22;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.88), transparent 78%);
}

.mmk-live-hero:before {
  z-index: -2;
  background:
    linear-gradient(rgba(244, 241, 234, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .04) 1px, transparent 1px),
    radial-gradient(circle at 20% 68%, rgba(var(--mmk-accent-rgb), .26), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(110, 125, 140, .22), transparent 30%);
  background-size: 88px 88px, 88px 88px, 100% 100%, 100% 100%;
  opacity: .6;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.34) 58%, transparent 100%);
}

.mmk-online-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .034) 1px, transparent 1px),
    radial-gradient(circle at 18% 72%, rgba(138, 109, 59, .24), transparent 33%),
    radial-gradient(circle at 78% 20%, rgba(68, 80, 94, .28), transparent 34%);
  background-size: 76px 76px, 76px 76px, 100% 100%, 100% 100%;
}

.mmk-golf-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .032) 1px, transparent 1px),
    radial-gradient(circle at 18% 68%, rgba(110, 125, 140, .34), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(244, 241, 234, .12), transparent 30%);
  background-size: 104px 104px, 104px 104px, 100% 100%, 100% 100%;
}

.mmk-concierge-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .026) 1px, transparent 1px),
    radial-gradient(circle at 20% 68%, rgba(138, 109, 59, .22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(244, 241, 234, .11), transparent 29%);
  background-size: 96px 96px, 96px 96px, 100% 100%, 100% 100%;
}

.mmk-contact-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .03) 1px, transparent 1px),
    radial-gradient(circle at 18% 70%, rgba(138, 109, 59, .24), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(244, 241, 234, .1), transparent 28%);
  background-size: 90px 90px, 90px 90px, 100% 100%, 100% 100%;
}

.mmk-founder-hero:before,
.mmk-path-hero:before,
.mmk-access-hero:before,
.mmk-services-hero:before,
.mmk-thanks-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .034) 1px, transparent 1px),
    radial-gradient(circle at 18% 70%, rgba(var(--mmk-accent-rgb), .25), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(244, 241, 234, .11), transparent 30%);
  background-size: 92px 92px, 92px 92px, 100% 100%, 100% 100%;
}

.mmk-system-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .04) 1px, transparent 1px),
    radial-gradient(circle at 16% 70%, rgba(110, 125, 140, .32), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(var(--mmk-accent-rgb), .18), transparent 28%);
  background-size: 76px 76px, 76px 76px, 100% 100%, 100% 100%;
}

.mmk-research-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .028) 1px, transparent 1px),
    radial-gradient(circle at 18% 70%, rgba(138, 109, 59, .2), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(110, 125, 140, .22), transparent 30%);
  background-size: 104px 104px, 104px 104px, 100% 100%, 100% 100%;
}

.mmk-live-hero:after {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 17%, rgba(244, 241, 234, .08) 21%, transparent 26%),
    linear-gradient(115deg, transparent 50%, rgba(var(--mmk-accent-rgb), .12) 54%, transparent 60%);
  filter: blur(.2px);
  transform: translate3d(-14%, 0, 0);
  animation: mmk-live-sweep 11s ease-in-out infinite alternate;
}

.mmk-online-hero:after {
  background:
    linear-gradient(115deg, transparent 15%, rgba(244, 241, 234, .1) 19%, transparent 24%),
    linear-gradient(115deg, transparent 48%, rgba(68, 80, 94, .18) 52%, transparent 58%);
  animation-duration: 13s;
}

.mmk-golf-hero:after {
  background:
    linear-gradient(115deg, transparent 18%, rgba(244, 241, 234, .12) 22%, transparent 27%),
    linear-gradient(115deg, transparent 54%, rgba(110, 125, 140, .22) 58%, transparent 64%);
  animation-duration: 10s;
}

.mmk-concierge-hero:after {
  background:
    linear-gradient(115deg, transparent 20%, rgba(244, 241, 234, .08) 24%, transparent 30%),
    linear-gradient(115deg, transparent 58%, rgba(138, 109, 59, .16) 62%, transparent 68%);
  animation-duration: 15s;
}

.mmk-contact-hero:after {
  background:
    linear-gradient(115deg, transparent 18%, rgba(244, 241, 234, .09) 22%, transparent 28%),
    linear-gradient(115deg, transparent 56%, rgba(138, 109, 59, .16) 60%, transparent 66%);
  animation-duration: 14s;
}

.mmk-founder-hero:after,
.mmk-path-hero:after,
.mmk-access-hero:after,
.mmk-services-hero:after,
.mmk-thanks-hero:after {
  background:
    linear-gradient(115deg, transparent 18%, rgba(244, 241, 234, .1) 22%, transparent 28%),
    linear-gradient(115deg, transparent 54%, rgba(var(--mmk-accent-rgb), .16) 58%, transparent 64%);
  animation-duration: 12s;
}

.mmk-system-hero:after {
  background:
    linear-gradient(115deg, transparent 14%, rgba(244, 241, 234, .12) 18%, transparent 23%),
    linear-gradient(115deg, transparent 50%, rgba(110, 125, 140, .24) 54%, transparent 60%);
  animation-duration: 16s;
}

.mmk-research-hero:after {
  background:
    linear-gradient(115deg, transparent 19%, rgba(244, 241, 234, .08) 23%, transparent 29%),
    linear-gradient(115deg, transparent 57%, rgba(138, 109, 59, .14) 61%, transparent 67%);
  animation-duration: 18s;
}

.mmk-brief-hero .mmk-hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.mmk-brief-hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 6.6vw, 98px);
}

.mmk-brief-hero .mmk-copy {
  max-width: 640px;
}

.mmk-brief-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 4vw, 42px);
}

.mmk-brief-signals span {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 11px 13px;
  border: 1px solid rgba(244, 241, 234, .17);
  background: rgba(14, 14, 14, .48);
  color: rgba(244, 241, 234, .8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.mmk-brief-signals span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--mmk-accent-rgb), .28), transparent);
  transform: translateX(-115%);
  animation: mmk-process-line 5.8s ease-in-out infinite;
}

.mmk-brief-signals span:nth-child(2):after {
  animation-delay: .55s;
}

.mmk-brief-signals span:nth-child(3):after {
  animation-delay: 1.1s;
}

.mmk-live-hero .mmk-hero-inner:before {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mmk-cursor-x, 18%) var(--mmk-cursor-y, 34%), rgba(var(--mmk-accent-rgb), .22), transparent 32%);
  opacity: .72;
  transition: opacity .3s ease;
}

.mmk-live-hero.is-pointer-active .mmk-hero-inner:before {
  opacity: 1;
}

.mmk-live-hero .mmk-service-intake-grid:before,
.mmk-live-hero .mmk-founder-intro-grid:before,
.mmk-live-hero .mmk-about-hero-grid:before {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mmk-cursor-x, 18%) var(--mmk-cursor-y, 34%), rgba(var(--mmk-accent-rgb), .22), transparent 32%);
  opacity: .72;
  transition: opacity .3s ease;
}

.mmk-live-hero.is-pointer-active .mmk-service-intake-grid:before,
.mmk-live-hero.is-pointer-active .mmk-founder-intro-grid:before,
.mmk-live-hero.is-pointer-active .mmk-about-hero-grid:before {
  opacity: 1;
}

@keyframes mmk-live-sweep {
  0% {
    transform: translate3d(-14%, 0, 0) scale(1);
    opacity: .55;
  }

  100% {
    transform: translate3d(10%, -4%, 0) scale(1.04);
    opacity: .9;
  }
}

@keyframes mmk-page-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(3%, 2%, 0) scale(1.04);
  }
}

@keyframes mmk-section-glide {
  0% {
    transform: translate3d(-2%, 0, 0);
    opacity: .5;
  }

  100% {
    transform: translate3d(2%, 0, 0);
    opacity: .82;
  }
}

@keyframes mmk-rise-in {
  0% {
    opacity: 0;
    translate: 0 28px;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes mmk-pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(var(--mmk-accent-rgb), .09), var(--mmk-shadow);
  }

  50% {
    box-shadow: 0 0 0 22px rgba(var(--mmk-accent-rgb), .025), 0 0 54px rgba(var(--mmk-accent-rgb), .18), var(--mmk-shadow);
  }
}

@keyframes mmk-founder-film-pan {
  0% {
    background-position: center, 54% center;
  }

  100% {
    background-position: center, 44% center;
  }
}

@keyframes mmk-founder-visual-pan {
  0% {
    transform: scale(1.04) translate3d(-1.5%, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(1.5%, -1%, 0);
  }
}

@keyframes mmk-founder-signal {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  22% {
    opacity: .7;
  }

  55% {
    opacity: .42;
  }

  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes mmk-about-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-10px, 14px, 0);
  }
}

@keyframes mmk-process-line {
  0% {
    transform: translateX(-115%);
    opacity: 0;
  }

  28%,
  64% {
    opacity: .84;
  }

  100% {
    transform: translateX(115%);
    opacity: 0;
  }
}

html.mmk-js .mmk-motion-item {
  opacity: 0;
}

html.mmk-js .mmk-motion-item.is-visible {
  animation: mmk-rise-in .82s cubic-bezier(.2, .72, .18, 1) forwards;
  animation-delay: var(--mmk-stagger, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .mmk-page:before,
  .mmk-section:before,
  .mmk-live-hero:after,
  .mmk-founder-film,
  .mmk-founder-visual-media,
  .mmk-about-floating-card,
  .mmk-process-video,
  .mmk-founder-film .mmk-video-mark,
  .mmk-founder-path span:after,
  .mmk-brief-signals span:after,
  .mmk-process-film-glass span:after,
  .mmk-process-reel-status i.is-active:before,
  .mmk-cta:before {
    animation: none;
    transform: none;
  }

  html.mmk-js .mmk-motion-item,
  html.mmk-js .mmk-motion-item.is-visible {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }
}

.mmk-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: end;
}

.mmk-eyebrow {
  margin: 0 0 18px;
  color: var(--mmk-accent);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .94;
}

h1 span {
  color: var(--mmk-accent);
}

.mmk-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(244, 241, 234, .74);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.mmk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mmk-hero-card {
  padding: 26px;
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .16), rgba(244, 241, 234, .035)),
    var(--mmk-panel);
  box-shadow: var(--mmk-shadow);
}

.mmk-live-hero .mmk-hero-card {
  border-color: rgba(244, 241, 234, .18);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, .13), rgba(244, 241, 234, .045)),
    rgba(14, 14, 14, .62);
  backdrop-filter: blur(16px);
}

.mmk-hero-card strong {
  display: block;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.mmk-hero-card p {
  margin: 16px 0 0;
  color: var(--mmk-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mmk-founder-hero-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mmk-process-hero-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mmk-section {
  position: relative;
  padding: clamp(70px, 9vw, 118px) 0;
  overflow: hidden;
}

.mmk-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 40%, rgba(244, 241, 234, .035) 46%, transparent 54% 100%),
    radial-gradient(circle at 10% 0%, rgba(var(--mmk-accent-rgb), .08), transparent 28%);
  opacity: .68;
  transform: translate3d(-2%, 0, 0);
  animation: mmk-section-glide 18s ease-in-out infinite alternate;
}

.mmk-section.light {
  background: var(--mmk-bone);
  color: var(--mmk-black);
}

.mmk-section.light:before {
  background:
    linear-gradient(110deg, transparent 0 40%, rgba(14, 14, 14, .035) 46%, transparent 54% 100%),
    radial-gradient(circle at 12% 0%, rgba(var(--mmk-accent-rgb), .1), transparent 28%);
}

.mmk-section > .mmk-wrap {
  position: relative;
  z-index: 1;
}

.mmk-section.light h2,
.mmk-section.light h3,
.mmk-section.light .mmk-eyebrow {
  color: var(--mmk-black);
}

.mmk-section.light .mmk-copy {
  color: rgba(14, 14, 14, .72);
}

.mmk-section.light .mmk-eyebrow {
  opacity: .78;
}

.mmk-section h2 {
  max-width: 850px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
}

.mmk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.mmk-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.mmk-services-access {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(78px, 8vw, 122px) 0 clamp(76px, 8vw, 118px);
  border-bottom: 1px solid rgba(244, 241, 234, .12);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, .16), rgba(14, 14, 14, .64) 72%, rgba(14, 14, 14, .88)),
    linear-gradient(90deg, rgba(14, 14, 14, .68), rgba(14, 14, 14, .36) 48%, rgba(14, 14, 14, .46)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-services-access:before {
  background:
    linear-gradient(rgba(244, 241, 234, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .032) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 40%, rgba(244, 241, 234, .055) 46%, transparent 54% 100%),
    radial-gradient(circle at 16% 18%, rgba(var(--mmk-accent-rgb), .22), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(110, 125, 140, .16), transparent 28%);
  background-size: 92px 92px, 92px 92px, 100% 100%, 100% 100%, 100% 100%;
  opacity: .56;
}

.mmk-services-head {
  max-width: 860px;
}

.mmk-services-head h1 {
  max-width: 860px;
  font-size: clamp(50px, 6.6vw, 96px);
}

.mmk-services-head .mmk-copy {
  margin: 0 0 8px;
}

.mmk-service-suite {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(244, 241, 234, .055);
  box-shadow: var(--mmk-shadow);
  overflow: hidden;
}

.mmk-service-route {
  min-height: clamp(360px, 34vw, 470px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid rgba(244, 241, 234, .14);
}

.mmk-service-route:last-child {
  border-right: 0;
}

.mmk-service-route:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(14, 14, 14, .08), rgba(14, 14, 14, .54) 62%, rgba(14, 14, 14, .84)),
    var(--mmk-route-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.mmk-service-route:after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 22%, rgba(244, 241, 234, .18) 28%, transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(var(--mmk-accent-rgb), .26), transparent 30%);
  opacity: .36;
  transform: translate3d(-16%, 0, 0);
  transition: transform .45s ease, opacity .45s ease;
}

.mmk-service-route:hover:before {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.mmk-service-route:hover:after {
  opacity: .72;
  transform: translate3d(8%, -3%, 0);
}

.mmk-route-index,
.mmk-route-tag {
  color: rgba(244, 241, 234, .82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mmk-route-body {
  display: grid;
  gap: 14px;
}

.mmk-route-body h3 {
  margin: 0;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.mmk-route-body p {
  max-width: 27ch;
  margin: 0;
  color: rgba(244, 241, 234, .74);
  font-size: 14px;
  line-height: 1.6;
}

.mmk-route-body .mmk-btn {
  width: fit-content;
  margin-top: 8px;
  background: rgba(14, 14, 14, .76);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.mmk-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(244, 241, 234, .045);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.mmk-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mmk-card-x, 20%) var(--mmk-card-y, 10%), rgba(var(--mmk-accent-rgb), .2), transparent 36%),
    linear-gradient(135deg, transparent 0 52%, rgba(244, 241, 234, .055) 54%, transparent 62%);
  opacity: 0;
  transition: opacity .28s ease;
}

.mmk-card > * {
  position: relative;
  z-index: 1;
}

.mmk-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--mmk-accent-rgb), .54);
  background: rgba(244, 241, 234, .06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.mmk-card:hover:before {
  opacity: 1;
}

.light .mmk-card {
  border-color: rgba(14, 14, 14, .16);
  background: rgba(14, 14, 14, .045);
}

.mmk-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mmk-card h3 {
  font-size: 30px;
  line-height: 1.08;
}

.mmk-card p,
.mmk-list li {
  color: rgba(244, 241, 234, .68);
  font-size: 15px;
  line-height: 1.7;
}

.light .mmk-card p,
.light .mmk-list li {
  color: rgba(14, 14, 14, .72);
}

.mmk-card p {
  margin: 16px 0 0;
}

.mmk-brief-library {
  background:
    linear-gradient(180deg, rgba(244, 241, 234, .98), rgba(233, 228, 218, .94)),
    var(--mmk-bone);
}

.mmk-brief-library .mmk-grid.two {
  gap: clamp(14px, 2vw, 22px);
}

.mmk-brief-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.mmk-brief-card .mmk-btn {
  margin-top: auto;
}

.light .mmk-brief-card .mmk-btn {
  background: linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .18), rgba(14, 14, 14, .035));
  color: var(--mmk-black);
}

.light .mmk-brief-card .mmk-btn:hover {
  background: linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .28), rgba(14, 14, 14, .055));
}

.mmk-brief-card h3 {
  max-width: 13ch;
  font-size: clamp(30px, 3vw, 44px);
}

.mmk-brief-card:after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mmk-accent), transparent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .3s ease;
}

.mmk-brief-card:hover:after {
  transform: scaleX(1);
}

.mmk-brief-queue {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mmk-brief-queue span {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .16), rgba(244, 241, 234, .04)),
    rgba(244, 241, 234, .045);
  color: rgba(244, 241, 234, .84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mmk-brief-queue span:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 241, 234, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .032) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .48;
  pointer-events: none;
}

.mmk-brief-queue span:after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--mmk-accent-rgb), .78), transparent);
  pointer-events: none;
}

.mmk-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.mmk-list li {
  position: relative;
  padding-left: 22px;
}

.mmk-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 8px;
  height: 1px;
  background: var(--mmk-accent);
}

.mmk-process-hero {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78) 0%, rgba(14, 14, 14, .54) 43%, rgba(14, 14, 14, .16) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, .07), rgba(14, 14, 14, .68)),
    url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-process-hero .mmk-hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.mmk-process-hero .mmk-copy {
  max-width: 760px;
}

.mmk-process-film-section {
  padding-top: clamp(66px, 8vw, 106px);
}

.mmk-process-film-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.mmk-process-film {
  position: relative;
  min-height: clamp(420px, 48vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(var(--mmk-accent-rgb), .34);
  background: var(--mmk-black);
  box-shadow: var(--mmk-shadow);
  isolation: isolate;
}

.mmk-process-intake-reel {
  background:
    linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .12), rgba(244, 241, 234, .035)),
    url("https://assets.mixkit.co/videos/4809/4809-thumb-720-0.jpg") center / cover no-repeat,
    var(--mmk-black);
}

.mmk-process-film:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mmk-visual-x, 62%) var(--mmk-visual-y, 42%), rgba(var(--mmk-accent-rgb), .16), transparent 28%),
    linear-gradient(90deg, rgba(14, 14, 14, .58), rgba(14, 14, 14, .12) 48%, rgba(14, 14, 14, .34));
  pointer-events: none;
}

.mmk-process-film:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(244, 241, 234, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .028) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .36;
  pointer-events: none;
}

.mmk-process-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.03) contrast(1.06) brightness(1.04) saturate(1.14);
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
  animation: mmk-founder-visual-pan 22s ease-in-out infinite alternate;
}

.mmk-process-video.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.mmk-process-video.is-media-fallback {
  opacity: .92;
}

.mmk-process-reel-status {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 5;
  display: grid;
  gap: 12px;
  min-width: min(340px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(244, 241, 234, .16);
  background: rgba(14, 14, 14, .64);
  backdrop-filter: blur(16px);
}

.mmk-process-reel-status span {
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.mmk-process-reel-status div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mmk-process-reel-status i {
  height: 2px;
  overflow: hidden;
  background: rgba(244, 241, 234, .18);
}

.mmk-process-reel-status i:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mmk-accent);
  transform: translateX(-102%);
}

.mmk-process-reel-status i.is-active:before {
  animation: mmk-process-progress 7.2s linear forwards;
}

@keyframes mmk-process-progress {
  0% {
    transform: translateX(-102%);
  }

  100% {
    transform: translateX(0);
  }
}

.mmk-process-film-glass {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(244, 241, 234, .16);
  background: rgba(14, 14, 14, .72);
  backdrop-filter: blur(14px);
}

.mmk-process-film-glass span {
  position: relative;
  min-height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(244, 241, 234, .12);
  color: var(--mmk-bone);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.mmk-process-film-glass span:last-child {
  border-right: 0;
}

.mmk-process-film-glass span.is-active {
  background: linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .9), rgba(244, 241, 234, .82));
  color: var(--mmk-black);
}

.mmk-process-film-glass span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--mmk-accent-rgb), .3), transparent);
  transform: translateX(-115%);
  animation: mmk-process-line 4.8s ease-in-out infinite;
}

.mmk-process-film-glass span:nth-child(2):after {
  animation-delay: .45s;
}

.mmk-process-film-glass span:nth-child(3):after {
  animation-delay: .9s;
}

.mmk-process-copy .mmk-copy {
  max-width: 560px;
}

.mmk-process-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mmk-process-points span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(var(--mmk-accent-rgb), .38);
  background: rgba(244, 241, 234, .055);
  color: rgba(244, 241, 234, .82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mmk-journey-head {
  max-width: 780px;
}

.mmk-client-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, .14);
  background: rgba(14, 14, 14, .16);
  box-shadow: 0 28px 80px rgba(14, 14, 14, .14);
}

.mmk-journey-step {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 241, 234, .96), rgba(232, 226, 214, .88)),
    var(--mmk-bone);
}

.mmk-journey-step:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mmk-card-x, 24%) var(--mmk-card-y, 18%), rgba(var(--mmk-accent-rgb), .16), transparent 34%),
    linear-gradient(135deg, transparent 0 52%, rgba(14, 14, 14, .045) 54%, transparent 62%);
  opacity: .85;
  pointer-events: none;
}

.mmk-journey-step:after {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 32px);
  right: clamp(22px, 3vw, 32px);
  top: 68px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--mmk-accent-rgb), .72), transparent);
  pointer-events: none;
}

.mmk-journey-step > * {
  position: relative;
  z-index: 1;
}

.mmk-journey-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--mmk-accent-rgb), .38);
  background: rgba(var(--mmk-accent-rgb), .08);
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mmk-journey-step strong {
  color: var(--mmk-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.mmk-journey-step p {
  margin: 0;
  color: rgba(14, 14, 14, .72);
  font-size: 14px;
  line-height: 1.62;
}

.mmk-proof-section {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .78), rgba(14, 14, 14, .52) 52%, rgba(14, 14, 14, .64)),
    linear-gradient(180deg, rgba(14, 14, 14, .1), rgba(14, 14, 14, .76)),
    url("https://images.unsplash.com/photo-1549060279-7e168fcee0c2?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-proof-section:before {
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(var(--mmk-accent-rgb), .11) 44%, transparent 52% 100%),
    radial-gradient(circle at 78% 16%, rgba(244, 241, 234, .08), transparent 28%);
}

.mmk-proof-kicker {
  max-width: 560px;
}

.mmk-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.mmk-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(244, 241, 234, .12);
  box-shadow: var(--mmk-shadow);
}

.mmk-proof-list article {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(14, 14, 14, .68);
  backdrop-filter: blur(12px);
}

.mmk-proof-list article:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mmk-card-x, 20%) var(--mmk-card-y, 12%), rgba(var(--mmk-accent-rgb), .2), transparent 34%);
  opacity: .6;
  pointer-events: none;
}

.mmk-proof-list article > * {
  position: relative;
  z-index: 1;
}

.mmk-proof-list span {
  display: block;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mmk-proof-list strong {
  display: block;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 500;
  line-height: .95;
}

.mmk-proof-list p {
  margin: 0;
  color: rgba(244, 241, 234, .72);
  font-size: 16px;
  line-height: 1.62;
}

.mmk-story-section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.mmk-storyline {
  display: grid;
  max-width: 1040px;
  gap: 30px;
}

.mmk-story-copy {
  max-width: none;
}

.mmk-story-copy h2 {
  font-size: clamp(42px, 5.4vw, 76px);
}

.mmk-story-copy .mmk-copy {
  max-width: 720px;
}

.mmk-story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.mmk-story-step {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .1), rgba(244, 241, 234, .035)),
    rgba(244, 241, 234, .045);
  overflow: hidden;
}

.mmk-story-step:before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mmk-accent), transparent);
}

.light .mmk-story-step {
  border-color: rgba(14, 14, 14, .14);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .1), rgba(14, 14, 14, .025)),
    rgba(14, 14, 14, .04);
}

.mmk-story-step span {
  display: block;
  margin-bottom: 16px;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mmk-story-step strong {
  display: block;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.mmk-story-step p {
  margin: 12px 0 0;
  color: rgba(244, 241, 234, .66);
  font-size: 14px;
  line-height: 1.55;
}

.light .mmk-story-step p {
  color: rgba(14, 14, 14, .68);
}

.mmk-tight-grid {
  margin-top: 28px;
}

.mmk-tight-grid .mmk-card p,
.mmk-tight-grid .mmk-list li {
  font-size: 14px;
  line-height: 1.55;
}

.mmk-article {
  max-width: 860px;
}

.mmk-article h2 {
  margin-top: 46px;
  font-size: clamp(34px, 4vw, 56px);
}

.mmk-article h2:first-child {
  margin-top: 0;
}

.mmk-article p {
  color: rgba(244, 241, 234, .72);
  font-size: 18px;
  line-height: 1.78;
}

.light .mmk-article p {
  color: rgba(14, 14, 14, .74);
}

.mmk-source {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(244, 241, 234, .045);
}

.light .mmk-source {
  border-color: rgba(14, 14, 14, .16);
  background: rgba(14, 14, 14, .045);
}

.mmk-source strong {
  display: block;
  margin-bottom: 10px;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mmk-source p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.mmk-source p + p {
  margin-top: 12px;
}

.mmk-source a {
  color: var(--mmk-accent);
  font-weight: 900;
}

.mmk-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mmk-source-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(var(--mmk-accent-rgb), .46);
  background: rgba(244, 241, 234, .08);
  color: var(--mmk-bone);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.light .mmk-source-action {
  color: var(--mmk-black);
  background: rgba(244, 241, 234, .44);
}

.mmk-source-action:hover {
  transform: translateY(-2px);
  border-color: var(--mmk-accent);
  background: rgba(var(--mmk-accent-rgb), .16);
}

.mmk-founder-film {
  position: relative;
  min-height: clamp(360px, 52vw, 650px);
  border: 1px solid rgba(var(--mmk-accent-rgb), .34);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, .08), rgba(8, 8, 7, .68)),
    url("https://images.unsplash.com/photo-1576678927484-cc907957088c?auto=format&fit=crop&w=1800&q=86") center / cover;
  background-position: center, 54% center;
  background-repeat: no-repeat;
  background-size: auto, cover;
  box-shadow: var(--mmk-shadow);
  overflow: hidden;
  animation: mmk-founder-film-pan 18s ease-in-out infinite alternate;
}

.mmk-founder-film:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mmk-visual-x, 50%) var(--mmk-visual-y, 50%), rgba(var(--mmk-accent-rgb), .28), transparent 24%),
    linear-gradient(135deg, transparent 0 44%, rgba(var(--mmk-accent-rgb), .12) 45%, transparent 46%),
    linear-gradient(rgba(244, 241, 234, .055) 1px, transparent 1px);
  background-size: auto, auto, 100% 92px;
  opacity: .86;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mmk-founder-film:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 7, .86));
  pointer-events: none;
}

.mmk-video-mark {
  width: 92px;
  height: 92px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--mmk-accent-rgb), .8);
  background: rgba(8, 8, 7, .72);
  box-shadow: 0 0 0 14px rgba(var(--mmk-accent-rgb), .09), var(--mmk-shadow);
}

.mmk-video-mark:before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--mmk-accent);
}

.mmk-founder-film .mmk-video-mark {
  animation: mmk-pulse-ring 2.8s ease-in-out infinite;
}

.mmk-video-caption {
  position: absolute;
  left: clamp(22px, 4vw, 44px);
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.mmk-video-caption strong {
  display: block;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.mmk-video-caption span {
  display: block;
  margin-top: 12px;
  color: rgba(244, 241, 234, .66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.mmk-founder-note {
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(14, 14, 14, .7);
}

.mmk-founder-note p {
  margin: 0;
  color: rgba(244, 241, 234, .7);
  font-size: 14px;
  line-height: 1.65;
}

.mmk-founder-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.mmk-founder-copy h2 {
  max-width: 760px;
}

.mmk-founder-copy .mmk-copy {
  max-width: 600px;
}

.mmk-founder-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.mmk-founder-proof li {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(14, 14, 14, .16);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .12), rgba(14, 14, 14, .025)),
    rgba(244, 241, 234, .45);
}

.mmk-founder-proof strong {
  color: var(--mmk-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.mmk-founder-proof span {
  color: rgba(14, 14, 14, .66);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.mmk-founder-visual {
  position: relative;
  min-height: clamp(430px, 45vw, 640px);
  border: 1px solid rgba(14, 14, 14, .16);
  background: var(--mmk-black);
  box-shadow: var(--mmk-shadow);
  overflow: hidden;
  isolation: isolate;
}

.mmk-founder-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mmk-visual-x, 64%) var(--mmk-visual-y, 44%), rgba(var(--mmk-accent-rgb), .28), transparent 28%),
    linear-gradient(90deg, rgba(14, 14, 14, .82), rgba(14, 14, 14, .34) 48%, rgba(14, 14, 14, .64));
  pointer-events: none;
}

.mmk-founder-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(244, 241, 234, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .92) 18%, rgba(0, 0, 0, .86) 82%, transparent);
  pointer-events: none;
}

.mmk-founder-visual-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, .12), rgba(14, 14, 14, .62)),
    url("https://images.unsplash.com/photo-1599058917765-a780eda07a3e?auto=format&fit=crop&w=1800&q=86") center / cover no-repeat;
  transform-origin: center;
  animation: mmk-founder-visual-pan 20s ease-in-out infinite alternate;
}

.mmk-founder-path {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(244, 241, 234, .18);
  background: rgba(14, 14, 14, .72);
  backdrop-filter: blur(14px);
}

.mmk-founder-path span {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(244, 241, 234, .12);
  color: var(--mmk-bone);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mmk-founder-path span:last-child {
  border-right: 0;
}

.mmk-founder-path span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--mmk-accent-rgb), .28), transparent);
  transform: translateX(-120%);
  animation: mmk-founder-signal 5.8s ease-in-out infinite;
}

.mmk-founder-path span:nth-child(2):after {
  animation-delay: .45s;
}

.mmk-founder-path span:nth-child(3):after {
  animation-delay: .9s;
}

.mmk-founder-path span:nth-child(4):after {
  animation-delay: 1.35s;
}

.mmk-founder-intro-hero {
  min-height: 100vh;
  align-items: center;
  padding: clamp(92px, 8.5vw, 124px) 0 clamp(34px, 4.2vw, 58px);
}

.mmk-founder-intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(430px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.mmk-founder-intro-grid > * {
  min-width: 0;
}

.mmk-founder-intro-copy {
  top: auto;
  align-self: center;
  padding-top: clamp(8px, 1.2vw, 18px);
}

.mmk-founder-intro-copy h1 {
  max-width: 680px;
  font-size: clamp(46px, 5.6vw, 88px);
}

.mmk-founder-intro-copy .mmk-copy {
  max-width: 560px;
  font-size: clamp(16px, 1.2vw, 19px);
}

.mmk-founder-bio-panel {
  position: relative;
  max-width: 640px;
  margin-top: 26px;
  padding: clamp(18px, 2.3vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(145deg, rgba(var(--mmk-accent-rgb), .13), rgba(244, 241, 234, .035) 48%, rgba(14, 14, 14, .4)),
    rgba(14, 14, 14, .52);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.mmk-founder-bio-panel:before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--mmk-accent-rgb), .9), transparent);
  animation: mmk-founder-signal 6.4s ease-in-out infinite;
}

.mmk-founder-bio-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(244, 241, 234, .72);
  font-size: 14px;
  line-height: 1.66;
}

.mmk-founder-bio-panel p + p {
  margin-top: 12px;
}

.mmk-founder-background-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mmk-founder-background-grid span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(244, 241, 234, .12);
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--mmk-accent-rgb), .15), transparent 42%),
    rgba(244, 241, 234, .045);
  color: rgba(244, 241, 234, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
  animation: mmk-rise-in .82s cubic-bezier(.2, .72, .18, 1) both;
}

.mmk-founder-background-grid span:nth-child(2) {
  animation-delay: .08s;
}

.mmk-founder-background-grid span:nth-child(3) {
  animation-delay: .16s;
}

.mmk-founder-background-grid span:nth-child(4) {
  animation-delay: .24s;
}

.mmk-founder-background-grid strong {
  display: block;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.mmk-about-hero {
  min-height: clamp(620px, 86vh, 820px);
  align-items: center;
  padding: clamp(82px, 7.4vw, 108px) 0 clamp(32px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .96) 0%, rgba(8, 8, 7, .82) 44%, rgba(8, 8, 7, .48) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, .08), rgba(8, 8, 7, .94)),
    url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}

.mmk-about-hero:before {
  background:
    linear-gradient(rgba(244, 241, 234, .044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, .032) 1px, transparent 1px),
    radial-gradient(circle at 17% 70%, rgba(var(--mmk-accent-rgb), .3), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(244, 241, 234, .13), transparent 30%);
  background-size: 86px 86px, 86px 86px, 100% 100%, 100% 100%;
}

.mmk-about-hero:after {
  background:
    linear-gradient(115deg, transparent 16%, rgba(244, 241, 234, .12) 20%, transparent 26%),
    linear-gradient(115deg, transparent 54%, rgba(var(--mmk-accent-rgb), .2) 58%, transparent 65%);
  animation-duration: 10s;
}

.mmk-about-video-hero {
  min-height: auto;
  align-items: flex-start;
  padding: clamp(88px, 7.8vw, 116px) 0 clamp(48px, 6vw, 84px);
}

.mmk-about-video-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.mmk-about-video-title {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mmk-about-video-title h1 {
  max-width: none;
  font-size: clamp(46px, 6vw, 92px);
}

.mmk-about-video-title .mmk-eyebrow {
  margin-bottom: 14px;
}

.mmk-about-video-hero .mmk-about-film-stage {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.mmk-about-hero-film {
  min-height: clamp(420px, 50vw, 680px);
}

.mmk-about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.mmk-about-hero-grid > * {
  min-width: 0;
}

.mmk-about-copy {
  position: relative;
  padding-left: 26px;
  border-left: 1px solid rgba(var(--mmk-accent-rgb), .48);
}

.mmk-about-copy h1 {
  max-width: 780px;
  font-size: clamp(46px, 5.7vw, 90px);
}

.mmk-about-copy .mmk-copy {
  max-width: 610px;
  font-size: clamp(16px, 1.22vw, 20px);
}

.mmk-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mmk-about-origin-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.mmk-about-origin-strip span {
  position: relative;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(244, 241, 234, .13);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .1), rgba(244, 241, 234, .035)),
    rgba(244, 241, 234, .045);
  color: rgba(244, 241, 234, .62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mmk-about-origin-strip span:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(var(--mmk-accent-rgb), .2) 42%, transparent 54%);
  transform: translateX(-110%);
  animation: mmk-process-line 5.8s ease-in-out infinite;
}

.mmk-about-origin-strip span:nth-child(2):before {
  animation-delay: .35s;
}

.mmk-about-origin-strip span:nth-child(3):before {
  animation-delay: .7s;
}

.mmk-about-origin-strip span:nth-child(4):before {
  animation-delay: 1.05s;
}

.mmk-about-origin-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.mmk-about-video-column {
  display: grid;
  gap: 0;
}

.mmk-about-film-stage {
  position: relative;
}

.mmk-about-floating-card {
  position: absolute;
  right: clamp(14px, 2vw, 24px);
  top: clamp(14px, 2vw, 24px);
  z-index: 4;
  width: min(260px, calc(100% - 28px));
  padding: 16px;
  border: 1px solid rgba(244, 241, 234, .18);
  background: rgba(8, 8, 7, .66);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  animation: mmk-about-float 5.2s ease-in-out infinite alternate;
}

.mmk-about-floating-card span {
  display: block;
  color: rgba(244, 241, 234, .62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mmk-about-floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.05;
}

.mmk-about-film {
  min-height: clamp(420px, 45vw, 640px);
  background-image:
    linear-gradient(180deg, rgba(8, 8, 7, .08), rgba(8, 8, 7, .7)),
    url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=1600&q=84");
  background-position: center, center;
}

.mmk-about-video-hero .mmk-about-film {
  min-height: clamp(420px, 50vw, 680px);
}

.mmk-about-story-section {
  background:
    linear-gradient(180deg, #11100e, #171613),
    radial-gradient(circle at 8% 0%, rgba(var(--mmk-accent-rgb), .14), transparent 32%);
}

.mmk-about-story-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
}

.mmk-about-story-head .mmk-copy {
  margin: 0;
  max-width: 640px;
}

.mmk-about-story-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(135deg, rgba(var(--mmk-accent-rgb), .1), rgba(244, 241, 234, .03) 48%, rgba(8, 8, 7, .46)),
    rgba(244, 241, 234, .035);
  box-shadow: var(--mmk-shadow);
  overflow: hidden;
}

.mmk-about-story-board:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mmk-accent), transparent);
  animation: mmk-founder-signal 5.5s ease-in-out infinite;
}

.mmk-about-story-step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(244, 241, 234, .12);
  overflow: hidden;
}

.mmk-about-story-step:last-child {
  border-right: 0;
}

.mmk-about-story-step:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mmk-card-x, 18%) var(--mmk-card-y, 18%), rgba(var(--mmk-accent-rgb), .16), transparent 34%),
    linear-gradient(180deg, rgba(244, 241, 234, .035), transparent);
  opacity: .86;
  pointer-events: none;
}

.mmk-about-story-step span {
  position: relative;
  z-index: 1;
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mmk-about-story-step h3 {
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 6vw, 86px);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.mmk-about-story-step p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(244, 241, 234, .68);
  font-size: 14px;
  line-height: 1.62;
}

.mmk-about-standard-section {
  padding-top: clamp(64px, 7vw, 98px);
}

.mmk-about-standard-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.mmk-about-standard-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mmk-about-standard-cards .mmk-card {
  min-height: 230px;
  border-color: rgba(14, 14, 14, .14);
  background:
    linear-gradient(180deg, rgba(var(--mmk-accent-rgb), .1), rgba(14, 14, 14, .025)),
    rgba(14, 14, 14, .045);
}

.mmk-about-standard-cards .mmk-card h3 {
  color: var(--mmk-black);
}

.mmk-founder-intro-film {
  min-height: clamp(430px, 48vw, 640px);
  align-self: center;
}

.mmk-application {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.mmk-service-intake-hero {
  min-height: 100vh;
  align-items: flex-start;
  padding: clamp(92px, 8.5vw, 124px) 0 clamp(34px, 4.2vw, 58px);
}

.mmk-service-intake-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(430px, 1.12fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.mmk-service-intake-grid > * {
  min-width: 0;
}

.mmk-apply-copy {
  position: sticky;
  top: 110px;
  padding: 30px 0 30px 26px;
  border-left: 1px solid rgba(var(--mmk-accent-rgb), .46);
}

.mmk-service-intro {
  top: clamp(96px, 9vw, 130px);
  padding-top: clamp(8px, 1.2vw, 18px);
}

.mmk-service-intro h1 {
  max-width: 660px;
  font-size: clamp(42px, 5.2vw, 82px);
}

.mmk-service-intro .mmk-copy {
  max-width: 520px;
  font-size: clamp(16px, 1.2vw, 19px);
}

.mmk-service-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mmk-service-markers span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(var(--mmk-accent-rgb), .42);
  background: rgba(244, 241, 234, .07);
  color: rgba(244, 241, 234, .84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mmk-apply-copy h2 {
  font-size: clamp(38px, 4.8vw, 66px);
}

.mmk-apply-copy .mmk-copy {
  font-size: 16px;
}

.mmk-apply-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mmk-apply-point {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 241, 234, .1);
}

.mmk-apply-point span {
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mmk-apply-point strong {
  display: block;
  color: var(--mmk-bone);
  font-size: 14px;
  line-height: 1.45;
}

.mmk-apply-point p {
  margin: 4px 0 0;
  color: rgba(244, 241, 234, .62);
  font-size: 13px;
  line-height: 1.55;
}

.mmk-form {
  position: relative;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(145deg, rgba(var(--mmk-accent-rgb), .16), rgba(244, 241, 234, .035) 48%, rgba(14, 14, 14, .44)),
    rgba(23, 22, 19, .92);
  box-shadow: var(--mmk-shadow);
  overflow: hidden;
}

.mmk-service-intake-hero .mmk-form {
  max-height: min(760px, calc(100vh - 154px));
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--mmk-accent-rgb), .6) rgba(244, 241, 234, .08);
}

.mmk-service-intake-hero .mmk-form::-webkit-scrollbar {
  width: 10px;
}

.mmk-service-intake-hero .mmk-form::-webkit-scrollbar-track {
  background: rgba(244, 241, 234, .08);
}

.mmk-service-intake-hero .mmk-form::-webkit-scrollbar-thumb {
  background: rgba(var(--mmk-accent-rgb), .58);
}

.mmk-form:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mmk-form-x, 18%) var(--mmk-form-y, 12%), rgba(var(--mmk-accent-rgb), .16), transparent 34%),
    linear-gradient(145deg, transparent, rgba(244, 241, 234, .035));
  opacity: .78;
}

.mmk-form > * {
  position: relative;
  z-index: 1;
}

.mmk-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(244, 241, 234, .12);
}

.mmk-form-head strong {
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.mmk-form-note {
  margin: 0;
  color: rgba(244, 241, 234, .64);
  font-size: 13px;
  line-height: 1.65;
}

.mmk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mmk-service-intake-hero .mmk-form-grid {
  gap: 14px;
}

.mmk-field,
.mmk-fieldset {
  display: grid;
  gap: 8px;
}

.mmk-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.mmk-field.wide,
.mmk-fieldset.wide {
  grid-column: 1 / -1;
}

.mmk-field label,
.mmk-fieldset legend {
  color: rgba(244, 241, 234, .84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mmk-field input,
.mmk-field select,
.mmk-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(244, 241, 234, .16);
  border-radius: 0;
  outline: none;
  background: rgba(14, 14, 14, .64);
  color: var(--mmk-bone);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.45;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.mmk-field textarea {
  min-height: 124px;
  resize: vertical;
}

.mmk-service-intake-hero .mmk-field textarea {
  min-height: 96px;
}

.mmk-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(244, 241, 234, .75) 50%),
    linear-gradient(135deg, rgba(244, 241, 234, .75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.mmk-field input::placeholder,
.mmk-field textarea::placeholder {
  color: rgba(244, 241, 234, .38);
}

.mmk-field input:focus,
.mmk-field select:focus,
.mmk-field textarea:focus {
  border-color: rgba(var(--mmk-accent-rgb), .78);
  background: rgba(14, 14, 14, .84);
  box-shadow: 0 0 0 3px rgba(var(--mmk-accent-rgb), .18);
}

.mmk-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mmk-choice {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 241, 234, .14);
  background: rgba(244, 241, 234, .045);
  color: rgba(244, 241, 234, .78);
  font-size: 14px;
  line-height: 1.35;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.mmk-choice:hover {
  border-color: rgba(var(--mmk-accent-rgb), .56);
  color: var(--mmk-bone);
}

.mmk-choice input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--mmk-accent);
}

.mmk-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 241, 234, .12);
}

.mmk-submit-row .mmk-form-note {
  max-width: 390px;
}

.mmk-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.mmk-contact-entry-hero {
  min-height: 100vh;
  align-items: flex-start;
  padding: clamp(92px, 8vw, 118px) 0 clamp(34px, 4vw, 58px);
}

.mmk-contact-entry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.mmk-contact-intro {
  top: clamp(96px, 9vw, 130px);
  padding-top: clamp(8px, 1.2vw, 18px);
}

.mmk-contact-intro h1 {
  max-width: 660px;
  font-size: clamp(46px, 5.8vw, 88px);
}

.mmk-contact-intro .mmk-copy {
  max-width: 510px;
  font-size: clamp(16px, 1.22vw, 19px);
}

.mmk-contact-entry-hero .mmk-form {
  max-height: min(780px, calc(100vh - 150px));
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--mmk-accent-rgb), .6) rgba(244, 241, 234, .08);
}

.mmk-contact-entry-hero .mmk-form::-webkit-scrollbar {
  width: 10px;
}

.mmk-contact-entry-hero .mmk-form::-webkit-scrollbar-track {
  background: rgba(244, 241, 234, .08);
}

.mmk-contact-entry-hero .mmk-form::-webkit-scrollbar-thumb {
  background: rgba(var(--mmk-accent-rgb), .58);
}

.mmk-contact-entry-hero .mmk-form-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.mmk-contact-entry-hero .mmk-form-head strong {
  font-size: clamp(28px, 2.7vw, 38px);
}

.mmk-contact-entry-hero .mmk-form-grid {
  gap: 14px;
}

.mmk-contact-entry-hero .mmk-field textarea {
  min-height: 96px;
}

.mmk-contact-support-section {
  padding-top: clamp(46px, 6vw, 76px);
}

.mmk-contact-support-section .mmk-contact-grid {
  grid-template-columns: 1fr;
}

.mmk-contact-panel {
  display: grid;
  gap: 16px;
}

.mmk-contact-support-section .mmk-contact-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mmk-channel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(244, 241, 234, .14);
  background:
    linear-gradient(145deg, rgba(var(--mmk-accent-rgb), .12), rgba(244, 241, 234, .035)),
    rgba(244, 241, 234, .045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.mmk-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--mmk-accent-rgb), .58);
  background:
    linear-gradient(145deg, rgba(var(--mmk-accent-rgb), .18), rgba(244, 241, 234, .055)),
    rgba(244, 241, 234, .06);
}

.mmk-channel span {
  color: var(--mmk-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mmk-channel strong {
  color: var(--mmk-bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.mmk-channel p {
  margin: 0;
  color: rgba(244, 241, 234, .66);
  font-size: 14px;
  line-height: 1.62;
}

.mmk-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mmk-contact-strip .mmk-channel {
  padding: 18px;
}

.mmk-contact-strip .mmk-channel strong {
  font-size: 22px;
}

.mmk-form .mmk-btn {
  cursor: pointer;
}

.mmk-honeypot {
  display: none;
}

.mmk-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.mmk-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 110px) 0;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, .92), rgba(244, 241, 234, .76)),
    url("https://images.unsplash.com/photo-1598971639058-fab3c3109a00?auto=format&fit=crop&w=1800&q=86") center / cover;
  color: var(--mmk-black);
}

.mmk-cta:before {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .26) 42%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(var(--mmk-accent-rgb), .18), transparent 30%);
  animation: mmk-live-sweep 16s ease-in-out infinite alternate;
}

.mmk-cta > .mmk-wrap {
  position: relative;
  z-index: 1;
}

.mmk-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(14, 14, 14, .18);
  background: rgba(244, 241, 234, .62);
  backdrop-filter: blur(8px);
}

.mmk-cta h2,
.mmk-cta .mmk-copy,
.mmk-cta .mmk-eyebrow {
  color: var(--mmk-black);
}
@media (max-width: 900px) {
  .mmk-menu-toggle {
    display: inline-flex;
  }

  .mmk-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 30;
    padding: 16px;
    border: 1px solid rgba(var(--mmk-accent-rgb), .32);
    background: rgba(14, 14, 14, .96);
    box-shadow: var(--mmk-shadow);
    backdrop-filter: blur(18px);
  }

  .mmk-topbar.is-menu-open .mmk-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .mmk-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 241, 234, .08);
  }

  .mmk-live-hero {
    min-height: auto;
  }

  .mmk-hero-inner,
  .mmk-split,
  .mmk-application,
  .mmk-service-intake-grid,
  .mmk-founder-intro-grid,
  .mmk-about-hero-grid,
  .mmk-about-standard-grid,
  .mmk-about-story-head,
  .mmk-contact-entry-grid,
  .mmk-contact-grid,
  .mmk-founder-showcase,
  .mmk-process-film-grid,
  .mmk-journey-head,
  .mmk-proof-grid,
  .mmk-cta-box {
    grid-template-columns: 1fr;
  }

  .mmk-apply-copy {
    position: static;
  }

  .mmk-service-intake-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .mmk-contact-entry-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .mmk-founder-intro-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .mmk-about-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .mmk-about-origin-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmk-about-story-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmk-about-story-step:nth-child(2) {
    border-right: 0;
  }

  .mmk-about-story-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 241, 234, .12);
  }

  .mmk-service-intake-hero .mmk-form {
    max-height: none;
    overflow: visible;
  }

  .mmk-contact-entry-hero .mmk-form {
    max-height: none;
    overflow: visible;
  }

  .mmk-contact-support-section .mmk-contact-panel {
    grid-template-columns: 1fr;
  }

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

  .mmk-grid.two {
    grid-template-columns: 1fr;
  }

  .mmk-services-head {
    grid-template-columns: 1fr;
  }

  .mmk-services-head .mmk-copy {
    max-width: 720px;
    margin: 0;
  }

  .mmk-service-suite {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmk-service-route:nth-child(2) {
    border-right: 0;
  }

  .mmk-service-route:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 241, 234, .14);
  }

  .mmk-storyline,
  .mmk-story-steps {
    grid-template-columns: 1fr;
  }

  .mmk-brief-queue {
    grid-template-columns: 1fr;
  }

  .mmk-client-journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .mmk-proof-list {
    grid-template-columns: 1fr;
  }

  .mmk-proof-list article {
    min-height: 240px;
  }

  .mmk-video-caption {
    display: grid;
  }

  .mmk-founder-note {
    max-width: none;
  }

  .mmk-founder-background-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmk-founder-visual {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .mmk-wrap {
    width: min(100% - 28px, 1160px);
  }

  .mmk-nav {
    min-height: 68px;
  }

  .mmk-topbar.is-menu-open .mmk-links {
    grid-template-columns: 1fr;
  }

  .mmk-brand strong {
    font-size: 13px;
  }

  .mmk-brand-mark {
    width: 29px;
    height: 40px;
  }

  .mmk-hero {
    padding-top: 76px;
  }

  .mmk-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .mmk-service-intro h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .mmk-founder-intro-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .mmk-about-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .mmk-service-markers {
    margin-top: 22px;
  }

  .mmk-founder-bio-panel {
    margin-top: 22px;
    padding: 18px;
  }

  .mmk-founder-background-grid {
    grid-template-columns: 1fr;
  }

  .mmk-about-origin-strip,
  .mmk-about-standard-cards,
  .mmk-about-story-board {
    grid-template-columns: 1fr;
  }

  .mmk-about-story-step,
  .mmk-about-story-step:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 234, .12);
  }

  .mmk-about-story-step:last-child {
    border-bottom: 0;
  }

  .mmk-about-copy {
    padding-left: 18px;
  }

  .mmk-about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mmk-founder-background-grid span {
    min-height: 72px;
  }

  .mmk-card,
  .mmk-hero-card,
  .mmk-form,
  .mmk-cta-box {
    padding: 22px;
  }

  .mmk-services-access {
    min-height: auto;
    padding-top: 72px;
  }

  .mmk-services-head h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .mmk-brand span {
    max-width: 260px;
    white-space: normal;
    line-height: 1.25;
  }

  .mmk-service-suite {
    grid-template-columns: 1fr;
  }

  .mmk-service-route,
  .mmk-service-route:nth-child(2) {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 234, .14);
  }

  .mmk-service-route:last-child {
    border-bottom: 0;
  }

  .mmk-brief-signals {
    align-items: stretch;
    flex-direction: column;
  }

  .mmk-brief-signals span {
    justify-content: center;
    text-align: center;
  }

  .mmk-brief-card {
    min-height: 300px;
  }

  .mmk-founder-film {
    min-height: 360px;
  }

  .mmk-founder-intro-film {
    min-height: 360px;
  }

  .mmk-about-film {
    min-height: 360px;
  }

  .mmk-process-film {
    min-height: 420px;
  }

  .mmk-process-film-glass,
  .mmk-client-journey {
    grid-template-columns: 1fr;
  }

  .mmk-process-film-glass span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 234, .12);
  }

  .mmk-process-film-glass span:last-child {
    border-bottom: 0;
  }

  .mmk-journey-step,
  .mmk-journey-step:nth-child(2) {
    min-height: auto;
  }

  .mmk-journey-step {
    min-height: 240px;
  }

  .mmk-video-mark {
    width: 74px;
    height: 74px;
  }

  .mmk-founder-proof,
  .mmk-founder-path {
    grid-template-columns: 1fr;
  }

  .mmk-founder-visual {
    min-height: 430px;
  }

  .mmk-founder-path span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 234, .12);
  }

  .mmk-founder-path span:last-child {
    border-bottom: 0;
  }

  .mmk-form-grid,
  .mmk-contact-strip,
  .mmk-choice-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mmk-page:before,
  .mmk-section:before,
  .mmk-live-hero:after,
  .mmk-founder-film .mmk-video-mark,
  .mmk-brief-signals span:after,
  .mmk-process-film-glass span:after,
  .mmk-cta:before,
  html.mmk-js .mmk-motion-item,
  html.mmk-js .mmk-motion-item.is-visible {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    translate: none !important;
    filter: none !important;
  }

  .mmk-process-video {
    animation: none !important;
    transform: none !important;
  }

  .mmk-process-video:not(.is-active) {
    opacity: 0 !important;
  }

  .mmk-process-video.is-active {
    opacity: 1 !important;
  }

  .mmk-btn,
  .mmk-card,
  .mmk-journey-step,
  .mmk-proof-list article,
  .mmk-channel,
  .mmk-source-action,
  .mmk-field input,
  .mmk-field select,
  .mmk-field textarea,
  .mmk-choice {
    transition: none !important;
  }
}
